@charset "UTF-8";

html {
  font-size: 16px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

body {
  line-height: 2;
  background: url(../img/mainbg_01.png) top right / auto no-repeat,
    url(../img/mainbg_03.png) bottom right / auto no-repeat;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  body {
    background: url(../img/mainbg_01.png) top right / 100% auto no-repeat,
      url(../img/mainbg_03.png) bottom right / 100% auto no-repeat;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  body {
    background: url(../img/mainbg_01.png) top right / 130% auto no-repeat,
      url(../img/mainbg_03.png) bottom right / 260% auto no-repeat;
  }
}

p,
ul,
dl,
table {
  margin: 15px 0 0;
}

strong {
  font-weight: 700;
  color: #ed6e21;
}

a,
button {
  transition: 0.3s;
}

a:hover,
button:hover {
  opacity: 0.5;
  transition: 0.3s;
}

small {
  line-height: 1.3;
}

/* input */
input,
textarea {
  padding: 10px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
}

select {
  padding: 10px;
  background: #fff url(../img/keyboard_arrow_down-24px.svg) right 10px center / 20px 20px no-repeat;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
}

/* .btn */
.btn a,
.btn button {
  display: block;
  color: #ed6e21;
  font-weight: 700;
  text-align: center;
  margin: 40px auto 0;
  padding: 10px 0;
  width: 350px;
  background: #fff;
  border: 2px solid #ed6e21;
  border-radius: 30px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  .btn a,
  .btn button {
    width: 80%;
  }
}

/* .btn.cv */
.btn.cv a,
.btn.cv button {
  color: #fff;
  background: #ed6e21;
}

/* .btn.return */
.btn.return {
  margin: 150px 15px 0;
}

/* .image */
.image {
  margin: 15px auto;
  width: 50%;
}

.image img {
  width: 100%;
  height: auto;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .image {
    width: 100%;
  }
}

/* header */
header {
  display: flex;
  align-items: center;
  margin: 30px auto 0;
  width: 1050px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  header {
    margin: 15px auto 0;
    padding: 0 15px;
    width: 100%;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {}

header .logo img {
  width: 300px;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  header .logo img {
    width: 180px;
  }
}

/* ----- PC専用（幅1025px以上） ----- */
@media screen and (min-width: 1025px) {

  /* ハンバーガーメニュー */
  header input,
  header label {
    display: none;
  }
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {

  /* ハンバーガーメニュー */
  header input,
  header label {
    display: none;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  /* ハンバーガーメニュー */
  label#nav_open {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 22px;
  }

  label#nav_open span,
  label#nav_open span::before,
  label#nav_open span::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #555;
    border-radius: 3px;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s;
    position: absolute;
    z-index: 999;
  }

  label#nav_open span::before {
    bottom: -8px;
  }

  label#nav_open span::after {
    bottom: -16px;
  }

  label#nav_close {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    transform: translateX(100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }

  .nav_contents {
    max-width: 360px;
    height: 100%;
    padding: 80px 15px 0;
    background: #fff;
    transition: 0.3s;
    transform: translateX(100%);
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
  }

  /* チェックが入ったら */
  #nav_input:checked~#nav_close {
    transform: translateX(0);
  }

  #nav_input:checked~#nav_open span {
    transform: rotate(45deg);
  }

  #nav_input:checked~#nav_open span:before {
    transform: rotate(90deg);
    bottom: 0;
  }

  #nav_input:checked~#nav_open span:after {
    opacity: 0;
  }

  #nav_input:checked~.nav_contents {
    transform: translateX(0);
  }
}

/* .gNav */
.gNav {
  width: calc(100% - 250px);
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .gNav {
    text-align: right;
    width: calc(100% - 180px);
    position: relative;
  }
}

.gNav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .gNav ul {
    display: block;
    margin: 0;
  }
}

.gNav li:nth-of-type(n + 2) {
  margin: 0 0 0 20px !important;
}

.gNav li::before {
  display: none;
}

.gNav li a {
  font-weight: 700;
}

.gNav .btn.cv a {
  margin: 0;
  padding: 5px 20px;
  border-radius: 20px;
  width: auto;
}

.gNav .btn.cv a:before {
  content: "\f0e0";
  display: inline-block;
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  margin: 0 5px 0 0;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  .gNav li,
  .gNav li:nth-of-type(n + 2) {
    display: block !important;
    text-align: center;
    margin: 0 !important;
    padding: 15px;
  }

  .gNav li:nth-of-type(n + 2) {
    border-top: 1px solid #ccc;
  }
}

/* footer */
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 200px 0 0;
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid #ececec;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  footer {
    flex-wrap: wrap;
  }
}

footer address li {
  font-weight: 400;
  margin: 0 0 0 50px !important;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  footer address li {
    margin: 0 !important;
  }
}

footer address li.tel:before {
  content: "\f879" !important;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  margin: 0 5px 0 0 !important;
}

footer address li.mail:before {
  content: "\f0e0" !important;
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  margin: 0 5px 0 0 !important;
}

footer .logo {
  margin: 0 0 0 50px;
}

footer .logo img {
  width: 60px;
}

.footerNav ul {
  display: flex;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  .footerNav ul {
    flex-wrap: wrap;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .footerNav ul {
    justify-content: center;
    margin: 0 0 20px !important;
  }
}

.footerNav li:nth-of-type(n + 2) {
  margin: 0 0 0 30px !important;
}

.footerNav li:before {
  content: "\f105" !important;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  margin: 0 5px 0 0 !important;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  .footerNav li {
    width: calc(100% / 3);
  }

  .footerNav li:last-of-type {
    width: calc(100% / 3 * 2);
  }

  .footerNav li:nth-of-type(n + 2) {
    margin: 0;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  .footerNav li,
  .footerNav li:nth-of-type(n + 2) {
    margin: 0 10px !important;
    width: auto;
  }
}

/* #fv */
#fv {
  margin: 0 auto;
  padding: 150px 0 0;
  width: 1000px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  #fv {
    padding: 150px 15px 0;
    width: 100%;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #fv {
    padding: 15% 15px 0;
  }
}

#fv h1 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  margin: 30px 0;
  width: 100%;
}

#pageIndex #fv h1 {
  font-size: 50px;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #fv h1 {
    font-size: 16px;
    margin: 0;
  }
}

#fv h1 span {
  display: block;
  font-size: 50px;
  line-height: 1.2;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #fv h1 span {
    font-size: 36px;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #pageIndex #fv h1 {
    margin: 20px 0;
    font-size: 36px;
  }
}

#fv p {
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #fv p {
    font-size: 16px;
  }
}

/* #wrapper */

section {
  margin: 0 auto;
  padding: 100px 0 0;
  width: 1050px;
}

#pageIndex section {
  padding: 200px 0 0;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  section {
    padding: 100px 15px 0;
    width: 100%;
  }

  #pageIndex section {
    padding: 200px 15px 0;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  section,
  #pageIndex section {
    padding: 100px 15px 0;
    width: 100%;
  }
}

h2 {
  display: flex;
  clear: both;
}

h2::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  width: 5px;
  height: auto;
  background: -moz-linear-gradient(top,
      #ed6e22 0%,
      #ed6e22 50%,
      #56bfbf 51%,
      #56bfbf 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #ed6e22 0%,
      #ed6e22 50%,
      #56bfbf 51%,
      #56bfbf 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #ed6e22 0%,
      #ed6e22 50%,
      #56bfbf 51%,
      #56bfbf 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#contact h2::before,
#pageIndex h2::before {
  display: none;
}

h2 span {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  width: calc(100% - 15px);
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  h2 span {
    font-size: 22px;
    font-weight: 800;
  }
}

#contact h2,
#pageIndex h2 {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin: 15px auto;
  width: 100%;
}

#contact h2::before {
  display: none;
}

#contact h2 span,
#pageIndex h2 span {
  display: inline-block;
  vertical-align: middle;
  font-size: 40px;
  font-weight: 800;
  margin: 0 20px 0 0;
  width: auto;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  #contact h2,
  #pageIndex h2 {
    font-size: 16px;
  }

  #contact h2 span,
  #pageIndex h2 span {
    font-size: 30px;
  }
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 0;
}

#pageIndex h3,
h2.case {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  margin: 40px auto 0;
  width: 100%;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {

  #pageIndex h3,
  h2.case {
    font-size: 20px;
  }
}

h2.case::before {
  height: 100%;
}

h3.case {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}

h3.case span,
h2.case span span {
  display: inline-block;
  margin: 0 10px 0 0;
  width: auto;
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #ffffff 60%,
      #ffc388 61%,
      #ffc388 80%,
      #ffffff 81%,
      #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.h3Block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 1050px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  .h3Block {
    padding: 0;
    width: 100%;
  }
}

/* #pageIndex #service */
#pageIndex #service {
  width: 100%;
  background: url(../img/mainbg_02.png) right top / 100% no-repeat;
}

#pageIndex #service h2 {
  width: 1050px;
}

#pageIndex #service h3 {
  width: 1050px;
  clear: both;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {

  #pageIndex #service h2,
  #pageIndex #service h3 {
    padding: 0;
    width: 100%;
  }
}

#pageIndex #service .h3Block.service p {
  margin: 15px 50px 0 0;
  width: 600px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  #pageIndex #service .h3Block.service p {
    margin: 15px 0 0;
    width: 100%;
  }
}

#pageIndex #service .h3Block.service .image {
  margin: -150px 0 0;
  width: 400px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  #pageIndex #service .h3Block.service .image {
    margin: 0 auto;
    width: 400px;
  }
}

#pageIndex #service .h3Block.service .image img {
  width: 100%;
}

#pageIndex #service .h3Block.strength p {
  width: 100%;
}

div.strength {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

div.strength dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px 10px;
  padding: 55px 0 65px;
  width: calc(100% / 3 - 20px);
  border: 8px solid #dcf2f4;
  border-radius: 50%;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  div.strength dl {
    margin: 15px 0 0;
    padding: 10px 0 15px;
    width: 100%;
    border-radius: 0;
  }
}

div.strength dt {
  color: #56bfbf;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  width: 100%;
}

div.strength dt span {
  display: inline-block;
  font-size: 32px;
  line-height: 1;
  padding: 0 0 0 5px;
}

div.strength dd {
  font-weight: 700;
  text-align: center;
  width: 100%;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  div.strength dd {
    padding: 0 10px;
  }
}

/* #casestudy */
#casestudy table {
  margin: 47px 40px 0 0;
  width: calc(60% - 40px);
  border: 1px solid #ccc;
  border-collapse: collapse;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #casestudy table {
    margin: 15px 0 20px;
    width: 100%;
  }
}

#casestudy table th {
  text-align: center;
  padding: 20px 10px;
  width: 100px;
  background: #f8feff;
  border: 1px solid #ccc;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #casestudy table th {
    padding: 15px 10px;
    width: 60px;
  }
}

#casestudy table td {
  vertical-align: middle;
  padding: 20px 10px;
  border: 1px solid #ccc;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #casestudy table td {
    padding: 15px 10px;
  }
}

#casestudy table td ul {
  margin: 0;
}

#casestudy .jireiGraph {
  width: 40%;
}

#casestudy .jireiGraph dt {
  text-align: center;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #casestudy .jireiGraph {
    width: 100%;
  }
}

#casestudy .jireiGraph img {
  width: 100%;
}

/* #contact */
#contact {
  width: 100%;
}

#pageIndex #contact {
  background: url(../img/mainbg_02.png) right top / 100% no-repeat;
}

#contact h2 {
  width: 1050px;
}

#contact p {
  margin: 15px auto 0;
  width: 840px;
}

#contact p.lead {
  margin: 0 auto;
  width: 1050px;
}

#contact hr {
  margin: 0 auto;
  width: 1050px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {

  #contact h2,
  #contact p,
  #contact p.lead,
  #contact hr {
    width: 100%;
  }
}

#contact p.contactTel {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 20px auto 0;
  width: 1050px;
}

#contact p.contactTitle {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 40px auto 0;
  width: 1050px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  #contact p.contactTel {
    padding: 0 15px;
    width: 100%;
  }

  #contact p.contactTitle {
    font-size: 20px;
    padding: 0 15px;
    width: 100%;
  }
}

p.contactTel::before {
  content: "\f879";
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  margin: 20px 10px 0 0;
}

p.contactTel span {
  display: inline-block;
  margin: 0 30px;
}

p.contactTel small {
  font-weight: 400;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  p.contactTel small {
    display: block;
  }
}

div.contactTel {
  margin: 0 0 10px;
}

div.contactTel a:before {
  content: "\f879";
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  margin: 0 5px 0 0;
}

div.contactTel small {
  display: block;
  text-align: center;
  margin: 5px 0 0;
}

.contactForm {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 50px;
  width: 840px;
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  .contactForm {
    width: 100%;
  }
}

.contactForm dt {
  padding: 25px 0 0;
  width: 30%;
  border-top: 1px solid #efefef;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .contactForm dt {
    padding: 15px 0 0;
    width: 100%;
    border-bottom: none;
  }
}

.contactForm dt span {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  margin: 0 0 0 10px;
  padding: 0 5px;
  border-radius: 5px;
}

.contactForm dt span.required {
  color: #fff;
  background: #f00;
}

.contactForm dt span.any {
  color: #666;
  font-weight: normal;
  background: #ebebeb;
}

.contactForm dd {
  margin: 0 0 25px;
  padding: 25px 0 0;
  width: 70%;
  border-top: 1px solid #efefef;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .contactForm dd {
    padding: 10px 0 0;
    width: 100%;
    border-top: none;
  }
}

.contactForm dd input,
.contactForm dd textarea,
.contactForm dd select {
  width: 100%;
}

form p {
  text-align: center;
}

form a {
  font-weight: 700;
  text-decoration: underline;
}

/* fadeIn */
.fadeInUp {
  opacity: 0;
  transition: 1.5s;
  transform: translateY(150px);
}

/* 会社概要 */
.companyInfo {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
  width: 100%;
}

.companyInfo dt {
  padding: 10px 0;
  width: 6rem;
}

.companyInfo dd {
  padding: 10px 0;
  width: calc(100% - 6rem);
}

/* ----- PC専用（幅1025px以上） ----- */
@media screen and (min-width: 1025px) {

  .companyInfo dt,
  .companyInfo dd {
    border: none;
  }
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {

  .companyInfo dt,
  .companyInfo dd {
    border: none;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .companyInfo {
    margin: 15px 0 0;
    width: 100%;
  }

  .companyInfo dt,
  .companyInfo dd {
    border-bottom: 1px solid #ccc;
  }
}

/* マップ
.map{
  padding: 0 0 0 50px;
  width: 50%;
  position: relative;
}
.map iframe{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}*/
/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .map {
    margin: 15px 0 0;
    padding: 250px 0 0;
    width: 100%;
  }
}

/* 事業内容 */
.businessContent li {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}

.businessContent li:nth-of-type(n + 2) {
  margin: 15px 0 0;
}

.businessContent li::before {
  content: "\f111";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  margin-right: 5px;
}

.businessContent li a {
  text-decoration: underline;
}

/* 役員紹介 */
.officer {
  padding: 0 15px 15px;
  border-bottom: 1px solid #ccc;
}

.officer dt {
  font-size: 18px;
}

.officer dt span {
  display: inline-block;
  color: #ed6e21;
  font-size: 16px;
  margin: 0 0 0 15px;
}

/* フラクタルが提供するサービス */
#serviceDetail ul {
  margin: 5px 0 0;
}

/* SEOコンサルティングの流れ */
.methodNum {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px;
  border: 2px solid #f3ddd0;
}

.methodNum:first-of-type {
  margin: 15px 0 0;
}

.methodNum .num {
  color: #ed6e21;
  font-size: 28px;
  font-weight: bold;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #f3ddd0;
}

.methodNum .title {
  color: #ed6e21;
  font-size: 19px;
  font-weight: bold;
  margin: 0 10px 0 0;
}

.methodArrow {
  padding: 15px 15px 15px 130px;
  background: url(../img/arrow.png) left 25px bottom / auto 190% no-repeat;
}

.methodArrow strong {
  display: block;
  color: #000;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .methodArrow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 15px 15px 15px 90px;
    background: url(../img/arrow.png) left 15px bottom / auto 160px no-repeat;
  }

  .methodArrow .title,
  .methodArrow .comment {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
}

/* 実績事例ページ */
#pageCasestudy #casestudy table {
  margin: 15px 0 0;
  width: 100%;
}

#pageCasestudy #casestudy .jireiGraph {
  width: 50%;
}

#pageCasestudy #casestudy .jireiGraph:nth-of-type(odd) {
  padding: 0 15px 0 0;
}

#pageCasestudy #casestudy .jireiGraph:nth-of-type(even) {
  padding: 0 0 0 15px;
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  #pageCasestudy #casestudy .jireiGraph {
    padding: 0 !important;
    width: 100%;
  }
}

/* プライバシーポリシー */
#pagePrivacy li {
  display: flex;
  line-height: 1.5;
}

#pagePrivacy li:nth-of-type(n + 2) {
  margin: 10px 0 0;
}

#pagePrivacy li::before {
  content: "・";
  margin: 0 5px 0 0;
}

#pagePrivacy .contactBlock li {
  display: block;
}

#pagePrivacy .contactBlock li::before {
  content: "";
  margin: 0;
}

#pagePrivacy .contactBlock .tel::before {
  content: "\f879";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  margin: 0 5px 0 0;
}

.block_bnr {
  margin: 20px auto -80px;
  width: 95%;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .block_bnr {
    margin: 20px auto -150px;
  }
}

.block_bnr img {
  width: 100%;
}

/* ----- PC専用（幅1025px以上） ----- */
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* ----- PC専用（幅1025px以上） ----- */
@media screen and (min-width: 1025px) {}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {}

/* ----- PC専用（幅1025px以上） ----- */
@media screen and (min-width: 1025px) {}

/* ----- タブレット幅以下（幅1024px以下） ----- */
@media only screen and (max-width: 1024px) {}

/* ----- スマホ専用（幅767以下） ----- */
@media screen and (max-width: 767px) {}