@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "D-DIN Regular";
  font-style: normal;
  font-weight: normal;
  src: local("D-DIN Regular"), url("/_assets/font/D-DIN.woff") format("woff");
}

@font-face {
  font-family: "D-DIN DIN-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("D-DIN DIN-Bold"),
    url("/_assets/font/D-DIN-Bold.woff") format("woff");
}

html,
body {
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    Osaka, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  word-wrap: break-word;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

a,
button {
  outline: none;
  color: #333;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a:hover {
  color: inherit;
}

a:hover img {
  opacity: 1;
}

input,
select,
textarea,
button {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    Osaka, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.ff-barlow {
  font-family: "Barlow Condensed", sans-serif;
}

.js-sticky:before,
.js-sticky:after {
  content: "";
  display: table;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  display: none;
}

.u-text__left {
  text-align: left;
}

.c-grid {
  display: grid;
  grid-template-rows: auto;
}

.c-grid.-col2 {
  --numberOfCol: 2;
}

.c-grid.-gap30_30 {
  gap: 30px 30px;
  grid-auto-rows: auto;
  grid-template-columns: repeat(
    auto-fill,
    calc(
      100% / var(--numberOfCol -1) - 30px * (var(--numberOfCol -1) - 1) /
        var(--numberOfCol -1)
    )
  );
}

.c-grid__item {
  width: 100%;
}

.st-kaiwa-face img {
  border-radius: 0;
}

.st-kaiwa-hukidashi,
.st-kaiwa-hukidashi2 {
  font-size: 1.5rem;
}

.l-header {
  background: #fff;
}

.header__inner {
  margin: 0 auto;
  padding: 15px 20px;
  height: 60px;
}

.header__logo {
  max-width: 225px;
}

.header__logo img {
  vertical-align: top;
  width: 100%;
}

.header__logo a {
  position: relative;
  display: block;
  width: 80%;
  text-decoration: none;
}

.header__logo a .header__logo__text {
  position: absolute;
  bottom: 0;
  left: 35%;
  color: #333;
  font-size: 13px;
  font-weight: bold;
}

.header__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-top: -30px;
}

.header__item {
  font-size: 1.2rem;
  position: relative;
}

.header__item a {
  text-decoration: none;
}

.header__item--search {
  margin-left: 25px;
  padding-left: 25px;
  position: relative;
}

.header__item--search::before {
  content: "";
  height: 1em;
  width: 1px;
  background: #333;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header__item--search.is-open .header__item--search-inner {
  background: #f7f7f7;
}

.header__item--search.is-open .header__item--search-open {
  display: none;
}

.header__item--search.is-open .header__item--search-close {
  display: block;
}

.header__item--search.is-open .header__form--input {
  width: 150px;
}

.header__item--search.is-open .header__form--input input {
  background: #f7f7f7;
}

.header__item--search-inner {
  padding-right: 10px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__item--search-close {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  text-align: center;
  border-right: 2px solid #fff;
  cursor: pointer;
}

.header__item--search-close::before,
.header__item--search-close::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header__item--search-close::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header__item--search-close::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.header__item--search-open {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 36px;
  cursor: pointer;
}

.header__item--search .header__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__item--search .header__form--input {
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__item--search .header__form--input input {
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  position: relative;
  text-decoration: none;
  color: #333;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  height: 36px;
  padding: 3px 10px;
  width: 100%;
}

.header__item--search .header__form--input input::-webkit-input-placeholder {
  color: #9c9c9c;
}

.header__item--search .header__form--input input::-moz-placeholder {
  color: #9c9c9c;
}

.header__item--search .header__form--input input:-ms-input-placeholder {
  color: #9c9c9c;
}

.header__item--search .header__form--input input::-ms-input-placeholder {
  color: #9c9c9c;
}

.header__item--search .header__form--input input::placeholder {
  color: #9c9c9c;
}

.header__item--search .header__ico--search {
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  position: relative;
  text-decoration: none;
  color: #333;
  display: inline-block;
  margin: 0;
  padding: 0;
  background: url("../../../img/kakehashi/ico_search_bk.svg") no-repeat left
    center;
  background-size: 15px auto;
  font-size: 1.2rem;
}

.header__item--contact {
  margin-left: 15px;
}

.header__item--contact a {
  background: url("../../../img/kakehashi/ico_mail_wt.svg") no-repeat left 15px
    center #009fe8;
  background-size: 15px auto;
}

.header__item--mailmagazine {
  margin-left: 15px;
}

.header__item--mailmagazine a {
  background: url("../../../img/kakehashi/ico_mailmagazine_bl.svg") no-repeat
    left 15px center #fff;
  background-size: 18px auto;
  color: #1cc9ee;
  border: 1px solid #1cc9ee;
}

.header__button {
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 15px 10px 40px;
  border-radius: 18px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
}

.pc-nav {
  display: none;
  bottom: 0;
  z-index: 22;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
}

.pc-nav span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pc-nav span:nth-of-type(2) {
  top: 7px;
}

.pc-nav span:last-of-type {
  top: 14px;
}

.pc-nav.is-active span:first-of-type {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.pc-nav.is-active span:nth-of-type(2) {
  opacity: 0;
}

.pc-nav.is-active span:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 7px;
}

.mobile-nav {
  bottom: 0;
  z-index: 22;
  width: 32px;
  height: 22px;
  position: absolute;
  top: 22px;
  right: 20px;
}

.mobile-nav span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-nav span:nth-of-type(2) {
  top: 10px;
}

.mobile-nav span:last-of-type {
  top: 20px;
}

.mobile-nav.is-active span:first-of-type {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.mobile-nav.is-active span:nth-of-type(2) {
  opacity: 0;
}

.mobile-nav.is-active span:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 7px;
}

.global-nav {
  position: relative;
}

.global-nav__button {
  color: #fff;
  font-size: 1.5rem;
  padding: 9px 15px 9px 40px;
  text-decoration: none;
  display: block;
}

.global-nav__button:hover {
  color: #fff;
}

.global-nav__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.global-nav__button-item {
  width: 50%;
  text-align: center;
}

.global-nav__button-item--contact a {
  background: #009fe8;
  border: 1px solid #009fe8;
}

.global-nav__button-item--contact a span {
  display: inline-block;
  height: 100%;
  background: url("../../../img/kakehashi/ico/ico_mail_wt.svg") no-repeat left
    center;
  background-size: 16px 11px;
  padding: 10px 10px 10px 25px;
  margin-left: -20px;
}

.global-nav__button-item--mailmagazine a {
  background: #fff;
  border: 1px solid #1cc9ee;
}

.global-nav__button-item--mailmagazine a span {
  display: inline-block;
  height: 100%;
  background: url("../../../img/kakehashi/ico_mailmagazine_bl.svg") no-repeat
    left center;
  background-size: 20px auto;
  padding: 10px 10px 10px 25px;
  margin-left: -20px;
  color: #1cc9ee;
}

.global-nav__list {
  margin: 0 auto;
  list-style: none;
}

.global-nav__link {
  text-decoration: none;
  position: relative;
}

.global-nav__search {
  background: #444;
  padding: 30px 20px;
}

.global-nav__search-inner {
  position: relative;
}

.global-nav__search--input {
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  position: relative;
  text-decoration: none;
  color: #333;
  display: inline-block;
  margin: 0;
  padding: 0;
  border-radius: 2px;
  background: #fff;
  width: 100%;
  padding: 17px 50px 17px 15px !important;
  line-height: 1.2;
  font-size: 1.6rem;
}

.global-nav__search--input::-webkit-input-placeholder {
  color: #9c9c9c;
}

.global-nav__search--input::-moz-placeholder {
  color: #9c9c9c;
}

.global-nav__search--input:-ms-input-placeholder {
  color: #9c9c9c;
}

.global-nav__search--input::-ms-input-placeholder {
  color: #9c9c9c;
}

.global-nav__search--input::placeholder {
  color: #9c9c9c;
}

.global-nav__search--button {
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  position: relative;
  text-decoration: none;
  color: #333;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}

.global-nav__search--button img {
  vertical-align: top;
  width: 100%;
}

.global-nav .nav-child {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.global-nav .nav-child__inner {
  padding: 30px 20px;
}

.global-nav .nav-child__title {
  font-weight: bold;
  color: #333;
}

.global-nav .nav-child__title--link {
  text-decoration: none;
  background: url("../../../img/kakehashi/ico_circlearw_bk.svg") no-repeat right
    center;
  background-size: 30px;
}

.global-nav .nav-child__content {
  text-align: left;
}

.global-nav .nav-child__content--aboutus .nav-child__button01 span {
  background: url("../../../img/kakehashi/nav_aboutus_01.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--aboutus .nav-child__button02 span {
  background: url("../../../img/kakehashi/nav_aboutus_02.svg") no-repeat left
    15px center;
  background-size: 25px auto;
}

.global-nav .nav-child__content--service .nav-child__button01 span {
  background: url("../../../img/kakehashi/nav_service_01.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--service .nav-child__button02 span {
  background: url("../../../img/kakehashi/nav_service_02.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--service .nav-child__button03 span {
  background: url("../../../img/kakehashi/nav_service_03.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--service .nav-child__button04 span {
  background: url("../../../img/kakehashi/nav_service_04.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--service .nav-child__button05 span {
  background: url("../../../img/kakehashi/nav_service_05.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--service .nav-child__button06 span {
  background: url("../../../img/kakehashi/nav_service_06.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--service .nav-child__button07 {
  background-image: url(../../../img/kakehashi/ico_circlearw_wt.svg);
  background-color: #009fe8;
  color: #fff;
  -webkit-padding-start: 42px;
  padding-inline-start: 42px;
}

.global-nav .nav-child__content--service .nav-child__button07 span {
  background: url("../../../img/kakehashi/nav_service_07.svg") no-repeat left
    15px center;
  background-size: 30px auto;
  background-image: none;
  padding-left: 0;
  position: relative;
}

.global-nav .nav-child__content--service .nav-child__button08 span {
  background: url("../../../img/kakehashi/nav_service_08.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--works .nav-child__button01 span {
  background: url("../../../img/kakehashi/nav_works_01.svg") no-repeat left 15px
    center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--works .nav-child__button02 span {
  background: url("../../../img/kakehashi/nav_works_02.svg") no-repeat left 15px
    center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--company .nav-child__button01 span {
  background: url("../../../img/kakehashi/nav_company_01.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--company .nav-child__button02 span {
  background: url("../../../img/kakehashi/nav_company_02.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--company .nav-child__button03 span {
  background: url("../../../img/kakehashi/nav_company_03.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--company .nav-child__button04 span {
  background: url("../../../img/kakehashi/nav_company_04.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--chiebukuro .nav-child__button01 span {
  background: url("../../../img/kakehashi/nav_service_01.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--chiebukuro .nav-child__button02 span {
  background: url("../../../img/kakehashi/nav_service_02.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--chiebukuro .nav-child__button03 span {
  background: url("../../../img/kakehashi/nav_service_03.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__content--chiebukuro .nav-child__button04 span {
  background: url("../../../img/kakehashi/nav_service_04.svg") no-repeat left
    15px center;
  background-size: 30px auto;
}

.global-nav .nav-child__button {
  text-decoration: none;
  display: block;
  width: 100%;
  font-size: 1.5rem;
  background: url("../../../img/kakehashi/ico_circlearw_bl.svg") no-repeat right
    10px center #fff;
  background-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  color: #333;
}

.global-nav .nav-child__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global-nav .nav-child__list {
  list-style: none;
}

.global-nav .nav-child__link {
  display: block;
  position: relative;
  text-decoration: none;
}

.global-nav-floating {
  position: fixed;
  top: 64px;
  -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-nav-floating.is-open {
  display: block;
  opacity: 1;
  z-index: 19;
  visibility: visible;
}

.global-nav-floating__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  padding: 70px 20px;
  margin: 0 auto;
  position: relative;
}

.global-nav-floating__title {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0 10px;
}

.global-nav-floating__list {
  inline-size: calc(100% / 3);
  list-style: none;
}

.global-nav-floating__list:not(:first-child) {
  border-left: 1px solid #cfcfcf;
}

.global-nav-floating__list:first-child {
  /* width: 30%;
  width: 335px; */
  /* padding-right: 30px; */
}

.global-nav-floating__list:nth-child(2) {
  /* width: 40%;
  width: 490px; */
  padding-left: 30px;
}

.global-nav-floating__list:nth-child(3) {
  /* width: 20%;
  width: 225px; */
  padding-left: 30px;
}

.global-nav-floating__list:last-child {
  /* width: 10%;
  width: 150px; */
  padding-left: 30px;
}

.global-nav-floating__list--child {
  list-style: none;
}

.global-nav-floating__list--child + .global-nav-floating__list--child {
  margin-left: 20px;
}

.global-nav-floating__list--child-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.global-nav-floating__item:first-child .global-nav-floating__title {
  margin-top: 0;
}

.global-nav-floating__item--child {
  margin-top: 5px;
}

.global-nav-floating__link {
  background: url("../../../img/kakehashi/ico_circlearw_bk.svg") no-repeat right
    center;
  background-size: 24px;
  padding: 3px 30px 3px 0;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-nav-floating__link--child {
  font-size: 1.6rem;
  padding-left: 1em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-nav-floating__link--child::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #333333;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.global-nav-floating__link--child[target="_blank"]::after {
  content: "";
  display: inline-block;
}

.global-nav-floating__link--child-sub {
  font-size: 1.4rem;
  padding-left: 1em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-nav-floating__link--child-sub::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #009fe8;
  border-top: 1px solid #009fe8;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  left: 0;
  top: 50%;
}

.global-nav-floating a {
  text-decoration: none;
  color: #333;
}

@media screen and (min-width: 48.0625em) {
  body {
    min-width: 1200px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .is-sp {
    display: none !important;
  }
  .l-header {
    height: 115px;
  }
  .l-header.is-fixed .header__outer {
    position: fixed;
    background: #fff;
    z-index: 20;
    left: 0;
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 100%;
    -webkit-animation: headerfixed 0.3s ease forwards;
    animation: headerfixed 0.3s ease forwards;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  }
  @-webkit-keyframes headerfixed {
    0% {
      -webkit-transform: translate3d(0, -52px, 0);
      transform: translate3d(0, -52px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes headerfixed {
    0% {
      -webkit-transform: translate3d(0, -52px, 0);
      transform: translate3d(0, -52px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  .l-header.is-fixed .header__inner {
    height: 64px;
    width: 1200px;
  }
  .l-header.is-fixed .header__inner .pc-nav {
    display: block;
  }
  .l-header.is-fixed .header__logo {
    max-width: 230px;
    margin-top: 0px !important;
  }
  .l-header.is-fixed .header__list {
    margin-top: 0;
    margin-right: 60px;
  }
  .l-header.is-fixed .header__list::before {
    content: "";
    display: inline-block;
    height: 64px;
    width: 1px;
    background: #eaeaea;
    position: absolute;
    right: 65px;
    top: 0;
  }
  .header__inner {
    max-width: 1420px;
    padding: 0 20px;
    height: 115px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  .header__logo {
    max-width: 310px;
    margin-top: -20px !important;
  }
  .header__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__item a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__item a:hover {
    color: #009fe8;
  }
  .header__item--download a {
    color: #333;
  }
  .header__item--search:hover .header__ico--search {
    color: #009fe8;
  }
  .header__item--search.is-open:hover .header__ico--search {
    color: #333;
  }
  .header__item--search .header__ico--search {
    padding-left: 22px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__item--contact a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__item--contact a:hover {
    opacity: 0.8;
    color: #fff;
  }
  .header__item--mailmagazine a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__item--mailmagazine a:hover {
    opacity: 0.8;
    color: #1cc9ee;
  }
  .mobile-nav {
    display: none;
  }
  .global-nav {
    margin-top: -40px;
    z-index: 21;
    width: 100%;
  }
  .global-nav__button-group {
    display: none;
  }
  .global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-width: 1420px;
    padding-right: 20px;
  }
  .global-nav__item {
    margin-left: 40px;
    padding-bottom: 14px;
  }
  .global-nav__item > p {
    margin-bottom: 0;
  }
  .global-nav__item:hover .nav-child {
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
  .global-nav__link {
    color: #333;
    font-size: 1.4rem;
    cursor: pointer;
  }
  .global-nav__link span {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .global-nav__link span::after {
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 11px 13px 11px;
    border-color: transparent transparent #f7f7f7 transparent;
  }
  .global-nav__link span.is-hover {
    color: #009fe8;
  }
  .global-nav__link span.is-hover::after {
    opacity: 1;
  }
  .global-nav__link:hover span {
    color: #009fe8;
  }
  .global-nav .nav-child {
    background: #f7f7f7;
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
  }
  .global-nav .nav-child__inner {
    max-width: 1120px;
    padding: 45px 20px 60px;
    margin: 0 auto;
  }
  .global-nav .nav-child__title {
    font-size: 2.4rem;
    padding: 5px 0;
    line-height: 1.16667;
  }
  .global-nav .nav-child__title--link {
    background-size: 35px;
    padding-right: 55px;
  }
  .global-nav .nav-child__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .global-nav .nav-child__content--col2 .nav-child__box {
    width: 520px;
  }
  .global-nav .nav-child__content--col2 .nav-child__box:nth-child(even) {
    margin-left: 40px;
  }
  .global-nav .nav-child__content--col2 .nav-child__box:nth-child(n + 3) {
    margin-top: 40px;
  }
  .global-nav .nav-child__content--col2 .nav-child__button {
    font-size: 1.6rem;
  }
  .global-nav .nav-child__content--col4 .nav-child__box {
    width: 240px;
  }
  .global-nav
    .nav-child__content--col4
    .nav-child__box:not(:nth-child(4n + 1)) {
    margin-left: 40px;
  }
  .global-nav .nav-child__content--aboutus .nav-child__button01 span {
    background-position: left 20px center;
    background-size: 37px auto;
  }
  .global-nav .nav-child__content--aboutus .nav-child__button02 span {
    background-position: left 20px center;
    background-size: 30px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button01 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button02 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button03 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button04 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button05 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button06 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button07 {
    -webkit-padding-start: 22px;
    padding-inline-start: 22px;
    font-size: 1.6rem;
  }
  .global-nav .nav-child__content--service .nav-child__button07 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--service .nav-child__button07 span::after {
    content: "";
    width: 0%;
    height: 4px;
    background-color: #009fe8;
    position: absolute;
    bottom: calc(50% - 13px);
    left: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .global-nav .nav-child__content--service .nav-child__button08 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--works .nav-child__button01 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--works .nav-child__button02 span {
    background-position: left 20px center;
    background-size: 45px auto;
  }
  .global-nav .nav-child__content--company .nav-child__button01 span {
    background-position: left 20px center;
    background-size: 35px auto;
  }
  .global-nav .nav-child__content--company .nav-child__button02 span {
    background-position: left 20px center;
    background-size: 37px auto;
  }
  .global-nav .nav-child__content--company .nav-child__button03 span {
    background-position: left 20px center;
    background-size: 37px auto;
  }
  .global-nav .nav-child__content--company .nav-child__button04 span {
    background-position: left 20px center;
    background-size: 40px auto;
  }
  .global-nav .nav-child__content--chiebukuro .nav-child__button01 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--chiebukuro .nav-child__button02 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--chiebukuro .nav-child__button03 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__content--chiebukuro .nav-child__button04 span {
    background-position: left 20px center;
    background-size: 42px auto;
  }
  .global-nav .nav-child__box:nth-child(n + 5) {
    margin-top: 40px;
  }
  .global-nav .nav-child__box > .nav-child__link::after {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    top: auto;
    bottom: 10px;
  }
  .global-nav .nav-child__button {
    font-weight: bold;
    padding-right: 60px;
    background-position: right 15px center;
    background-size: 35px;
    height: 80px;
    border-radius: 4px;
    font-size: 1.4rem;
    line-height: 1.42857;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .global-nav .nav-child__button span {
    padding-left: 80px;
  }
  .global-nav .nav-child__button:hover {
    color: #009fe8;
  }
  .global-nav .nav-child__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px;
  }
  .global-nav .nav-child__list {
    margin-top: 10px;
    width: 49%;
  }
  .global-nav .nav-child__list li:not(:first-child) {
    margin-top: 10px;
  }
  .global-nav .nav-child__list > .is-sp + .nav-child__item {
    margin-top: 0;
  }
  .global-nav .nav-child__link {
    color: #333;
    padding-left: 15px;
    font-size: 1.4rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .global-nav .nav-child__link::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #009fe8;
    border-top: 1px solid #009fe8;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    left: 0;
    top: 50%;
  }
  .global-nav .nav-child__link:hover {
    color: #009fe8;
  }
  .global-nav-floating__link:hover {
    color: #009fe8;
    background: url("../../../img/kakehashi/ico_circlearw_bl.svg") no-repeat
      right center;
    background-size: 24px;
  }
  .global-nav-floating__link--child:hover {
    color: #009fe8;
  }
  .global-nav-floating__link--child:hover[target="_blank"]::after {
    content: "";
    display: inline-block;
  }
  .global-nav-floating__link--child[target="_blank"]::after {
    background: url("../../../img/kakehashi/ico_blank_bk.svg") no-repeat right
      center;
    background-size: 11px;
    width: 11px;
    height: 11px;
    margin-left: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .global-nav-floating__link--child-sub:hover {
    color: #009fe8;
  }
}

@media screen and (max-width: 48em) {
  html {
    scroll-padding-top: 70px;
  }
  .is-pc {
    display: none !important;
  }
  .l-header {
    position: fixed;
    background: #fff;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 75px;
  }
  .header__item {
    display: none;
  }
  .pc-nav {
    display: none;
  }
  .global-nav {
    overflow-x: hidden;
    overflow-y: scroll;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
    visibility: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 75px;
    padding-bottom: 60px;
  }
  .global-nav.is-show {
    display: block;
    opacity: 1;
    z-index: 21;
    visibility: visible;
  }
  .global-nav.is-show .global-nav__overlay {
    right: 0;
  }
  .global-nav.is-show .global-nav__list {
    right: 0;
  }
  .global-nav__overlay {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 60px;
    background: #fff;
    z-index: 10;
  }
  .global-nav__overlay.is-show {
    opacity: 1;
    visibility: visible;
  }
  .global-nav__item {
    border-bottom: 1px solid #cfcfcf;
  }
  .global-nav__item:last-child {
    background: #ededed;
    border-bottom: none;
  }
  .global-nav__item .global-nav__link::after {
    display: none;
  }
  .global-nav__link {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 0;
    padding: 20px 30px 20px 20px;
    display: block;
    background: url("../../../img/kakehashi/ico_circlearw_bl.svg") no-repeat
      right 20px center;
    background-size: 30px;
    color: #333;
  }
  .global-nav__link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 25px;
    top: 50%;
  }
  .global-nav__link--plus {
    background: url("../../../img/kakehashi/ico_plus_bl.svg") no-repeat right
      20px center;
    background-size: 30px;
  }
  .global-nav__link--plus.is-open {
    background-image: url("../../../img/kakehashi/ico_minus_bl.svg");
    background-size: 30px;
  }
  .global-nav__link--plus.is-open::after {
    opacity: 0;
  }
  .global-nav__link--plus.is-open + .nav-child {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  .global-nav .nav-child {
    height: 0;
    background: #deeef5;
  }
  .global-nav .nav-child__title {
    display: none;
  }
  .global-nav .nav-child__title--link {
    display: inline-block;
    padding: 10px 40px 10px 0;
    margin-bottom: 5px;
  }
  .global-nav .nav-child__content--service .nav-child__button07 span {
    padding-left: 20px;
  }
  .global-nav .nav-child__box:not(:first-child) {
    margin-top: 20px;
  }
  .global-nav .nav-child__button {
    padding-right: 40px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
  .global-nav .nav-child__button--plus {
    background-image: url("../../../img/kakehashi/ico_plus_bl.svg");
    background-size: 30px;
  }
  .global-nav .nav-child__button--plus.is-open {
    background-image: url("../../../img/kakehashi/ico_minus_bl.svg");
    background-size: 30px;
    border-radius: 2px 2px 0 0;
  }
  .global-nav .nav-child__button--plus.is-open + .nav-child__lists {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  .global-nav .nav-child__button span {
    padding: 20px 0 20px 60px;
  }
  .global-nav .nav-child__lists {
    background: #fff;
    border-top: 1px solid #cfcfcf;
    border-radius: 0 0 2px 2px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    height: 0;
  }
  .global-nav
    .nav-child__list
    + .nav-child__list
    .nav-child__item:first-child
    .nav-child__link {
    border-top: 1px solid #cfcfcf;
  }
  .global-nav .nav-child__item {
    padding: 0 20px;
  }
  .global-nav .nav-child__item:not(:last-child) .nav-child__link {
    border-bottom: 1px solid #cfcfcf;
    color: #333;
  }
  .global-nav .nav-child__link {
    text-decoration: none;
    font-size: 1.3rem;
    padding: 15px 10px 15px 15px;
    color: #333;
  }
  .global-nav .nav-child__link::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #009fe8;
    border-top: 1px solid #009fe8;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    left: 0;
    top: 50%;
  }
  .global-nav .nav-child__link--top::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #333;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .global-nav-floating {
    display: none;
  }
}

@media (hover: hover) {
  .global-nav .nav-child__content--service .nav-child__button07:hover {
    background-image: url(/_assets/images/common/ico/ico_circlearw_bl.svg);
    background-color: #fff;
    color: #009fe8;
  }
  .global-nav
    .nav-child__content--service
    .nav-child__button07:hover
    span:after {
    width: 100%;
  }
}

@media screen and (min-width: 48.0625em) and (min-width: 48.0625em) {
  .global-nav-floating__link--child:hover[target="_blank"]::after {
    background: url("../../../img/kakehashi/ico_blank_bl.svg") no-repeat right
      center;
    background-size: 11px;
  }
}
