@charset "UTF-8";
/* ----------------------------------------
*	 body
* ---------------------------------------- */
:root {
   --headerHeight: 100px;
}

@media screen and (max-width: 1300px) {
  :root {
    --headerHeight: 70px;
  }
}
html {
  scroll-padding-top: calc((var(--headerHeight, 100px)) + 30px);
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1300px) {
  html {
    scroll-padding-top: calc((var(--headerHeight, 70px)) + 30px);
  }
}

.relationship-works__html {
  scroll-padding-top: calc((var(--headerHeight, 100px)) + 0px);
}
@media screen and (max-width: 1300px) {
  .relationship-works__html {
    scroll-padding-top: calc((var(--headerHeight, 70px)) + 0px);
  }
}
body {
  margin: 0;
  padding: 0;
  color: #111;
  line-height: 1.8;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: none;
}

.is-sp {
  display: none;
}

ul,
ol,
li,
dl,
dt,
dd,
div,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
  letter-spacing: 1px;
}

table,
th,
td {
  margin: 0;
  padding: 0;
  font-weight: normal;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  border-style: none;
}

@media screen and (max-width: 800px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: inline-block;
  }
}
/* ----------------------------------------
*	 common
* ---------------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

@media screen and (max-width: 800px) {
  .flex {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
/* ----------------------------------------
*	 link
* ---------------------------------------- */
a:link {
  color: #111;
  text-decoration: none;
}

a:visited {
  color: #111;
  text-decoration: none;
}

a:active {
  color: #111;
  text-decoration: none;
}

a:hover {
  color: #f5ce28;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* ----------------------------------------
*	 title
* ---------------------------------------- */
.head01 {
  font-size: 42px;
  letter-spacing: 5px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}

.head03 {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}

.yoko-subtitle {
  padding-left: 40px;
  position: relative;
}

.yoko-subtitle:before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 30px;
  height: 5px;
  background-color: #00c1d2;
}

@media screen and (max-width: 800px) {
  .head01 {
    font-size: 38px;
    letter-spacing: 5px;
    line-height: 1.4;
  }
  .head01.vw {
    font-size: 10vw;
  }
  .head04.vw {
    font-size: 7vw;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
/* ----------------------------------------
*	 table
* ---------------------------------------- */
table,
th,
td {
  border-collapse: collapse;
}

table {
  width: 100%;
  border: none;
  background: #fff;
}

th {
  padding: 10px 0;
  border: 2px solid #ccc;
  background: #f7f7f7;
}

td {
  padding: 10px 20px;
  border: 2px solid #ccc;
}

@media screen and (max-width: 800px) {
  td {
    font-size: 1.4rem;
  }
}
/* ----------------------------------------
*	 btn
* ---------------------------------------- */
.btn {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .btn {
    text-align: center;
  }
}
/* ----------------------------------------
*	 google map
* ---------------------------------------- */
@media screen and (max-width: 1020px) {
  .gmap {
    height: 0;
    padding-top: 30px;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
  }
  .access-box:last-of-type .gmap {
    margin-bottom: 25px;
  }
  .gmap iframe,
  .gmap object,
  .gmap embed {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* ----------------------------------------
*	 zoom
* ---------------------------------------- */
.img a {
  width: 100%;
  display: block;
}

.img a .zoom {
  height: 100%;
  overflow: hidden;
}

.img a .zoom img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.img a:hover .zoom img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* ----------------------------------------
*	 fadein
* ---------------------------------------- */
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ----------------------------------------
*	 header
* ---------------------------------------- */
header {
  width: 100%;
  height: 100px;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  background: #004AAD;
}

header .inner {
  width: 100%;
  margin: auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .logo {
  width: 24%;
  padding: 0;
  text-align: left;
  background: #FFF;
}

header h1.logo {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .logo img {
  width: auto;
  height: 100px;
}

@media screen and (max-width: 1300px) {
  header {
    height: 70px;
  }
  header .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .logo {
    width: auto;
    height: 70px;
    padding: 0;
  }
  header .logo img {
    height: 70px;
    position: relative;
    top: 0;
    left: 0;
  }
  .home header .logo img {
    top: 0px;
  }
}
/* ----------------------------------------
*	 main
* ---------------------------------------- */
#main {
  width: 100%;
  margin: 100px auto 0;
  overflow: hidden;
}

@media screen and (max-width: 1300px) {
  #main {
    margin-top: 70px;
  }
}
#main .inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  #main .inner {
    margin: 0 auto;
    width: 90%;
  }
}
.head {
  margin: 0 0 60px;
}

/* ----------------------------------------
*	 footer
* ---------------------------------------- */
.footer-contact {
  width: 100%;
  padding: 80px 0;
  background: #004AAD;
}

.footer-contact .inner {
  width: 1000px;
  margin: 0 auto;
}

.footer-contact h3 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.4;
}

.footer-contact span {
  font-size: 1.4rem;
}

.footer-contact a {
  display: block;
  color: #111;
}

.footer-contact .telbtn,
.footer-contact .formbtnbtn {
  width: 32%;
  text-align: center;
  line-height: 1.6;
  background: #fff;
}

.footer-contact .telbtn a,
.footer-contact .formbtn a {
  padding: 16px 10px 15px;
  width: 100%;
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
}

.footer-contact .telbtn a:hover {
  color: #111;
}

.footer-contact .telbtn h3 {
  font-size: 3.8rem;
}

.footer-contact .formbtn a {
  color: #111;
  background: #ff0;
}

.footer-contact .formbtn a:hover {
  color: #111;
  background: #fff;
}

@media screen and (max-width: 1020px) {
  .footer-contact .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .footer-contact {
    padding: 40px 0;
  }
  .footer-contact .telbtn,
  .footer-contact .formbtnbtn {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
/* ----------------------------------------
*	 footer
* ---------------------------------------- */
footer {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer .inner {
  width: 100%;
}

.footer-logo {
  width: 30%;
  padding: 2px 40px 7px;
}

.footer-logo img {
  width: auto;
  height: 81px;
  margin: 0;
}

.footer-nav {
  width: 55%;
  height: 150px;
}

.footer-nav ul {
  width: 100%;
  margin: 0 auto;
}

.footer-nav ul li {
  width: 20%;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.footer-nav ul li a {
  width: 100%;
  height: 150px;
  padding: 70px 0 0 0;
  display: block;
  text-align: center;
  color: #111;
}

.footer-nav ul li:first-child a {
  padding-top: 58px;
}

.footer-nav ul li a:hover {
  color: #f5ce28;
}

.copy {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 1300px) {
  footer {
    margin-bottom: 80px;
  }
  .footer-logo {
    width: 100%;
    max-width: 50rem;
    height: auto;
    margin: 0 auto;
    padding: 0 0 10px;
    text-align: center;
  }
  .footer-logo img {
    height: 90px;
    margin-bottom: 3px;
  }
  .footer-nav {
    width: 100%;
    height: auto;
  }
  .footer-nav ul {
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-nav ul li {
    width: 50%;
    font-weight: bold;
  }
  .footer-nav ul li a {
    width: 100%;
    height: auto;
    min-height: 80px;
    padding: 29px 0 0;
  }
  .footer-nav ul li:first-child a {
    padding: 19px 0 0;
  }
}
@media screen and (max-width: 800px) {
  .footer-logo {
    max-width: 100%;
  }
}
/* Document
 ========================================================================== */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0;
  font-size: 2em;
}

/* Grouping content
 ========================================================================== */
hr {
  height: 0;
  overflow: visible;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

pre {
  font-size: 1em;
  font-family: monospace, monospace;
}

/* Text-level semantics
 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: none;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-size: 1em;
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
 ========================================================================== */
img {
  border-style: none;
}

/* Forms
 ========================================================================== */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-size: 100%;
  line-height: 1.15;
  font-family: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted #ddd;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  max-width: 100%;
  padding: 0;
  display: table;
  color: inherit;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* Interactive
 ========================================================================== */
details {
  display: block;
}

summary {
  display: list-item;
}

/* Misc
 ========================================================================== */
template {
  display: none;
}

[hidden] {
  display: none;
}

/* Top Page
 ========================================================================== */
/* ----------------------------------------
*	 mainvisual
* ---------------------------------------- */
.mainvisual {
  width: 100%;
  margin: 100px 0 0;
  padding: 0;
}

@media screen and (max-width: 1300px) {
  .mainvisual {
    margin-top: 70px;
  }
}
/* ----------------------------------------
 *	 about
 * ---------------------------------------- */
#about {
  width: 100%;
  margin: 80px 0;
}

/* ----------------------------------------
 *	 reason
 * ---------------------------------------- */
#reason {
  width: 100%;
  margin: 80px 0;
}

/* ----------------------------------------
 *	 access
 * ---------------------------------------- */
#access {
  width: 100%;
  margin: 80px 0;
}

/* ----------------------------------------
 *	 company
 * ---------------------------------------- */
#company {
  width: 100%;
  margin: 80px 0;
}

#company table {
  width: 100%;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: #fff;
}

#company th {
  width: 25%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border: none;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #00c1d2;
}

#company td {
  width: 75%;
  text-align: left;
  border: none;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #f7f7f7;
}

#relationship-works header .logo {
  height: auto;
  width: 465px;
  padding: 0;
  background: none;
}
@media screen and (max-width: 1300px) {
  #relationship-works header .logo {
    width: 361px;
  }
}
@media screen and (max-width: 575px) {
  #relationship-works header .logo {
    width: 250px;
  }
}
#relationship-works header .logo a {
  display: inline-block;
  background: #fff;
  padding: 24px 20px;
}
@media screen and (max-width: 1300px) {
  #relationship-works header .logo a {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 575px) {
  #relationship-works header .logo a {
    padding: 21px 8px;
  }
}
#relationship-works header .logo a img {
  height: auto;
}
@media screen and (max-width: 1300px) {
  #relationship-works #mega-menu-rw_header {
    padding: 10px 40px 30px !important;
  }
}
#relationship-works #mega-menu-rw_header li a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  line-height: 1.4 !important;
  padding: 0 30px !important;
  background: none !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
}
@media screen and (max-width: 1300px) {
  #relationship-works #mega-menu-rw_header li a {
    padding: 20px 0 !important;
    border-bottom: 1px solid #fff !important;
    height: auto !important;
  }
}
#relationship-works #mega-menu-rw_header li a:hover {
  color: #000 !important;
  background: #FFFF00 !important;
}
@media screen and (max-width: 1300px) {
  #relationship-works #mega-menu-rw_header li a br {
    display: none;
  }
}
#relationship-works #mega-menu-rw_header li:last-of-type a {
  background: #FFFF00 !important;
  color: #000 !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
}
@media screen and (max-width: 1300px) {
  #relationship-works #mega-menu-rw_header li:last-of-type a {
    background: none !important;
  }
}
#relationship-works #mega-menu-rw_header li:last-of-type a:hover {
  background: #fff !important;
}
#relationship-works #main {
  margin-top: 0;
}
#relationship-works .head {
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  #relationship-works .head {
    margin-bottom: 20px;
  }
}
#relationship-works .head h2 {
  font-size: 42px;
  color: #004AAD;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #relationship-works .head h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 575px) {
  #relationship-works .head h2 {
    font-size: 26px;
  }
}
#relationship-works .head h2.center {
  text-align: center;
}
#relationship-works .head .ttl_line {
  font-size: 24px;
  font-weight: 600;
  padding-left: 45px;
  position: relative;
  line-height: 1.4;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #relationship-works .head .ttl_line {
    font-size: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  #relationship-works .head .ttl_line {
    font-size: 18px;
    margin-top: 20px;
  }
}
#relationship-works .head .ttl_line:before {
  content: "";
  width: 30px;
  height: 5px;
  background: #004AAD;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #relationship-works .head .ttl_line:before {
    width: 20px;
    height: 3px;
  }
}
#relationship-works .about-box p {
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  #relationship-works .about-box p {
    font-size: 14px;
  }
}
#relationship-works .about-box p:not(:first-of-type) {
  margin-top: 1em;
}
#relationship-works .btn_center {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  #relationship-works .btn_center {
    margin-top: 30px;
  }
}
#relationship-works .btn_center a {
  padding: 30px 80px;
  background: #FFFF00;
  display: inline-block;
}
@media screen and (max-width: 575px) {
  #relationship-works .btn_center a {
    padding: 20px 40px;
  }
}
#relationship-works .btn_center a h3 {
  font-weight: 600 !important;
  font-size: 21px;
}
@media screen and (max-width: 575px) {
  #relationship-works .btn_center a h3 {
    font-size: 16px;
  }
}
#relationship-works .btn_center a:hover {
  background: #004AAD;
}
#relationship-works .btn_center a:hover h3 {
  color: #fff;
}
#relationship-works #main .inner {
  width: 100%;
  max-width: 1060px !important;
}
#relationship-works .section_margin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0 !important;
  max-width: 100%;
}
#relationship-works .section_margin > .inner {
  max-width: 100%;
}
#relationship-works #about .inner,
#relationship-works #access .inner {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
#relationship-works #reason .inner,
#relationship-works #company .inner {
  padding-left: 30px;
  padding-right: 30px;
}
#relationship-works #reason,
#relationship-works #company {
  background: #F7F7F7 !important;
}
#relationship-works .reason-list {
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #relationship-works .reason-list {
    display: block;
  }
}
#relationship-works .reason-list li {
  width: 33.333%;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  #relationship-works .reason-list li {
    width: 100%;
  }
  #relationship-works .reason-list li:not(:first-of-type) {
    margin-top: 20px;
  }
}
#relationship-works .reason-list li .reason-list__items {
  height: 100%;
  background: #fff;
  border: 1px solid #EFEDED;
  padding: 40px 25px 30px;
}
#relationship-works .reason-list li .reason-list__items figure {
  text-align: center;
}
#relationship-works .reason-list li .reason-list__items h4 {
  font-size: 21px;
  font-weight: 600;
  color: #004AAD;
  text-align: center;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 575px) {
  #relationship-works .reason-list li .reason-list__items h4 {
    font-size: 18px;
  }
}
#relationship-works .reason-list li .reason-list__items p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #relationship-works .reason-list li .reason-list__items p {
    font-size: 14px;
  }
}
#relationship-works .access-box p {
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  #relationship-works .access-box p {
    font-size: 14px;
  }
}
#relationship-works .access-box .gmap {
  margin-top: 15px;
}
#relationship-works #company table tr th, #relationship-works #company table tr td {
  padding: 20px;
}
@media screen and (max-width: 575px) {
  #relationship-works #company table tr th, #relationship-works #company table tr td {
    font-size: 14px;
    padding: 15px;
  }
}
#relationship-works #company table tr th {
  background: #1A69C6;
}
#relationship-works #company table tr td {
  background: #fff;
}
#relationship-works #contact .inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  #relationship-works #contact .inner {
    display: block;
  }
}
#relationship-works #contact .inner > div {
  width: calc(50% - 25px);
}
@media screen and (max-width: 767px) {
  #relationship-works #contact .inner > div {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
#relationship-works #contact .inner .formbtn a {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #relationship-works #contact .inner .formbtn a {
    padding: 40px 10px;
  }
}
#relationship-works #contact .inner .formbtn a h3 {
  font-size: 21px;
  font-weight: 600;
}
#relationship-works #contact .inner .telbtn {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  #relationship-works #contact .inner .telbtn {
    margin: 20px auto 0;
  }
}
#relationship-works #contact .inner .telbtn a h3 {
  color: #004AAD;
  font-size: 38px;
  font-weight: 600;
}
#relationship-works #contact .inner .telbtn a span {
  font-size: 14px;
  color: #004AAD;
}
@media screen and (max-width: 1300px) {
  #relationship-works footer .flex {
    display: block;
  }
}
#relationship-works footer .footer-logo {
  width: 80%;
  max-width: 487px;
  padding: 10px 0 10px 40px;
}
@media screen and (max-width: 1370px) {
  #relationship-works footer .footer-logo {
    max-width: 420px;
  }
}
@media screen and (max-width: 1330px) {
  #relationship-works footer .footer-logo {
    padding: 20px 0 0;
  }
}
#relationship-works footer .footer-logo h2 a {
  display: block;
}
#relationship-works footer .footer-logo span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  line-height: 1.6;
}
#relationship-works footer .footer-nav {
  width: auto;
}
@media screen and (max-width: 1300px) {
  #relationship-works footer .footer-nav {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1300px) {
  #relationship-works footer .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#relationship-works footer .footer-nav ul li {
  width: auto;
}
@media screen and (max-width: 1300px) {
  #relationship-works footer .footer-nav ul li {
    width: 50%;
    border-top: 1px solid #e6e6e6;
  }
  #relationship-works footer .footer-nav ul li:nth-of-type(even) {
    border-left: 1px solid #e6e6e6;
  }
  #relationship-works footer .footer-nav ul li:last-of-type {
    margin-top: none;
    width: 100%;
  }
}
#relationship-works footer .footer-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 40px;
}
@media screen and (max-width: 1370px) {
  #relationship-works footer .footer-nav ul li a {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 1300px) {
  #relationship-works footer .footer-nav ul li a {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 575px) {
  #relationship-works footer .footer-nav ul li a {
    padding: 15px 20px;
    font-size: 14px;
  }
}
#relationship-works footer .footer-nav ul li:last-of-type a {
  background: #FFFF00;
}
@media screen and (max-width: 1300px) {
  #relationship-works footer .footer-nav ul li:last-of-type a {
    font-size: 18px;
    text-align: center;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1300px) and (max-width: 575px) {
  #relationship-works footer .footer-nav ul li:last-of-type a {
    font-size: 16px;
  }
}
#relationship-works footer .footer-nav ul li:last-of-type a:hover {
  background: #fff;
  color: #000;
}
#relationship-works footer .footer-group {
  width: 100%;
  background: #F7F7F7;
  padding: 20px 0;
}
#relationship-works footer .footer-group ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  #relationship-works footer .footer-group ul {
    display: block;
  }
}
#relationship-works footer .footer-group ul li {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #relationship-works footer .footer-group ul li {
    text-align: center;
    padding: 0 20px;
  }
  #relationship-works footer .footer-group ul li:not(:first-of-type) {
    margin-top: 10px;
  }
}
#relationship-works footer .footer-group ul li a {
  font-weight: 600;
}
#relationship-works footer .footer-group ul li a i {
  margin-left: 5px;
}
#relationship-works footer .copy {
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #004AAD;
  width: 100%;
  padding: 20px 10px;
  font-weight: 600;
}
#relationship-works.is-pc, #relationship-works.is-sp {
  display: block !important;
}