@charset "UTF-8";
/* メデイアクエリ */
@media screen and (max-width: 820px) {
  .pc {
    display: none !important;
  }
}

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

/* フォント */
/* カラー */
/* ボタン */
.burgerBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
}
.burgerBtn .burgerArea {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burgerBtn .burgerArea span {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 12px;
  height: 2px;
  background-color: #000;
  width: 50%;
}
.burgerBtn .burgerArea span:nth-of-type(1) {
  top: 13px;
}
.burgerBtn .burgerArea span:nth-of-type(2) {
  top: 21px;
}
.burgerBtn .burgerArea span:nth-of-type(3) {
  top: 29px;
}

.burgerBtn.active .burgerArea {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}
.burgerBtn.active .burgerArea span:nth-of-type(1) {
  top: 15px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 50%;
  background-color: #000;
}
.burgerBtn.active .burgerArea span:nth-of-type(2) {
  opacity: 0;
}
.burgerBtn.active .burgerArea span:nth-of-type(3) {
  top: 27px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 50%;
  background-color: #000;
}

.nav--wrap .menuArea--sp {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  text-align: center;
  margin: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: none;
}
.nav--wrap .menuArea--sp ul {
  padding: 140px 20px 20px;
}
.nav--wrap .menuArea--sp ul li {
  margin-left: 0;
  margin-bottom: 30px;
}
.nav--wrap .menuArea--sp ul li a {
  display: inline-block;
  font-size: 1.8rem;
}
.nav--wrap .menuArea--sp ul li .ico {
  position: relative;
  padding-right: 35px;
}
.nav--wrap .menuArea--sp ul li .ico::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico01.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  right: calc(50% - 45px);
}
.nav--wrap .menuArea--sp.active {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  body {
    font-size: 1.4rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

header {
  position: fixed;
  width: 250px;
  height: 100vh;
  padding: 30px 0 0 50px;
  background: transparent;
  z-index: 99;
}
@media screen and (max-width: 820px) {
  header {
    height: 60px;
    width: 144px;
    padding: 20px 20px 0 20px;
  }
}
header .logo {
  width: 120px;
  position: relative;
  z-index: 999;
}
header .nav--wrap {
  position: absolute;
  bottom: 70px;
  left: 50px;
}
header .nav--wrap li {
  margin-bottom: 15px;
}
header .nav--wrap li a {
  display: block;
  padding: 3px 20px;
  position: relative;
  color: #000;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .nav--wrap li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
header .nav--wrap li a:hover {
  color: #fff;
  background-color: #d81935;
}
header .nav--wrap li a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  header .nav--wrap li a:hover {
    color: #000;
    background-color: #fff;
  }
  header .nav--wrap li a:hover::before {
    display: none;
  }
}
header .nav--wrap li .ico {
  padding-right: 25px;
}
header .nav--wrap li .ico::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico01.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 11px;
  right: 14px;
}
header .nav--wrap li .ico:hover::after {
  background: url(../images/btn-ico03.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  header .nav--wrap li .ico:hover::after {
    background: url(../images/btn-ico01.svg) center center no-repeat;
    background-size: contain;
  }
}

#top--recruit {
  padding: 120px 100px 160px 250px;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  #top--recruit {
    padding: 40px 8%;
  }
}
#top--recruit .inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 250px;
  background-color: #d81935;
  padding: 20px 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #top--recruit .inner {
    width: 100%;
    padding: 40px 20px;
    height: auto;
    display: block;
    background: url(../images/gerbera-img04.svg) center bottom no-repeat;
    background-color: #d81935;
    background-size: contain;
  }
}
#top--recruit .inner h2 {
  width: 30%;
  padding-top: 40px;
  margin-right: 3%;
}
@media screen and (max-width: 820px) {
  #top--recruit .inner h2 {
    width: 260px;
    padding-top: 0;
    margin: 0 auto 20px;
  }
}
#top--recruit .inner h2 img {
  width: 250px;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #top--recruit .inner h2 img {
    width: 260px;
  }
}
#top--recruit .inner h2 span {
  font-size: 1.4rem;
}
@media screen and (max-width: 820px) {
  #top--recruit .inner h2 span {
    display: inline;
    text-align: center;
  }
}
#top--recruit .inner figure {
  width: 22%;
  margin-right: 3%;
}
@media screen and (max-width: 820px) {
  #top--recruit .inner figure {
    display: none;
  }
}
#top--recruit .inner .wrap {
  width: 42%;
  padding-top: 30px;
  text-align: justify;
}
@media screen and (max-width: 820px) {
  #top--recruit .inner .wrap {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  #top--recruit .inner .wrap .btn {
    width: 126px;
    margin: 0 auto;
  }
}
#top--recruit .inner .wrap .btn a {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
}
#top--recruit .inner .wrap .btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico03.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: -15px;
}

#top--contact {
  width: 100%;
  background: url(../images/top-contact-img.jpg) center center no-repeat;
  background-size: cover;
  background-color: #fff;
  position: relative;
}
#top--contact .inner {
  color: #fff;
  margin: 0 auto;
  padding: 100px 150px 100px 250px;
}
@media screen and (max-width: 820px) {
  #top--contact .inner {
    padding: 40px 20px;
  }
}
#top--contact .inner .content {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content {
    width: 100%;
    display: block;
  }
}
#top--contact .inner .content h2 {
  width: 348px;
  margin-right: 50px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content h2 {
    width: 260px;
    margin: 0 auto 20px;
  }
}
#top--contact .inner .content .wrap {
  width: 590px;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content .wrap {
    width: 100%;
  }
}
#top--contact .inner .content .wrap h3 {
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content .wrap h3 {
    text-align: center;
  }
}
#top--contact .inner .content .wrap h3 span {
  display: block;
  font-size: 3.4rem;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content .wrap h3 span {
    font-size: 2.8rem;
    line-height: 1.4;
    padding-top: 10px;
  }
}
#top--contact .inner .content .wrap p {
  text-align: justify;
}
#top--contact .inner .content .wrap .btn a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  background-color: #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content .wrap .btn a {
    width: 100%;
  }
}
#top--contact .inner .content .wrap .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top--contact .inner .content .wrap .btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico04.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 70px;
}
#top--contact .inner .content .wrap .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top--contact .inner .content .wrap .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#top--contact .inner .content .wrap .btn a:hover::after {
  background: url(../images/btn-ico05.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  #top--contact .inner .content .wrap .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top--contact .inner .content .wrap .btn a:hover::before {
    display: none;
  }
  #top--contact .inner .content .wrap .btn a:hover::after {
    background: url(../images/btn-ico04.svg) center center no-repeat;
    background-size: contain;
  }
}

footer {
  width: 100%;
  padding: 15px 0;
  background-color: #d81935;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 820px) {
  footer {
    padding: 10px 0;
  }
}

/* アニメーション */
/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= 1文字ずつ出現させるためのCSS ===============*/
.bgIn {
  -webkit-animation-name: bgInMotion;
          animation-name: bgInMotion;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  opacity: 0;
}

@-webkit-keyframes bgInMotion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgInMotion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeInMotion;
          animation-name: fadeInMotion;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  opacity: 0;
}

@-webkit-keyframes fadeInMotion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInMotion {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftMotion;
          animation-name: fadeLeftMotion;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftMotion {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftMotion {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeOut {
  -webkit-animation-name: fadeOutMotion;
          animation-name: fadeOutMotion;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOutMotion {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOutMotion {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.maskIn {
  -webkit-animation-name: maskInMotion;
          animation-name: maskInMotion;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-mask-image: url("../images/frame01.svg");
          mask-image: url("../images/frame01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

@-webkit-keyframes maskInMotion {
  from {
    opacity: 0;
    -webkit-mask-position: bottom left;
            mask-position: bottom left;
    -webkit-mask-size: 0%;
            mask-size: 0%;
  }
  to {
    opacity: 1;
    -webkit-mask-position: bottom left;
            mask-position: bottom left;
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
}

@keyframes maskInMotion {
  from {
    opacity: 0;
    -webkit-mask-position: bottom left;
            mask-position: bottom left;
    -webkit-mask-size: 0%;
            mask-size: 0%;
  }
  to {
    opacity: 1;
    -webkit-mask-position: bottom left;
            mask-position: bottom left;
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
}
.maskIn2 {
  -webkit-animation-name: maskInMotion2;
          animation-name: maskInMotion2;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-mask-image: url("../images/frame02.svg");
          mask-image: url("../images/frame02.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

@-webkit-keyframes maskInMotion2 {
  from {
    opacity: 0;
    -webkit-mask-position: center left;
            mask-position: center left;
    -webkit-mask-size: 0%;
            mask-size: 0%;
  }
  to {
    opacity: 1;
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
}

@keyframes maskInMotion2 {
  from {
    opacity: 0;
    -webkit-mask-position: center left;
            mask-position: center left;
    -webkit-mask-size: 0%;
            mask-size: 0%;
  }
  to {
    opacity: 1;
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
}
.delattime01 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delattime02 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delattime03 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delattime04 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delattime05 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delattime06 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.delattime07 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

/* css結合 */
#top--mainvisual {
  background: url(../images/gerbera-img01.svg) right 100px top 60px no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  #top--mainvisual {
    background: url(../images/gerbera-img01.svg) center bottom no-repeat;
    background-size: 90%;
  }
}
#top--mainvisual .fadeoutTrigger {
  position: relative;
  z-index: 99;
}

#top--mainvisual {
  width: 100%;
  height: 100vh;
  padding: 0 100px 0 250px;
  background-color: #f3f3f3;
  position: fixed;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  #top--mainvisual {
    padding: 20px 20px 0 !important;
  }
}
#top--mainvisual .fadeoutTrigger .ttl {
  padding-top: 25vh;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  #top--mainvisual .fadeoutTrigger .ttl {
    width: 100%;
    text-align: center;
    padding-top: 10vh;
  }
}
#top--mainvisual .fadeoutTrigger .ttl .small {
  font-size: 6vw;
}
@media screen and (max-width: 820px) {
  #top--mainvisual .fadeoutTrigger .ttl .small {
    font-size: 12vw;
  }
}
#top--mainvisual .fadeoutTrigger .ttl span {
  display: inline;
  font-size: 7vw;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #top--mainvisual .fadeoutTrigger .ttl span {
    font-size: 14vw;
    margin-bottom: 15px;
  }
}
#top--mainvisual .fadeoutTrigger .txt {
  font-size: 2rem;
  margin-top: 20px;
}
@media screen and (max-width: 820px) {
  #top--mainvisual .fadeoutTrigger .txt {
    font-size: 1.6rem;
    margin-top: 10px;
    text-align: center;
  }
}

.top-container {
  padding-top: 100vh;
}

#top--about {
  padding: 80px 100px 80px 250px;
  background-color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 820px) {
  #top--about {
    padding: 60px 8%;
  }
}
#top--about .inner .wrap {
  max-width: 800px;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap .item {
    width: 140px;
  }
}
#top--about .inner .wrap .item:not(:last-child) {
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap .item:not(:last-child) {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap .item:last-child {
    margin: 0 auto;
  }
}
#top--about .inner .wrap .item figure {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap .item figure {
    margin-bottom: 10px;
  }
}
#top--about .inner .wrap .item figure .ico01 {
  width: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top--about .inner .wrap .item figure .ico02 {
  width: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top--about .inner .wrap .item figure .ico03 {
  width: 70px;
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#top--about .inner .wrap .item h3 {
  font-size: 1.4rem;
  color: #d81935;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap .item h3 {
    font-size: 1.2rem;
  }
}
#top--about .inner .wrap .item h3 span {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  #top--about .inner .wrap .item h3 span {
    font-size: 1.8rem;
  }
}
#top--about p {
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #top--about p {
    width: 100%;
  }
}
#top--about h2 {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top--about h2 {
    font-size: 1.6rem;
  }
}
#top--about h2 span {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #top--about h2 span {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 40px;
  }
}
#top--about .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#top--about .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top--about .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top--about .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #top--about .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top--about .btn a:hover::before {
    display: none;
  }
}

#top--about .wrap-sp {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#pickup {
  width: 100%;
  background-color: #D81935;
  padding: 50px 50px 110px 170px;
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 820px) {
  #pickup {
    padding: 50px 0 80px 0;
  }
}
#pickup .block {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #pickup .block {
    width: 100%;
  }
}
#pickup .block h2 {
  text-align: center;
  width: 230px;
  margin: 0 auto 20px;
}
#pickup .block h2 span {
  color: #fff;
}
#pickup .block .item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  #pickup .block .item_list {
    width: 95%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto;
  }
}
#pickup .block .item_list .item:last-child {
  margin-right: 0;
}
#pickup .block .item_list .item {
  position: relative;
  width: 24.1%;
  aspect-ratio: 1/1;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 820px) {
  #pickup .block .item_list .item {
    width: 49%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#pickup .block .item_list .item p {
  position: absolute;
  top: 7px;
  left: 11px;
  color: #D81935;
  font-size: 12px;
}
#pickup .block .item_list .item h3 {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}
@media screen and (max-width: 820px) {
  #pickup .block .item_list .item h3 {
    font-size: 16px;
  }
}
#pickup .block .item_list .item .arrow_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  background-color: #E6AD1C;
  position: absolute;
  bottom: 0;
  right: 0;
}
#pickup .block .item_list .item .arrow_right img {
  width: 7px;
}

#top--business {
  width: 100%;
  background-color: #f3f3f3;
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 100px 50px 100px 170px;
}
#top--business .business {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #top--business .business {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  #top--business {
    padding: 80px 0;
  }
}
#top--business .block_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 0 0 auto;
}
#top--business .block_list .block:nth-child(1) {
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  #top--business .block_list .block:nth-child(1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  #top--business .block_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
#top--business .block_list .block {
  width: 40%;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 820px) {
  #top--business .block_list .block {
    width: 100%;
  }
}
#top--business .block_list .block :hover {
  opacity: 0.8;
}
#top--business .block_list .block .logo {
  width: 350px;
  position: absolute;
  z-index: 10;
  top: -100px;
  left: -100px;
}
@media screen and (max-width: 820px) {
  #top--business .block_list .block .logo {
    width: 197px;
    left: 0;
    top: -70px;
  }
}
#top--business .block_list .block .item {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #top--business .block_list .block .item {
    width: 90%;
    margin: 0 auto 20px;
  }
}
#top--business .block_list .block .item img {
  width: 100%;
}
#top--business .block_list .block .item h3 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 100;
  font-size: 29px;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  #top--business .block_list .block .item h3 {
    font-size: 24px;
  }
}
#top--business .block_list .block .item h3 span {
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 820px) {
  #top--business .block_list .block .item h3 span {
    font-size: 14px;
  }
}
#top--business .block_list .block .item .arrow_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #D81935;
}
#top--business .block_list .block .item .arrow_right img {
  width: 10px;
}

#top--medical {
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: url(../images/top-web-img.jpg) no-repeat;
  background-size: cover;
  background-color: #E7EBEE;
  padding: 120px 50px 80px 170px;
}
@media screen and (max-width: 820px) {
  #top--medical {
    padding: 120px 0 0 0;
  }
}
#top--medical .block {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #top--medical .block {
    width: 100%;
    padding-right: 0;
    padding-top: 150px;
    padding-bottom: 40px;
    background: none;
  }
}
#top--medical .block .inner {
  width: 504px;
  margin: 20px 0 0 auto;
}
@media screen and (max-width: 820px) {
  #top--medical .block .inner {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 820px) {
  #top--medical .block .inner .ttl-sp {
    position: relative;
    z-index: 10;
  }
  #top--medical .block .inner .ttl-sp .ttl-logo {
    position: absolute;
    top: -120px;
    left: -30px;
  }
  #top--medical .block .inner .ttl-sp .ttl-logo img {
    position: relative;
  }
  #top--medical .block .inner .ttl-sp .ttl-logo p {
    font-size: 14px;
    line-height: 25px;
    bottom: 20px;
    left: 50px;
    position: absolute;
  }
}
#top--medical .block .inner .ttl {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #top--medical .block .inner .ttl {
    width: 100%;
  }
}
#top--medical .block .inner .ttl h2 {
  position: absolute;
  width: 374px;
  top: -180px;
  left: -104px;
  z-index: 0;
}
#top--medical .block .inner .ttl p {
  position: relative;
  z-index: 10;
}
#top--medical .block .inner .content {
  width: 400px;
  background-color: #fff;
  padding: 35px 40px 50px 40px;
}
@media screen and (max-width: 820px) {
  #top--medical .block .inner .content {
    position: relative;
    z-index: 15;
    width: 90%;
    margin: -80px auto 0;
  }
}
#top--medical .block .inner .content h3 {
  width: 100%;
  font-size: 12px;
  margin-bottom: 15px;
}
#top--medical .block .inner .content h3 strong {
  font-weight: 700;
  font-size: 24px;
}
#top--medical .block .inner .content p {
  font-size: 16px;
  line-height: 28px;
}
#top--medical .txt {
  text-align: justify;
  padding-top: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #top--medical .txt {
    padding-top: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
}
#top--medical .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #top--medical .btn a {
    width: 100%;
  }
}
#top--medical .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top--medical .btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico02.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 85px;
}
@media screen and (max-width: 820px) {
  #top--medical .btn a::after {
    right: 45px;
  }
}
#top--medical .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top--medical .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#top--medical .btn a:hover::after {
  background: url(../images/btn-ico03.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  #top--medical .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top--medical .btn a:hover::before {
    display: none;
  }
  #top--medical .btn a:hover::after {
    background: url(../images/btn-ico02.svg) center center no-repeat;
    background-size: contain;
  }
}

#top--service {
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: url(../images/service-bg.png) left center no-repeat;
  background-color: #E7EBEE;
  padding: 120px 50px 80px 170px;
}
@media screen and (max-width: 820px) {
  #top--service {
    padding: 120px 0 0 0;
  }
}
#top--service .block {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #top--service .block {
    width: 100%;
    padding-right: 0;
    padding-top: 70px;
    padding-bottom: 0;
    background: none;
    background-color: #E7EBEE;
  }
}
#top--service .block .inner {
  width: 504px;
  margin: 20px 0 0 auto;
}
@media screen and (max-width: 820px) {
  #top--service .block .inner {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 820px) {
  #top--service .block .inner .ttl-sp {
    position: relative;
    z-index: 10;
  }
  #top--service .block .inner .ttl-sp .ttl-logo {
    position: absolute;
    top: -120px;
    left: -30px;
  }
  #top--service .block .inner .ttl-sp .ttl-logo img {
    position: relative;
  }
  #top--service .block .inner .ttl-sp .ttl-logo p {
    font-size: 14px;
    line-height: 25px;
    bottom: 20px;
    left: 50px;
    position: absolute;
  }
}
#top--service .block .inner .ttl {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #top--service .block .inner .ttl {
    width: 100%;
  }
}
#top--service .block .inner .ttl h2 {
  position: absolute;
  width: 374px;
  top: -180px;
  left: -104px;
  z-index: 0;
}
#top--service .block .inner .ttl p {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  #top--service .block .inner .sp-bg {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
    background-color: #fff;
  }
  #top--service .block .inner .sp-bg .color {
    position: absolute;
    background-color: #E7EBEE;
    width: 100%;
    height: 160px;
  }
}
#top--service .block .inner .sp-bg .content {
  width: 450px;
  background-color: #fff;
  padding: 35px 40px 50px 40px;
}
@media screen and (max-width: 820px) {
  #top--service .block .inner .sp-bg .content {
    position: relative;
    z-index: 15;
    width: 90%;
    margin: -80px auto 0;
  }
}
#top--service .block .inner .sp-bg .content h3 {
  width: 204px;
  margin-bottom: 15px;
}
#top--service .block .inner .sp-bg .content h3 strong {
  font-weight: 700;
  font-size: 12px;
}
#top--service .block .inner .sp-bg .content p {
  font-size: 16px;
  line-height: 28px;
}
#top--service .txt {
  text-align: justify;
  padding-top: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #top--service .txt {
    padding-top: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
}
#top--service .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #top--service .btn a {
    width: 100%;
  }
}
#top--service .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top--service .btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico02.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 85px;
}
@media screen and (max-width: 820px) {
  #top--service .btn a::after {
    right: 45px;
  }
}
#top--service .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top--service .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#top--service .btn a:hover::after {
  background: url(../images/btn-ico03.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  #top--service .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top--service .btn a:hover::before {
    display: none;
  }
  #top--service .btn a:hover::after {
    background: url(../images/btn-ico02.svg) center center no-repeat;
    background-size: contain;
  }
}

#top-marbera {
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background: url(../images/marbera-bg.png) left center no-repeat;
  background-size: cover;
  background-color: #E7EBEE;
  padding: 148px 50px 128px 170px;
}
@media screen and (max-width: 820px) {
  #top-marbera {
    background: url(../images/marbera-bg-sp.png) no-repeat;
    background-color: #fff;
    padding: 368px 0 90px 0;
  }
}
#top-marbera .block {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #top-marbera .block {
    width: 100%;
  }
}
#top-marbera .block .item {
  background-color: #fff;
  width: 400px;
  margin: 0 0 0 auto;
  padding: 25px 40px 48px 40px;
}
@media screen and (max-width: 820px) {
  #top-marbera .block .item {
    width: 90%;
    margin: 0 auto;
  }
}
#top-marbera .block .item h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}
#top-marbera .block .item h2 span {
  font-size: 12px;
}
#top-marbera .block .item p {
  font-size: 16px;
  line-height: 28.8px;
  margin-bottom: 25px;
}
#top-marbera .block .item img {
  width: 100%;
}
#top-marbera .block .item .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #top-marbera .block .item .btn a {
    width: 100%;
  }
}
#top-marbera .block .item .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top-marbera .block .item .btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico02.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 85px;
}
@media screen and (max-width: 820px) {
  #top-marbera .block .item .btn a::after {
    right: 45px;
  }
}
#top-marbera .block .item .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top-marbera .block .item .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#top-marbera .block .item .btn a:hover::after {
  background: url(../images/btn-ico03.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  #top-marbera .block .item .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top-marbera .block .item .btn a:hover::before {
    display: none;
  }
  #top-marbera .block .item .btn a:hover::after {
    background: url(../images/btn-ico02.svg) center center no-repeat;
    background-size: contain;
  }
}

#top--project {
  background-color: #faf2f2;
}
@media screen and (max-width: 820px) {
  #top--project {
    margin-bottom: -5px;
  }
}
#top--project .inner {
  position: relative;
  padding: 40px 100px 60px 250px;
}
@media screen and (max-width: 820px) {
  #top--project .inner {
    padding: 20px 8% 40px;
  }
}
#top--project .inner h2 {
  width: 422px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 180px;
}
@media screen and (max-width: 820px) {
  #top--project .inner h2 {
    width: 260px;
    left: 10px;
  }
}
#top--project .inner .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 650px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  background-color: #faf2f2;
}
@media screen and (max-width: 820px) {
  #top--project .inner .block {
    width: 100%;
    display: block;
  }
}
#top--project .inner .block .content {
  width: 50%;
  padding-top: 200px;
}
@media screen and (max-width: 820px) {
  #top--project .inner .block .content {
    width: 100%;
    margin-bottom: 20px;
  }
}
#top--project .inner .block .content h3 {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #top--project .inner .block .content h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
#top--project .inner .block .content h3 span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
#top--project .inner .block .content h3 span a {
  color: #d81935;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #top--project .inner .block .content h3 span {
    margin-bottom: 10px;
  }
}
#top--project .inner .block .content .txt {
  text-align: justify;
}
#top--project .inner .block .content .date {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 820px) {
  #top--project .inner .block .content .date {
    margin-top: 20px;
  }
}
#top--project .inner .block .project-img {
  padding-top: 140px;
  width: 720px;
}
@media screen and (max-width: 820px) {
  #top--project .inner .block .project-img {
    padding-top: 0;
    width: 100%;
  }
}

#top--project .slick-counter {
  display: none;
}

@media screen and (max-width: 820px) {
  #top--project .inner .btn {
    margin-top: 20px;
  }
}
#top--project .inner .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 0 auto;
  padding: 12px 0px;
  padding-left: 25px;
  background-color: #fff;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #top--project .inner .btn a {
    width: 100%;
    padding-left: 25px;
  }
}
#top--project .inner .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top--project .inner .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top--project .inner .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #top--project .inner .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top--project .inner .btn a:hover::before {
    display: none;
  }
}

#top--news {
  background-color: #fff;
}
#top--news .inner {
  padding: 120px 100px 0 300px;
}
@media screen and (max-width: 820px) {
  #top--news .inner {
    padding: 40px 8%;
  }
}
#top--news .inner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #top--news .inner .content {
    width: 100%;
    display: block;
  }
}
#top--news .inner .content h2 {
  width: 106px;
  margin-right: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #top--news .inner .content h2 img {
    display: inline-block;
  }
}
#top--news .inner .content h2 span {
  display: block;
  font-size: 1.4rem;
  color: #d81935;
  text-align: center;
  padding-top: 10px;
}
@media screen and (max-width: 820px) {
  #top--news .inner .content h2 span {
    display: inline-block;
    margin-left: 10px;
    vertical-align: 7px;
  }
}
#top--news .inner .content ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#top--news .inner .content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 25px 25px 0;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #top--news .inner .content ul li {
    display: block;
    padding: 20px 10px;
  }
}
#top--news .inner .content ul li:first-child {
  border-top: 1px solid #d81935;
}
#top--news .inner .content ul li .date {
  margin-right: 30px;
  font-size: 1.4rem;
}
@media screen and (max-width: 820px) {
  #top--news .inner .content ul li .date {
    font-size: 1.2rem;
  }
}
#top--news .inner .content ul li .news-ttl a {
  font-size: 1.8rem;
  color: #d81935;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  #top--news .inner .content ul li .news-ttl a {
    font-size: 1.6rem;
  }
}

#top--blog {
  background-color: #fff;
}
#top--blog .inner {
  padding: 120px 100px 20px 300px;
}
@media screen and (max-width: 820px) {
  #top--blog .inner {
    padding: 40px 8%;
  }
}
#top--blog .inner h2 {
  margin-bottom: 20px;
}
#top--blog .inner h2 img {
  width: 104px;
  display: inline-block;
  margin-right: 10px;
}
#top--blog .inner h2 span {
  font-size: 1.4rem;
  color: #d81935;
  vertical-align: 25px;
}
#top--blog .inner .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #top--blog .inner .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top--blog .inner .wrap article {
  width: calc((100% - 100px) / 3);
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}
#top--blog .inner .wrap article:not(:nth-of-type(3n)) {
  margin-right: 50px;
}
@media screen and (max-width: 820px) {
  #top--blog .inner .wrap article {
    width: 100%;
  }
  #top--blog .inner .wrap article:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  #top--blog .inner .wrap article:not(:nth-of-type(2n)) {
    margin-right: 30px;
  }
}
#top--blog .inner .wrap article figure {
  margin-bottom: 20px;
}
#top--blog .inner .wrap article figure img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#top--blog .inner .wrap article .blog-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}
#top--blog .inner .wrap article .txt-wrap {
  margin-top: auto;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top--blog .inner .wrap article .txt-wrap .category a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d81935;
  margin-right: 10px;
}
#top--blog .inner .wrap article .txt-wrap .date {
  font-size: 1.4rem;
  color: #000;
}
#top--blog .inner .btn {
  text-align: center;
}
#top--blog .inner .btn a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #top--blog .inner .btn a {
    width: 100%;
    margin-top: 20px;
  }
}
#top--blog .inner .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#top--blog .inner .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#top--blog .inner .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #top--blog .inner .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #top--blog .inner .btn a:hover::before {
    display: none;
  }
}

#top--partner {
  background-color: #fff;
}
#top--partner .inner {
  padding: 120px 100px 20px 300px;
}
@media screen and (max-width: 820px) {
  #top--partner .inner {
    padding: 40px 8%;
  }
}
#top--partner .inner h2 {
  margin-bottom: 20px;
}
#top--partner .inner h2 img {
  width: 154px;
  display: inline-block;
  margin-right: 10px;
}
#top--partner .inner h2 span {
  font-size: 1.4rem;
  color: #d81935;
  vertical-align: 5px;
}
#top--partner .inner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  #top--partner .inner .content {
    width: 100%;
  }
}
#top--partner .inner .content .wrap {
  width: 30%;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #top--partner .inner .content .wrap {
    width: 48%;
    margin-bottom: 40px;
  }
}
#top--partner .inner .content .wrap p {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #top--partner .inner .content .wrap p {
    font-size: 1.2rem;
  }
}

#about--ttl {
  padding: 60px 100px 60px 250px;
}
@media screen and (max-width: 820px) {
  #about--ttl {
    padding: 80px 20px 20px;
  }
}
#about--ttl h2 img {
  display: inline-block;
  width: 300px;
  height: auto;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #about--ttl h2 img {
    width: 190px;
    margin-right: 10px;
  }
}
#about--ttl h2 span {
  font-size: 1.6rem;
  vertical-align: 8px;
}
@media screen and (max-width: 820px) {
  #about--ttl h2 span {
    font-size: 1.4rem;
    vertical-align: 4px;
  }
}

#about--detail .inner {
  padding: 0 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #about--detail .inner {
    padding: 0 8% 20px;
  }
}

#about--detail .block01 {
  max-width: 1000px;
  margin: 0 auto 140px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 {
    width: 100%;
    margin-bottom: 40px;
  }
}
#about--detail .block01 .logo {
  width: 100%;
  padding: 90px 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .logo {
    padding: 10%;
    display: block;
  }
}
#about--detail .block01 .logo img {
  min-width: 400px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .logo img {
    min-width: 100%;
  }
}
#about--detail .block01 .color-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .color-wrap {
    display: block;
    margin-bottom: 40px;
  }
}
#about--detail .block01 .color-wrap .item {
  width: 33.3333333333%;
  padding: 12px 20px;
  background-color: #d81935;
  color: #fff;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .color-wrap .item {
    width: 100%;
    padding: 10px 20px;
  }
}
#about--detail .block01 .color-wrap .item:nth-of-type(2) {
  background-color: #e21a53;
}
#about--detail .block01 .color-wrap .item:nth-of-type(3) {
  background-color: #e6ad1c;
}
#about--detail .block01 .color-wrap .item .ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .color-wrap .item .ttl {
    margin-bottom: 0;
  }
}
#about--detail .block01 .color-wrap .item .txt {
  font-size: 1.2rem;
  text-align: right;
}
#about--detail .block01 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .content {
    display: block;
  }
}
#about--detail .block01 .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  width: 160px;
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .content h3 {
    font-size: 2.8rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
#about--detail .block01 .content .wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .content .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#about--detail .block01 .content .wrap figure {
  width: 124px;
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .content .wrap figure {
    width: 30%;
    margin-right: 5%;
  }
}
#about--detail .block01 .content .wrap .txt-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#about--detail .block01 .content .wrap .txt-wrap h4 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .content .wrap .txt-wrap h4 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
#about--detail .block01 .content .wrap .txt-wrap .txt {
  font-size: 1.8rem;
  text-align: justify;
}
@media screen and (max-width: 820px) {
  #about--detail .block01 .content .wrap .txt-wrap .txt {
    font-size: 1.4rem;
  }
}

#about--detail .block02 {
  max-width: 1000px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 820px) {
  #about--detail .block02 {
    width: 100%;
    margin-bottom: 40px;
  }
}
#about--detail .block02 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #about--detail .block02 .content {
    display: block;
  }
}
#about--detail .block02 .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  width: 146px;
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #about--detail .block02 .content h3 {
    font-size: 2.8rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
#about--detail .block02 .content .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: justify;
  padding-top: 5px;
}
@media screen and (max-width: 820px) {
  #about--detail .block02 .content .ttl {
    font-size: 2rem;
    letter-spacing: 0;
    padding-top: 0;
  }
}

#about--detail .block03 {
  max-width: 1000px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 {
    width: 100%;
    margin-bottom: 40px;
  }
}
#about--detail .block03 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 .content {
    display: block;
  }
}
#about--detail .block03 .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  width: 146px;
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 .content h3 {
    font-size: 2.8rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
#about--detail .block03 .content .wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#about--detail .block03 .content .wrap .ttl {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  background: linear-gradient(150.48deg, #d81935 22.98%, #e9b911 81.92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  padding-top: 5px;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 .content .wrap .ttl {
    font-size: 2.8rem;
    padding-top: 0;
  }
}
#about--detail .block03 .content .wrap .txt {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 .content .wrap .txt {
    margin-bottom: 30px;
  }
}
#about--detail .block03 .content .wrap .caption {
  padding: 20px 40px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 .content .wrap .caption {
    padding: 10px 20px;
  }
}
#about--detail .block03 .content .wrap .caption h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 820px) {
  #about--detail .block03 .content .wrap .caption h4 {
    font-size: 1.6rem;
  }
}

#about--detail .block04 {
  max-width: 1000px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 {
    width: 100%;
    margin-bottom: 0;
  }
}
#about--detail .block04 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content {
    width: 100%;
    display: block;
  }
}
#about--detail .block04 .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  width: 146px;
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content h3 {
    font-size: 2.8rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#about--detail .block04 .content .wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content .wrap {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#about--detail .block04 .content .wrap .item {
  width: calc(33.33% - 26.6666666667px);
  margin-right: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content .wrap .item {
    width: calc(50% - 10px);
    margin-right: 0;
    margin-bottom: 10%;
  }
}
#about--detail .block04 .content .wrap .item:nth-of-type(3n) {
  margin-right: 0;
}
#about--detail .block04 .content .wrap .item figure {
  width: 130px;
  margin: 0 auto 20px;
  position: relative;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content .wrap .item figure {
    width: 70%;
    margin-bottom: 10px;
  }
}
#about--detail .block04 .content .wrap .item figure .ico {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content .wrap .item figure .ico {
    width: 40%;
  }
}
#about--detail .block04 .content .wrap .item figure .ico.ship {
  width: 20%;
}
#about--detail .block04 .content .wrap .item h4 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #about--detail .block04 .content .wrap .item h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
#about--detail .block04 .content .wrap .item p {
  text-align: justify;
}

#about--message {
  width: 100%;
  height: auto;
  margin-bottom: 140px;
}
@media screen and (max-width: 820px) {
  #about--message {
    height: auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 820px) {
  #about--message figure {
    position: relative;
    z-index: -1;
  }
}
@media screen and (max-width: 820px) {
  #about--message figure img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#about--message .inner {
  padding: 0 100px 0 250px;
  position: relative;
  z-index: 1;
  margin-top: -250px;
}
@media screen and (max-width: 820px) {
  #about--message .inner {
    width: 100%;
    padding: 30px 8% 15px;
    position: static;
    margin-top: -80px;
  }
}
#about--message .inner .block05 {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
#about--message .inner .block05 .content {
  width: calc(96% - 300px);
  margin-right: 4%;
  padding: 40px 60px;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 .content {
    width: 92%;
    margin: 0 auto 30px;
    padding: 30px 8% 10px;
    position: static;
    margin-top: -80px;
  }
}
#about--message .inner .block05 .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 .content h3 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}
#about--message .inner .block05 .content .ttl {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 .content .ttl {
    font-size: 2.2rem;
  }
}
#about--message .inner .block05 .content p {
  text-align: justify;
}
#about--message .inner .block05 .wrap {
  width: 300px;
  min-width: 300px;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 .wrap {
    width: 80%;
    margin: 0 auto;
  }
}
#about--message .inner .block05 .wrap figure img {
  -o-object-fit: contain;
     object-fit: contain;
}
#about--message .inner .block05 .wrap .sign {
  text-align: center;
  margin-top: 15px;
}
#about--message .inner .block05 .wrap .sign span {
  font-size: 1.4rem;
  vertical-align: 13px;
  padding-right: 15px;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 .wrap .sign span {
    font-size: 1.2rem;
    vertical-align: 10px;
    padding-right: 10px;
  }
}
#about--message .inner .block05 .wrap .sign img {
  display: inline-block;
  width: 140px;
  min-width: 140px;
}
@media screen and (max-width: 820px) {
  #about--message .inner .block05 .wrap .sign img {
    width: 120px;
    min-width: 120px;
  }
}

#about--company .inner {
  padding: 0 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #about--company .inner {
    padding: 40px 8% 0;
  }
}
#about--company .inner .block06 {
  max-width: 1000px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 820px) {
  #about--company .inner .block06 {
    width: 100%;
    margin-bottom: 40px;
  }
}
#about--company .inner .block06 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #about--company .inner .block06 .content {
    width: 100%;
    display: block;
  }
}
#about--company .inner .block06 .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  width: 160px;
  margin-top: -10px;
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #about--company .inner .block06 .content h3 {
    font-size: 2.8rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#about--company .inner .block06 .content table {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #about--company .inner .block06 .content table tr:not(:first-child) th {
    border-top: none;
  }
}
#about--company .inner .block06 .content table tr th {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  width: 120px;
  padding: 25px 0;
  vertical-align: top;
  border-top: 1px solid #d81935;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #about--company .inner .block06 .content table tr th {
    display: block;
    width: 100%;
    padding: 15px 0 0;
    border-bottom: none;
  }
}
#about--company .inner .block06 .content table tr td {
  line-height: 1.8;
  padding: 22px 0 25px;
  border-top: 1px solid #d81935;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #about--company .inner .block06 .content table tr td {
    line-height: 1.6;
    display: block;
    width: 100%;
    padding: 5px 0 15px;
    border-top: none;
  }
}
#about--company .inner .block06 .content table tr td.map span {
  position: relative;
}
#about--company .inner .block06 .content table tr td.map span a {
  display: inline-block;
  text-decoration: underline;
  color: #d81935;
  font-weight: bold;
  padding-left: 22px;
}
#about--company .inner .block06 .content table tr td.map span::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/about-map-ico.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 1px;
  left: 0;
}

#news {
  padding: 60px 100px 80px 250px;
}
@media screen and (max-width: 820px) {
  #news {
    padding: 80px 8% 60px;
  }
}
#news h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #news h2 {
    margin-bottom: 20px;
  }
}
#news h2 img {
  display: inline-block;
  width: 156px;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #news h2 img {
    width: 110px;
    margin-right: 10px;
  }
}
#news h2 span {
  font-size: 1.6rem;
  vertical-align: 12px;
}
@media screen and (max-width: 820px) {
  #news h2 span {
    font-size: 1.4rem;
  }
}
#news ul {
  max-width: 1000px;
  margin: 0 auto 80px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 820px) {
  #news ul {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
#news ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 25px 25px 0;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #news ul li {
    display: block;
    padding: 20px 10px;
  }
}
#news ul li:first-child {
  border-top: 1px solid #d81935;
}
#news ul li .date {
  padding-top: 3px;
  margin-right: 30px;
  font-size: 1.4rem;
}
@media screen and (max-width: 820px) {
  #news ul li .date {
    padding-top: 0;
    font-size: 1.2rem;
  }
}
#news ul li .news-ttl a {
  font-size: 1.8rem;
  color: #d81935;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  #news ul li .news-ttl a {
    font-size: 1.6rem;
  }
}

#news-single {
  padding: 60px 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #news-single {
    padding: 80px 8% 60px;
  }
}
#news-single h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #news-single h2 {
    margin-bottom: 20px;
  }
}
#news-single h2 img {
  display: inline-block;
  width: 156px;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #news-single h2 img {
    width: 110px;
    margin-right: 10px;
  }
}
#news-single h2 span {
  font-size: 1.6rem;
  vertical-align: 12px;
}
@media screen and (max-width: 820px) {
  #news-single h2 span {
    font-size: 1.4rem;
  }
}
#news-single .content {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #news-single .content {
    min-width: 100%;
  }
}
#news-single .content figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #news-single .content figure {
    margin-bottom: 20px;
  }
}
#news-single .content figure img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 820px) {
  #news-single .content figure img {
    height: 300px;
  }
}
#news-single .content h3 {
  font-size: 3.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #news-single .content h3 {
    font-size: 2.4rem;
  }
}
#news-single .content .date {
  margin-top: 10px;
  font-size: 1.4rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #d81935;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #news-single .content .date {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
#news-single .content h4 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #news-single .content h4 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#news-single .content h5 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #news-single .content h5 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#news-single .content h6 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #news-single .content h6 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
#news-single .content p {
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #news-single .content p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
#news-single .btn {
  text-align: center;
}
#news-single .btn a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #news-single .btn a {
    width: 100%;
    margin-top: 20px;
  }
}
#news-single .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#news-single .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#news-single .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #news-single .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #news-single .btn a:hover::before {
    display: none;
  }
}

#news .page-wrap {
  display: block;
  text-align: center;
}
#news .page-wrap .wp-pagenavi {
  display: inline-block;
  margin: 20px 0;
  font-size: 1.2rem;
}
#news .page-wrap .wp-pagenavi a {
  /* フォント色 */
  color: #000;
}
#news .page-wrap .wp-pagenavi .current {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /* カレント数字 */
  border: none;
  background: #faf2f2;
  color: #000;
}
#news .page-wrap .wp-pagenavi a.page {
  /* 左の表記 */
  margin-right: 20px;
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #d81935;
  color: #fff;
  font-weight: bold;
}
#news .page-wrap .wp-pagenavi a.page:hover {
  /* マウスオーバー */
  background-color: #faf2f2;
  color: #d81935;
}

#news .wp-pagenavi .previouspostslink {
  position: relative;
  display: block;
}
#news .wp-pagenavi .previouspostslink::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-left.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 29px;
  left: -30px;
}
@media screen and (max-width: 820px) {
  #news .wp-pagenavi .previouspostslink::before {
    width: 12px;
    height: 12px;
    top: 33px;
    left: -20px;
  }
}
#news .wp-pagenavi .nextpostslink {
  position: relative;
  display: block;
}
#news .wp-pagenavi .nextpostslink::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -34px;
  right: -27px;
}
@media screen and (max-width: 820px) {
  #news .wp-pagenavi .nextpostslink::after {
    width: 12px;
    height: 12px;
    top: -32px;
    right: -17px;
  }
}

#news-single .news-page {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #news-single .news-page {
    margin-top: 40px;
  }
}
#news-single .news-page a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d81935;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 820px) {
  #news-single .news-page a {
    font-size: 1.6rem;
  }
}
#news-single .news-page .prev a {
  padding-left: 25px;
}
@media screen and (max-width: 820px) {
  #news-single .news-page .prev a {
    padding-left: 20px;
  }
}
#news-single .news-page .prev a::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-left.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 820px) {
  #news-single .news-page .prev a::before {
    width: 12px;
    height: 12px;
  }
}
#news-single .news-page .next a {
  padding-right: 25px;
}
@media screen and (max-width: 820px) {
  #news-single .news-page .next a {
    padding-right: 20px;
  }
}
#news-single .news-page .next a::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 6px;
  right: 0;
}
@media screen and (max-width: 820px) {
  #news-single .news-page .next a::after {
    width: 12px;
    height: 12px;
  }
}

#blog {
  padding: 60px 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #blog {
    padding: 80px 8% 0;
  }
}
#blog h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #blog h2 {
    margin-bottom: 20px;
  }
}
#blog h2 img {
  display: inline-block;
  width: 156px;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #blog h2 img {
    width: 110px;
    margin-right: 10px;
  }
}
#blog h2 span {
  font-size: 1.6rem;
  vertical-align: 35px;
}
@media screen and (max-width: 820px) {
  #blog h2 span {
    font-size: 1.4rem;
  }
}
#blog .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #blog .inner {
    min-width: 100%;
  }
}
#blog .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #blog .inner ul {
    margin-bottom: 20px;
  }
}
#blog .inner ul li {
  margin-right: 30px;
}
@media screen and (max-width: 820px) {
  #blog .inner ul li {
    margin-right: 15px;
  }
}
#blog .inner ul li a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d81935;
  padding: 1px;
}
@media screen and (max-width: 820px) {
  #blog .inner ul li a {
    font-size: 1.4rem;
  }
}
#blog .inner ul li a:hover {
  background-color: #faf2f2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#blog .inner .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#blog .inner .wrap article {
  width: calc((100% - 120px) / 3);
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #blog .inner .wrap article {
    width: calc((100% - 30px) / 2);
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
}
#blog .inner .wrap article:not(:nth-of-type(3n)) {
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #blog .inner .wrap article:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  #blog .inner .wrap article:not(:nth-of-type(2n)) {
    margin-right: 30px;
  }
}
#blog .inner .wrap article figure {
  margin-bottom: 10px;
}
#blog .inner .wrap article figure img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .inner .wrap article .blog-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 820px) {
  #blog .inner .wrap article .blog-ttl {
    font-size: 1.6rem;
    text-align: justify;
  }
}
#blog .inner .wrap article .txt-wrap {
  margin-top: auto;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#blog .inner .wrap article .txt-wrap .category a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d81935;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #blog .inner .wrap article .txt-wrap .category a {
    font-size: 1.2rem;
  }
}
#blog .inner .wrap article .txt-wrap .date {
  font-size: 1.4rem;
  color: #000;
}
@media screen and (max-width: 820px) {
  #blog .inner .wrap article .txt-wrap .date {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

#blog-single {
  padding: 60px 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #blog-single {
    padding: 80px 8% 60px;
  }
}
#blog-single h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #blog-single h2 {
    margin-bottom: 20px;
  }
}
#blog-single h2 img {
  display: inline-block;
  width: 156px;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #blog-single h2 img {
    width: 110px;
    margin-right: 10px;
  }
}
#blog-single h2 span {
  font-size: 1.6rem;
  vertical-align: 35px;
}
@media screen and (max-width: 820px) {
  #blog-single h2 span {
    font-size: 1.4rem;
  }
}
#blog-single article {
  max-width: 1000px;
  margin: 0 auto;
}
#blog-single article .original h2 {
  font-size: 24px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  font-weight: bold;
  color: #d81935;
}
#blog-single article .original h3 {
  font-size: 18px !important;
  font-weight: bold;
  margin-bottom: 20px !important;
  border-left: #d81935 solid 3px;
  padding-left: 10px;
}
#blog-single article .original p {
  margin-bottom: 20px !important;
}
#blog-single article .original b, #blog-single article .original strong {
  font-weight: bold;
}
#blog-single article .original img {
  margin-bottom: 40px;
}
#blog-single article .original .table_content {
  width: 80%;
  background-color: #E7EBEE;
  border-radius: 20px;
  padding: 20px 40px;
  margin-bottom: 20px;
}
#blog-single article .original .table_content li {
  margin-bottom: 10px;
}
#blog-single article .original .table_content li a {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
#blog-single article .original .point {
  font-weight: 600;
  font-size: 18px;
}
#blog-single article .original table {
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
#blog-single article .original th {
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  background-color: #ccc;
}
#blog-single article .original td {
  text-align: left;
  padding: 10px 5px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#blog-single article .original .overview {
  display: block;
  background-color: #d81935;
  color: #fff;
  border-radius: 50px;
  padding: 10px 40px;
  margin: 20px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  #blog-single article {
    min-width: 100%;
  }
}
#blog-single article figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #blog-single article figure {
    margin-bottom: 20px;
  }
}
#blog-single article figure img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 820px) {
  #blog-single article figure img {
    height: 300px;
  }
}
#blog-single article h3 {
  font-size: 3.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #blog-single article h3 {
    font-size: 2.4rem;
  }
}
#blog-single article .txt-wrap {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d81935;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #blog-single article .txt-wrap {
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
#blog-single article .txt-wrap .date {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 820px) {
  #blog-single article .txt-wrap .date {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}
#blog-single article .txt-wrap .category {
  display: inline-block;
}
#blog-single article .txt-wrap .category a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d81935;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #blog-single article .txt-wrap .category a {
    font-size: 1.2rem;
    display: block;
    line-height: 1.4;
  }
}
#blog-single article h4 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #blog-single article h4 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#blog-single article h5 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #blog-single article h5 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#blog-single article h6 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #blog-single article h6 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
#blog-single article p {
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #blog-single article p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
#blog-single article .btn {
  text-align: center;
}
#blog-single article .btn a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #blog-single article .btn a {
    width: 100%;
    margin-top: 20px;
  }
}
#blog-single article .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#blog-single article .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#blog-single article .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #blog-single article .btn a:hover::before {
    color: #d81935;
    background-color: #fff;
  }
  #blog-single article .btn a:hover::before::before {
    display: none;
  }
}

#recommend {
  padding: 60px 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #recommend {
    padding: 0 20px 60px;
  }
}
#recommend h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  max-width: 1000px;
  margin: 0 auto 20px;
}
#recommend .wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #recommend .wrap {
    min-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#recommend .wrap article {
  width: calc(33.33% - 26.6666666667px);
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  #recommend .wrap article {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 40px;
  }
}
#recommend .wrap article:nth-of-type(2n) {
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  #recommend .wrap article:nth-of-type(2n) {
    margin-right: 0;
  }
}
#recommend .wrap article:nth-of-type(3n) {
  margin-right: 0;
}
#recommend .wrap article figure {
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #recommend .wrap article figure {
    margin-bottom: 10px;
  }
}
#recommend .wrap article .blog-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  text-align: justify;
}
#recommend .wrap article .txt-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#recommend .wrap article .txt-wrap .category {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d81935;
}
@media screen and (max-width: 820px) {
  #recommend .wrap article .txt-wrap .category {
    font-size: 1.2rem;
  }
}
#recommend .wrap article .txt-wrap .date {
  font-size: 1.4rem;
  color: #000;
}
@media screen and (max-width: 820px) {
  #recommend .wrap article .txt-wrap .date {
    font-size: 1.2rem;
  }
}

#blog .page-wrap {
  display: block;
  text-align: center;
}
#blog .page-wrap .wp-pagenavi {
  display: inline-block;
  margin: 20px 0;
  font-size: 1.2rem;
}
#blog .page-wrap .wp-pagenavi a {
  /* フォント色 */
  color: #000;
}
#blog .page-wrap .wp-pagenavi .current {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /* カレント数字 */
  border: none;
  background: #faf2f2;
  color: #000;
}
#blog .page-wrap .wp-pagenavi a.page {
  /* 左の表記 */
  margin-right: 20px;
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #d81935;
  color: #fff;
  font-weight: bold;
}
#blog .page-wrap .wp-pagenavi a.page:hover {
  /* マウスオーバー */
  background-color: #faf2f2;
  color: #d81935;
}

#blog .wp-pagenavi .previouspostslink {
  position: relative;
  display: block;
}
#blog .wp-pagenavi .previouspostslink::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-left.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 29px;
  left: -30px;
}
@media screen and (max-width: 820px) {
  #blog .wp-pagenavi .previouspostslink::before {
    width: 12px;
    height: 12px;
    top: 33px;
    left: -20px;
  }
}
#blog .wp-pagenavi .nextpostslink {
  position: relative;
  display: block;
}
#blog .wp-pagenavi .nextpostslink::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -34px;
  right: -27px;
}
@media screen and (max-width: 820px) {
  #blog .wp-pagenavi .nextpostslink::after {
    width: 12px;
    height: 12px;
    top: -32px;
    right: -17px;
  }
}

#blog-single .blog-page {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #blog-single .blog-page {
    margin-top: 40px;
  }
}
#blog-single .blog-page a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d81935;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 820px) {
  #blog-single .blog-page a {
    font-size: 1.6rem;
  }
}

#contact {
  padding: 60px 100px 80px 250px;
}
@media screen and (max-width: 820px) {
  #contact {
    padding: 80px 8% 60px;
  }
}
#contact h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #contact h2 {
    margin-bottom: 20px;
  }
}
#contact h2 img {
  display: inline-block;
  width: 250px;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #contact h2 img {
    width: 140px;
  }
}
#contact h2 span {
  font-size: 1.6rem;
  vertical-align: 25px;
}
@media screen and (max-width: 820px) {
  #contact h2 span {
    font-size: 1.4rem;
    vertical-align: 8px;
  }
}
#contact .content {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #contact .content {
    max-width: 100%;
  }
}
#contact .content .txt {
  margin-bottom: 30px;
}
#contact .content .color {
  color: #d81935;
  font-size: 1.2rem;
  vertical-align: 1px;
}
#contact .content table {
  width: 100%;
}
#contact .content table .contact-txt {
  padding: 19px 0;
}
#contact .content table th {
  font-weight: bold;
  text-align: left;
  width: 200px;
  padding: 40px 0;
  vertical-align: top;
}
@media screen and (max-width: 820px) {
  #contact .content table th {
    display: block;
    width: 100%;
    padding: 0 0 5px;
  }
}
#contact .content table td {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  #contact .content table td {
    display: block;
    width: 100%;
    padding: 0 0 30px;
  }
}
#contact .content table td input[type=text],
#contact .content table td input[type=tel],
#contact .content table td input[type=email],
#contact .content table td textarea {
  width: 100%;
  padding: 25px;
  background-color: #faf2f2;
  border: none;
  font-size: 1.6rem;
  color: #878787;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 820px) {
  #contact .content table td input[type=text],
  #contact .content table td input[type=tel],
  #contact .content table td input[type=email],
  #contact .content table td textarea {
    padding: 25px 15px;
  }
}
#contact .content table td input[type=text]:focus,
#contact .content table td input[type=tel]:focus,
#contact .content table td input[type=email]:focus,
#contact .content table td textarea:focus {
  outline: 0;
  background-color: #fadce1;
}
#contact .agree {
  margin: 10px 0 60px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #contact .agree {
    margin-top: 0;
  }
}
#contact .agree a {
  display: inline-block;
  font-weight: bold;
  color: #d81935;
  text-decoration: underline;
  padding-right: 20px;
  position: relative;
}
#contact .agree a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico02.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 6px;
}
#contact .btn {
  text-align: center;
}
#contact .btn .confirm-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #d81935;
  border: 1px solid #d81935;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #contact .btn .confirm-btn {
    width: 90%;
    margin: 0 auto;
  }
}

#contact .mw_wp_form .mwform-radio-field {
  margin-right: 30px;
  margin-left: 0;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  #contact .mw_wp_form .mwform-radio-field {
    line-height: 1.8;
  }
}
#contact .mw_wp_form .mwform-radio-field label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 25px;
  position: relative;
  width: auto;
  font-size: 1.6rem;
}
#contact .mw_wp_form .mwform-radio-field label span {
  position: relative;
}
#contact .mw_wp_form .mwform-radio-field label span::before {
  background: #fff;
  border: 1px solid #d81935;
  border-radius: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  top: 48%;
  left: -20px;
}
#contact .mw_wp_form .mwform-radio-field label span::after {
  background: #d81935;
  border-radius: 50%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 46%;
  left: -17px;
  opacity: 0;
}
#contact .mw_wp_form .mwform-radio-field input[type=radio] {
  display: none;
}
#contact .mw_wp_form .mwform-radio-field input[type=radio]:checked + span::after {
  opacity: 1;
}

#contact .error {
  color: #d81935;
  padding-top: 5px;
}

#contact-confirm {
  padding: 60px 100px 160px 250px;
}
@media screen and (max-width: 820px) {
  #contact-confirm {
    padding: 80px 20px 60px;
  }
}
#contact-confirm h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #contact-confirm h2 {
    margin-bottom: 20px;
  }
}
#contact-confirm h2 img {
  display: inline-block;
  width: 250px;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #contact-confirm h2 img {
    width: 140px;
  }
}
#contact-confirm h2 span {
  font-size: 1.6rem;
  vertical-align: 25px;
}
@media screen and (max-width: 820px) {
  #contact-confirm h2 span {
    font-size: 1.4rem;
    vertical-align: 8px;
  }
}
#contact-confirm .content {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content {
    max-width: 100%;
  }
}
#contact-confirm .content .txt {
  margin-bottom: 30px;
}
#contact-confirm .content table {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content table tr:not(:first-child) th {
    border-top: none;
  }
}
#contact-confirm .content table tr th {
  font-weight: bold;
  text-align: left;
  width: 200px;
  padding: 25px 0;
  vertical-align: top;
  border-top: 1px solid #d81935;
  border-bottom: 1px solid #d81935;
}
#contact-confirm .content table tr th .color {
  display: none;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content table tr th {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
}
#contact-confirm .content table tr td {
  padding: 25px 0;
  border-top: 1px solid #d81935;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content table tr td {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-top: none;
  }
}
#contact-confirm .content .btn {
  text-align: center;
}
#contact-confirm .content .btn button.return {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #d81935;
  color: #d81935;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content .btn button.return {
    width: 90%;
    margin: 0 auto 20px;
  }
}
#contact-confirm .content .btn button.return a {
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
}
#contact-confirm .content .btn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #d81935;
  border: 1px solid #d81935;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content .btn button {
    width: 90%;
    margin: 0 auto 20px;
  }
}
#contact-confirm .content .btn .confirm-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  padding: 12px 0;
  border-radius: 30px;
  background-color: #d81935;
  border: 1px solid #d81935;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #contact-confirm .content .btn .confirm-btn {
    width: 90%;
    margin: 0 auto;
  }
}

#contact-confirm .agree {
  display: none;
}

#contact-thanks {
  padding: 60px 100px 160px 250px;
  height: calc(100vh - 49px);
}
@media screen and (max-width: 820px) {
  #contact-thanks {
    padding: 80px 20px 60px;
  }
}
#contact-thanks h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #contact-thanks h2 {
    margin-bottom: 20px;
  }
}
#contact-thanks h2 img {
  display: inline-block;
  width: 250px;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #contact-thanks h2 img {
    width: 140px;
  }
}
#contact-thanks h2 span {
  font-size: 1.6rem;
  vertical-align: 25px;
}
@media screen and (max-width: 820px) {
  #contact-thanks h2 span {
    font-size: 1.4rem;
    vertical-align: 8px;
  }
}
#contact-thanks .content {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #contact-thanks .content {
    max-width: 100%;
  }
}
#contact-thanks .content h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  #contact-thanks .content h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
#contact-thanks .content p {
  margin-bottom: 60px;
}
#contact-thanks .content p.btn a {
  display: inline-block;
  font-weight: bold;
  color: #d81935;
  text-decoration: underline;
  padding-left: 15px;
  position: relative;
}
#contact-thanks .content p.btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico04.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 7px;
  left: 0;
}

#project {
  padding: 60px 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #project {
    padding: 80px 8% 0;
  }
}
#project h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  #project h2 {
    margin-bottom: 10px;
  }
}
#project h2 img {
  display: inline-block;
  width: 200px;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #project h2 img {
    width: 140px;
    margin-right: 10px;
  }
}
#project h2 span {
  font-size: 1.6rem;
  vertical-align: 40px;
}
@media screen and (max-width: 820px) {
  #project h2 span {
    font-size: 1.4rem;
    vertical-align: 28px;
  }
}
#project .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #project .inner {
    min-width: 100%;
  }
}
#project .inner > p {
  line-height: 1.8;
}
#project .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
#project .inner ul li {
  margin-right: 30px;
}
@media screen and (max-width: 820px) {
  #project .inner ul li {
    margin-right: 15px;
  }
}
#project .inner ul li a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d81935;
  padding: 1px;
}
@media screen and (max-width: 820px) {
  #project .inner ul li a {
    font-size: 1.4rem;
  }
}
#project .inner ul li a:hover {
  background-color: #faf2f2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#project .inner .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#project .inner .wrap article {
  width: calc((100% - 120px) / 3);
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
}
#project .inner .wrap article:not(:nth-of-type(3n)) {
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article:not(:nth-of-type(2n)) {
    margin-right: 30px;
  }
}
#project .inner .wrap article figure {
  margin-bottom: 10px;
}
#project .inner .wrap article figure img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
#project .inner .wrap article .project-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article .project-ttl {
    font-size: 1.6rem;
    text-align: justify;
  }
}
#project .inner .wrap article .txt-wrap {
  margin-top: auto;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article .txt-wrap {
    padding-top: 20px;
  }
}
#project .inner .wrap article .txt-wrap .category {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#project .inner .wrap article .txt-wrap .category li {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ccc;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article .txt-wrap .category li {
    font-size: 1.2rem;
  }
}
#project .inner .wrap article .txt-wrap .date {
  font-size: 1.4rem;
  color: #000;
  margin-top: 2px;
}
@media screen and (max-width: 820px) {
  #project .inner .wrap article .txt-wrap .date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 820px) {
  #project .inner .btn {
    margin-top: 20px;
  }
}
#project .inner .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 0 auto;
  padding: 12px 0px;
  padding-left: 25px;
  background-color: #fff;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #project .inner .btn a {
    width: 100%;
    padding-left: 25px;
  }
}
#project .inner .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#project .inner .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#project .inner .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #project .inner .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #project .inner .btn a:hover::before {
    display: none;
  }
}

#project-single {
  padding: 60px 100px 0 250px;
}
@media screen and (max-width: 820px) {
  #project-single {
    padding: 80px 8% 60px;
  }
}
#project-single h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #project-single h2 {
    margin-bottom: 20px;
  }
}
#project-single h2 img {
  display: inline-block;
  width: 200px;
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  #project-single h2 img {
    width: 140px;
    margin-right: 10px;
  }
}
#project-single h2 span {
  font-size: 1.6rem;
  vertical-align: 40px;
}
@media screen and (max-width: 820px) {
  #project-single h2 span {
    font-size: 1.4rem;
    vertical-align: 28px;
  }
}
#project-single article {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #project-single article {
    min-width: 100%;
  }
}
#project-single article figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #project-single article figure {
    margin-bottom: 20px;
  }
}
#project-single article figure img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 820px) {
  #project-single article figure img {
    height: 300px;
  }
}
#project-single article h3 {
  font-size: 3.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #project-single article h3 {
    font-size: 2.4rem;
  }
}
#project-single article .txt-wrap {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d81935;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #project-single article .txt-wrap {
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
#project-single article .txt-wrap .date {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 820px) {
  #project-single article .txt-wrap .date {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}
#project-single article .txt-wrap .category {
  display: inline-block;
}
#project-single article .txt-wrap .category a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d81935;
  margin-right: 10px;
}
@media screen and (max-width: 820px) {
  #project-single article .txt-wrap .category a {
    font-size: 1.2rem;
    display: block;
    line-height: 1.4;
  }
}
#project-single article h4 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #project-single article h4 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#project-single article h5 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #project-single article h5 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#project-single article h6 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 820px) {
  #project-single article h6 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
#project-single article p {
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #project-single article p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

#project p.copy {
  margin-bottom: 60px;
}
#project p.copy:nth-of-type(2) {
  margin-bottom: 0;
}
#project p:nth-of-type(2) {
  margin-bottom: 0;
}
#project form {
  margin-top: 20px;
}
@media screen and (max-width: 820px) {
  #project form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 10px;
  }
}
#project form input {
  font-size: 1.4rem;
  border: none;
  border-radius: 4px;
  background-color: #faf2f2;
  padding: 10px 20px;
}
@media screen and (max-width: 820px) {
  #project form input {
    width: 79%;
    padding: 8px 20px;
    margin-top: 5px;
  }
}
#project form input:focus {
  outline: 0;
  background-color: #fadce1;
}
#project input[type=submit] {
  border: none;
  border-radius: 4px;
  background-color: #d81935;
  padding: 10px 30px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  margin-left: 2px;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  #project input[type=submit] {
    display: block;
    width: 20%;
    padding: 9px;
    margin-top: 5px;
    margin-left: 0;
  }
}

#project .page-wrap {
  display: block;
  text-align: center;
}
#project .page-wrap .wp-pagenavi {
  display: inline-block;
  margin: 20px 0;
  font-size: 1.2rem;
}
#project .page-wrap .wp-pagenavi a {
  /* フォント色 */
  color: #000;
}
#project .page-wrap .wp-pagenavi .current {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /* カレント数字 */
  border: none;
  background: #faf2f2;
  color: #000;
}
#project .page-wrap .wp-pagenavi a.page {
  /* 左の表記 */
  margin-right: 20px;
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #d81935;
  color: #fff;
  font-weight: bold;
}
#project .page-wrap .wp-pagenavi a.page:hover {
  /* マウスオーバー */
  background-color: #faf2f2;
  color: #d81935;
}

#project .wp-pagenavi .previouspostslink {
  position: relative;
  display: block;
}
#project .wp-pagenavi .previouspostslink::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-left.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 29px;
  left: -30px;
}
@media screen and (max-width: 820px) {
  #project .wp-pagenavi .previouspostslink::before {
    width: 12px;
    height: 12px;
    top: 33px;
    left: -20px;
  }
}
#project .wp-pagenavi .nextpostslink {
  position: relative;
  display: block;
}
#project .wp-pagenavi .nextpostslink::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -34px;
  right: -27px;
}
@media screen and (max-width: 820px) {
  #project .wp-pagenavi .nextpostslink::after {
    width: 12px;
    height: 12px;
    top: -32px;
    right: -17px;
  }
}

#project-single .btn {
  text-align: center;
}
#project-single .btn a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #project-single .btn a {
    width: 100%;
    margin-top: 20px;
  }
}
#project-single .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#project-single .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#project-single .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #project-single .btn a:hover::before {
    color: #d81935;
    background-color: #fff;
  }
  #project-single .btn a:hover::before::before {
    display: none;
  }
}

#project-single .project-page {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  #project-single .project-page {
    margin-top: 40px;
  }
}
#project-single .project-page a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d81935;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 820px) {
  #project-single .project-page a {
    font-size: 1.6rem;
  }
}

#project-single .project-wrap {
  width: 100%;
  padding: 30px 40px 40px 40px;
  background-color: #faf2f2;
  border-radius: 20px;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap {
    padding: 30px 20px 20px;
  }
}
#project-single .project-wrap .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#project-single .project-wrap .inner .txt-wrap {
  width: calc(96% - 300px);
  margin-right: 4%;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap .inner .txt-wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
#project-single .project-wrap .inner .txt-wrap h3 {
  font-size: 3rem;
  color: #d81935;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap .inner .txt-wrap h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#project-single .project-wrap .inner .txt-wrap h3 span {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 5px 20px;
  background-color: #d81935;
  margin-bottom: 5px;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap .inner .txt-wrap h3 span {
    font-size: 1.1rem;
    padding: 2px 10px;
  }
}
#project-single .project-wrap .inner .txt-wrap .ttl {
  display: inline;
  font-size: 2.4rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #e6c266));
  background: linear-gradient(transparent 60%, #e6c266 0%);
  padding: 0 2px;
}
#project-single .project-wrap .inner .txt-wrap .copy {
  margin-top: 20px;
}
#project-single .project-wrap .inner .txt-wrap .url {
  margin-top: 30px;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap .inner .txt-wrap .url {
    margin-top: 20px;
  }
}
#project-single .project-wrap .inner .txt-wrap .url span {
  color: #d81935;
  font-weight: bold;
  padding-right: 10px;
}
#project-single .project-wrap .inner .txt-wrap .url a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
}
#project-single .project-wrap .inner .photo {
  width: 480px;
  height: auto;
}
@media screen and (max-width: 820px) {
  #project-single .project-wrap .inner .photo {
    width: 100%;
    padding-right: 5%;
  }
}

#project-single .list-wrap {
  max-width: 1000px;
  margin: 100px auto 40px;
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
#project-single .list-wrap .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap .content {
    width: 100%;
    display: block;
  }
}
#project-single .list-wrap .content h3 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  width: 200px;
  margin-top: -10px;
  margin-right: 60px;
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap .content h3 {
    font-size: 2.8rem;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#project-single .list-wrap .content table {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap .content table {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap .content table tr:not(:first-child) th {
    border-top: none;
  }
}
#project-single .list-wrap .content table tr th {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  width: 120px;
  padding: 25px 0;
  vertical-align: top;
  border-top: 1px solid #d81935;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap .content table tr th {
    display: block;
    width: 100%;
    padding: 15px 0 0;
    border-bottom: none;
  }
}
#project-single .list-wrap .content table tr td {
  line-height: 1.8;
  padding: 22px 0 25px;
  border-top: 1px solid #d81935;
  border-bottom: 1px solid #d81935;
}
@media screen and (max-width: 820px) {
  #project-single .list-wrap .content table tr td {
    line-height: 1.6;
    display: block;
    width: 100%;
    padding: 5px 0 15px;
    border-top: none;
  }
}

#page--service.care {
  background: url(../images/care_bg.png) left center no-repeat;
  background-size: cover;
}

#page--service.itsolution {
  background: url(../images/itsolution.jpg) no-repeat;
  background-size: cover;
}

#page--service.dx {
  background: url(../images/itsolution2.jpg) no-repeat;
  background-size: cover;
}

#page--service.monshin {
  background: url(../images/top-web-img.jpg) no-repeat;
  background-size: cover;
}

#page--service.marbera {
  background: url(../images/top-marbera-img.jpg) no-repeat;
  background-size: cover;
}

#page--service {
  font-family: "Jost", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background-color: #E7EBEE;
  padding: 120px 50px 80px 170px;
}
@media screen and (max-width: 820px) {
  #page--service {
    padding: 120px 0 0 0;
  }
}
#page--service .block {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  #page--service .block {
    width: 100%;
    padding-right: 0;
    padding-top: 70px;
    padding-bottom: 0;
    background: none;
    background-color: #E7EBEE;
  }
}
#page--service .block .inner {
  width: 504px;
  margin: 20px 0 0 auto;
}
@media screen and (max-width: 820px) {
  #page--service .block .inner {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 820px) {
  #page--service .block .inner .ttl-sp {
    position: relative;
    z-index: 10;
  }
  #page--service .block .inner .ttl-sp .ttl-logo {
    position: absolute;
    top: -120px;
    left: -30px;
  }
  #page--service .block .inner .ttl-sp .ttl-logo img {
    position: relative;
  }
  #page--service .block .inner .ttl-sp .ttl-logo p {
    font-size: 14px;
    line-height: 25px;
    bottom: 20px;
    left: 50px;
    position: absolute;
  }
}
#page--service .block .inner .ttl {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #page--service .block .inner .ttl {
    width: 100%;
  }
}
#page--service .block .inner .ttl h2 {
  position: absolute;
  width: 374px;
  top: -180px;
  left: -104px;
  z-index: 0;
}
#page--service .block .inner .ttl p {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  #page--service .block .inner .sp-bg {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
    background-color: #fff;
  }
  #page--service .block .inner .sp-bg .color {
    position: absolute;
    background-color: #E7EBEE;
    width: 100%;
    height: 160px;
  }
}
#page--service .block .inner .sp-bg .content {
  width: 450px;
  background-color: #fff;
  padding: 35px 40px 50px 40px;
}
@media screen and (max-width: 820px) {
  #page--service .block .inner .sp-bg .content {
    position: relative;
    z-index: 15;
    width: 90%;
    margin: -80px auto 0;
  }
}
#page--service .block .inner .sp-bg .content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
#page--service .block .inner .sp-bg .content h3 img {
  width: 204px;
}
#page--service .block .inner .sp-bg .content h3 span {
  display: block;
  font-weight: 700;
  font-size: 12px;
}
#page--service .block .inner .sp-bg .content p {
  font-size: 16px;
  line-height: 28px;
}
#page--service .txt {
  text-align: justify;
  padding-top: 200px;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  #page--service .txt {
    padding-top: 100px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
}
#page--service .btn a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #page--service .btn a {
    width: 100%;
  }
}
#page--service .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#page--service .btn a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/btn-ico02.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 85px;
}
@media screen and (max-width: 820px) {
  #page--service .btn a::after {
    right: 45px;
  }
}
#page--service .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#page--service .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#page--service .btn a:hover::after {
  background: url(../images/btn-ico03.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  #page--service .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #page--service .btn a:hover::before {
    display: none;
  }
  #page--service .btn a:hover::after {
    background: url(../images/btn-ico02.svg) center center no-repeat;
    background-size: contain;
  }
}

#service-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 800px;
}
@media screen and (max-width: 820px) {
  #service-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 1200px;
  }
}
#service-block .block {
  position: relative;
  width: 50%;
}
#service-block .block .content {
  position: absolute;
  bottom: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  margin: auto;
  background-color: #fff;
  padding: 50px 45px;
}
#service-block .block .content h2 {
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#service-block .block .content p {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 15px;
}
#service-block .block .content .btn {
  text-align: center;
}
#service-block .block .content .btn a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 320px;
  margin: 40px auto 0;
  padding: 12px 0;
  border: 1px solid #d81935;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #d81935;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  #service-block .block .content .btn a {
    width: 100%;
    margin-top: 20px;
  }
}
#service-block .block .content .btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #d81935;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
#service-block .block .content .btn a:hover {
  color: #fff;
  background-color: #d81935;
}
#service-block .block .content .btn a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 820px) {
  #service-block .block .content .btn a:hover {
    color: #d81935;
    background-color: #fff;
  }
  #service-block .block .content .btn a:hover::before {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  #service-block .block {
    width: 100%;
    height: 600px;
  }
}
#service-block .block.wellbeing {
  background: url(../images/top-marbera-img.jpg) left center no-repeat;
}
@media screen and (max-width: 820px) {
  #service-block .block.wellbeing {
    background: url(../images/top-marbera-img-sp.jpg) top center no-repeat;
  }
}
#service-block .block.itsolution {
  background: url(../images/itsolution.jpg) left center no-repeat;
  background-size: cover;
}