@charset "UTF-8";
/*------------------------------------------------------
settings
------------------------------------------------------*/
/* フォームの初期化
======================================================*/
.from__text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

.from__text:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

.from__textarea-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
  resize: none;
}

.from__textarea-text:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

.from__radio {
  display: none;
}

.from__radio + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
  font-size: 1.6rem;
  padding-left: 32px;
}

.from__radio + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.from__radio + span::after {
  -webkit-transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 8px;
}

.from__radio:checked + span::after {
  opacity: 1;
}

.from__checkbox {
  display: none;
}

.from__checkbox + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}

.from__checkbox + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}

.from__checkbox + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}

.from__checkbox:checked + span::after {
  opacity: 1;
}

.from__submit-btn {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}

.from__submit-btn:hover,
.from__submit-btn:focus {
  outline: none;
}

.from__submit-btn::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.pagetop {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 10px;
}

.pagetop a {
  display: block;
  font-size: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  background: #bdbdbd;
  border-radius: 50%;
  line-height: 50px;
}

.pagetop a i {
  font-size: 30px;
  color: #fff;
  line-height: 60px;
}

/*------------------------------------------------------
fonts
------------------------------------------------------*/
/*------------------------------------------------------
variables
------------------------------------------------------*/ /*------------------------------------------------------
mixin
------------------------------------------------------*/ /*------------------------------------------------------
Base
------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

body {
  color: #000;
  font-weight: normal;
  font-family: Noto Sans JP;
  line-height: 1;
  background-color: white;
  word-break: break-all;
}

p {
  line-height: 1;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.container {
  max-width: 1227.2px;
  padding: 0 23.6px;
  margin: 0 auto;
}

.body-padding {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .body-padding {
    padding-top: 62px;
  }
}

/* 初期設定 */
.l-header__barInner {
  display: none;
}

.c-shareBtns {
  display: none;
}

.l-articleBottom__section {
  display: none;
}

.p-articleMetas__times {
  display: none;
}

noscript {
  display: none !important;
}

.tax-company-cat .l-sidebar {
  display: none;
}

.tax-company-cat .l-content {
  display: block;
}

/*------------------------------------------------------
共通・一般・モジュールの記述
------------------------------------------------------*/
.pd {
  padding: 30px 0 30px 0;
}

.bg-color-none {
  background-color: transparent !important;
}

.line-height-1_5 {
  line-height: 1.5 !important;
}

.line-height-2 {
  line-height: 2 !important;
}

.line-height-3 {
  line-height: 3 !important;
}

.head-title {
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  background: none !important;
  color: black !important;
  font-size: 5rem !important;
  font-weight: bold !important;
}
@media screen and (max-width: 768px) {
  .head-title {
    font-size: 3rem !important;
  }
}
.head-title::before {
  border: none !important;
}

.accent-color {
  color: #172ead !important;
}

.sec-title {
  padding: 0 !important;
  font-size: 2.4rem !important;
  margin: 0 0 10px 0 !important;
}
.sec-title::before {
  background: none !important;
}

.hover-text {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .hover-text {
    display: block !important;
  }
}

.hover-block > .wp-block-cover__background {
  opacity: 0 !important;
}
@media screen and (max-width: 768px) {
  .hover-block > .wp-block-cover__background {
    opacity: 0.3 !important;
  }
}
.hover-block:hover h3,
.hover-block:hover p {
  color: white !important;
}
.hover-block:hover > .wp-block-cover__background {
  opacity: 0.3 !important;
}
.hover-block:hover .hover-text {
  display: block !important;
}

.pd-bottom {
  padding-bottom: 40px !important;
}

/*------------------------------------------------------
Main
------------------------------------------------------*/
/* header
======================================================*/
@media screen and (max-width: 768px) {
  .service-items h3,
.service-items p {
    color: white !important;
  }
}
.service-items .wp-block-cover__background {
  opacity: 0.3 !important;
}

.service-item .wp-block-cover {
  align-items: flex-start;
}
.service-item a:hover {
  opacity: 1;
}

.company-item a:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .bottom-items p {
    color: white !important;
    margin-left: 10px !important;
  }
}
.bottom-items > .swell-block-columns__inner > .swell-block-column {
  margin: 0 !important;
  width: 50% !important;
  border: 1px solid #696969 !important;
}
@media screen and (max-width: 768px) {
  .bottom-items > .swell-block-columns__inner > .swell-block-column {
    width: 100% !important;
  }
}
.bottom-items > .swell-block-columns__inner > .swell-block-column a:hover {
  opacity: 1;
}
.bottom-items > .swell-block-columns__inner > .swell-block-column:hover .wp-block-cover img {
  display: block;
}
.bottom-items > .swell-block-columns__inner > .swell-block-column:hover .wp-block-cover .wp-block-cover__background {
  opacity: 0.3;
}
.bottom-items > .swell-block-columns__inner > .swell-block-column:hover .wp-block-cover > .wp-block-cover__inner-container > p {
  color: white !important;
}
.bottom-items > .swell-block-columns__inner > .swell-block-column .wp-block-cover img {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottom-items > .swell-block-columns__inner > .swell-block-column .wp-block-cover img {
    display: block;
  }
}
.bottom-items > .swell-block-columns__inner > .swell-block-column .wp-block-cover img:hover {
  display: block;
}
.bottom-items > .swell-block-columns__inner > .swell-block-column .wp-block-cover .wp-block-cover__background {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .bottom-items > .swell-block-columns__inner > .swell-block-column .wp-block-cover .wp-block-cover__background {
    opacity: 0.3;
  }
}

.page p {
  line-height: 1.5 !important;
}
/*# sourceMappingURL=mystyle.css.map */