@charset "UTF-8";
/*-------------------------------------------
 共通
---------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3e3e3e;
  background: #f3f3f3;
  font-weight: 500;
  line-height: 1.45;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

a {
  cursor: pointer;
}

img {
  width: 100%;
}

.title-section {
  font-family: "Courgette", cursive;
}

.util-tll {
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 60px 0 40px;
  font-size: 36px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .util-tll {
    padding: 30px 0;
    font-size: 32px;
  }
}

/*------------------------------------------
drawer
------------------------------------------ */
@media (max-width: 767px) {
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
    追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: fixed;
    background: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  /*ボタン内側*/
  .openbtn .openbtn-area {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #3e3e3e;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると
  線と周りのエリアが回転して×になる*/
  .openbtn.is-active .openbtn-area {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
  .openbtn.is-active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-135deg);
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .openbtn.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.is-active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(135deg);
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}
/*------------------------------------------
header
------------------------------------------ */
.header {
  height: 70px;
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.heder-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .heder-container {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .heder-container {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .header-logo img {
    width: 70%;
  }
}

.openbtn {
  margin-left: auto;
}

.header-nav {
  margin-left: auto;
}

.header-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .header-items {
    display: block;
  }
}

.header-item {
  margin-left: 30px;
}
.header-item a {
  color: #3e3e3e;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
}
.header-item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-item a:hover::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*------------------------------------------
fst-visual
------------------------------------------ */
.visual {
  padding-top: 70px;
  font-size: 24px;
  font-weight: 700;
}

.fst-visual {
  padding-top: 57.03125%;
  background-image: url(../img/img_fv.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  text-align: center;
}

.visual-tll {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 700;
  line-height: 1.5;
  -moz-text-align-last: left;
  text-align-last: left;
}
@media (max-width: 767px) {
  .visual-tll {
    top: 50%;
    left: 7%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
  }
}

.visual-tll__lead-em {
  font-size: 2em;
}
@media (max-width: 767px) {
  .visual-tll__lead-em {
    font-size: 1.5em;
  }
}

.visual-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*------------------------------------------
service
------------------------------------------ */
.service {
  position: relative;
  background: #f3f3f3;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .service-inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .service-inner {
    width: 90%;
  }
}

.service-subtll {
  font-size: 16px;
}

.service-list {
  margin: auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 110px 80px;
  border-radius: 30px;
  -webkit-box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
  box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-list {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .service-list {
    display: block;
    padding: 30px 20px;
  }
}

.service-icon {
  font-size: 100px;
}

.service-icon02 {
  font-size: 90px;
}

.service-item {
  text-align: center;
}
.service-item dt {
  font-weight: 700;
}
@media (max-width: 767px) {
  .service-item dt {
    padding-top: 30px;
  }
}
.service-item dd {
  text-align: left;
  margin-top: 30px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service-item dd {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .service-item dd {
    font-size: 14px;
    margin-top: 0;
    text-align: center;
  }
}

.bgimg {
  margin-bottom: 480px;
}
@media (max-width: 767px) {
  .bgimg {
    margin-bottom: 250px;
  }
}
.bgimg::after {
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_img.png) no-repeat 30% top/cover;
  z-index: -11;
}

/* bgの三角上部 ---------------------------------------*/
.custom-shape-divider-top-1671170766 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1671170766 svg {
  position: absolute;
  display: block;
  width: calc(100% + 1.3px);
  height: 300px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  z-index: -10;
}

.custom-shape-divider-top-1671170766 .shape-fill {
  fill: #555555;
}

/* bgの三角下部 */
.custom-shape-divider-bottom-1671170799 {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 100%;
  line-height: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: -10;
}

.custom-shape-divider-bottom-1671170799 svg {
  position: absolute;
  display: block;
  width: calc(100% + 1.3px);
  height: 300px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #f3f3f3;
}

.custom-shape-divider-bottom-1671170799 .shape-fill {
  fill: #555555;
}

/*------------------------------------------
work
------------------------------------------ */
.work {
  margin: 88px 0;
  background: #f3f3f3;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .work {
    margin-top: 50px;
  }
}

.work-tll {
  color: #3e3e3e;
}

.work-subtll {
  font-size: 16px;
  color: #3e3e3e;
}

.card__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .card__items {
    display: block;
  }
}

.card__item {
  width: calc(33% - 40px);
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .card__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .card__item {
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.card-title {
  font-weight: 700;
}

.card-text {
  font-size: 14px;
}

/*------------------------------------------
about
------------------------------------------ */
.about {
  padding-bottom: 160px;
  background: #f3f3f3;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 80px;
  }
}

.about-inner {
  background: #fff;
  padding-bottom: 60px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .about-inner {
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-inner {
    padding-bottom: 30px;
  }
}

.about-tll {
  color: #3e3e3e;
}

.about-subtll {
  font-size: 16px;
  color: #3e3e3e;
}

.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-container {
    display: block;
  }
}

.about-txt {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  padding: 0 0 0 96px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .about-txt {
    margin-bottom: 60px;
    padding: 0;
    width: 90%;
    margin: auto;
    font-size: 14px;
    font-weight: 500;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-txt {
    width: 90%;
    font-weight: 500;
    padding-left: 50px;
    font-size: 16px;
  }
}
.about-txt a {
  position: absolute;
  content: "";
  top: 80%;
  left: 80%;
  font-weight: 500;
  color: #3e3e3e;
  -webkit-transition: all 1s;
  transition: all 1s;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-txt a {
    left: 75%;
  }
}
@media (max-width: 767px) {
  .about-txt a {
    top: 105%;
    left: 70%;
    font-size: 14px;
    display: inline-block;
    padding-right: 0;
  }
}

.profile-btn {
  position: relative;
  padding-right: 30px;
  padding-bottom: 5px;
}
.profile-btn::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.profile-btn:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.about-img {
  padding-right: 50px;
}
@media (max-width: 767px) {
  .about-img {
    padding-right: 0;
  }
}
.about-img img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
}
@media (max-width: 767px) {
  .about-img img {
    display: block;
    margin: 60px auto 0;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-img img {
    margin: auto;
  }
}

/*------------------------------------------
contact
------------------------------------------ */
.contact {
  margin-top: -2px;
  background: #f3f3f3;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 60px;
  }
}

.contact-inner {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 960px;
  margin: auto;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .contact-inner {
    width: 90%;
    padding-bottom: 30px;
  }
}

.contact-tll {
  color: #3e3e3e;
  margin-top: -60px;
}

.contact-subtll {
  color: #3e3e3e;
  font-size: 16px;
}

.contact-btn a {
  font-size: 24px;
  font-weight: 700;
  display: block;
  color: #3e3e3e;
  width: 640px;
  margin: auto;
  padding: 35px 0;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 60px;
  background: #fcfcfc;
  -webkit-box-shadow: 5px 5px 10px #6f6f6f, -5px -5px 10px #ffffff;
  box-shadow: 5px 5px 10px #6f6f6f, -5px -5px 10px #ffffff;
}
.contact-btn a:hover {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
@media (max-width: 767px) {
  .contact-btn a {
    width: 90%;
  }
}

.contact-txt {
  margin-top: 60px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.7083333333;
}
@media (max-width: 767px) {
  .contact-txt {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 500;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-txt {
    font-size: 16px;
    font-weight: 700;
  }
}

/*------------------------------------------
footer
------------------------------------------ */
footer {
  width: 100%;
  background: #555555;
}
@media (max-width: 767px) {
  footer {
    font-size: 12px;
  }
}

.footer-copyright {
  display: block;
  text-align: center;
  color: #fff;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .footer-copyright {
    padding: 10px;
  }
}

/*------------------------------------------
profile.html
contact.html
------------------------------------------ */
.profile,
.cntt {
  padding-top: 70px;
}

.profile__tll_wapper,
.cntt__tll_wapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 10px solid #000;
}
@media (max-width: 767px) {
  .profile__tll_wapper,
  .cntt__tll_wapper {
    display: block;
    text-align: center;
  }
}

.profile__tll,
.cntt__tll {
  font-size: 64px;
  color: #000;
  letter-spacing: 0.3em;
  font-family: "Courgette", cursive;
  padding: 44px 90px 44px 60px;
}
@media (max-width: 767px) {
  .profile__tll,
  .cntt__tll {
    font-size: 32px;
    padding: 22px 20px 0px;
  }
}

.profile__subtll,
.cntt__subtll {
  padding: 80px 0 60px;
}
@media (max-width: 767px) {
  .profile__subtll,
  .cntt__subtll {
    font-size: 10px;
    padding: 0 0 10px 0;
  }
}

.profile__names {
  color: #000;
}

.profile__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
@media (max-width: 767px) {
  .profile__name {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.profile__frst_name {
  font-size: 70px;
  padding: 40px 40px 0 60px;
}
@media (max-width: 767px) {
  .profile__frst_name {
    font-size: 24px;
    padding: 20px 20px 0 20px;
  }
}

.profile__scond_name {
  padding-left: 0;
}

.profile__frst_enname {
  font-size: 28px;
  padding-left: 114px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .profile__frst_enname {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .profile__frst_enname {
    font-size: 12px;
    padding: 0 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*------------------------------------------
profile.html contens
------------------------------------------ */
@media (max-width: 767px) {
  .contens__inner {
    width: 90%;
  }
}

.contens__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-perspective: 200px;
  perspective: 200px;
}
@media (max-width: 767px) {
  .contens__figure {
    display: block;
    text-align: center;
  }
}

.contens__txt {
  padding: 77px 0 0 60px;
  display: inline-block;
  line-height: 1.6875;
}
@media (max-width: 767px) {
  .contens__txt {
    padding: 20px 0;
    display: block;
  }
}

.contens__img {
  width: 250px;
  height: 250px;
  border-radius: 50px;
  margin: 77px 60px 0 0;
  -webkit-transform: perspective(200px) rotateY(-4deg);
  transform: perspective(200px) rotateY(-4deg);
}
@media (max-width: 767px) {
  .contens__img {
    margin: auto;
    padding: 0;
  }
}

.contens__hobby {
  margin: auto;
}

.contens__txt2 {
  padding-left: 60px;
  margin-top: -55px;
  margin-bottom: 86px;
  font-size: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contens__txt2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contens__txt2 {
    font-size: 14px;
    margin: 30px 0;
    padding: 0;
    text-align: center;
  }
}

/*------------------------------------------
profile.html my_profile
------------------------------------------ */
.my_profile_inner {
  padding-top: 54px;
}

.my_profile_wapper {
  margin-top: 60px;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .my_profile_wapper {
    display: block;
    width: 90%;
    margin: 0 auto 30px;
    padding-left: 0;
  }
}

.my_profile_wapper02 {
  margin-top: 60px;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .my_profile_wapper02 {
    display: block;
    width: 90%;
    margin: auto;
    padding-left: 0;
  }
}

.my_profile_tll {
  font-size: 24px;
  border: 1px solid #707070;
  padding: 5px 104px 5px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_tll {
    width: 300px;
    margin-bottom: 60px;
  }
}

.my_profile_tllSkill {
  font-size: 24px;
  letter-spacing: 0.1em;
  border: 1px solid #707070;
  padding: 5px 167px 5px 30px;
  display: inline;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.my_profile_info {
  padding: 19px 30px 30px 87px;
  font-size: 24px;
  line-height: 1.7083333333;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_info {
    padding: 20px 60px 50px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .my_profile_info {
    width: 90%;
    margin: auto;
    padding: 20px 0 60px;
    font-size: 16px;
  }
}

.my_profile_deta {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .my_profile_deta {
    padding-left: 28px;
  }
}

.my_profile_items {
  padding: 19px 0 30px 0;
  font-size: 24px;
  line-height: 1.7083333333;
}
@media (max-width: 767px) {
  .my_profile_items {
    padding: 10px 0;
  }
}
.my_profile_items li {
  padding-bottom: 30px;
}

.my_profile_item1 {
  position: relative;
}
.my_profile_item1::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 120%;
  border: 1px solid #707070;
  width: 300px;
  height: 22px;
}
.my_profile_item1::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 120%;
  border: 11px solid #000;
  width: 230px;
  height: 0px;
}
@media (max-width: 767px) {
  .my_profile_item1::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item1::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 230px;
    height: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_item1::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item1::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 230px;
    height: 0px;
  }
}

.my_profile_item2 {
  position: relative;
}
.my_profile_item2::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 120%;
  border: 1px solid #707070;
  width: 300px;
  height: 22px;
}
.my_profile_item2::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 120%;
  border: 11px solid #000;
  width: 230px;
  height: 0px;
}
@media (max-width: 767px) {
  .my_profile_item2::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item2::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 230px;
    height: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_item2::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item2::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 230px;
    height: 0px;
  }
}

.my_profile_item3 {
  position: relative;
}
.my_profile_item3::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 120%;
  border: 1px solid #707070;
  width: 300px;
  height: 22px;
}
.my_profile_item3::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 120%;
  border: 11px solid #000;
  width: 170px;
  height: 0px;
}
@media (max-width: 767px) {
  .my_profile_item3::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item3::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 170px;
    height: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_item3::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item3::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 170px;
    height: 0px;
  }
}

.my_profile_item4 {
  position: relative;
}
.my_profile_item4::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 120%;
  border: 1px solid #707070;
  width: 300px;
  height: 22px;
}
.my_profile_item4::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 120%;
  border: 11px solid #000;
  width: 170px;
  height: 0px;
}
@media (max-width: 767px) {
  .my_profile_item4::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item4::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 170px;
    height: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_item4::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item4::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 170px;
    height: 0px;
  }
}

.my_profile_item5 {
  position: relative;
}
.my_profile_item5::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 120%;
  border: 1px solid #707070;
  width: 300px;
  height: 22px;
}
.my_profile_item5::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 120%;
  border: 11px solid #000;
  width: 60px;
  height: 0px;
}
@media (max-width: 767px) {
  .my_profile_item5::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item5::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 60px;
    height: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .my_profile_item5::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 0;
    border: 1px solid #707070;
    width: 300px;
    height: 22px;
  }
  .my_profile_item5::after {
    position: absolute;
    content: "";
    top: 41px;
    left: 0;
    border: 11px solid #000;
    width: 60px;
    height: 0px;
  }
}

/*------------------------------------------
contact.html form
------------------------------------------ */
.cott__info {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7083333333;
  width: 577px;
  padding: 102px 0 90px 120px;
}
@media (max-width: 767px) {
  .cott__info {
    width: 90%;
    padding: 30px 0 0;
    margin: auto;
    font-size: 12px;
    font-weight: 500;
  }
}

.contact-list {
  padding-left: 120px;
}
@media (max-width: 767px) {
  .contact-list {
    padding: 0;
    width: 90%;
    margin: auto;
  }
}

.contact-item {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 50%;
  border: 0;
  font-size: 16px;
  padding: 0.2em 0.5em;
  -webkit-box-shadow: 5px 5px 15px rgba(96, 96, 96, 0.16);
  box-shadow: 5px 5px 15px rgba(96, 96, 96, 0.16);
  border-radius: 2px;
}
@media (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  textarea {
    width: 80%;
  }
}

input[type="text"],
input[type="email"] {
  height: 40px;
}

textarea {
  min-width: 122px;
  resize: vertical;
  height: 230px;
}

.contact-item-title {
  position: relative;
}

.contact-item-input {
  margin-top: 10px;
}

.contact-item-inline {
  position: absolute;
  top: 5px;
  background: #fd0202;
  color: #fff;
  font-size: 14px;
  padding: 2px 6px;
  margin-left: 20px;
  border-radius: 6px;
}

.util-link {
  cursor: pointer;
  border: none;
  margin: 30px 0;
  padding: 5px 0;
  width: 80px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffec9f, #ffbb00);
}

.contact-message {
  text-align: center;
  display: none;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 60px;
}
.contact-message.-error {
  color: #f00;
}
