@charset "utf-8";

/* ------------------------------------
　layout
------------------------------------- */
.l-container {
  width: 100%;
  padding: 0 4%;
  overflow: hidden;
}


/* ------------------------------------
　Compornent
------------------------------------- */
.c-button {
  width: 400px;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 68px;
  transition: 0.3s;
  transition-property: background-color;
}

.c-flex {
  display: flex;
  flex-wrap: wrap;
}

.c-flex.-between {
  justify-content: space-between;
}

.c-card {
  padding: 64px 24px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .c-button {
    width: 100%;
    font-size: 0.875em;
    line-height: 46px;
  }

  .c-card {
    padding: 32px 24px;
  }
}

/* ------------------------------------
　Project
------------------------------------- */
.p-button__wrap {
  display: flex;
  justify-content: center;
  margin-top: 6.5rem;
}

.p-button__entry {
  background-color: #f7723e;
  color: #fff;
}

.p-button__disc {
  background-color: #ffffff;
  border: 1px solid #f7723e;
  color: #343434;
}

.p-button__wrap .p-button__disc {
  margin-left: 2.5rem;
}

.p-heading__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
}

.p-contents__read {
  margin-bottom: 1.5rem;
  font-size: 1.25em;
  font-weight: bold;
}

.p-num {
  color: #f7723e;
  font-family: "Oswald", sans-serif;
  font-size: 56px;
}

@media screen and (min-width: 768px) {
  .p-button__entry:hover {
    background-color: #f66126;
    color: #fff;
  }

  .p-button__disc:hover {
    background-color: #fffaf7;
    color: #343434;
  }
}

@media screen and (max-width: 768px) {
  .p-button__wrap {
    flex-wrap: wrap;
    margin-top: 4rem;
  }

  .p-button__wrap .p-button__disc {
    margin-top: 1rem;
    margin-left: 0;
  }

  .p-heading__title {
    font-size: 1.5em;
  }

  .p-contents__read {
    font-size: 1.25em;
  }

  .p-num {
    font-size: 40px;
  }
}

/*
 - メインビジュアル
*/
.p-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: auto;
  height: 40px;
}

.p-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100vh;
  padding: 0 4%;
}

.p-hero::before {
  content: "scroll";
  position: absolute;
  left: calc(2% - 10px);
  bottom: 100px;
  transform: rotate(-90deg);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.p-hero::after {
  content: "";
  position: absolute;
  left: 2.25%;
  bottom: 0;
  border-left: 1px solid #ff9900;
  height: 80px;
}

.p-hero__title {
  margin-bottom: 2.5rem;
  /* font-size: 3em; */
  font-size: 3vw;
  font-weight: bold;
  line-height: 1;
}

.p-hero__copy {
  color: #909090;
  /* font-size: 1.25em; */
  font-size: 1.375vw;
  font-weight: bold;
}

.p-hero__btnWrap {
  margin-top: 3.5rem;
}

.p-hero__btnWrap p + p {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.p-hero__link {
  position: relative;
  display: inline-block;
  padding-right: 32px;
  color: #909090;
  font-size: 1em;
  font-weight: bold;
}

.p-hero__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  border-top: 10px solid #909090;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.p-hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66%;
  z-index: -1;
}

.p-hero__image img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .p-logo {
    position: static;
    margin: 16px;
    height: 25px;
  }

  .p-hero {
    justify-content: inherit;
    height: auto;
    margin-top: 4.5rem;
    padding-bottom: 140px;
  }

  .p-hero::before {
    left: calc(50% - 16px);
    bottom: 70px;
    transform: rotate(-90deg) translateX(-50%);
  }

  .p-hero::after {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
  }

  .p-hero__title {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5em;
  }

  .p-hero__copy {
    text-align: center;
    font-size: 0.875em;
  }

  .p-hero__btnWrap {
    order: 3;
    margin-top: 2.5rem;
    text-align: center;
  }

  .p-hero__btnWrap p + p {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .p-hero__link {
    margin-top: 1rem;
    padding-right: 24px;
    font-size: 0.875em;
  }

  .p-hero__link::after {
    top: 7px;
    border-top: 8px solid #909090;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }

  .p-hero__image {
    order: 2;
    position: static;
    width: 100%;
    margin-top: 2rem;
  }

  .p-hero__image img {
    max-width: 100%;
  }
}

/*
 - コンテンツ０１
 */
.p-contents01 {
  margin: 7.5rem 0;
  text-align: center;
}

.p-contents01 > .p-contents01__box {
  margin-bottom: 5rem;
}

.p-contents01__box .p-icon {
  height: 70px;
  margin: 0 0 2rem;
}

.p-contents01__read {
  margin-bottom: 2rem;
  font-size: 1.875em;
}

.p-contents01__box p {
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.p-contents01__box img {
  width: 100%;
  max-width: 1100px;
  margin-top: 3.5rem;
}

.p-contents01 .c-flex > .p-contents01__box {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-contents01 {
    margin: 4rem 0 5rem;
    text-align: center;
  }

  .p-contents01 > .p-contents01__box {
    margin-bottom: 3.5rem;
  }

  .p-contents01__box .p-icon {
    height: 40px;
    margin-bottom: 1.5rem;
  }

  .p-contents01__read {
    margin-bottom: 1.5rem;
    font-size: 1.25em;
  }

  .p-contents01__box p {
    text-align: left;
    font-size: 0.875em;
  }

  .p-contents01__box img {
    width: 100%;
    max-width: 1200px;
    margin-top: 1.5rem;
  }

  .p-contents01 .c-flex > .p-contents01__box {
    width: 100%;
  }

  .p-contents01 .c-flex > .p-contents01__box + .p-contents01__box {
    margin-top: 2.5rem;
  }
}

/*
 - コンテンツ02
 */
.p-contents02 {
  padding: 7.5rem 0;
  background-color: #f8f8f8;
}

.p-contents02 .p-card__wrap {
  margin-top: 3.5rem;
  padding-left: 0;
}

.p-contents02 .p-card__wrap .p-card {
  width: 31.5%;
  text-align: center;
}

.p-contents02__read {
  margin-bottom: 1.5rem;
  font-size: 1.25em;
}

.p-contents02 .p-card__wrap .p-card h4 + p {
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-contents02 {
    padding: 5rem 0;
  }

  .p-contents02 .p-card__wrap {
    margin-top: 3rem;
    padding-left: 0;
  }

  .p-contents02 .p-card__wrap .p-card {
    width: 100%;
    text-align: center;
  }

  .p-contents02 .p-card__wrap .p-card + .p-card {
    margin-top: 1.5rem;
  }

  .p-contents02__read {
    font-size: 1.125em;
  }

  .p-contents02 .p-card__wrap .p-card h4 + p {
    text-align: left;
    font-size: 0.875em;
  }
}

/*
 - コンテンツ03
 */

.p-contents03 {
  margin: 7.5rem 0;
}

.p-contents03 .p-card__wrap {
  margin-top: 3.5rem;
  padding-left: 0;
}

.p-contents03 .p-card__wrap .p-card {
  position: relative;
  width: 22%;
  text-align: center;
}

.p-contents03 .p-card__wrap .p-card + .p-card {
  margin-left: 4%;
}

.p-contents03 .p-card__wrap .p-card + .p-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11%;
  transform: translateY(-50%);
  border-left: 15px solid #f4e9d6;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.p-contents03 .p-card__wrap .p-card .p-num {
  font-size: 48px;
}

@media screen and (max-width: 768px) {
  .p-contents03 {
    margin: 5rem 0;
  }

  .p-contents03 .p-card__wrap {
    margin-top: 3.5rem;
  }

  .p-contents03 .p-card__wrap .p-card {
    width: 100%;
  }

  .p-contents03 .p-card__wrap .p-card + .p-card {
    margin-left: 0;
    margin-top: 4rem;
  }

  .p-contents03 .p-card__wrap .p-card + .p-card::before {
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #f4e9d6;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }

  .p-contents03 .p-card__wrap .p-card .p-num {
    font-size: 40px;
  }

  .p-contents03 .p-card__wrap .p-card .p-num + p {
    text-align: left;
    font-size: 0.875em;
  }
}

/*
 - フッター
 */
.p-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4%;
  background-color: #f4f4f4;
}

.p-footer__nav ul {
  padding-left: 0;
  display: flex;
}

.p-footer__nav ul li {
  font-size: 0.875em;
}

.p-footer__nav ul li + li {
  margin-left: 16px;
}

.p-footer__nav ul li + li::before {
  content: "/";
  margin-right: 16px;
}

.p-footer__copy {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: lighter;
}

@media screen and (max-width: 768px) {
  .p-footer {
    display: block;
  }

  .p-footer__nav ul {
    display: flex;
    justify-content: center;
  }

  .p-footer__copy {
    text-align: center;
    font-size: 12px;
  }
}

/*
　- フォーム
 */

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

.p-button__closed {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  text-align: center;
}

.p-closed__line::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 24px;
  height: 3px;
  margin: auto;
  background-color: #909090;
  transform: rotate(45deg);
}

.p-closed__line::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 24px;
  height: 3px;
  margin: auto;
  background-color: #909090;
  transform: rotate(-45deg);
}

.p-closed__text {
  position: absolute;
  top: 20px;
  left: 0;
  color: #909090;
  font-size: 10px;
}

.p-form__body {
  position: fixed;
  top: 0;
  right: -100%;
  width: 550px;
  height: 100vh;
  padding: 80px 40px;
  background-color: #f4f4f4;
  transition: 0.5s;
  z-index: 1;
  overflow: scroll;
}

.is-active.p-form__body {
  right: 0;
}

.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-form__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.p-form__wrap {
  /* padding: 16px 0; */
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 15px;
}

.p-form__wrap fieldset + fieldset {
  border-top: 1px solid #999;
}

.p-form__wrap label {
  display: block;
  width: 90%;
  margin: auto;
  margin-bottom: 0;
  padding: 16px 0 0;
}

.p-form__wrap label .eq {
  color: #b70000;
}

.p-form__wrap input,
.p-form__wrap select {
  display: block;
  width: 90%;
  margin: auto;
  padding: 8px 0;
  border: none;
  appearance: none;
}

button:focus,
.p-form__wrap input:focus,
.p-form__wrap select:focus {
  outline: none;
}

.p-form__wrap select select {
  color: #999;
}

.p-form__wrap fieldset .error {
  width: 90%;
  margin: auto;
  font-size: 0.75em;
}

.p-form__button {
  margin-top: 40px;
  text-align: center;
}

.p-form__att {
  text-align: center;
  color: #909090;
  font-size: 0.875em;
}

.p-form__att a {
  padding: 0 4px;
  text-decoration: underline;
  color: #909090;
}

@media screen and (max-width: 768px) {
  .p-closed__text {
    position: absolute;
    top: 20px;
    left: 0;
    color: #909090;
    font-size: 10px;
  }

  .p-form__body {
    display: none;
    position: fixed;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 48px 16px;
  }

  .p-form__title {
    font-size: 1.25rem;
  }

  .p-form__button {
    margin-top: 32px;
  }
}

/*
  - サンクス画面
 */

.p-thanks {
  position: relative;
  width: 100%;
  height: 100vh;
}
.p-thanks__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.p-thanks__body h1 {
  margin-bottom: 2rem;
  font-size: 2.5em;
  font-weight: bold;
}

.p-thanks__body p {
  font-size: 1em;
}

.p-thanks__body p a {
  text-decoration: underline;
  color: ;
}

.p-thanks__body p + p {
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .p-thanks {
    height: auto;
    margin: 5rem 0;
  }

  .p-thanks__body {
    position: static;
    text-align: left;
    transform: translate(0);
  }

  .p-thanks__body h1 {
    font-size: 1.5rem;
  }

  .p-thanks__body p {
    font-size: 0.875em;
  }
}

/* ------------------------------------
　Utility
------------------------------------- */
.u-text {
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.u-text__mid {
  font-size: 1.125em;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.u-text__mid.-center {
  text-align: center;
}

@media (min-width: 1000px) {
  .u-block {
    display: inline-block;
  }

  .u-pc {
    display: block;
  }

  .u-sp {
    display: none;
  }
}

@media (max-width: 1000px) {
  .u-pc {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-sp {
    display: block;
  }

  .u-text__mid {
    font-size: 0.875em;
  }
}


/* 司法書士向けLP https://career.bengo4.com/entry/j0001/ */

.p-contents01-profile {
    background-color: #fff !important;
	padding-top: 7.5rem;
	padding-bottom: 2rem;
}
.p-contents01-profile .p-profile__title {
    font-family: "Oswald", sans-serif;
    text-align: center;
}
.p-contents01-profile .p-profile__title:before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 1.8px;
    margin-right: 20px;
    background-color: #f7723e;
	vertical-align: middle;
}
.p-contents01-profile .p-profile__title:after {
    content: "";
    display: inline-block;
    width: 80px;
    height: 1.8px;
    margin-left: 20px;
    background-color: #f7723e;
	vertical-align: middle;
}
.p-contents01-profile .l-container {
    display: flex;
	margin-top: 6rem;
}
.p-contents01-profile .l-container .p-profile__img {
    width: 50%;
    text-align: right;
	padding-right: 5rem;
}
.p-contents01-profile .l-container .p-profile__img img {
    max-width: 350px;
    height: auto;
    object-fit: cover;
}
.p-contents01-profile .l-container .p-profile__detail {
    width: 50%;
	padding-left: 5rem;
	text-align: left;
	margin: auto 0;
}
.p-contents01-profile .l-container .p-profile__detail .p-detail__name {
    margin-bottom: 30px;
}
.p-contents01-profile .l-container .p-profile__detail .p-detail__name ruby rb {
    font-size: 32px;
    font-weight: bold;
}
.p-contents01-profile .l-container .p-profile__detail .p-detail__name ruby rt {
    font-size: 10px;
}
.p-contents01-profile .l-container .p-profile__detail .p-detail__read {
    font-size: 16px;
    max-width: 50%;
}

@media (max-width: 1000px) {
	.p-contents01-profile .l-container .p-profile__detail .p-detail__read {
		max-width: 85%;
	}
}

@media (max-width: 768px) {
	
	.p-contents01-profile {
		padding-top: 5rem;
	}
    .p-contents01-profile .l-container {
        flex-direction: column;
    }
	.p-contents01-profile .l-container {
		display: flex;
		margin-top: 5rem;
	}
    .p-contents01-profile .l-container .p-profile__img {
        width: 100%;
		padding-right: 0;
		text-align: center;
    }
    .p-contents01-profile .l-container .p-profile__detail {
        width: 100%;
    	text-align: center;
		padding-top: 2rem;
		padding-left: 0;
    }
	.p-contents01-profile .l-container .p-profile__img img {
		max-width: 300px;
	}
	.p-contents01-profile .l-container .p-profile__detail .p-detail__read {
    	width: 100%;
		font-size: 14px;
    	text-align: left;
		margin: 0 auto;
	}
}