@charset "UTF-8";
@import url("https://use.typekit.net/fry4xbx.css");
@media screen and (min-width: 769px) {
  .viewSp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .viewPc {
    display: none;
  }
}

.futura {
  font-family: "futura-pt", sans-serif;
  line-height: 1;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 98;
  text-align: center;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .container {
  min-width: auto;
  padding: 0 60px;
}

.header__inner {
  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;
  height: 80px;
  margin: auto;
  position: relative;
}

.header__logo {
  width: 200px;
  margin: 0 20px 0 0;
  padding: 0;
}

.header__logo svg .fill {
  fill: #4c5054;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__info {
  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;
}

.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__item {
  line-height: 1;
}

.header__nav__item + .header__nav__item {
  margin-left: 30px;
}

@media screen and (max-width: 1023px) {
  .header__nav__item + .header__nav__item {
    margin-left: 15px;
  }
}

.header__nav__item--link {
  text-decoration: none;
  color: #004c9d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__icon {
  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;
  margin-left: 42px;
}

@media screen and (max-width: 1023px) {
  .header__icon {
    margin-left: 20px;
  }
}

.header__icon__logo--link {
  text-indent: -9999px;
  display: block;
  width: 70px;
  height: 18px;
  background-image: url(/contents/product/clearful/images/logo-orbis02.png);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__icon__mypage {
  margin: 0 0 0 23px;
}

.header__icon__mypage--link {
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(/contents/product/clearful/images/icon-mypage02.png);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__icon__cart {
  margin: 0 0 0 13px;
}

.header__icon__cart--link {
  display: block;
  width: 28px;
  height: 24px;
  background-image: url(/contents/product/clearful/images/icon-cart02.png);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header.is-scroll {
  background-color: rgba(99, 153, 209, 0.9);
}

.header.is-scroll .header__logo svg .fill {
  fill: #fff;
}

.header.is-scroll .header__nav__item--link {
  color: #fff;
}

.header.is-scroll .header__icon__logo--link {
  background-image: url(/contents/product/clearful/images/logo-orbis01.png);
}

.header.is-scroll .header__icon__mypage--link {
  background-image: url(/contents/product/clearful/images/icon-mypage01.png);
}

.header.is-scroll .header__icon__cart--link {
  background-image: url(/contents/product/clearful/images/icon-cart01.png);
}

@media screen and (max-width: 768px) {
  .header {
    height: auto;
    background-color: rgba(99, 153, 209, 0.9);
  }
  .header .container {
    background-color: transparent;
  }
  .header__inner {
    max-width: 100%;
    min-width: inherit;
    height: 55px;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header__logo {
    width: 120px;
    line-height: 1;
    margin: 0;
  }
  .header__logo svg .fill {
    fill: #fff;
  }
  .header__info {
    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;
  }
  .header__nav {
    position: absolute;
    top: 55px;
    left: 0;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 6px 0;
    visibility: hidden;
    background-color: rgba(99, 153, 209, 0.9);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header__nav__list {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .header__nav__item {
    line-height: 1.1;
  }
  .header__nav__item + .header__nav__item {
    margin-left: 0;
  }
  .header__nav__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__nav__item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header__nav__item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__nav__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .header__nav__item--link {
    font-size: 10px;
    color: #fff;
  }
  .header__icon {
    margin-left: 0;
  }
  .header__icon__logo--link {
    width: 56px;
    height: 14px;
    background-image: url(/contents/product/clearful/images/logo-orbis01.png);
  }
  .header__icon__mypage {
    margin-left: 25px;
    position: static;
    width: auto;
    height: auto;
  }
  .header__icon__mypage--link {
    width: 24px;
    height: 24px;
    background-image: url(/contents/product/clearful/images/icon-mypage01.png);
  }
  .header__icon__cart {
    margin-left: 25px;
    position: static;
    width: auto;
    height: auto;
  }
  .header__icon__cart--link {
    width: 26px;
    background-image: url(/contents/product/clearful/images/icon-cart01.png);
  }
  .header.is-scroll .header__nav {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
  }
}

.footer {
  background-color: #004c9d;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 23px 0 32px;
  max-width: 1400px;
  min-width: 1024px;
  margin: auto;
  height: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer__logo {
  width: 190px;
  height: 23px;
}

.footer__logo svg .fill {
  fill: #fff;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0;
}

.footer__cr {
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}

.footer__orbis {
  width: 129px;
  margin-left: 10px;
}

.footer__orbis img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer {
    background-color: transparent;
    position: relative;
    margin-top: 70px;
  }
  .footer__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 0 20px;
    max-width: 100%;
    min-width: 100%;
    height: 50px;
    background-color: #004c9d;
  }
  .footer__logo {
    position: absolute;
    left: 10px;
    top: -35px;
    width: 122px;
    height: 20px;
  }
  .footer__logo svg .fill {
    fill: #004c9d;
  }
  .footer__cr {
    font-size: 10px;
  }
  .footer__orbis {
    width: 80px;
  }
}

.column {
  margin-top: 160px;
}

.column *,
.column *::before,
.column *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .column {
    margin-top: 55px;
  }
}

.contentsArea {
  max-width: 900px;
  margin: 0 auto;
}

.top {
  position: relative;
  padding-top: 150px;
}

@media screen and (max-width: 768px) {
  .top {
    padding-top: 115px;
  }
}

.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 320px;
  background: url(/contents/product/clearful/acne-column/images/img-top-bg.jpg) center center/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .top::before {
    height: 256px;
    background-image: url(/contents/product/clearful/acne-column/images/img-top-bg-sp.jpg);
  }
}

.top__box {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  padding: 50px 0 55px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 768px) {
  .top__box {
    width: calc(100% - 50px);
    max-width: none;
    margin: 0 25px;
    padding: 40px 0 30px;
  }
}

.top__title {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #004c9d;
}

@media screen and (max-width: 768px) {
  .top__title {
    font-size: 25px;
  }
}

.top__title::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: -2px;
  z-index: 1;
  width: calc(100% + 4px);
  height: 12px;
  background-color: #d7ebfb;
}

@media screen and (max-width: 768px) {
  .top__title::before {
    bottom: 10px;
    height: 7px;
  }
}

.top__onTxt {
  position: relative;
  z-index: 2;
}

.top__txt {
  margin-top: 10px;
  line-height: 2.14;
}

@media screen and (max-width: 768px) {
  .top__txt {
    margin-top: 8px;
    line-height: 2;
  }
}

.top__name {
  font-size: 0;
  margin-right: 1px;
}

.top__name img {
  vertical-align: baseline;
}

@media screen and (max-width: 768px) {
  .top__name img {
    width: 51px;
  }
}

.listTitle {
  font-size: 36px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .listTitle {
    font-size: 22px;
  }
}

.columnList {
  margin-top: 36px;
}

@media screen and (max-width: 768px) {
  .columnList {
    margin-top: 22px;
    padding: 0 25px;
  }
}

.columnList + .columnList {
  margin-top: 110px;
}

@media screen and (max-width: 768px) {
  .columnList + .columnList {
    margin-top: 53px;
  }
}

.columnList__title {
  position: relative;
  padding-left: 18px;
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .columnList__title {
    font-size: 20px;
    padding-left: 12px;
  }
}

.columnList__title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 1;
  width: 5px;
  height: 38px;
  background-color: #004c9d;
}

@media screen and (max-width: 768px) {
  .columnList__title::before {
    top: 7px;
    width: 3px;
    height: 22px;
  }
}

.columnList__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  text-decoration: none !important;
  border-bottom: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  .columnList__link {
    display: block;
    padding: 18px 0 20px;
  }
}

.columnList__link::before {
  content: "";
  display: inline-block;
  width: 165px;
  height: 165px;
}

@media screen and (max-width: 768px) {
  .columnList__link::before {
    content: none;
  }
}

.columnList__contents {
  width: calc(100% - 200px);
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .columnList__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-top: 0;
  }
}

.columnList__thumb {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
  width: 160px;
}

@media screen and (max-width: 768px) {
  .columnList__thumb {
    position: static;
    width: 110px;
    margin-top: 7px;
  }
}

.columnList__txt {
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .columnList__txt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8125;
  }
}

.columnList__detail {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .columnList__detail {
    width: calc(100% - 130px);
    margin-top: 0;
  }
}

.bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 900px;
  margin: 100px auto 0;
  padding: 30px 30px 30px 35px;
  background-color: #f0f8fe;
}

@media screen and (max-width: 768px) {
  .bnr {
    position: relative;
    width: calc(100% - 50px);
    max-width: none;
    margin: 110px 25px 0;
    padding: 46px 20px 30px;
  }
}

.bnr__ph {
  width: 131px;
  margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .bnr__ph {
    position: absolute;
    top: -60px;
    left: 50%;
    z-index: 1;
    width: 108px;
    margin-bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.bnr__txtWrap {
  width: 380px;
  margin: 0 2px 0 36px;
}

@media screen and (max-width: 768px) {
  .bnr__txtWrap {
    width: 100%;
    margin: 0;
  }
}

.bnr__title {
  display: block;
  width: 184px;
}

@media screen and (max-width: 768px) {
  .bnr__title {
    width: 190px;
    margin: 0 auto;
  }
}

.bnr__txt {
  margin-top: 12px;
}

.bnr__btn {
  width: 282px;
  margin-bottom: 5px;
  padding: 10px 0 10px 45px;
  font-size: 16px;
  text-decoration: none !important;
  border: 1px solid #231815;
  background: url(/contents/product/clearful/acne-column/images/img-icon-link.png) center right 18px/6px auto no-repeat;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .bnr__btn {
    width: 100%;
    margin-top: 15px;
    padding: 4px;
    font-size: 13px;
    text-align: center;
    background-size: 5px auto;
    background-position: center right 9px;
  }
}

@media screen and (max-width: 768px) {
  .article {
    line-height: 1.78;
  }
}

.article__heading {
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .article__heading {
    max-width: none;
    margin: 92px 25px 0;
  }
}

.article__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article__titleWrap {
  width: 760px;
}

@media screen and (max-width: 768px) {
  .article__titleWrap {
    width: calc(100% - 82px);
  }
}

.article__title {
  font-size: 34px;
  color: #004c9d;
}

@media screen and (max-width: 768px) {
  .article__title {
    font-size: 22px;
    line-height: 1.5;
  }
}

.article__date {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .article__date {
    margin-top: 3px;
    font-size: 12px;
  }
}

.article__logo {
  width: 81px;
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .article__logo {
    width: 54px;
    margin-top: 6px;
  }
}

.article__lead {
  width: 760px;
  margin-top: 26px;
}

@media screen and (max-width: 768px) {
  .article__lead {
    width: 100%;
    margin-top: 20px;
  }
}

.article__mv {
  margin-top: 55px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .article__mv {
    margin-top: 34px;
  }
}

.article__body {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .article__body {
    margin-top: 44px;
  }
}

.article__body > *:nth-child(n + 2) {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .article__body > *:nth-child(n + 2) {
    margin-top: 45px;
  }
}

.article__body img {
  width: 100%;
}

.article__section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .article__section {
    width: calc(100% - 50px);
    max-width: none;
  }
}

.article__section > *:nth-child(n + 2) {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .article__section > *:nth-child(n + 2) {
    margin-top: 35px;
  }
}

.article__h2 + * {
  margin-top: 40px !important;
}

@media screen and (max-width: 768px) {
  .article__h2 + * {
    margin-top: 24px !important;
  }
}

.article__innerSection > *:nth-child(n + 2) {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .article__innerSection > *:nth-child(n + 2) {
    margin-top: 14px;
  }
}

.article__bgArea {
  padding: 70px 0;
  background-color: #f0f8fe;
}

@media screen and (max-width: 768px) {
  .article__bgArea {
    padding: 40px 0;
  }
}

.article__box {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  .article__box {
    width: calc(100%  - 50px);
    max-width: 100%;
    margin-left: 25px;
    padding: 40px 20px 35px;
  }
  .article__box .article__section {
    width: 100%;
  }
}

.article__col2Area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .article__col2Area {
    display: block;
  }
}

.article__left {
  width: 430px;
}

@media screen and (max-width: 768px) {
  .article__left {
    width: 100%;
    margin-top: 20px;
  }
}

.article__left > *:nth-child(n + 2) {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .article__left > *:nth-child(n + 2) {
    margin-top: 32px;
  }
}

.article__right {
  width: 430px;
}

@media screen and (max-width: 768px) {
  .article__right {
    width: 100%;
  }
}

.article__h2 {
  padding-bottom: 5px;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 1px solid #999;
}

@media screen and (max-width: 768px) {
  .article__h2 {
    padding-bottom: 7px;
    font-size: 20px;
    line-height: 1.6;
  }
  .article__h2.is-small-sp {
    font-size: 18px;
  }
}

.article__h3, .article__h3--black {
  font-size: 24px;
  font-weight: bold;
  color: #004c9d;
}

@media screen and (max-width: 768px) {
  .article__h3, .article__h3--black {
    font-size: 17px;
  }
}

.article__h3--black {
  color: #231815;
}

.article figcaption {
  margin-top: 15px;
  text-align: center;
}

.article mark {
  background-color: #d5e6f9;
}

.list > li {
  position: relative;
  margin-top: 3px;
  padding-left: 20px;
  font-weight: bold;
}

.list > li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 1px solid #004c9d;
  border-radius: 100%;
}

.linkList > li {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .linkList > li {
    margin-top: 10px;
  }
}

.cvBtn, .cvBtn--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  min-height: 64px;
  margin-top: 20px;
  padding: 8px 40px;
  color: #004c9d;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  border: 1px solid #004c9d;
  background: url(/contents/product/clearful/acne-column/images/img-icon-link-blue.png) center right 19px/5px auto no-repeat;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .cvBtn, .cvBtn--center {
    width: 100%;
  }
}

.cvBtn--center {
  margin-left: auto;
  margin-right: auto;
}

.note {
  font-size: 10px;
}

.table {
  width: 100%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .table {
    font-size: 12px;
    line-height: 1.67;
  }
}

.table th,
.table td {
  padding: 15px 30px;
  vertical-align: middle;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  .table th,
  .table td {
    padding: 6px;
  }
}

.table th {
  text-align: center;
}

.table thead th {
  background-color: #f6f6f6;
}

.table tbody th {
  width: 140px;
}

@media screen and (max-width: 768px) {
  .table tbody th {
    width: 74px;
  }
}

.txtLink,
.txtLink--blank {
  display: inline-block;
  color: #004c9d;
  text-decoration: underline;
}

.txtLink::before,
.txtLink--blank::before {
  content: "＞";
  display: inline-block;
  font-size: 0.9em;
}

.txtColor {
  color: #004c9d;
}

.txtLink--blank::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  margin-left: 10px;
  background: url(/contents/product/clearful/acne-column/images/img-icon-blank.png) center center/contain no-repeat;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 100px auto 0;
  padding: 40px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  .profile {
    max-width: none;
    margin: 50px 25px 0;
    padding: 25px 0 20px;
  }
}

.profile__ph {
  width: 144px;
}

@media screen and (max-width: 768px) {
  .profile__ph {
    width: 90px;
  }
}

.profile__txtWrap {
  width: calc(100% - 175px);
}

@media screen and (max-width: 768px) {
  .profile__txtWrap {
    width: calc(100% - 106px);
    font-size: 12px;
    line-height: 1.5;
  }
}

.profile dt {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .profile dt {
    margin-bottom: 10px;
    font-size: 12px;
  }
}

.profile dd {
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .profile dd {
    margin-top: 7px;
  }
}

.snsArea {
  padding: 98px 0 0;
}

.snsArea .ttlBlock {
  text-align: center;
}

.snsArea .headingLv2 {
  margin: 0 auto;
}

.snsArea .headingLv2 img {
  width: auto;
}

@media screen and (max-width: 768px) {
  .snsArea {
    padding-top: 43px;
  }
  .snsArea .headingLv2 img {
    zoom: 0.5;
  }
}

.snsArea__logo {
  width: 35px;
  margin: 17px auto 0;
}

.snsArea__logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .snsArea__logo {
    width: 28px;
    margin-top: 7px;
  }
}
