@charset "UTF-8";
/* ヘッダー ------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.p-header {
  background-color: #1c3a5e;
  height: 50px;
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit; /* 親要素の値を継承する */
  padding-left: 22px;
  padding-right: 0;
}

/* ロゴ */
.c-logo {
  min-width: 100px;
  max-width: 100%;
  position: relative;
  z-index: 9999;
}

.c-logo img {
  width: 50px;
}

/* ハンバーガー */
.c-hamburger span {
  position: relative;
  display: block;
  height: 2px;
  width: 24px;
  background-color: #86cd47;
  transition: ease 0.3s;
}

.c-hamburger {
  z-index: 9999;
  display: none;
  position: absolute;
  right: 20px;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 4px 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

/*is-OPEN時の動き*/
.c-hamburger.is-open span:nth-child(1) {
  top: 5px;
  transform: rotate(-225deg);
}

.c-hamburger.is-open span:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  top: -7px;
  transform: rotate(225deg);
}

.p-sp-nav {
  position: absolute;
  background-color: #fff;
  top: 0;
  right: 0;
  left: 0;
  /*表示崩れが起きないようにto,left,rightを０にする */
  padding-bottom: 200px;
  height: 100vh;
  width: 100%;
  z-index: 8888;
  text-transform: uppercase;
  display: none;
}

.p-sp-nav__items {
  display: flex;
  flex-flow: column wrap;
  padding-top: 250px;
  padding-bottom: 100px;
  height: 100vh;
  overflow: scroll;
}

.p-sp-nav__item a {
  width: 100%;
  display: block; /* 高さを持たせる為にblock */
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #262626;
  font-size: 16px;
}

.p-pc-nav__items {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  height: inherit;
  /* クリック領域を広げる */
}

.p-pc-nav__item {
  height: inherit;
  /* クリック領域を広げる */
}

.p-pc-nav__item a {
  height: inherit;
  /* クリック領域を広げる */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}

.p-pc-nav__item.p-pc-nav__item--red {
  margin-left: 16px;
}

/* ヘッダーコンタクトの背景色 */
.p-pc-nav__item.p-pc-nav__item--red a {
  background-color: #86cd47;
  padding: 0 32px;
  padding-top: 10px;
}

.p-pc-nav {
  height: inherit;
  /* クリック領域を広げる */
}

/* レスポンシブ */
@media (max-width: 920px) {
  .p-pc-nav__item.p-pc-nav__item--red a {
    padding: 0 15px;
  }
}

@media (max-width: 888px) {
  .p-header__inner {
    padding: 0 22px;
  }

  .p-pc-nav {
    display: none;
  }

  .c-hamburger {
    display: block;
  }
}

/* visual-bg */
.visual-wrap {
  display: flex;
  align-items: center;
}

.visual-image {
  width: 100%;
  max-width: 100%;
}

.visual-image img {
  width: 750px;
}

.visual-wrap p {
  font-size: 28px;
  line-height: 1.7;
  padding-right: 60px;
}

@media screen and (max-width: 1100px) {
  .visual-wrap {
    flex-direction: column;
    text-align: center;
  }
  .visual-wrap p {
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    padding-right: 0;
  }
  .visual-image img {
    width: 100%;
  }
}

/* workここから */
.works_list {
  display: flex;
  flex-wrap: wrap;
}

.works_list img {
  width: 100%;
}

.zoomIn {
  flex: 0 1 50%;
  padding: 16px;
}

/*　画像の拡大---------------------------------*/

.zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img {
  /*hoverした時の変化*/
  transform: scale(1.2); /*拡大の値を変更したい場合はこの数値を変更*/
}

/* ------------------------------------------ */

.works_list {
  text-align: center;
}

.works_word {
  padding-bottom: 10px;
  color: #262626;
}

.works_text {
  color: #262626;
}

.work_item {
  flex: 32%;
  margin-right: 2%;
}

.work_item a img {
  width: 100%;
  object-fit: cover;
  padding: 10px;
}

.work_body p {
  text-align: center;
  margin: 10px 10px;
}

@media screen and (max-width: 414px) {
  .works_list {
    flex-direction: column;
  }
}
/* workここまで---------------------------- */

.works__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 35px;
  letter-spacing: 5px;
  color: #262626;
}

.works__inner {
  margin-top: 80px;
}

.works__title p {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 20px;
  color: #262626;
  text-align: center;
}

.works__review-image {
  margin-top: 50px;
  text-align: center;
}

.review__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 35px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #262626;
}

.review__inner {
  padding-top: 80px;
}

.review__title p {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 20px;
  color: #262626;
  text-align: center;
}

/*レスポンシブ  ---------------------------------- */
@media (max-width: 768px) {
  .works__review-image img {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* skillここから---------------------------------- */
.skills__inner {
  padding-top: 80px;
}

.skills__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 35px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #262626;
}

.skills__title p {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 20px;
  color: #fefefe;
  text-align: center;
}

.skill_list {
  text-align: center;
}
.skill_list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.skill_list li {
  width: 33%;
  padding: 20px;
}

.skill_item_image {
  width: 100%;
}

.skill_item_image img {
  max-width: 100%;
  width: 128px;
}

.skill_item_text {
  font-weight: bold;
  vertical-align: middle;
  padding-top: 10px;
  color: #262626;
}

@media screen and (max-width: 414px) {
  .skill_list ul {
    flex-direction: column;
  }
  .skill_list li {
    width: 100%;
  }
}

/* serviceここから---------------------------------- */

.service__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 35px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #262626;
}

.service__title p {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 20px;
  color: #262626;
  text-align: center;
}

.service__inner {
  padding-top: 80px;
}

.service__items {
  margin-top: 50px;
}
.service__contents-01 {
  display: flex;
  box-sizing: border-box;
  margin-top: 50px;
}

.service__image-01 {
  width: 100%;
  max-width: 100%;
  text-align: right;
  margin-bottom: 50px;
}

.service__image-01 img {
  width: 50%;
  border-radius: 100px 0 0 100px;
}

.service__content-01 {
  width: 50%;
  max-width: 600px;
  padding: 20px 50px;
  margin-left: auto;
  margin-right: 0;
}

.service__text01 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 30px;
  padding: 10px;
  margin-bottom: 20px;
  color: #262626;
}

.service__sentence {
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #262626;
}

.service__image-02 {
  width: 100%;
  max-width: 100%;
  text-align: left;
  margin-bottom: 50px;
}

.service__image-02 img {
  width: 50%;
  border-radius: 0 100px 100px 0;
}

.service__content-02 {
  width: 50%;
  max-width: 600px;
  padding: 20px 50px;
  margin-right: auto;
  margin-left: 0;
}

/* レスポンシブ-------------------------------- */
@media screen and (max-width: 599px) {
  .service__image-01 img {
    width: 100%;
  }

  .service__content-01 {
    width: 100%;
  }

  .service__content-02 {
    width: 100%;
  }
  .service__image-02 img {
    width: 100%;
  }
}

/* aboutここから---------------------------------- */

.about__inner {
  padding-top: 80px;
}

.about__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 35px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #262626;
}

.about__title p {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 20px;
  color: #262626;
  text-align: center;
}

.about_contents {
  margin-top: 50px;
}
.about_image {
  text-align: center;
  padding-top: 30px;
}

.about_image img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 20px;
}
.about_contents p {
  box-sizing: border-box;
  padding: 0 20px;
  line-height: 2;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #262626;
}

/* セクション */
.about-section {
  padding: 30px 80px 0;
}

/* コンテナー */
.about-container {
  width: 100%;
  max-width: 1065px;
  margin: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.about-container-small {
  max-width: 750px;
}

/* テキスト */
.about-text {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #cd7347;
}
* + .about-text {
  margin: 16px 0 0 0;
}
.about-text-center {
  text-align: center;
}

@media screen and (max-width: 599px) {
  /* セクション */
  .about-section {
    padding: 40px 0;
  }

  /* コンテナー */
  .p-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .about__inner {
    padding: 50px 20px;
  }

  .about_image {
    padding-top: 50px;
  }
}

/*テーブル ------------------------------*/
.about-contactVerification01__table {
  width: 100%;
  margin-top: 30px;
}

/* アイテム */
.about-contactVerification01__item {
  border-top: 1px solid #4169e1;
}
.about-contactVerification01__item:last-child {
  border-bottom: 1px solid #4169e1;
}

.about-contactVerification01__title,
.about-contactVerification01__text {
  padding: 12px 16px;
  line-height: 1.5;
  color: #262626;
  font-weight: bold;
}
.about-contactVerification01__title {
  width: 30%;
  text-align: left;
}
.about-contactVerification01__text {
  width: 70%;
}

.about-contactVerification01__buttons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.about-contactVerification01__button:not(:last-child) {
  margin-right: 40px;
}

@media screen and (max-width: 599px) {
  .about-contactVerification01__title,
  .about-contactVerification01__text {
    display: block;
    width: 100%;
  }
  .about-contactVerification01__title {
    padding: 8px 16px 4px;
  }
  .about-contactVerification01__text {
    padding: 4px 16px 8px;
  }
}

@media screen and (max-width: 414px) {
  .about_contents-text {
    padding: 0;
  }

  .about__inner {
    padding-top: 100px;
  }
}

/* aboutここまで---------------------------------- */
/* faqここから---------------------------------- */

/*============================================
アコーディオンのためのcss
===================================*/
.faq h2 {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #262626;
  margin: 0 0 50px 0;
  font-size: 30px;
  text-transform: uppercase;
}

.faq__inner {
  padding-top: 80px;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  color: #262626;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #262626;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*closeというクラスがついたら形状変化*/

.title.close::before {
  transform: rotate(45deg);
  background-color: #4169e1;
}

.title.close::after {
  transform: rotate(-45deg);
  background-color: #4169e1;
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #d3d3d3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

.box p {
  color: #262626;
}
/* faq------------------------------------- */
@media (max-width: 768px) {
  .accordion-area h2 {
    font-size: 30px;
  }
}

@media (max-width: 375px) {
  .box {
    margin-left: 10%;
  }
  .accordion-area {
    width: 80%;
  }
}
/* faqここまで---------------------------------------- */
/*contact-------------------------  */

.contact__title {
  text-align: center;
  color: #262626;
  padding-bottom: 50px;
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
}
.contact__inner {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .contact h2 {
    margin: 0 0 50px 0;
    font-size: 30px;
  }
  .contact__inner {
    padding: 0 60px;
  }
}

.contact .form-list {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  color: #262626;
}

.contact input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  color: #262626;
}

.contact .form-list input[type="text"],
.contact .form-list input[type="email"],
.contact .form-list textarea {
  width: 100%;
  border: 1px solid #666;
  background: #fff;
  color: #000;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact .form-list input[type="text"],
input[type="email"] {
  height: 50px;
  color: #000;
}

.contact .submit-btn {
  width: 152px;
  margin: 0 auto;
}

.contact input[type="submit"] {
  border: 2px solid #4169e1;
  color: #262626;
  text-align: center;
  padding: 5px 20px;
  width: 152px;
  margin: 0 auto;
  transition: all 0.3s;
  margin-bottom: 50px;
}

.contact input[type="submit"]:hover {
  background: #fff;
  color: #4169e1;
  font-size: 20px;
}

.contact .form-list dl {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px 0;
}

.contact .form-list dt {
  width: 30%;
}

.contact .form-list dd {
  width: 66%;
}

.contact .form-list textarea {
  height: 200px;
  color: #000;
}

.contact__mail {
  text-align: center;
  color: #262626;
}

@media screen and (max-width: 768px) {
  .contact .form-list dt {
    margin: 0 0 10px 0;
  }

  .contact .form-list dt,
  .contact .form-list dd {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .contact .form-list dl {
    display: flex;
    flex-direction: column;
  }
  .contact__mail {
    font-size: 15px;
  }
}

.contact_text {
  text-align: center;
  font-weight: bold;
  padding-top: 80px;
}

.contact_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_icon {
  padding: 50px 0;
}

.contact_mail a {
  display: block;
  margin-top: 20px;
  text-align: center;
  color: #fefefe;
}

.contact_icon img {
  width: 80px;
  object-fit: cover;
}

/* contactここまで---------------------------------- */

/* footerここから---------------------------------- */
.bottom {
  background-color: #262626;
  padding: 25px;
}

.bottom .inner {
  padding: 30px;
}

.copyright {
  font-size: 13px;
  text-align: center;
  color: #fff;
  padding: 25px;
}

/* pagetop */
/* 共通 ------------------------------*/
*[class*="cp-"],
*[class*="cp-"] * {
  box-sizing: border-box;
}

/* ページトップ ------------------------------*/
.p-scroll01 {
  text-align: center;
  position: fixed;
  right: 24px;
  bottom: 40px;
}
.p-scroll01 a {
  display: inline-block;
  padding: 8px;
  font-size: 12px;
  border-radius: 8px;
  color: #fefefe;
  background: #86cd47;
  text-decoration: none;
}
.p-scroll01 i {
  font-size: 28px;
}

@media screen and (max-width: 599px) {
  .p-scroll01 {
    right: 15px;
    bottom: 15px;
  }
  .p-scroll01 a {
    padding: 6px;
    font-size: 10px;
  }
  .p-scroll01 i {
    font-size: 20px;
  }
}

.terms-of-use {
  text-align: center;
}

.terms-of-use a {
  color: white;
}
