@charset "UTF-8";
/* ====== PCコンテンツサイズ ====== */
/* ====== TOPタブレットサイズ ====== */
/* ====== 横並び要素切り替えサイズ ====== */
/* ============================== */
/* 共通 */
/* ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  color: #30303d;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

/* ====== font ====== */
.notosansjp {
  font-family: "Noto Sans JP", sans-serif;
}

.yantramanav {
  font-family: "Yantramanav", sans-serif;
}

.bodoni {
  font-family: "Bodoni Moda", serif;
}

.alata {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;
}

main {
  overflow: hidden;
}

.newLine {
  display: block;
}
.inlineBlock {
  display: inline-block;
}
@media screen and (max-width: 767.99px) {
  .flexLine {
    display: block;
  }
  .inlineBlock--noSp {
    display: inline;
  }
}
/* ====== コンテンツサイズ ====== */
.container {
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}
.container.container--ex {
  padding: 0;
}
.container--np {
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .container {
    max-width: 1280px;
    padding: 0;
  }
  .container.container--ex {
    max-width: 1920px;
  }
}

/* ====== 文字設定 ====== */
ol,
ul {
  padding-left: 1.3em;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

ol:not(:last-child),
ul:not(:last-child) {
  margin-bottom: 1em;
}

ol li,
ul li,
th,
td,
p {
  line-height: 2;
}

h2,
h3,
h4 {
  line-height: 1.5;
}

.home ul,
header ul,
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0.5em auto 1em;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h2 {
  color: #30303d;
  font-size: 32px;
  margin: 0 auto 0.9em;
}

h2 .sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0 0 0.5em 0.5em;
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 20px;
    margin-bottom: 1.3em;
  }
  h2 .sub {
    font-size: 10px;
  }
}

h3 {
  color: #30303d;
  font-size: 26px;
  margin: 0 auto 0.9em;
}

h3 .sub {
  display: block;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 0 0 0.5em 0.5em;
}

@media screen and (max-width: 600px) {
  h3 {
    font-size: 18px;
    margin-bottom: 1.3em;
  }
  h3 .sub {
    font-size: 10px;
  }
}

h4 {
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 600px) {
  h4 {
    font-size: 14px;
    margin-bottom: 1em;
  }
}

/* ====== 文字設定とか(※上書) ====== */
html {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
}

body {
  background-color: #EDEFF4;
}

body:has(main#thanks_lp) {
  background-color: #fff;
}

p,
h1,
h2,
h3,
h4 {
  line-height: 1.5em;
  color: #22242E;
  margin: 0;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

p {
  font-size: 16px;
  line-height: 1.75em;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 18px;
  }
}

/* ====== リンク ====== */
.home a,
header a,
footer a {
  text-decoration: none;
}

.home a {
  color: #30303d;
}

@media screen and (min-width: 768px) {
  footer a:hover {
    text-decoration: underline;
  }
}

/* ====== メインボタン ====== */
.btn {
  text-align: center;
  margin: calc(1.875em + 8px) auto 8px;
}

.btn a {
  background: #f0f1f2;
  border-radius: 5px;
  box-shadow: 0 8px 0 0 #d5d8da;
  color: #30303d;
  font-size: 16px;
  display: inline-block;
  max-width: 240px;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  padding: 0.7em 0.3em;
  transition: 0.3s;
  position: relative;
}

.btn a:before,
.btn a:after {
  content: "";
  display: block;
  position: absolute;
}

.btn a:after {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right: none;
  border-left: 8px solid #30303d;
  transition: 0.3s;
}

.btn a:hover {
  box-shadow: 0 1px 0 0 #d5d8da;
  transform: translateY(7px);
}

@media screen and (max-width: 600px) {
  .btn a {
    font-size: 14px;
  }
}

/* TOPに戻るボタン */
.btn.back a:after {
  left: 15px;
  right: auto;
  border-left: none;
  border-right: 8px solid #30303d;
}

/* ボタン */
/* btnSet */
.btnSet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* ====== ブロックの高さ設定 ====== */
.row:not(:last-child) {
  margin-bottom: 5%;
}

@media screen and (max-width: 600px) {
  .row:not(:last-child) {
    margin-bottom: 10%;
  }
}

/* ====== 幅寄せ指定 ====== */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ====== 画像要素 ====== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ============================== */
/* ヘッダー */
/* ============================== */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 10000;
  padding: 0 10px;
  max-width: 1920px;
  transition: .25s;
}
.header__logo {
  width: 160px;
  line-height: 1;
}
.header__logo > img {
  object-fit: contain;  
}
.header__menu--pc {
  display: none;
}
/* ハンバーガー */
.header__menu--sp {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
  text-align: center;
}
.header__menu--sp::before,
.header__menu--sp::after,
.header__menu--sp > span {
  content: "";
  display: block;
  height: 1px;
  width: 22px;
  background-color: gray;
  transition: 0.25s;
}
.header__menu--sp::before,
.header__menu--sp::after {
  position: absolute;
}
.header__menu--sp::after {
  bottom: 14px;
}
.header__menu--sp::before {
  top: 14px;
}
.header__menu--sp:hover {
  opacity: 0.8;
  cursor: pointer;
}
.header__menu--sp.open > span {
  opacity: 0;
  transform: translateX(-100%);
}
.header__menu--sp.open::before {
  transform: translate(-3px, 3px) rotate(-45deg);
  transform-origin: right;
}
.header__menu--sp.open::after {
  transform: translate(-3px, -2px) rotate(45deg);
  transform-origin: right;
}
@media screen and (max-width: 1279px) {
  .header.active {
    background-color: rgba(255, 255, 255, 0.93);
  }
}
@media screen and (min-width: 1280px) {
  .header__logo {
    width: 240px;
  }
  .header__menu--sp {
    display: none;
  }
  .header__menu--pc {
    display: block;
  }
}

/* ヘッダーボタン */
.headerBtn {
  position: relative;
  z-index: 0;
  display: inline-block;
  background-color: #e27220;
  padding: 10px;
  text-align: center;
  overflow: hidden;
}
.headerBtn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: 0.25s;
}
.headerBtn > p {
  color: white;
  font-weight: bold;
}
.headerBtn:hover::before {
  transform: translateX(0);
}
.headerBtn:hover > p {
  color: #e27220;
}
.headerBtn:hover path {
  fill: #e27220;
}
.headerBtn > p:first-child {
  font-size: 24px;
  line-height: 1.25em;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.headerBtn svg {
  width: 22px;
  fill: white;
}
.headerBtn > p:last-child {
  font-size: 14px;
  white-space: nowrap;
}



/* ============================== */
/* フッター */
/* ============================== */
footer {
  background: #1e2436;
  z-index: 99;
  position: relative;
}

/* ====== フッターインフォ ====== */
/* #footer .flexbox {} */

#footer .flexbox .img_box {
  width: 50%;
  padding-top: 426px;
  position: relative;
}

@media screen and (max-width: 1280px) {
  #footer .flexbox .img_box {
    padding-top: 33.28125%;
  }
}

@media screen and (max-width: 767px) {
  #footer .flexbox .img_box {
    width: 100%;
    padding-top: 43.54167%;
  }
}

#footer .flexbox .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#footer .flexbox .img_box .h2_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#footer .flexbox .img_box .h2_area .sub {
  display: block;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin: 0;
}

#footer .flexbox .img_box h2 {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin-bottom: 0;
  white-space: nowrap;
  margin-bottom: 0;
  padding-bottom: 0;
}

#footer .flexbox .img_box h2:before,
#footer .flexbox .img_box h2:after {
  content: none;
}

#footer .flexbox .f_info_box {
  display: table;
  margin: auto;
  padding: 7.16418% 0;
}

#footer .flexbox .f_info_box h3,
#footer .flexbox .f_info_box p,
#footer .flexbox .f_info_box th,
#footer .flexbox .f_info_box td {
  color: #fff;
  font-weight: bold;
}

#footer .flexbox .f_info_box .h3_area .sub {
  display: block;
  font-size: 12px;
  margin-bottom: 0;
}

#footer .flexbox .f_info_box h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 1001px) {
  #footer .flexbox .f_info_box h3 {
    font-size: 26px;
    margin-bottom: 0.7em;
  }
}

#footer .flexbox .f_info_box th {
  vertical-align: text-top;
}

#footer .flexbox .f_info_box td {
  padding-left: 1em;
}

#footer .flexbox .f_info_box td a {
  color: #fff;
}

#footer .flexbox .f_info_box td span {
  display: block;
}

@media screen and (min-width: 1001px) {
  #footer .flexbox .f_info_box td span {
    margin-left: 0.5em;
    display: inline;
  }
}

#footer .flexbox .f_info_box .button {
  display: block;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
  margin: 16px 0 0;
  padding: 0.18em 0;
  max-width: 232px;
  transition: 0.3s;
  position: relative;
}

@media screen and (min-width: 1001px) {
  #footer .flexbox .f_info_box .button {
    font-size: 18px;
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  #footer .flexbox .f_info_box .button {
    max-width: none;
  }
}

#footer .flexbox .f_info_box .button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#footer .flexbox .f_info_box .button:hover {
  background: rgba(255, 255, 255, 0.1);
}

#footer .flexbox .f_info_box .button:hover:after {
  right: 6%;
}

@media screen and (min-width: 768px) {
  #footer .flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #footer .flexbox .img_box h2 {
    font-size: 32px;
  }
  #footer .flexbox .f_info_box {
    padding: 0;
  }
  #footer .flexbox .f_info_box h3 {
    text-align: left;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  #footer .flexbox .f_info_box th,
  #footer .flexbox .f_info_box td {
    line-height: 1.5;
  }
}

/* ====== フッターコピーライト ====== */
.copyright {
  background: #1a1a1a;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 0;
}

.copyright__wrapper {
  max-inline-size: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto;
  gap: 8px 16px;
  align-items: center;
  justify-items: center;
}

.copyright__copyright {
  color: currentColor;
  grid-row: 2 / 3;
  text-align: center;
  font-size: 14px;
}

.copyright__links {
  grid-row: 1 / 2;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  inline-size: 100%;
  justify-content: end;
  gap: 16px;
  text-align: center;
  border-block-end: 1px solid #444;
}

.copyright__linkItem {
  line-height: 1.5;
}

.copyright__linkItem a {
  color: currentColor;
  text-decoration: none;
  font-size: 12px;
  display: block;
  padding: 8px;
}

.copyright__linkItem a:hover {  
  text-decoration: none;
}

@media screen and (min-width: 700px) {
  .copyright {
    padding: 0.56em 10px;
  }
  .copyright__wrapper {
    grid-template-columns: max-content auto;
    justify-items: normal;
  }
  .copyright__copyright {
    grid-row: auto;
    text-align: start;
  }
  
  .copyright__links {
    inline-size: auto;
    grid-template-columns: repeat(3, auto);
    grid-row: auto;
    border-block-end: none;
  }

  .copyright__linkItem a {
    border-block-end: 1px solid transparent;
  }

  .copyright__linkItem a:hover {
    border-block-end: 1px solid #444;
  }
}

/* ============================== */
/* PCサイド追従ボタン */
/* ============================== */
#pc_fixed {
  display: none;
  z-index: 100;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  #pc_fixed {
    display: none !important;
  }
}

#pc_fixed ul {
  list-style: none;
  padding: 0;
}

#pc_fixed ul li {
  transition: 0.3s;
}

#pc_fixed ul li:last-child {
  margin-top: 10px;
}

#pc_fixed ul li:hover {
  opacity: 0.8;
}

/* ============================== */
/* sp追従ボタン */
/* ============================== */
/* 高さを取っておく */
@media screen and (max-width: 767px) {
  /* main section:last-of-type {
    margin-bottom: 19.71831%;
  } */
}

#sp_fixed {
  display: none;
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  /* 電話パーツ */
  /* メール・ラインパーツ */
}

@media screen and (min-width: 768px) {
  #sp_fixed {
    display: none !important;
  }
}

#sp_fixed #sp_footer_title {
  position: relative;
}

#sp_fixed #sp_footer_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 1.40845%;
  width: 16.90141%;
  height: 91.42857%;
  background: url(../img/common/footer/sp_footer_staff.png) no-repeat center/contain;
}

#sp_fixed #sp_footer_inner {
  display: none;
  border: 2px solid #1e2436;
  background: #fff;
  padding: 4.50704%;
}

#sp_fixed .tel_info a {
  display: block;
  background: -moz-linear-gradient(top, #fff, #e5eaed);
  background: -webkit-linear-gradient(top, #fff, #e5eaed);
  background: linear-gradient(to bottom, #fff, #e5eaed);
  border: 2px solid #b8c7cf;
  border-radius: 10px;
  color: #1e2436;
  padding: 20px 0 14px;
}

#sp_fixed .tel_info .yantramanav {
  display: table;
  font-size: 10vw;
  font-weight: bold;
  line-height: 0.75;
  margin: auto;
  padding-left: 1.1em;
  position: relative;
}

#sp_fixed .tel_info .yantramanav:after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  width: 0.8276em;
  height: 0.8276em;
  background: url(../img/purchase_lp/header/tel_icon.svg) no-repeat center/contain;
}

#sp_fixed .reception,
#sp_fixed .comments {
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  margin: 0.5em auto 0;
  white-space: nowrap;
}

#sp_fixed .flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.50704%;
}

#sp_fixed .flexbox .mail_info,
#sp_fixed .flexbox .line_info {
  width: 48.25%;
}

#sp_fixed .flexbox .line_info {
  margin-left: 3.5%;
}

/*----------------
	委託販売LP SP優先
------------------*/

.cons {
  position: relative;
  z-index: 0;
}
.cons a {
  color: #101010;
  text-decoration: none;
}


/*----------------
	globalNav
------------------*/
.globalNav {
  transition: 0.25s;
  background-color: #101010df;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transform: translateX(100%);
  height: 100vh;
  width: 100%;
}
.globalNav .cvArea {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.globalNav.open {
  transform: translate(0);
}
.globalNav .cvArea {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .globalNav .cvArea {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .globalNav.open {
    display: none;
  }
}


/*----------------
	cvArea
------------------*/
.cvAreaHead {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cvAreaHead__boy {
  align-self: end;
}
.cvArea p,
.cvArea h2 {
  color: white;
}
.cvArea__border {
  height: 2px;
  background-color: #ffffff;
}
.cvArea {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: transparent linear-gradient(180deg, #eb6d00 0%, #d65a00 100%) 0% 0% no-repeat padding-box;
  padding: 32px 10px;
  margin: 30px auto;
}
.cvArea__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  object-fit: contain;
  transform: translate(30%, -30%);
  pointer-events: none;
  z-index: -1;
}
.cvArea__content {
  margin-top: 16px;
  text-align: center;
}
.cvArea__content--hasMargin {
  margin-block-end: 20px;
}
.btnOnTxt__top {
  font-size: 16px;
}
.cvArea__ttl {
  text-align: center;
}
.cvArea__detail {
  text-align: left;
  margin-top: 20px;
}
.cvArea__detail > p {
  font-size: 14px;
}
.btnOnTxt {
  text-align: center;
}
.btnOnTxt > .cvBtn {
  margin-top: 5px;
}
.cvArea__btns {
  max-width: 1000px;
  margin-top: 20px;
}
.cvArea__btns > .btnOnTxt + .btnOnTxt {
  margin-top: 10px;
}
.cvBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background-color: #ffffff;
  border-radius: 40px;
  font-size: 34px;
  font-weight: bold;
  line-height: 1em;
  overflow: hidden;
  z-index: 0;
}
.cvBtn:hover {
  cursor: pointer;
}
.cvBtn > img {
  width: 30px;
  height: 30px;
}
.cvBtn.cvBtn--tel:hover::before {
  transform: translate(0);
}
.cvBtn.cvBtn--mail:hover::before {
  transform: translate(0);
}
.cvBtn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  background-color: white;
  transform: translate(-100%);
  transition: 0.25s;
}
.cvBtn::after {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(-45deg);
}
.cvBtn.cvBtn--mail::before {
  background-color: #101010;
}
.cvBtn.cvBtn--tel {
  background-color: #ffd627;
}
.cvBtn.cvBtn--mail {
  color: #e27220;
  font-size: 22px;
}
.cvBtn.cvBtn--mail::after {
  border-color: #e27220;
}
@media screen and (min-width: 768px) {
  .cvArea {
    margin: 0;
  }
  .cvArea__ttl {
    font-size: clamp(2rem, 1.5714285714285714rem + 0.8928571428571428vw, 2.375rem);
  }
  .cvArea__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 32px;
  }
  .cvArea__content {
    margin-top: 0;
  }
  .cvArea__content > p {
    font-size: 18px;
  }
  .cvArea__detail {
    margin-top: 32px;
    text-align: center;
  }
  .cvArea__logo {
    max-width: 454px;
    transform: translate(0);
  }
  .btnOnTxt__top {
    font-size: 18px;
  }
  .cvArea__btns > .btnOnTxt + .btnOnTxt {
    margin: 0;
  }
  .cvBtn {
    min-height: 88px;
    padding: 24px;
  }
  .cvBtn.cvBtn--tel {
    font-size: clamp(2.125rem, 1.4107142857142858rem + 1.488095238095238vw, 2.75rem);
  }
  .cvBtn.cvBtn--mail {
    font-size: clamp(1.375rem, 0.9464285714285714rem + 0.8928571428571428vw, 1.75rem);
  }
  .btnOnTxt > .flexToggle--pc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cvArea.cvArea--nomargin {
    margin-block: 0;
  }
}

@media screen and (min-width: 1000px) {
  .cvAreaHead {
    grid-template-columns: 1fr auto 1fr;
  }
  .cvAreaHead__head {
    grid-column: 2 / 3;
  }
  .cvAreaHead__boy {
    grid-column: 3 / 4;
    align-self: end;
  }
}

@media screen and (max-width: 480px) {
  .cvArea__ttl, .cvArea__content {
    text-align: start;
  }
  .cvAreaHead__head {
    margin-inline-end: -38px;
    z-index: 2;
  }
  .cvAreaHead__boy {
    translate: 16px;  
  }
}

@media screen and (max-width: 420px) {
  .cvAreaHead {
    grid-template-columns: 1fr 110px;
  }

  .cvAreaHead__head {
    display: contents;
  }

  .cvArea__ttl {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .cvAreaHead__head > .cvArea__content {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-inline-end: -30px;
    z-index: 2;
  }
  .cvAreaHead__boy {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .cvBtn {
    font-size: 30px;
  }

  .cvBtn > img {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 360px) {
  .cvArea__ttl, .cvArea__content {
    text-align: center;
  }
  .cvAreaHead__head {
    display: block;
    margin: 0;
  }
  .cvAreaHead__head > .cvArea__content {
    margin: 0;
  }
  .cvAreaHead__boy {
    display: none;
  }
}