@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name:
Note:

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	Function
3.	Layout
4.	Object
------------------------------------------------------------------------
----------------------------------------------------------------------*/
.date-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 5px;
  font-size: 1.1em;
  color: #999490;
}
.date-list-item .fa-clock {
  font-size: 1.3636363636em;
  width: 1em;
  aspect-ratio: 1;
}

.p-supervisor {
  position: relative;
  margin: 15px 0 20px;
  padding: 10px;
  background: #efece9;
  color: #7f7875;
}
.p-supervisor a {
  color: #7f7875;
}
.p-supervisor__headline {
  position: absolute;
  top: 15px;
  left: 90px;
  margin: 0;
  padding: 0;
  background: none;
  line-height: 1;
  font-size: 0.75rem;
  font-weight: normal;
}
.p-supervisor__details {
  display: flex;
  align-items: center;
}
.p-supervisor__details__pic {
  margin-right: 10px;
  background: #fff;
}
.p-supervisor__details__name {
  margin-top: 7px;
  line-height: 1.3;
  font-size: 0.75rem;
}
.p-supervisor__details__name a:hover > * {
  opacity: 1;
}
.p-supervisor__details__name .name-emphasis {
  font-size: 1rem;
  font-weight: bold;
}
.p-supervisor__link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 0;
  background: none;
  text-align: right;
  line-height: 1;
  font-size: 1.2em;
}
.p-supervisor__link a {
  padding-left: 15px;
  background: url(../../img/arrow/arrow2.png) left center no-repeat;
}
.p-supervisor__link a:hover {
  background: url(../../img/arrow/arrow2_h.png) left center no-repeat;
  color: #6d9dd0;
}

.p-anchor .anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -2px;
}
.p-anchor .anchor-item {
  overflow: hidden;
  flex-basis: 172px;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 2px 5px;
  border-radius: 4px;
}
.p-anchor .anchor-item a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: linear-gradient(#f2efed, #e5dfdb);
  text-align: center;
  line-height: 1.2307692308;
  font-size: 1.3em;
  color: #7f7875;
  transition: opacity 0.1s linear;
}
.p-anchor .anchor-item a::after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: 9px;
  margin-right: -4px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #7f7875;
  border-bottom: 1px solid #7f7875;
  transform: rotate(45deg);
}
.p-anchor .anchor-item a:hover {
  opacity: 0.5;
  color: #7f7875 !important;
}
.p-anchor .p-anchor__list {
  margin: 0;
  gap: 5px;
}
.p-anchor .p-anchor__item {
  flex-basis: auto;
  margin: 0;
  width: 0;
}
.p-anchor .p-anchor__item a {
  color: #7e7774;
}
.p-anchor .p-anchor__item a::after {
  border-right: 1px solid #7e7774;
  border-bottom: 1px solid #7e7774;
}
.p-anchor .p-anchor__item a:hover {
  text-decoration: none;
}

.link.button a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 2px solid #554c48;
  background: linear-gradient(#91847b, #443b34);
  vertical-align: middle;
  line-height: 1.25;
  color: #f5f2f0;
  box-sizing: border-box;
  transition: opacity 0.1s linear;
}
.link.button a > * {
  color: #f5f2f0;
}
.link.button a .inner-text1 {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 2.5;
  font-size: 16px;
}
.link.button a .inner-text2 {
  display: block;
  flex-grow: 1;
  align-self: flex-end;
  order: 3;
  width: 100%;
  border-top: 1px solid #474038;
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  font-size: 10px;
}
.link.button a::before {
  content: none;
}
.link.button a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 5px;
  width: 21px;
  height: 21px;
  background: url(../../../../img/arrow/arrow16.png) right top no-repeat;
}
.link.button a:hover {
  text-decoration: none;
}
.link.button a:hover > *, .link.button a:hover::before {
  color: #f5f2f0;
}
.link.button a:hover .inner-text1 {
  opacity: 1;
}
.link.button a:hover::after {
  background: url(../../../../img/arrow/arrow16_h.png) right top no-repeat;
}

.p-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content min-content min-content 1fr;
  margin-bottom: 7px;
  background: #d5d7d5;
}
.p-hero__pic {
  grid-column: 1/2;
  grid-row: 1/5;
}
.p-hero__title, .p-hero__text, .p-hero__features, .p-hero__cv {
  grid-column: 2/3;
}
.p-hero__title {
  grid-row: 1/2;
  margin-top: 42px;
  text-align: center;
}
.p-hero__text {
  grid-row: 2/3;
  margin-top: 21px;
  text-align: center;
}
.p-hero__features {
  grid-row: 3/4;
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  margin-right: 48px;
  margin-left: 48px;
}
.p-hero__cv {
  grid-row: 4/5;
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.p-hero__cv__item {
  width: 334px;
}

.p-date {
  margin: 0 80px 15px;
}

.p-supervisor {
  margin: 0 80px 20px;
}
.p-supervisor__headline, .p-supervisor__details__name {
  font-size: 1.3em;
}
.p-supervisor__details__name .name-emphasis {
  font-size: 1.4166666667em;
}
.p-supervisor__link {
  font-size: 1.3em;
}
.p-supervisor__link a {
  background-image: url(../../../../img/arrow/arrow2.png);
}
.p-supervisor__link a:hover {
  background-image: url(../../../../img/arrow/arrow2_h.png);
}

.p-anchor {
  margin: 0 80px 70px;
}
.p-anchor .p-anchor__item a {
  flex-direction: column;
  font-size: 1.4em;
}
.p-anchor .p-anchor__item a::before {
  content: attr(data-eng);
  order: 1;
  margin-top: 2px;
  font-size: 0.6428571429em;
  line-height: 1;
  color: #c8bdb5;
  text-transform: capitalize;
}
.p-anchor .p-anchor__item a::after {
  right: 20px;
  bottom: 27px;
}

.p-box {
  margin-right: 80px;
  margin-bottom: 120px;
  margin-left: 80px;
}
.p-box > *:not(.p-box__title) {
  margin-right: 17px;
  margin-left: 17px;
}
.p-box__title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 4px;
  padding-left: 18px;
  height: 62px;
  box-sizing: border-box;
  border-top: 3px solid #569bb2;
  border-bottom: 1px solid #c7bcb5;
  background: url(../../../../img/contents_360-lipo_title_bg.png) 0 0 repeat-x;
  font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", Georgia, Times, "Times New Roman", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.9em;
  font-weight: bold;
  color: #797370;
}
.p-box__title::after {
  content: attr(data-eng);
  position: absolute;
  right: 8px;
  bottom: 9px;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.6842105263em;
  font-weight: normal;
  color: #c8bdb5;
}
.p-box__subtitle {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 15px;
  height: 30px;
  border-left: 6px solid #569bb2;
  font-size: 1.7em;
  font-weight: bold;
  color: #797370;
}
.p-box__anchor {
  margin-bottom: 80px;
}
.p-box__anchor__list {
  display: flex;
  column-gap: 15px;
}
.p-box__anchor__item a {
  padding-left: 15px;
  background: url(../../../../img/arrow/arrow4.png) 0 center no-repeat;
  font-size: 1.3em;
  color: #6d9cd0;
}
.p-box__anchor__item a:hover {
  background-image: url(../../../../img/arrow/arrow4_h.png);
  color: #ed7b74;
  text-decoration: none;
}

.p-about {
  margin-bottom: 80px;
}
.p-about .p-box__title {
  margin-bottom: 25px;
}
.p-about__header {
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content 1fr;
  margin-right: -17px;
  margin-left: -17px;
  margin-bottom: 40px;
  padding-top: 19px;
  padding-right: 17px;
  padding-left: 30px;
  background-image: linear-gradient(to bottom, #f5f3f1, #fff 158px, #fff 100%);
  background-position: 0 0;
  background-repeat: repeat-x;
}
.p-about__header__title {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-top: 20px;
  margin-bottom: 27px;
  padding-bottom: 32px;
  border-bottom: 1px solid #c7bcb5;
}
.p-about__header__title::before {
  content: attr(data-eng);
  display: block;
  margin-bottom: 17px;
  font-size: 1.3em;
  color: #569bb2;
}
.p-about__header__text {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-right: 25px;
  line-height: 1.7;
  font-size: 1.5em;
}
.p-about__header__pic {
  grid-column: 2/3;
  grid-row: 1/3;
}
.p-about__contents__text {
  line-height: 1.7;
  font-size: 1.5em;
}
.p-about__contents + .p-about__contents {
  margin-top: 80px;
}
.p-about__pics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-about__pics__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
  height: 26px;
  background: #7f7875;
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}
.p-about__pics figcaption {
  margin-top: 13px;
  line-height: 1.3076923077;
  font-size: 1.3em;
}
.p-about__operation {
  display: flex;
  align-items: center;
  margin: 20px 0 0 auto;
  width: 419px;
  background: #efece9;
  border: 1px solid #efece9;
}
.p-about__operation__title {
  line-height: 1.3076923077;
  font-size: 1.3em;
  padding: 0 20px;
  width: 210px;
  box-sizing: border-box;
}

.p-risk__contents.no1 .p-about__contents__text {
  margin-bottom: 15px;
}
.p-risk__contents.no2 {
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content 1fr;
  column-gap: 25px;
  row-gap: 15px;
}
.p-risk__contents.no2 .p-box__subtitle {
  grid-column: 1/3;
  grid-row: 1/2;
  margin-bottom: 0;
}
.p-risk__contents.no2 .p-about__contents__text {
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-risk__contents.no2 .p-about__contents__pic {
  grid-column: 2/3;
  grid-row: 2/3;
}
.p-risk__contents.no2 .p-about__contents__pic > * {
  width: 387px;
  aspect-ratio: 16/9;
}
.p-risk__contents + .p-risk__contents {
  margin-top: 60px;
}
.p-risk .p-about__operation {
  margin-top: 15px;
}

.p-design__contents {
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content 1fr;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 30px;
}
.p-design__contents .p-box__subtitle {
  grid-column: 1/3;
  grid-row: 1/2;
  margin-bottom: 0;
}
.p-design__contents .p-about__contents__text {
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-design__contents .p-about__contents__pic {
  grid-column: 2/3;
  grid-row: 2/3;
}
.p-design .p-about__pics__title {
  height: 46px;
  background: #325564;
  font-size: 1.7em;
}

.p-customize__operation {
  display: grid;
  row-gap: 20px;
  margin-top: 30px;
}
.p-customize__operation__title {
  display: flex;
  justify-content: space-between;
  grid-column: 1/3;
  grid-row: 1/2;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d4d0ce;
  font-size: 1.5em;
  font-weight: bold;
  color: #569bb3;
}
.p-customize__operation__title::after {
  content: attr(data-eng);
  align-self: flex-end;
  margin-bottom: -3px;
  font-size: 0.6666666667em;
  font-weight: normal;
  color: #c8bdb5;
}
.p-customize__operation.vaser, .p-customize__operation.embrace {
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content 1fr;
  column-gap: 20px;
}
.p-customize__operation.vaser .p-customize__operation__text, .p-customize__operation.embrace .p-customize__operation__text {
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-customize__operation.vaser .p-customize__operation__pic, .p-customize__operation.embrace .p-customize__operation__pic {
  grid-column: 2/3;
  grid-row: 2/3;
}
.p-customize__operation.vaser .p-about__operation, .p-customize__operation.embrace .p-about__operation {
  grid-column: 1/3;
  grid-row: 3/4;
}
.p-customize__operation.pal {
  grid-template-rows: min-content min-content 1fr;
}
.p-customize__operation.pal .p-customize__operation__text {
  grid-row: 2/3;
}
.p-customize__operation.pal .p-customize__operation__pics {
  grid-row: 3/4;
}
.p-customize__operation .p-about__pics figcaption {
  margin-top: 8px;
}
.p-customize__operation .p-about__operation {
  grid-row: 4/5;
}
.p-customize .p-about__operation {
  margin-top: 0;
}

.p-operation {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px;
  column-gap: 10px;
  background: url(../../../../img/arrow/arrow.png) right 10px center no-repeat #fff;
  color: #6d9cd0;
}
.p-operation:hover {
  text-decoration: none;
}
.p-operation:hover > * {
  opacity: 0.5;
}
.p-operation__pic {
  border: 1px solid #d7d4d3;
}
.p-operation__text {
  line-height: 1.3076923077;
  font-size: 1.3em;
}

.p-quality__title {
  margin-bottom: 30px;
}
.p-quality__lead__text, .p-quality__contents__text, .p-quality__certification__text {
  grid-column: 1/2;
  grid-row: 2/3;
  line-height: 1.7;
  font-size: 1.5em;
}
.p-quality__lead, .p-quality__contents {
  display: grid;
  grid-template-columns: 1fr min-content;
  grid-template-rows: min-content 1fr;
}
.p-quality__lead__title, .p-quality__contents__title {
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-quality__lead__pic, .p-quality__contents__pic {
  grid-column: 2/3;
  grid-row: 1/3;
}
.p-quality__lead {
  column-gap: 30px;
  row-gap: 40px;
  margin-bottom: 35px;
}
.p-quality__lead__title {
  margin-top: 30px;
}
.p-quality__lead__pic {
  grid-column: 2/3;
  grid-row: 1/3;
}
.p-quality__contents {
  column-gap: 25px;
  row-gap: 15px;
  margin-bottom: 30px;
}
.p-quality__contents__title {
  margin-bottom: 0;
}
.p-quality__certification {
  display: flex;
  align-items: center;
  column-gap: 18px;
  padding: 18px;
  border: 1px solid #d4d0ce;
}
.p-quality__certification__pic {
  order: 2;
  margin-bottom: -11px;
}

.p-flow__item {
  position: relative;
  display: flow-root;
  color: #797370;
}
.p-flow__item__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 20px;
  font-size: 1.7em;
  font-weight: bold;
}
.p-flow__item__title::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: linear-gradient(to right, #f5f3f1 0%, #f5f3f1 50%, #f5f3f1 55.62%, #fff 100%);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 100%;
  border: 4px solid #569bb2;
}
.p-flow__item__pic {
  float: right;
  margin-top: -46px;
  margin-left: 20px;
}
.p-flow__item__text {
  margin-left: 34px;
  line-height: 1.7;
  font-size: 1.5em;
}
.p-flow__item + .p-flow__item {
  margin-top: 40px;
}
.p-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 12px;
  display: block;
  height: calc(100% + 40px - 26px);
  border-left: 1px solid #569bb2;
}
.p-flow__details {
  margin-left: 34px;
}
.p-flow__details__title {
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 2px;
  font-size: 1.5em;
  font-weight: bold;
  color: #569bb2;
}
.p-flow__details__title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../../../../img/contents_360-lipo_flow_item_bg.png) 0 0 no-repeat;
}
.p-flow__details__text {
  margin-left: 29px;
  line-height: 1.3571428571;
  font-size: 1.4em;
}
.p-flow__details:first-of-type {
  margin-top: 15px;
}
.p-flow__details + .p-flow__details {
  margin-top: 17px;
}

.p-price__feature__pic {
  border: 1px solid #c7bcb5;
  margin-bottom: 12px;
}
.p-price__service {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.p-price__service__item {
  border: 1px solid #c7bcb5;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.p-price__service__item.transportation {
  background-image: url(../../../../img/contents_360-lipo_price_service_transportation_h.png);
}
.p-price__service__item.oneday {
  background-image: url(../../../../img/contents_360-lipo_price_service_oneday_h.png);
}
.p-price__service__item.guarantee {
  background-image: url(../../../../img/contents_360-lipo_price_service_guarantee_h.png);
}
.p-price__table {
  margin-bottom: 30px;
  width: -webkit-fill-available;
}
.p-price__table a {
  color: #6d9cd0;
}
.p-price__table a:hover {
  color: #ed7b74;
}
.p-price__table thead th,
.p-price__table thead td {
  height: 34px;
  background: #7f7875;
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}
.p-price__table thead th {
  padding-left: 20px;
  border-right: 1px solid #fff;
}
.p-price__table thead td {
  text-align: center;
}
.p-price__table thead td:first-of-type {
  border-right: 1px solid #fff;
}
.p-price__table tbody th,
.p-price__table tbody td {
  height: 34px;
  border-bottom: 1px solid #d4d1d0;
  font-size: 1.4em;
  color: #7f7875;
}
.p-price__table tbody th {
  padding-left: 20px;
  border-right: 1px solid #d4d1d0;
  border-left: 1px solid #d4d1d0;
}
.p-price__table tbody th span {
  font-size: 0.7857142857em;
}
.p-price__table tbody td {
  border-right: 1px solid #d4d1d0;
  text-align: center;
  line-height: 1.5;
}
.p-price__table tbody td.red {
  color: #ec7272;
}
.p-price__table tbody td.red .tax-included {
  color: #7f7875;
}
.p-price__table tbody td .tax-included {
  display: block;
  line-height: 1;
  font-size: 0.7142857143em;
}
.p-price__cv {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.p-price__cv__title {
  flex: 1;
  padding-left: 27px;
  line-height: 1.3333333333;
  font-size: 1.5em;
  font-weight: bold;
  color: #797370;
  background: url(../../../../img/contents_360-lipo_price_cv_title_bg.png) 0 center no-repeat;
}
.p-price__cv__list {
  display: flex;
  column-gap: 5px;
}

.p-table__note {
  margin-top: 10px;
}
.p-table__note__item {
  margin-left: 1em;
  line-height: 1.5;
  text-indent: -1em;
}
.p-table__note__item::before {
  content: "※";
}
.p-table__note__item a {
  text-decoration: underline;
}

.p-payment {
  border: 1px solid #d4d0ce;
}
.p-payment p,
.p-payment li {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.p-payment p li,
.p-payment li li {
  font-size: 1em;
}
.p-payment small {
  font-size: 1em;
}
.p-payment li,
.p-payment dt {
  line-height: 39px;
}
.p-payment li {
  display: list-item;
  padding: 0 0 0 40px;
  min-height: 39px;
  border-bottom: 1px dotted #baafa6;
  background-position: 13px 8px;
  background-repeat: no-repeat;
  font-weight: bold;
}
.p-payment li:first-child {
  letter-spacing: 0.5em;
}
.p-payment li:last-child {
  border: 0;
}
.p-payment li:nth-child(1) {
  background-image: url(../../../../img/sprite/num/price-no1.png);
}
.p-payment li:nth-child(2) {
  background-image: url(../../../../img/sprite/num/price-no2.png);
}
.p-payment li:nth-child(3) {
  background-image: url(../../../../img/sprite/num/price-no3.png);
}
.p-payment li:nth-child(4) {
  background-image: url(../../../../img/sprite/num/price-no4.png);
}
.p-payment dt {
  float: left;
  width: 110px;
}
.p-payment dd {
  overflow: hidden;
  padding: 10px 0 9px;
  line-height: 1.8333333333;
  font-weight: normal;
}
.p-payment dd li,
.p-payment dd dt {
  line-height: 1.8333333333;
}
.p-payment dd dt {
  float: none;
  width: auto;
}
.p-payment dd dd {
  overflow: auto;
  padding: 0;
}
.p-payment dd li {
  margin-left: 2em;
  padding: 0;
  min-height: 1px;
  border: 0;
  list-style-type: decimal;
  font-weight: normal;
}
.p-payment dd li:first-child {
  letter-spacing: 0;
}
.p-payment dd li:nth-child(n) {
  background-image: none;
}
.p-payment dd li li {
  margin: 0;
  list-style-type: none;
}
.p-payment dd li li, .p-payment dd li li::before {
  content: "◇";
}
.p-payment .p-payment__title {
  padding: 15px 10px;
  border-bottom: 1px dotted #d4d0ce;
  font-size: 1.3em;
}
.p-payment .p-payment__item__text {
  font-size: 1em;
}
.p-payment .p-payment__item {
  border-bottom: 1px dotted #d4d0ce;
  font-size: 1.3em;
}

.p-cv {
  display: flex;
  align-items: center;
  margin-right: 80px;
  margin-bottom: 120px;
  margin-left: 80px;
  background: #efebe8;
}
.p-cv > *:first-child {
  flex: 1;
}
.p-cv__contents {
  display: flex;
  align-items: center;
  column-gap: 17px;
}
.p-cv__contents__inner {
  order: 1;
}
.p-cv__contents__title {
  margin-bottom: 7px;
  font-size: 1.5em;
  font-weight: bold;
}
.p-cv__contents__text {
  line-height: 1.3846153846;
  font-size: 1.3em;
}
.p-cv__text {
  line-height: 1.6666666667;
  font-size: 1.5em;
  color: #797370;
}
.p-cv.counseling {
  column-gap: 17px;
  padding: 17px;
}
.p-cv.counseling .button {
  width: 334px;
}
.p-cv.line {
  column-gap: 30px;
  margin-bottom: 80px;
  padding: 25px 30px;
}
.p-cv.line .button {
  width: 252px;
}
/*# sourceMappingURL=360-lipo.css.map */
