@charset "UTF-8";
body {
  color: #403f3c;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 104px;
}

@media (max-width: 1230px) {
  body {
    margin-top: 64px;
  }
}
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.pagetop {
  height: 64px;
  width: 64px;
  position: fixed;
  right: 80px;
  bottom: 80px;
  background: white;
  border: solid 3px #ec8244;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.pagetop .pagetop_arrow {
  height: 12px;
  width: 12px;
  border-top: 3px solid #ec8244;
  border-right: 3px solid #ec8244;
  transform: translateY(20%) rotate(-45deg);
}
.pagetop:hover {
  background: #ec8244;
  border: solid 3px #ffffff;
}
.pagetop:hover .pagetop_arrow {
  border-top: 3px solid white;
  border-right: 3px solid white;
}

@media screen and (max-width: 1079px) {
  .pagetop {
    height: 48px;
    width: 48px;
    right: 32px;
    bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  .pagetop {
    height: 48px;
    width: 48px;
    right: 16px;
    bottom: 16px;
  }
}
/* ==========================
section共通クラス
===========================*/
section {
  padding: 160px 0;
}

.content {
  max-width: 1080px;
  margin: auto;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 64px 0;
  }
  .content {
    margin: 0 24px;
  }
}
.primary {
  color: #ec8244;
}

.secondary {
  color: #403f3c;
}

.white {
  color: white;
}

.en {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

h2,
h3,
p,
a,
th,
td,
span {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #403f3c;
}

@media screen and (max-width: 1079px) {
  h2,
h3,
p,
a,
th,
td,
span {
    font-size: 14px;
  }
}
.contact-btn {
  cursor: pointer;
  width: 200px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.contact-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  display: block;
  border-radius: 20px;
  transition: 0.2s;
}
.contact-btn .btn-text {
  margin-left: 24px;
  font-size: 14px;
  line-height: 14px;
  z-index: 1;
  position: relative;
  margin-right: 10%;
}
.contact-btn .btn-img {
  width: 30px;
  height: 16px;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 10;
}
.contact-btn:hover:before {
  width: 100%;
}
.contact-btn:hover .btn-img {
  z-index: 10;
  width: 42px;
}

.contact-btn-orange {
  border: 3px solid #ec8244;
  color: #ec8244;
  background: #ffffff;
}
.contact-btn-orange:before {
  background: #ec8244;
}
.contact-btn-orange .btn-text {
  color: #ec8244;
}
.contact-btn-orange .btn-img {
  background-image: url(../img/btn_arrow.svg);
}
.contact-btn-orange:hover .btn-text {
  color: #ffffff;
}
.contact-btn-orange:hover .btn-img {
  background-image: url(../img/btn_arrow-hover.svg);
}

.contact-btn-white {
  border: 3px solid #ffffff;
  color: #ffffff;
}
.contact-btn-white:before {
  background: #ffffff;
}
.contact-btn-white .btn-text {
  color: #ffffff;
}
.contact-btn-white .btn-img {
  background-image: url(../img/btn_arrow-white.svg);
}
.contact-btn-white:hover .btn-text {
  color: #ec8244;
}
.contact-btn-white:hover .btn-img {
  background-image: url(../img/btn_arrow-white-hover.svg);
}

.content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.content-title__top {
  text-align: center;
}
.content-title__top h2 {
  font-size: clamp(48px, 5vw, 64px);
  text-transform: capitalize;
}
.content-title__top p {
  font-size: clamp(16px, 1.5vw, 20px);
}
.content-title__bottom {
  font-size: clamp(16px, 2vw, 24px);
  text-align: center;
  line-height: 2em;
}

@media screen and (max-width: 1079px) {
  .content-title {
    gap: 32px;
  }
}
.title-bottom-line {
  width: 66px;
}

.sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* ==========================
ヘッダー
===========================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 104px;
  padding: 32px 96px;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: #ffffff;
}
header .header__rogo img {
  width: 300px;
}
header .header__rogo:hover {
  opacity: 0.6;
}
header .header__nav--pc ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .header__nav--pc ul .nav a {
  white-space: nowrap;
  font-size: 14px;
}
header .header__nav--pc ul .nav a:hover {
  color: #ec8244;
}

.header__nav--sp {
  display: none;
}

@media (max-width: 1230px) {
  header {
    padding: 0 24px;
    height: 64px;
  }
  header .header__rogo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .header__rogo img {
    width: 200px;
  }
  header .header__nav--pc {
    display: none;
  }
  header .header__nav--sp {
    display: block;
    /*========= ボタンのためのCSS ===============*/
    /*×に変化*/
  }
  header .header__nav--sp #g-nav.panelactive {
    top: 64px;
  }
  header .header__nav--sp #g-nav {
    /*ナビ設定*/
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    transition: all 0.6s;
    padding: 0 32px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .header__nav--sp #g-nav .header__nav-sp--top {
    width: 100%;
    margin-top: -64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  header .header__nav--sp #g-nav .header__nav-sp--top .nav a {
    font-size: 14px;
    color: #ec8244;
  }
  header .header__nav--sp #g-nav .header__nav-sp--top .nav-line {
    width: 100%;
    border: 1px solid #ec8244;
  }
  header .header__nav--sp #g-nav .header__nav-sp--top .header__nav-sp--bottom {
    margin-top: 16px;
  }
  header .header__nav--sp .openbtn {
    position: fixed;
    align-items: center;
    right: 16px;
    top: 8px;
    width: 48px;
    height: 48px;
  }
  header .header__nav--sp .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 15px;
    height: 1px;
    border-radius: 1px;
    background-color: #ec8244;
    width: 18px;
  }
  header .header__nav--sp .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  header .header__nav--sp .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  header .header__nav--sp .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  header .header__nav--sp .openbtn.active span:nth-of-type(1) {
    top: 18px;
    right: 24px;
    transform: translateY(6px) rotate(-45deg);
    width: 18px;
    height: 1px;
    border-radius: 1px;
  }
  header .header__nav--sp .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header__nav--sp .openbtn.active span:nth-of-type(3) {
    top: 30px;
    right: 24px;
    transform: translateY(-6px) rotate(45deg);
    width: 18px;
    height: 1px;
    border-radius: 1px;
  }
}
/* ==========================
トップ
===========================*/
.top {
  background: linear-gradient(145deg, #ec8244 0%, #ec8244 50%, #f7a64e 50%, #f7a64e 100%);
  display: flex;
  align-items: center;
  padding: 0;
}
.top__text {
  padding: 96px 0 96px 96px;
  width: 55%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top__text h2 {
  font-size: clamp(16px, 4vw, 48px);
  line-height: 1em;
  color: #ffffff;
}
.top__text h2 .top-big {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0em;
  color: #ffffff;
}
.top__text h2 .top-small {
  font-size: clamp(24px, 5vw, 56px);
  line-height: 1em;
  align-items: center;
  padding: 0;
  color: #ffffff;
}
.top__text-main {
  display: block;
  margin-top: 8px;
}
.top__text-main h1 {
  font-size: clamp(32px, 6vw, 120px);
  display: inline-block;
  white-space: nowrap;
  background-color: #1f1f1b;
  padding: 8px 24px;
  margin-bottom: 16px;
}
.top__text-main h1:last-child {
  margin-bottom: 0;
}
.top__text-bottom {
  font-size: clamp(16px, 4vw, 48px);
  color: #ffffff;
  line-height: 1em;
}
.top__text h3 {
  font-size: clamp(14px, 1.5vw, 24px);
  color: #ffffff;
}
.top__img {
  margin-top: auto;
}
.top__img img {
  width: 100%;
  height: 100%;
  margin-bottom: -5px;
}

@media (max-width: 1230px) {
  .top__text {
    width: 55%;
    padding: 64px 0 64px 24px;
    gap: 8px;
  }
  .top__text-main h1 {
    margin-bottom: 8px;
  }
  .top__img {
    width: 50%;
  }
  .top__img img {
    width: 130%;
  }
}
@media screen and (max-width: 640px) {
  .top {
    background: url(../img/top-sp.webp) #ec8244;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100 - 64px);
    align-items: flex-end;
  }
  .top__text {
    padding: 24px;
    width: 100%;
    gap: 8px;
  }
  .top__text h1,
.top__text h2,
.top__text h3 {
    text-shadow: 2px 2px 3px rgba(31, 31, 27, 0.7019607843);
  }
  .top__text-main h1 {
    padding: 0 16px;
    margin-bottom: 8px;
  }
  .top__img {
    display: none;
  }
}
/* ==========================
catch キャッチ
===========================*/
.catch {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.catch h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  color: #ec8244;
}
.catch h2 span {
  font-size: clamp(32px, 4vw, 48px);
  color: #ec8244;
}
.catch p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 3em;
  text-align: center;
  text-align: justify;
}

@media screen and (max-width: 1079px) {
  .catch {
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  .catch p {
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 2em;
  }
}
/* ==========================
Finance 財務について
===========================*/
.finance {
  background-color: #f9f8f5;
}
.finance__title {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}
.finance__title h2 {
  font-size: clamp(24px, 4vw, 48px);
}
.finance__title--bottom h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 2em;
  margin-bottom: 24px;
}
.finance__title--bottom p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2em;
  text-align: justify;
  text-justify: inter-ideograph;
}
.finance__content {
  background-color: #ffffff;
  padding: 96px 64px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.finance__content--top {
  text-align: center;
}
.finance__content--top h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  color: #ec8244;
  margin-bottom: 8px;
}
.finance__content--top p {
  font-size: clamp(16px, 1.5vw, 20px);
}
.finance__content--bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.finance__content--bottom--group-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.finance__content--bottom--group-title img {
  width: 50px;
}
.finance__content--bottom--group-title p {
  font-size: clamp(16px, 1.5vw, 20px);
}
.finance__content--bottom--group-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2em;
  text-align: justify;
}
.finance__content .finance-line {
  width: 100%;
  border: 1px solid #403f3c;
}

@media screen and (max-width: 1079px) {
  .finance__title {
    gap: 32px;
    margin-bottom: 40px;
  }
  .finance__content {
    padding: 24px;
    gap: 32px;
  }
  .finance__content--bottom {
    gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  .finance__content--bottom--group-title {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }
  .finance__content--bottom--group-text {
    line-height: 1.5em;
  }
}
/* ==========================
contact コンタクトページに移動
===========================*/
.contact-jump {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/contact-back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact-jump p {
  font-size: clamp(16px, 2vw, 24px);
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .contact-jump {
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  .contact-jump p {
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .contact-jump p br {
    display: none;
  }
}
/* ==========================
about us ヒロ財務について
===========================*/
.about {
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding: 160px 0 0 0;
}
.about__content {
  display: flex;
}
.about__content--group {
  width: 25%;
  padding: 40px 0;
  text-align: center;
}
.about__content--group--inner-num {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.about__content--group--inner .about-line {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  margin: 0 auto 32px;
}
.about__content--group--inner-img {
  width: 80%;
}
.about__content--group--inner-text {
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 16px;
}
.about__content--group--inner-text .about__text-bg {
  font-size: clamp(32px, 5vw, 64px);
}
.about__content--group--inner-text .about__text-sm {
  font-size: clamp(16px, 1.5vw, 20px);
}
.about__content .about-left {
  background-color: #f7a64e;
}
.about__content .about-right {
  background-color: #ec8244;
}

@media screen and (max-width: 1079px) {
  .about {
    gap: 64px;
    padding: 64px 0 0 0;
  }
  .about__content--group {
    padding: 16px 0;
  }
}
@media screen and (max-width: 640px) {
  .about__content {
    display: block;
  }
  .about__content--group {
    width: 100%;
    padding: 16px 24px;
    display: flex;
    justify-content: center;
  }
  .about__content--group--inner {
    width: 200px;
    display: flex;
    gap: 16px;
  }
  .about__content--group--inner-num {
    margin-bottom: 0px;
  }
  .about__content--group--inner .about-line {
    width: 2px;
    height: 30px;
    border-radius: 2px;
    margin: auto 0;
  }
  .about__content--group--inner-img {
    display: none;
  }
  .about__content--group--inner-text {
    margin-bottom: 0px;
  }
}
/* ==========================
Flow ヒロ財務の流れ
===========================*/
.flow {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.flow__img {
  width: 100%;
}
.flow__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow__content--title {
  text-align: center;
  margin-bottom: 64px;
}
.flow__content--title h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 24px;
}
.flow__content--title p {
  font-size: clamp(14px, 1vw, 16px);
}
.flow__content--group {
  display: flex;
  margin-bottom: 32px;
  width: 100%;
}
.flow__content--group:last-child {
  margin-bottom: 0x;
}
.flow__content--group-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ec8244;
  width: 120px;
  height: 120px;
}
.flow__content--group-num-top {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.1em;
}
.flow__content--group-num-bottom {
  font-size: 36px;
  line-height: 1em;
  letter-spacing: 0.1em;
}
.flow__content--group-text {
  width: 100%;
  border: 4px solid #ec8244;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.flow__content--group-text-top {
  font-size: 16px;
}
.flow__content--group-text-bottom {
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
}

@media screen and (max-width: 1079px) {
  .flow {
    gap: 32px;
  }
  .flow__content--title {
    margin-bottom: 32px;
  }
  .flow__content--title h3 {
    margin-bottom: 16px;
  }
  .flow__content--group {
    display: block;
    margin-bottom: 24px;
  }
  .flow__content--group-num {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    height: 56px;
  }
  .flow__content--group-text {
    padding: 16px 16px;
    gap: 8px;
  }
}
/* ==========================
Voice お客様の声
===========================*/
.voice {
  background-color: #f7a64e;
  border-radius: 40px;
}
.voice-title {
  margin-bottom: 96px;
}
.voice__content {
  margin-bottom: 96px;
}
.voice__content--num {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 24px 0;
  background-color: #ffffff;
  border-radius: 10px 10px 0 0;
}
.voice__content--num img {
  width: 24px;
  margin-right: 16px;
}
.voice__content--num h3 {
  font-size: 32px;
  color: #ec8244;
  text-transform: capitalize;
}
.voice__content--group {
  background-color: #ffffff;
  border-radius: 0 20px 20px 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice__content--group--item-title {
  display: flex;
  align-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.voice__content--group--item-title-Q {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background-color: #ec8244;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.voice__content--group--item-title-question {
  width: calc(100% - 32px);
  font-size: clamp(16px, 1.5vw, 20px);
  text-align: justify;
}
.voice__content--group--item-text {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 2em;
}
.voice .day-open {
  position: relative;
}
.voice input[type=checkbox].day-on-off {
  position: absolute;
  top: 50%;
  display: block;
  opacity: 0;
}
.voice .day-open-label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  height: 78px;
  margin: 0 auto;
  background: #403f3c;
  border: 6px solid #ffffff;
  border-radius: 100px;
  color: white;
  font-weight: 700;
  font-size: 20px;
}
.voice .day-open-label:hover {
  opacity: 0.7;
}
.voice .day-open-label::after {
  content: "お客様の声をもっと見る";
}
.voice .day-open-label:active {
  box-shadow: 0 0 0 0;
}
.voice .day-on-off:checked ~ .day-open-label::after {
  content: "閉じる";
}
.voice .day-close {
  display: flex;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  position: relative;
}
.voice .day-close::before {
  content: "";
  background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.voice .day-on-off:checked ~ .day-close {
  padding: 0;
  height: auto;
}
.voice .day-on-off:checked ~ .day-close::before {
  background: none;
  z-index: -1;
}

@media screen and (max-width: 1079px) {
  .voice {
    padding-top: 32px;
  }
  .voice-title {
    margin-bottom: 32px;
  }
  .voice__content {
    margin-bottom: 32px;
  }
  .voice__content--group {
    padding: 24px;
  }
}
@media screen and (max-width: 640px) {
  .voice__content--num {
    padding: 8px 16px 0;
  }
  .voice__content--num img {
    margin-right: 8px;
  }
  .voice__content--group {
    padding: 24px 16px;
  }
  .voice__content--group--item-text {
    line-height: 1.5em;
  }
  .voice .day-open-label {
    width: 100%;
    height: 56px;
    border: 4px solid #ffffff;
    font-size: 16px;
  }
}
/* ==========================
Contact お問い合わせ
===========================*/
.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 96px;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact__content--group {
  width: 100%;
  display: flex;
}
.contact__content--group--title {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ec8244;
  padding: 16px 0;
}
.contact__content--group--title p {
  font-size: 20px;
  text-align: center;
}
.contact__content--group--text {
  width: calc(100% - 250px);
  padding: 16px 24px;
  border: 4px solid #ec8244;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__content--group--text p {
  font-size: clamp(14px, 1.2vw, 16px);
  text-align: justify;
}
.contact__content--group--text p span {
  color: #ec8244;
  font-size: clamp(14px, 1.2vw, 16px);
}
.contact__content--group--text .contact__text-top {
  margin-bottom: 4px;
}
.contact__content--group--text .contact__text-bottom {
  font-size: 20px;
  color: #ec8244;
  text-transform: lowercase;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  text-align: justify;
  align-items: center;
}
.contact__content--group--text .contact__text-bottom:hover {
  opacity: 0.5;
}
.contact__content--arrow {
  width: 32px;
}

@media screen and (max-width: 1079px) {
  .contact {
    gap: 32px;
  }
  .contact__content {
    gap: 16px;
  }
  .contact__content--group {
    display: block;
  }
  .contact__content--group--title {
    width: 100%;
    padding: 8px 0;
  }
  .contact__content--group--title br {
    display: none;
  }
  .contact__content--group--text {
    margin-top: -1px;
    width: 100%;
    padding: 16px 16px;
  }
}
@media screen and (max-width: 640px) {
  .contact .contact__content--group--text {
    display: block;
  }
  .contact .contact-title-sp {
    display: none;
  }
}
/* ==========================
Profile 自己紹介
===========================*/
.profile {
  background-color: #f9f8f5;
}
.profile__content {
  display: flex;
  margin-top: 64px;
}
.profile__content img {
  width: 30%;
  margin-right: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.profile__content--group {
  width: 70%;
}
.profile__content--group h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 8px;
  font-feature-settings: "palt";
}
.profile__content--group-text {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 2em;
  line-break: anywhere;
  text-align: justify;
}
.profile__content--group-name {
  font-size: 20px;
  margin-bottom: 16px;
}
.profile__content--group-name span {
  font-size: 16px;
  font-feature-settings: "palt";
}
.profile__content--group-information {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.profile__content--group-information:last-child {
  margin-bottom: 0px;
}
.profile__content--group-information-title {
  width: 80px;
  padding: 8px 0;
  background-color: #403f3c;
  font-size: 14px;
  margin-right: 8px;
  text-align: center;
  text-transform: capitalize;
}
.profile__content--group-information-text {
  width: calc(100% - 80px);
  font-size: 16px;
}
.profile__content--group-information .profile-email {
  text-transform: lowercase;
  letter-spacing: 0.1em;
  word-wrap: break-word;
}
.profile__content--group-information .profile-email:hover {
  color: #ec8244;
}

@media screen and (max-width: 1079px) {
  .profile__content {
    margin-top: 32px;
  }
  .profile__content img {
    width: 40%;
    margin-right: 24px;
  }
  .profile__content--group {
    width: 60%;
  }
  .profile__content--group-text {
    margin-bottom: 16px;
  }
  .profile__content--group-name {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 640px) {
  .profile__content {
    display: block;
  }
  .profile__content img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .profile__content--group {
    width: 100%;
  }
  .profile__content--group-text {
    line-height: 1.5em;
  }
  .profile__content--group-name {
    margin-bottom: 16px;
  }
  .profile__content--group-information {
    display: block;
    margin-bottom: 16px;
  }
  .profile__content--group-information-title {
    width: 100%;
    padding: 4px 0;
    margin-bottom: 8px;
  }
}
/* ==========================
フッター
===========================*/
footer {
  width: 100%;
  height: 104px;
  padding: 32px 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer__rogo img {
  width: 300px;
}
footer .footer__rogo:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1079px) {
  footer {
    padding: 0 24px;
    height: 64px;
  }
  footer .footer__rogo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footer__rogo img {
    width: 200px;
  }
  footer .footer-pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */