@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.font-poppins {
  font-family: "Poppins", "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
}

.font-roboto {
  font-family: "Roboto", "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
}

.color-red {
  color: #f90000;
}

html {
  background: #eee;
}

body {
  padding-right: 100px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  font-family: "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
}
body.home {
  background-color: #FAFAFA;
}
@media (max-width: 900px) {
  body.home .side-right .wrap {
    display: flex;
  }
}
@media (max-width: 900px) {
  body .side-right .wrap {
    display: none;
  }
}

a:hover {
  text-decoration: none;
}

.bg-photo {
  background: center center/cover no-repeat;
}
.bg-photo > img {
  display: none;
}

.normalmove {
  transform: translateY(50px);
  opacity: 0;
}

.normalanimate {
  transform: translateY(0%);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.34, 0.96, 0.56, 0.99);
  transition: 0.9s;
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #F4F4F4;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading .loading-logo {
  margin: 0 auto 20px;
  width: 200px;
}
.loading .loading-logo img {
  width: 100%;
}
.loading .dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loading .dot {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  animation-name: scaleUp;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0.8;
  background-color: #f90000;
}
.loading .dot:nth-of-type(1n) {
  animation-delay: 0.1s;
}
.loading .dot:nth-of-type(2n) {
  animation-delay: 0.2s;
}
.loading .dot:nth-of-type(3n) {
  animation-delay: 0.3s;
}
.loading .dot:nth-of-type(4n) {
  animation-delay: 0.4s;
}
.loading .dot:nth-of-type(5n) {
  animation-delay: 0.5s;
}
.loading .dot:nth-of-type(6n) {
  animation-delay: 0.6s;
}
.loading .dot:nth-of-type(7n) {
  animation-delay: 0.7s;
}
.loading .dot:nth-of-type(8n) {
  animation-delay: 0.8s;
}
.loading .dot:nth-of-type(9n) {
  animation-delay: 0.9s;
}
.loading .dot:nth-of-type(10n) {
  animation-delay: 1s;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}

.side-right {
  width: 100px;
  height: 100vh;
  position: fixed;
  padding-top: 45vh;
  padding-bottom: 5vh;
  right: 0;
  top: 0;
  z-index: 5;
  background: #fff;
  transition: 0.3s;
}
.side-right .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.side-right .copy {
  white-space: nowrap;
  color: #f90000;
  transform: rotate(90deg);
}
.side-right .links a {
  color: #000;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  justify-items: center;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px;
  transition: 0.3s;
}
.side-right .links a:hover {
  transition: 0.3s;
  background-color: #f90000;
}
.side-right .links a svg {
  width: 19px;
  height: 19px;
}

.toggle-btn {
  position: fixed;
  top: 32px;
  right: 22px;
  z-index: 900;
  width: 56px;
  cursor: pointer;
  transition: 0.3s;
  transform: translateY(-4px);
  background: #fff;
}
@media (max-width: 900px) {
  .toggle-btn {
    background: transparent;
  }
}
.toggle-btn .en {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 24px;
  line-height: 1;
  color: #f90000;
}
.toggle-btn label {
  width: 100%;
  display: flex;
  padding: 12px;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}
.toggle-btn label .line {
  position: absolute;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background-color: #f90000;
  display: block;
  margin: auto;
  transition: 400ms;
  margin-top: 0px;
  top: 20px;
}
.toggle-btn label .line1 {
  position: absolute;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background-color: #f90000;
  display: block;
  margin: auto;
  transition: 400ms;
  top: 28px;
  backface-visibility: hidden;
  transform: rotate(0deg) translateY(0px);
}
.toggle-btn label .line2 {
  position: absolute;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background-color: #f90000;
  display: block;
  margin: auto;
  transition: 400ms;
  top: 12px;
  backface-visibility: hidden;
  transform: rotate(0deg) translateY(0px);
}

.ghost-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 5;
  height: 0;
  background: rgba(39, 38, 38, 0.25);
  transition: background 0.45s linear, height 0.45s ease-in 200ms;
  z-index: 800;
}
.ghost-nav .nav {
  width: 100%;
  max-width: 600px;
  padding: 30px 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(-100vh);
}
.ghost-nav .nav .first {
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
}
.ghost-nav .nav .first a {
  font-weight: bold;
  font-size: 18px;
}
.ghost-nav a {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  padding: 0.7em 0.5em;
  display: block;
  font-weight: normal;
  text-transform: uppercase;
  display: block;
  font-size: 14px;
}
.ghost-nav a .en {
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
}
.ghost-nav ul li {
  opacity: 0;
  transition: 0.5s;
  transform: translate(-5px, -3px);
}
.ghost-nav .web-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #fff;
  margin-top: 0.5em;
  padding-top: 0.5em;
}
.ghost-nav .web-link a {
  width: 24px;
  height: 24px;
  color: #fff;
  display: inline-block;
  margin: 0 5px;
  transition: 0.3s;
}
.ghost-nav .web-link a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.ghost-nav .web-link a svg {
  width: 24px;
  height: 24px;
}

#menu-status:checked ~ .ghost-nav {
  height: 100%;
  background-color: #f90000;
  transition: 0.4s ease-in;
}

#menu-status:checked ~ .ghost-nav .nav {
  transition: 0.6s;
  transition-delay: 0.4s;
  transform: translateY(0px);
  opacity: 1;
}

#menu-status:checked ~ .ghost-nav ul li {
  opacity: 1;
  transform: translate(0, 0);
}

#menu-status:checked ~ .ghost-nav ul li a {
  color: #fff;
}

#menu-status {
  display: none;
}

#menu-status:checked ~ .toggle-btn {
  background: #fff;
}

#menu-status:checked ~ .toggle-btn label .line {
  opacity: 0;
}

#menu-status:checked ~ .toggle-btn label .line1 {
  top: 20px;
  transform: rotate(-45deg) translateY(0px);
}

#menu-status:checked ~ .toggle-btn label .line2 {
  width: 26px;
  top: 20px;
  transform: rotate(45deg) translateY(0px);
}

.header {
  position: absolute;
  width: calc(100% - 100px);
  z-index: 10;
  padding: 30px 50px 0px 50px;
}
.header .wrap {
  display: flex;
  justify-content: space-between;
}
.header .wrap .brand {
  width: 120px;
  min-width: 120px;
  transition: 0.3s;
}
.header .wrap .brand:hover {
  transition: 0.3s;
}
.header .wrap .brand:hover img {
  transform: rotateY(360deg);
}
.header .wrap .brand img {
  transition: 0.3s;
}
@media (max-width: 900px) {
  .header .wrap .brand .pagepc {
    display: none;
  }
}
.header .wrap .brand .pagesp {
  display: none;
}
@media (max-width: 900px) {
  .header .wrap .brand .pagesp {
    display: block;
  }
}
.header .wrap .right .heaer-nav ul {
  display: flex;
}
.header .wrap .right .heaer-nav ul li a {
  color: #fff;
  padding: 0 1em;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
}
.header .wrap .right .heaer-nav ul li a:hover {
  transition: 0.3s;
  color: #000000;
}

body.home .header {
  transform: translateY(-100%);
  transition: 0.5s;
}
body.home .header.do {
  transform: translateY(0%);
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0 0px 0 50px;
  display: flex;
}
.hero .content {
  display: flex;
  align-items: center;
  padding-right: 2em;
}
.hero .content.do .jp .black {
  display: block;
  opacity: 1;
  transform: translateY(0%);
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
  transition-delay: 0.2s;
}
.hero .content.do .jp .red {
  transition-delay: 0.4s;
  display: block;
  opacity: 1;
  transform: translateY(0%);
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
  transition-delay: 0.4s;
}
.hero .content.do .en {
  opacity: 1;
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
  transition-delay: 0.8s;
}
.hero .content .jp {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}
.hero .content .jp .black {
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
}
.hero .content .jp .red {
  color: #f90000;
  opacity: 0;
  display: inline-block;
  transform: translateY(100%);
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
}
.hero .content .en {
  font-weight: 200;
  margin-top: 2em;
  font-size: 16px;
  max-width: 400px;
  opacity: 0;
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
}
.hero .picture {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero .picture.do::after {
  left: 100%;
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
}
.hero .picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  transition: 1s cubic-bezier(0, 0, 0.25, 1);
}
.hero .picture .photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 45px;
}
.hero .picture .headline {
  position: absolute;
  width: 80%;
  max-width: 650px;
  left: 50%;
  bottom: 5%;
  background: #fff;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  height: 3em;
  border-radius: 1.5em;
  display: flex;
  align-items: center;
  padding: 0 2em;
}
.hero .picture .headline a {
  width: 100%;
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
  padding-right: 1.6em;
}
.hero .picture .headline a:hover .article {
  transition: 0.3s;
  text-decoration: underline;
}
.hero .picture .headline a .date {
  padding-right: 2em;
}
.hero .picture .headline a .icon-right {
  position: absolute;
  right: 0;
  width: 0.8em;
  height: 1.6em;
}
.hero .picture .headline a .icon-right svg {
  width: 0.8em;
  height: 1.6em;
}
.hero .picture .headline a .article {
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

.tag-color-grant-consulting {
  background-color: #2b9bbb;
}

.tag-color-organization-consulting {
  background-color: #000000;
}

.tag-color-management-consulting {
  background-color: #283149;
}

.tag-color-business-consulting {
  background-color: #757575;
}

.tag-color-web-consulting {
  background-color: #F73859;
}

.bg-en {
  width: 100%;
  overflow: hidden;
  color: #F4F4F4;
  font-weight: 500;
  font-size: 12.8vw;
  white-space: nowrap;
  line-height: 0.8;
  transform: translateY(40%);
}
@media (min-width: 1920px) {
  .bg-en {
    font-size: 245px;
  }
}
@media (max-width: 550px) {
  .bg-en {
    font-size: 16vw;
    padding-top: 30px;
  }
}
.bg-en.white {
  color: #fff;
}
.bg-en span {
  display: block;
  transform: translateX(-0.3em);
}
@media (max-width: 550px) {
  .bg-en span {
    font-size: 16vw;
    transform: translateX(-1em);
  }
}

.head-ttl {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.6;
}

.wrapper {
  width: 100%;
  padding: 0 50px 0 50px;
  position: relative;
  z-index: 1;
}

.main-ttl.small .top .en {
  font-size: 18px;
}
.main-ttl.small .jp {
  font-size: 12px;
}
.main-ttl .top {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
@media (max-width: 350px) {
  .main-ttl .top {
    display: block;
    text-align: center;
  }
}
.main-ttl .top .en {
  font-weight: bold;
  font-size: 36px;
  color: #f90000;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}
.main-ttl .top .jp {
  position: relative;
  padding-left: 2em;
  white-space: nowrap;
  font-weight: normal;
}
@media (max-width: 350px) {
  .main-ttl .top .jp {
    padding-left: 0em;
  }
}
.main-ttl .top .jp::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 1em;
  background-color: #000;
  transform: rotate(15deg);
  bottom: 0.4em;
  left: 1em;
}
@media (max-width: 350px) {
  .main-ttl .top .jp::after {
    display: none;
  }
}
.main-ttl .next-jp {
  font-size: 12px;
  font-weight: normal;
}

.btn.showsp {
  display: none !important;
}
@media (max-width: 550px) {
  .btn.showsp {
    display: block !important;
  }
}

.btn.nobg a {
  background-color: transparent;
  color: #fff;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0px auto 0;
  width: 300px;
  background: #fff;
  color: #000;
  border: 1px solid #DDDBDB;
  height: 4em;
  transition: 0.3s;
}
.btn a:hover {
  transition: 0.3s;
  background: #DDDBDB;
}

.btn input {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0px auto 0;
  width: 300px;
  background: #fff;
  color: #000;
  border: 1px solid #DDDBDB;
  height: 4em;
  transition: 0.3s;
}
.btn input:hover {
  transition: 0.3s;
  background: #DDDBDB;
}

.index-one {
  text-align: center;
  position: relative;
  padding-bottom: 100px;
  z-index: 1;
  overflow: hidden;
}
.index-one .wrapper.animate .bg-left {
  opacity: 1;
  transform: translateY(-50%) translateX(0%);
  transition: 0.3s;
}
.index-one .wrapper.animate .bg-right {
  transform: translateX(0%);
  transition: 0.3s;
}
.index-one .wrapper .bg-left {
  position: absolute;
  width: 250px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  transition: 0.3s;
}
.index-one .wrapper .bg-right {
  position: absolute;
  width: 300px;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: 0.3s;
}
.index-one .article {
  margin-top: 40px;
}
.index-one .btn a {
  margin: 50px auto 0;
}

.index-two {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.index-two::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  z-index: 0;
  background-color: #F4F4F4;
  z-index: -1;
  border-radius: 0 45px 45px 0;
}
.index-two .head-ttl {
  margin-top: 1em;
}
.index-two .title {
  min-width: 300px;
  width: 300px;
}
.index-two .content {
  display: flex;
  align-items: flex-start;
}
.index-two .content .right {
  width: 100%;
  padding-right: 50px;
}
.index-two .content .right .img {
  width: calc(100% + 100px);
}
.index-two .content .right .img img {
  width: 100%;
}
.index-two .content .article-ttl {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  margin: 2em 0 1.5em;
}
.index-two .btn a {
  margin: 50px 0 0;
}

.index-three {
  padding: 100px 0 160px;
}
.index-three .wrapper {
  max-width: 1360px;
  margin: 0 auto;
}
.index-three .title {
  width: 100%;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-three .title .button a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #000;
}
.index-three .title .button a .icon {
  width: 12px;
  height: 12px;
  background-color: #707070;
  position: relative;
  margin-right: 0.5em;
}
.index-three .title .button a .icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 5px;
  top: 0;
  background-color: #fff;
}
.index-three .title .button a .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 5px;
  left: 0;
  background-color: #fff;
}
.index-three .title .button a p {
  border-bottom: 1px solid #707070;
}
.index-three .content {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
.index-three .content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 60px;
  width: 95%;
  height: 100%;
  background-color: #F4F4F4;
  z-index: -1;
}
.index-three .content .item {
  width: 100%;
  padding: 0 10px;
}
.index-three .content .item .img {
  position: relative;
}
.index-three .content .item .img p {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #fff;
  font-size: 12px;
  padding: 0 0.8em;
  border-radius: 0.9em;
}
.index-three .content .item a {
  width: 100%;
  display: block;
  border-radius: 20px !important;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.index-three .content .item a .img {
  width: 100%;
}
.index-three .content .item a .img img {
  width: 100%;
}
.index-three .content .item a .bottom {
  width: 100%;
  padding: 20px 20px 30px;
}
.index-three .content .item a .img-ttl {
  font-weight: bold;
  line-height: 1.4;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.index-three .content .item a .item-ttl {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin: 0.6em 0;
}
.index-three .content .item a .item-ttl h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.index-three .content .item a .item-ttl .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
}
.index-three .content .item a .item-ttl .icon svg {
  width: 1em;
  height: 1em;
}
.index-three .content .item a .word {
  width: 100%;
  font-size: 12px;
  /*text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;*/
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.index-three .slick-prev,
.index-three .slick-next {
  background: #f90000;
  font-family: "Roboto", "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
  color: #fff;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}
.index-three .slick-prev {
  left: 0;
  width: 80px;
  height: 48px;
}
.index-three .slick-prev::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #fff;
}
.index-three .slick-next {
  right: 0px;
  width: 80px;
  height: 48px;
}
.index-three .slick-next::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #fff;
}

.index-four {
  padding-bottom: 100px;
}
.index-four .bg {
  width: 100%;
  height: calc(100% + 160px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.index-four .title {
  text-align: center;
  color: #fff;
  position: relative;
  padding-top: 70px;
}
.index-four .title::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  background-color: #fff;
  left: calc(50% - 1px);
  top: 0;
}
.index-four .title .text {
  font-size: 18px;
  font-weight: bold;
  padding-top: 1.5em;
  padding-bottom: 80px;
}
.index-four .title .main-ttl .top {
  justify-content: center;
}
.index-four .title .main-ttl .top .en {
  color: #fff;
}
.index-four .content {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.index-four .content .item {
  flex: 1;
  display: block;
}
.index-four .content .item a {
  height: 100%;
  display: block;
  background-color: #fff;
  color: #000;
  width: calc(100% - 20px);
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.index-four .content .item a .img {
  width: 100%;
  height: 160px;
  /*border: 1px solid #707070;*/
}
.index-four .content .bottom {
  padding: 20px 20px 30px;
  border: 1px solid #F4F4F4;
  border-bottom: none;
}
.index-four .content .bottom .article {
  margin-top: 1em;
}
.index-four .btn {
  margin-top: 40px;
}

.index-five {
  padding: 60px 0 60px;
  background-color: #fff;
}
.index-five .wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.index-five .title {
  width: 100%;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-five .content {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
.index-five .content .slick-track {
  display: flex;
}
.index-five .content .slick-track .slick-slide {
  height: auto;
  display: block;
}
.index-five .content .slick-track .slick-slide > div {
  display: block;
  height: 100%;
}
.index-five .content .item {
  padding: 15px 10px;
  height: 100%;
}
.index-five .content .item .box {
  height: 100%;
  display: block;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.index-five .content .item .box .bottom {
  width: 100%;
  padding: 15px 15px 20px;
}
.index-five .content .item .box .top:hover .img-ttl {
  transition: 0.3s;
  text-decoration: underline;
}
.index-five .content .item .box .img-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
  padding: 20px 20px 0;
  color: #000;
  transition: 0.3s;
}
.index-five .content .item .box .tag {
  display: inline-block;
  border: 1px solid #8F95AD;
  color: #8F95AD;
  line-height: 1;
  padding: 0.5em 0.8em;
  font-size: 12px;
  border-radius: 2em;
  margin: 0px 5px 5px 0;
  white-space: nowrap;
}
.index-five .content .item .box .tag:hover {
  transition: 0.3s;
  box-shadow: 4px 2px 4px rgba(0, 0, 0, 0.16);
}
.index-five .content .item .box .date {
  color: #8F95AD;
  font-size: 14px;
  font-weight: 500;
}
.index-five .slick-prev,
.index-five .slick-next {
  background: #f90000;
  font-family: "Roboto", "Noto Sans JP", "-apple-system", BlinkMacSystemFont, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
  color: #fff;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}
.index-five .slick-prev {
  left: 0;
  width: 80px;
  height: 48px;
}
.index-five .slick-prev::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #fff;
}
.index-five .slick-next {
  right: 0px;
  width: 80px;
  height: 48px;
}
.index-five .slick-next::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #fff;
}
.index-five .btn {
  margin-top: 40px;
}

.index-six {
  padding: 60px 0 40px;
  max-width: 1360px;
  margin: 0 auto;
}
.index-six .title {
  width: 100%;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-six .title .button a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #000;
}
.index-six .title .button a .icon {
  width: 12px;
  height: 12px;
  background-color: #707070;
  position: relative;
  margin-right: 0.5em;
}
.index-six .title .button a .icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 5px;
  top: 0;
  background-color: #fff;
}
.index-six .title .button a .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 5px;
  left: 0;
  background-color: #fff;
}
.index-six .title .button a p {
  border-bottom: 1px solid #707070;
}
.index-six .content {
  width: 100%;
  padding: 40px 100px 80px 50px;
}
.index-six .content .item a {
  display: flex;
  font-size: 14px;
  border-bottom: 1px solid #CECECE;
  padding: 1.5em;
  color: #000;
  transition: 0.3s;
}
.index-six .content .item a:hover {
  background: #fff;
  transition: 0.3s;
}
.index-six .content .item a:hover .ttl {
  transition: 0.3s;
  text-decoration: underline;
}
.index-six .content .item a .ttl {
  transition: 0.3s;
}
.index-six .content .item a .tag {
  font-size: 12px;
  border: 1px solid #707070;
  padding: 0.2em 1.5em;
  background: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2em;
  white-space: nowrap;
}

.footer-top .content {
  display: flex;
  color: #fff;
}
.footer-top .content .title {
  text-align: center;
}
.footer-top .content .item {
  width: 50%;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.footer-top .content .item.full {
  width: 100%;
}
.footer-top .content .item.contact .title {
  max-width: 350px;
}
.footer-top .content .item .title {
  width: 100%;
  max-width: 470px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-around;
}
.footer-top .content .item .title .main-ttl .top {
  justify-content: center;
}
.footer-top .content .item .title .main-ttl .top .en {
  color: #fff;
}
.footer-top .content .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer-top .content .item .text {
  margin: 1.5em 0 2em;
  text-align: left;
}

.footer {
  width: 100%;
  overflow: hidden;
  color: #fff;
}
.footer .top {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  padding: 80px 0;
}
.footer .bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto 30px;
}
.footer .bottom .left {
  min-width: 340px;
  font-size: 14px;
}
.footer .bottom .left .logo {
  width: 150px;
}
.footer .bottom .left .address {
  margin: 0.5em 0 1em;
}
.footer .bottom .left a {
  color: #fff;
}
.footer .bottom .right .menu-footer-nav-container {
  height: 100%;
}
.footer .bottom .right .menu-footer-nav-container ul {
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.footer .bottom .right .menu-footer-nav-container ul a {
  display: block;
  color: #fff;
  margin-right: 50px;
  text-align: left;
  margin-bottom: 0.5em;
  transition: 0.3s;
}
.footer .bottom .right .menu-footer-nav-container ul a:hover {
  color: #f90000;
  transition: 0.3s;
}
.footer .bottom .right .menu-footer-nav-container ul a .en {
  font-size: 14px;
  font-weight: bold;
}
.footer .bottom .right .menu-footer-nav-container ul a .jp {
  font-size: 12px;
}
.footer .copyright {
  font-size: 12px;
  padding: 1em 0;
  text-align: center;
  width: calc(100% + 100px);
  margin-left: -50px;
  border-top: 1px solid #fff;
}
.footer .produceby {
  display: block;
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
}

.page-head {
  width: calc(100% - 0px);
  background-color: #f90000;
}
.page-head .content {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
@media (max-width: 550px) {
  .page-head .content.bg-photo {
    background: top center/cover no-repeat;
  }
}
.page-head .content h1 span {
  display: block;
}
.page-head .content h1 .en {
  font-weight: 500;
  font-size: 64px;
  text-transform: uppercase;
}
.page-head .content h1 .jp {
  font-size: 20px;
}

.breadcrumbs {
  text-align: right;
  font-size: 12px;
  color: #333;
  background-color: #fff;
}
.breadcrumbs .box {
  width: calc(100% - 100px);
  margin: 0 0 0 auto;
  padding: 10px;
  background-color: #fff;
  transform: translateY(-99%);
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.breadcrumbs .mark {
  margin: 0 0.5em;
  display: inline-block;
}
.breadcrumbs a {
  color: #333;
}

.inner {
  width: 100%;
  padding: 0 100px;
}

.page-ttl {
  font-size: 30px;
  color: #f90000;
  font-weight: bold;
  text-align: center;
}

.about-one {
  background-color: #f90000;
  padding: 100px 0;
}
.about-one .content {
  width: 100%;
  padding: 80px 20px;
  border-radius: 45px;
  background-color: #fff;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.about-one .content .add {
  position: absolute;
  left: 0;
  top: 0;
  color: #CECECE;
  padding-right: 35px;
  transform: rotate(-90deg) translateX(-50%);
  line-height: 1;
}
.about-one .content .add::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #CECECE;
}
.about-one .content .wrap {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.about-one .content .title h3 {
  color: #f90000;
  font-size: 40px;
  line-height: 1.6;
  margin: 1em 0;
}
.about-one .content .article p:not(:first-child) {
  margin-top: 1.5em;
}

.about-two {
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  background-color: #F7F7F7;
}
.about-two .head {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-two .head .word {
  font-size: 18px;
  padding-top: 1em;
}
.about-two .content {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding: 50px 0;
}
.about-two .content .wrap {
  width: 50%;
  min-width: 600px;
  padding: 50px 50px 100px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.about-two .content .wrap .head-ttl {
  text-align: center;
  margin-bottom: 1em;
}
.about-two .content .wrap .article {
  font-size: 18px;
}
.about-two .content .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  z-index: -1;
}

.about-three {
  padding: 100px 0 100px;
  background-color: #fff;
}
.about-three .inner .word {
  font-size: 18px;
}
.about-three .title {
  width: 100%;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-three .slick-track {
  height: 100%;
  display: flex;
}
.about-three .slick-slide {
  height: auto;
}
.about-three .slick-slide > div {
  height: 100%;
  display: block;
}
.about-three .head-ttl {
  margin: 1em 0 0.5em;
}
.about-three .content {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
.about-three .content .item {
  padding: 0 10px;
  height: 100%;
  display: block !important;
}
.about-three .content .item .item-box {
  display: block;
  border-radius: 20px !important;
  overflow: hidden;
  background-color: #F4F5F7;
  color: #000;
  height: 100%;
}
.about-three .content .item .item-box img {
  width: 100%;
}
.about-three .content .item .item-box .bottom {
  width: 100%;
  padding: 20px 40px 60px;
}
.about-three .content .item .item-box .img-ttl {
  font-weight: bold;
  color: #f90000;
  text-align: center;
  font-size: 20px;
  margin-bottom: 1em;
}
.about-three .content .item .item-box .word {
  width: 100%;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.service-one {
  padding-bottom: 100px;
}
.service-one .article {
  text-align: center;
  font-size: 18px;
}
.service-one .article p {
  margin-top: 1em;
}

.service-two .content {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 80px;
}
.service-two .content.re {
  justify-content: flex-start;
}
.service-two .content.re .photo {
  left: auto;
  right: -100px;
}
.service-two .content .photo {
  position: absolute;
  left: -100px;
  top: 0;
  width: calc(50% - 40px + 100px);
  height: 100%;
}
.service-two .content .item {
  padding: 50px 0;
  width: calc(50% - 40px);
}
.service-two .content .item .article {
  margin: 1em 0;
}
.service-two .content .item .point-ttl {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #f90000;
  text-transform: uppercase;
  font-weight: bold;
}
.service-two .content .item .point-ttl .icon {
  height: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
}
.service-two .content .item .point-ttl .icon svg {
  width: auto;
  height: 0.8em;
}
.service-two .content .item ul li {
  background-color: #F4F4F4;
  margin-top: 4px;
  padding: 0.5em 1em 0.5em 2.5em;
  position: relative;
}
.service-two .content .item ul li::after {
  content: "";
  position: absolute;
  left: 1em;
  top: 1.2em;
  width: 8px;
  height: 8px;
  background-color: #f90000;
  border-radius: 100%;
}
.service-two .content .item ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.service-two .content .item ul li:nth-child(3) {
  transition-delay: 0.4s;
}

.case-one {
  padding-bottom: 80px;
}
.case-one .article {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 1em;
}

.case-single-one {
  padding-bottom: 100px;
}
.case-single-one .content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.case-single-one .content .top-img img {
  width: 100%;
}
.case-single-one .content .top-img p {
  text-align: right;
  padding-right: 0.5em;
}
.case-single-one .content .box {
  width: 100%;
  max-width: 830px;
  padding: 0 20px 80px;
  margin: 0 auto;
}
.case-single-one .content .box .two {
  padding-top: 50px;
}
.case-single-one .content .box .two .article {
  margin-bottom: 1.5em;
}
.case-single-one .content .single-ttl {
  text-align: center;
  font-size: 26px;
  color: #f90000;
  font-weight: bold;
  margin: 2em 0 1.5em;
}
.case-single-one .content .img-ttl {
  font-size: 26px;
  font-weight: bold;
  margin: 0.8em 0;
}
.case-single-one .content .article-ttl {
  color: #f90000;
  padding-left: 40px;
  position: relative;
  font-weight: bold;
  margin-bottom: 0.8em;
}
.case-single-one .content .article-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.4em;
  width: 32px;
  height: 1px;
  background-color: #f90000;
}
.case-single-one .content .three {
  border: 1px solid #707070;
  padding: 20px 40px 40px 20px;
  display: flex;
}
.case-single-one .content .three .left {
  width: 120px;
  min-width: 120px;
  margin-right: 40px;
}
.case-single-one .content .three .right {
  width: 100%;
}
.case-single-one .content .three .right .first dt {
  width: 100%;
}
.case-single-one .content .three .right dl {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #CECECE;
  padding: 10px 0;
}
.case-single-one .content .three .right dl dt {
  width: 100px;
  font-weight: bold;
}
.case-single-one .content .btn {
  margin-top: 40px;
}

.pagenav {
  width: 100%;
  padding: 40px 0;
}
.pagenav h2 {
  display: none;
}
.pagenav .nav-links {
  display: flex;
  justify-content: center;
}
.pagenav .nav-links .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #DDDBDB;
  color: #000;
  margin: 0 10px;
}
.pagenav .nav-links .page-numbers.current {
  background-color: #f90000;
  color: #fff;
  border-bottom: 1px solid #DDDBDB;
}
.pagenav .nav-links a:hover {
  background: #DDDBDB;
}

.case-two {
  background-color: #F3F8FB;
  padding: 40px 0;
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto 60px;
}
.case-two .inner {
  padding: 0 80px 0 100px;
}
.case-two::after {
  content: "";
  position: absolute;
  left: calc(50% + 50px);
  top: 0;
  width: 100vw;
  max-width: 1920px;
  height: 100%;
  background-color: #F3F8FB;
  z-index: -1;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .case-two::after {
    left: 50%;
  }
}
.case-two .add {
  position: absolute;
  left: 25px;
  top: 0;
  color: #CECECE;
  padding-right: 65px;
  transform: rotate(-90deg) translateX(-100%) translateY(100%);
  transform-origin: left top;
  line-height: 1;
}
.case-two .add::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #CECECE;
}
.case-two .chose {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.case-two .chose a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #000;
  font-size: 14px;
  padding-right: 1.5em;
  padding: 5px 1.5em 5px 0;
}
.case-two .chose a.on .square {
  background: #f90000;
}
.case-two .chose a .square {
  width: 0.8em;
  height: 0.8em;
  border: 1px solid #000;
  display: block;
  margin-right: 0.5em;
}
.case-two .chose a span {
  display: block;
}
.case-two .content {
  display: flex;
  flex-wrap: wrap;
}
.case-two .content .item {
  width: calc(25% - 20px);
  margin-bottom: 30px;
  margin-right: 20px;
}
.case-two .content .item .img {
  position: relative;
}
.case-two .content .item .img p {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #fff;
  font-size: 12px;
  padding: 0 0.8em;
  border-radius: 0.9em;
}
.case-two .content .item a {
  height: 100%;
  display: block;
  border-radius: 20px !important;
  overflow: hidden;
  background-color: #fff;
  color: #000;
}
.case-two .content .item a:hover .img-ttl {
  transition: 0.3s;
  text-decoration: underline;
}
.case-two .content .item a .bottom {
  width: 100%;
  padding: 20px 20px 30px;
}
.case-two .content .item a .img-ttl {
  transition: 0.3s;
  font-weight: bold;
  line-height: 1.4;
}
.case-two .content .item a .item-ttl {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin: 1em 0;
}
.case-two .content .item a .item-ttl .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
}
.case-two .content .item a .item-ttl .icon svg {
  width: 1em;
  height: 1em;
}
.case-two .content .item a .word {
  width: 100%;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.company-one {
  width: 100%;
}
.company-one .content {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 0;
}
.company-one .content .main-ttl {
  width: 100%;
}
.company-one .content .left {
  width: 50%;
}
.company-one .content .left .article {
  padding-top: 1em;
}
.company-one .content .left .article p {
  margin-top: 1em;
}
.company-one .content .right {
  width: calc(50% - 50px);
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.company-one .content .right .bg {
  width: calc(100% + 50px);
  height: 100%;
  position: absolute;
  left: 50px;
  top: 0;
  z-index: -1;
  transform: translateY(-100px);
}
.company-one .content .right .bg.bg-photo {
  background: top center/cover no-repeat;
}
.company-one .content .right .main-ttl .top .en {
  color: #fff;
  font-size: 24px;
}
.company-one .content .right .main-ttl .next-jp {
  font-weight: bold;
}
.company-one .content .right .main-ttl .top .jp::after {
  background-color: #fff;
}
.company-one .content .right .card {
  padding: 50px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.company-one .content .right .card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f90000;
  top: 0;
  left: 0;
  opacity: 0.85;
  z-index: -1;
}
.company-one .content .right .card .article {
  font-size: 13px;
  margin-top: 1.5em;
}

.company-two {
  background-color: #F7F7F7;
  padding: 100px 0;
}
.company-two .content {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.company-two .content .main-ttl {
  margin-bottom: 50px;
}
.company-two .content dl {
  display: flex;
  align-items: flex-start;
  padding: 1em 0;
  border-top: 1px solid #CECECE;
}
.company-two .content dl:last-child {
  border-bottom: 1px solid #CECECE;
}
.company-two .content dl dt {
  width: 150px;
  min-width: 150px;
  font-weight: bold;
  font-size: 14px;
}
.company-two .content dl dd {
  font-size: 14px;
}
.company-two .content dl dd a {
  color: #000;
}

.company-three {
  padding: 100px 0;
}
.company-three .content {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.company-three .content .main-ttl {
  margin-bottom: 50px;
}
.company-three .content dl {
  display: flex;
  align-items: flex-start;
  padding: 1em 0;
  border-top: 1px solid #CECECE;
}
.company-three .content dl:last-child {
  border-bottom: 1px solid #CECECE;
}
.company-three .content dl dt {
  width: 150px;
  min-width: 150px;
  font-size: 14px;
}
.company-three .content dl dd {
  font-size: 14px;
}
.company-three .content dl dd a {
  color: #000;
}

.company-four {
  padding-bottom: 100px;
}
.company-four .content {
  position: relative;
}
.company-four .map {
  width: calc(100% - 50px);
  height: 550px;
}
.company-four .map-content {
  position: absolute;
  background-color: #f90000;
  color: #fff;
  padding: 50px;
  right: 0;
  bottom: 0;
  font-size: 14px;
}
.company-four .map-content .ttl {
  font-size: 26px;
  font-weight: bold;
}
.company-four .map-content .info p {
  margin-top: 30px;
}
.company-four .map-content .info p:first-child {
  margin-top: 0;
}

.online-one {
  padding: 20px 0 100px;
}
.online-one .article {
  text-align: center;
  font-size: 18px;
}

.online-two {
  padding: 100px 0;
  background: #F4F4F4;
}
.online-two .inner {
  max-width: 1460px;
  margin: 0 auto;
}
.online-two .content {
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
  position: relative;
  margin: 0 -10px;
}
.online-two .content .item {
  width: calc(25% - 20px);
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 40px;
  margin: 25px 10px;
  position: relative;
}
.online-two .content .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  transform-origin: center center;
  border-right: 2px solid #f90000;
  border-bottom: 2px solid #f90000;
  z-index: 5;
}
.online-two .content .item .img {
  width: 100%;
}
.online-two .content .item .img img {
  width: 100%;
}
.online-two .content .item .number {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #f90000;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
}
.online-two .content .item .ttl {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 0.5em;
  height: 3.4em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.online-two .content .item .article {
  font-size: 14px;
  margin-top: 1em;
}

.must {
  font-size: 14px;
  background-color: #f90000;
  display: inline-block;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  color: #fff;
  margin-left: 0.5em;
}

.space {
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  color: #fff;
  margin-left: 0.5em;
  width: calc(2em + 10px);
}

.online-three {
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}
.online-three::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 550px;
  top: 0;
  left: 0;
  background-color: #f90000;
  z-index: -1;
}
.online-three .head-ttl {
  color: #fff;
  text-align: center;
  margin-bottom: 1.5em;
}
.online-three .content {
  padding: 50px 100px;
  background-color: #fff;
  border-radius: 50px;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}
.online-three .content .form-step {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.online-three .content .form-step .number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 100%;
  font-size: 500;
  margin-right: 0.5em;
}
.online-three .content .add {
  position: absolute;
  left: 25px;
  top: 0px;
  color: #CECECE;
  padding-right: 65px;
  transform: rotate(-90deg) translateX(-100%) translateY(100%);
  transform-origin: left top;
  line-height: 1;
}
.online-three .content .add::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #CECECE;
}
.online-three .content .form-1 {
  margin-bottom: 50px;
}
.online-three .content .form-1 dl {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid #CECECE;
}
.online-three .content .form-1 dl:last-child {
  border-bottom: 1px solid #CECECE;
}
.online-three .content .form-1 dl dt {
  width: 250px;
  min-width: 250px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.online-three .content .form-1 dl dt .word {
  font-weight: bold;
}
.online-three .content .form-1 dl dd {
  width: 100%;
}
.online-three .content .form-1 dl dd .date {
  margin-bottom: 20px;
}
.online-three .content .form-1 dl dd .date .select select {
  padding-left: 40px;
}
.online-three .content .form-1 dl dd .date .select span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.online-three .content .form-1 dl dd .date .select span.wpcf7-form-control-wrap input {
  width: auto;
  padding: 10px 20px;
  background: #F4F4F4;
}
.online-three .content .form-1 dl dd > div {
  width: 100%;
  display: flex;
  align-items: center;
}
.online-three .content .form-1 dl dd > div span {
  white-space: nowrap;
  font-weight: bold;
  margin-right: 1em;
}
.online-three .content .form-1 dl dd > div .select {
  width: 100%;
  position: relative;
}
.online-three .content .form-1 dl dd > div .select .date-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
}
.online-three .content .form-1 dl dd > div .select select {
  width: 100%;
  padding: 10px 20px;
  background: #F4F4F4;
}
.online-three .content .form-2 dl {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #CECECE;
}
.online-three .content .form-2 dl dt {
  width: 200px;
  min-width: 200px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 0;
}
.online-three .content .form-2 dl dt .word {
  font-weight: bold;
}
.online-three .content .form-2 dl dd {
  width: 100%;
  padding-left: 40px;
}
.online-three .content .form-2 dl dd .input {
  width: 100%;
}
.online-three .content .form-2 dl dd .input input,
.online-three .content .form-2 dl dd .input textarea {
  width: 100%;
  padding: 10px 20px;
  background: #F4F4F4;
}
.online-three .content .form-2 dl dd .select {
  width: 100%;
  position: relative;
}
.online-three .content .form-2 dl dd .select select {
  width: 100%;
  padding: 10px 20px;
  background: #F4F4F4;
}
.online-three .content .form-confirm {
  text-align: center;
  padding: 40px 0;
}
.online-three .content .form-confirm .ttl {
  font-size: 20px;
  font-weight: bold;
}
.online-three .content .form-confirm .article {
  margin: 1em 0;
}
.online-three .content .form-radio {
  display: flex;
  justify-content: center;
  align-items: center;
}
.online-three .content .form-radio input {
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
}

.contact-one {
  padding: 20px 0 100px;
}
.contact-one .article {
  text-align: center;
  font-size: 18px;
}

.contact-two {
  padding: 100px 0 100px;
  position: relative;
  z-index: 1;
}
.contact-two::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 550px;
  top: 0;
  left: 0;
  background-color: #f90000;
  z-index: -1;
}
.contact-two .content {
  padding: 50px 100px;
  background-color: #fff;
  border-radius: 50px;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}
.contact-two .content .add {
  position: absolute;
  left: 25px;
  top: 0px;
  color: #CECECE;
  padding-right: 65px;
  transform: rotate(-90deg) translateX(-100%) translateY(100%);
  transform-origin: left top;
  line-height: 1;
}
.contact-two .content .add::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #CECECE;
}
.contact-two .content .form-2 dl {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #CECECE;
}
.contact-two .content .form-2 dl:first-child {
  border-top: none;
}
.contact-two .content .form-2 dl dt {
  width: 200px;
  min-width: 200px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 0;
}
.contact-two .content .form-2 dl dt .word {
  font-weight: bold;
}
.contact-two .content .form-2 dl dd {
  width: 100%;
  padding-left: 40px;
}
.contact-two .content .form-2 dl dd .input {
  width: 100%;
}
.contact-two .content .form-2 dl dd .input input,
.contact-two .content .form-2 dl dd .input textarea {
  width: 100%;
  padding: 10px 20px;
  background: #F4F4F4;
}
.contact-two .content .form-2 dl dd .select {
  width: 100%;
  position: relative;
}
.contact-two .content .form-2 dl dd .select select {
  width: 100%;
  padding: 10px 20px;
  background: #F4F4F4;
}
.contact-two .content .form-confirm {
  text-align: center;
  padding: 40px 0;
}
.contact-two .content .form-confirm .ttl {
  font-size: 20px;
  font-weight: bold;
}
.contact-two .content .form-confirm .article {
  margin: 1em 0;
}
.contact-two .content .form-radio {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-two .content .form-radio input {
  margin-right: 0.5em;
}

.news-one {
  padding: 20px 0 100px;
}
.news-one .article {
  text-align: center;
  font-size: 18px;
}

.news-two {
  padding: 100px 0 60px;
  position: relative;
  z-index: 1;
}
.news-two::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 550px;
  top: 0;
  left: 0;
  background-color: #f90000;
  z-index: -1;
}
.news-two .content {
  padding: 50px 100px;
  background-color: #fff;
  border-radius: 50px;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}
.news-two .content .chose {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 0 20px;
}
.news-two .content .chose a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #000;
  font-size: 14px;
  margin-right: 1.5em;
}
.news-two .content .chose a .square {
  width: 0.8em;
  height: 0.8em;
  border: 1px solid #000;
  display: block;
  margin-right: 0.5em;
}
.news-two .content .chose a span {
  display: block;
}
.news-two .content .add {
  position: absolute;
  left: 25px;
  top: 0px;
  color: #CECECE;
  padding-right: 65px;
  transform: rotate(-90deg) translateX(-100%) translateY(100%);
  transform-origin: left top;
  line-height: 1;
}
.news-two .content .add::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #CECECE;
}
.news-two .content .news-line {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #CECECE;
  font-size: 14px;
  color: #000;
  transition: 0.3s;
}
.news-two .content .news-line:hover {
  background: #FAFAFA;
  transition: 0.3s;
}
.news-two .content .news-line:hover .ttl {
  text-decoration: underline;
}
.news-two .content .news-line .tag {
  border: 1px solid #CECECE;
  font-size: 12px;
  width: 100px;
  text-align: center;
  margin: 0 2em;
}
.news-two .content .news-line .ttl {
  transition: 0.3s;
}

.news-single-one {
  padding-bottom: 100px;
}
.news-single-one .content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #DDDBDB;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 20px;
}
.news-single-one .content .box {
  width: 100%;
  max-width: 760px;
  padding: 50px 0 80px;
  margin: 0 auto;
}
.news-single-one .content .box .top {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.news-single-one .content .box .top span {
  display: block;
  margin: 0.5em;
}
.news-single-one .content .box .top .jp {
  font-weight: bold;
  color: #0B74D1;
}
.news-single-one .content .box .single-ttl {
  padding: 0.5em 0 1em;
  font-size: 36px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  line-height: 1.4;
}
.news-single-one .content .box .article {
  padding-top: 2em;
}
.news-single-one .content .box .article p {
  margin-top: 1em;
}
.news-single-one .content .box .btn {
  margin-top: 40px;
}

.blog-one {
  padding-bottom: 60px;
}
.blog-one .main-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.blog-one .main-section .tag {
  display: inline-block;
  border: 1px solid #8F95AD;
  color: #8F95AD;
  line-height: 1;
  padding: 0.5em 0.8em;
  font-size: 12px;
  border-radius: 2em;
  margin: 0px 5px 5px 0;
}
.blog-one .main-section .mian-single-left {
  width: calc(100% - 320px - 50px);
}
.blog-one .main-section .mian-single-left .single-ttl {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.blog-one .main-section .mian-single-left .links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.blog-one .main-section .mian-single-left .links .link {
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #425A92;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 5px;
}
.blog-one .main-section .mian-single-left .links .link.twitter {
  background-color: #4AAAE8;
}
.blog-one .main-section .mian-single-left .links .link.book {
  background-color: #00A4DE;
}
.blog-one .main-section .mian-single-left .links .link .svg {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
}
.blog-one .main-section .mian-single-left .links .link .svg svg {
  width: 1.2em;
  height: 1.2em;
}
.blog-one .main-section .mian-single-left .single-time {
  display: flex;
  align-items: center;
}
.blog-one .main-section .mian-single-left .single-time .time {
  font-size: 14px;
  font-weight: 500;
  margin-right: 0.5em;
}
.blog-one .main-section .mian-single-left .single-one {
  padding-top: 20px;
}
.blog-one .main-section .mian-single-left .single-one h3.ttl {
  font-weight: bold;
  font-size: 24px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #FAFAFA;
  margin-bottom: 1em;
}
.blog-one .main-section .mian-single-left .single-one .article {
  margin-top: 1em;
}
.blog-one .main-section .mian-single-left .single-box {
  width: 100%;
  background-color: #FAFAFA;
  padding: 20px 20px;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.blog-one .main-section .mian-single-left .single-box ul {
  margin-top: 1em;
}
.blog-one .main-section .mian-single-left .single-box ul li {
  cursor: pointer;
  display: block;
}
.blog-one .main-section .mian-single-left .single-box ul li:hover span {
  text-decoration: underline;
}
.blog-one .main-section .mian-single-left .single-box ul li p {
  padding-left: 1em;
}
.blog-one .main-section .mian-single-left .single-box .box-ttl {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.blog-one .main-section .mian-single-left .single-box .box-ttl .num {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #f90000;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 13px;
  margin-right: 0.5em;
}
.blog-one .main-section .mian-single-left .single-two {
  padding-bottom: 40px;
}
.blog-one .main-section .mian-single-left .single-two .ttl {
  font-weight: bold;
  font-size: 24px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #FAFAFA;
  margin-bottom: 1em;
}
.blog-one .main-section .mian-single-left .single-two .article p {
  margin-top: 1em;
}
.blog-one .main-section .mian-single-left .single-two .article .article-ttl {
  display: block;
  margin-top: 1em;
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
  border-bottom: 1px solid #707070;
  line-height: 1.6;
  padding-bottom: 0.4em;
}
.blog-one .main-section .mian-single-left .btn {
  margin: 40px auto 80px;
}
.blog-one .main-section .mian-single-left .single-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-one .main-section .mian-single-left .single-bottom .bottom-ttl {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.blog-one .main-section .mian-single-left .single-bottom .item {
  width: calc(50% - 12px);
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.blog-one .main-section .mian-single-left .single-bottom .item img {
  width: 100%;
}
.blog-one .main-section .mian-single-left .single-bottom .item:first-child {
  width: 100%;
}
.blog-one .main-section .mian-single-left .single-bottom .item:first-child .ttl {
  font-size: 24px;
}
.blog-one .main-section .mian-single-left .single-bottom .item .ttl {
  padding: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
}
.blog-one .main-section .mian-single-left .single-bottom .item .bottom {
  padding: 0 20px 20px;
}
.blog-one .main-section .mian-left {
  width: calc(100% - 320px - 50px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-one .main-section .mian-left .item {
  width: calc(50% - 12px);
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.blog-one .main-section .mian-left .item .top {
  display: block;
}
.blog-one .main-section .mian-left .item img {
  width: 100%;
}
.blog-one .main-section .mian-left .item:first-child {
  width: 100%;
}
.blog-one .main-section .mian-left .item:first-child .ttl {
  font-size: 24px;
}
.blog-one .main-section .mian-left .item .ttl {
  padding: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
}
.blog-one .main-section .mian-left .item .bottom {
  padding: 0 20px 20px;
}
.blog-one .main-section .mian-left .time {
  font-size: 14px;
  color: #8F95AD;
  font-weight: bold;
  margin-top: 0.5em;
}
.blog-one .main-section .mian-right {
  width: 320px;
  min-width: 320px;
}
.blog-one .main-section .mian-right .ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.blog-one .main-section .mian-right .is-search {
  width: 100%;
  background-color: #fff;
  border: 1px solid #707070;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 19px;
  margin-bottom: 20px;
}
.blog-one .main-section .mian-right .is-search .icon {
  width: 1.2em;
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.3em;
}
.blog-one .main-section .mian-right .is-search input {
  width: 100%;
}
.blog-one .main-section .mian-right .tags {
  width: 100%;
}
.blog-one .main-section .mian-right .tags a {
  display: block;
  color: #000;
}
.blog-one .main-section .mian-right .popularity {
  width: 100%;
  padding-top: 40px;
}
.blog-one .main-section .mian-right .popularity .item {
  display: flex;
  font-size: 12px;
  color: #000;
  padding: 10px 0;
  border-bottom: 1px solid #CECECE;
}
.blog-one .main-section .mian-right .popularity .item .photo {
  width: 64px;
  min-width: 64px;
  height: 64px;
  margin-right: 20px;
  margin-top: 20;
}

.privacy-one {
  padding-bottom: 100px;
}
.privacy-one .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-one .content h3 {
  margin: 1.5em 0 0em;
}
.privacy-one .content ul {
  font-size: 14px;
}
.privacy-one .content ul p {
  margin-top: 0.5em;
}

.sitemap-one {
  padding: 100px 0 60px;
  background-color: #F7F7F7;
}
.sitemap-one .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.sitemap-one .content .nav ul {
  display: flex;
  flex-wrap: wrap;
}
.sitemap-one .content .nav ul li a {
  color: #000;
  margin-right: 40px;
  display: block;
  margin-bottom: 40px;
}
.sitemap-one .content .nav ul li a .en {
  font-size: 24px;
  font-weight: bold;
}

.thanks-one {
  padding: 60px 0 100px;
  text-align: center;
}
.thanks-one .ttl {
  font-size: 30px;
  font-weight: bold;
  color: #f90000;
  margin-bottom: 1.4em;
  line-height: 1.4;
}
.thanks-one .article {
  font-size: 18px;
  margin-bottom: 60px;
}

body.issp .index-three .content .btn {
  width: calc(100% - 40px);
  margin: 0 auto;
}
body.issp .index-three .content .item {
  padding: 0 0px;
}
body.issp .index-three .content .item {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
}
body.issp .index-five .content .item {
  padding: 0 0;
}
body.issp .index-five .content .item {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
}
body.issp .index-three .content .item .box,
body.issp .index-five .content .item .box {
  width: 100%;
}
body.issp .index-three .content::after {
  display: none;
}
body.issp .index-three .title .button {
  display: none;
}
body.issp .index-three {
  padding: 60px 0;
}
body.issp .index-three .content .item a {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
body.issp .index-three .content .item a {
  width: 100%;
}
body.issp .index-three .content .btn {
  padding-top: 30px;
}

.category-press .news-two .content .chose a.press .square {
  background: #f90000;
}

.category-news .news-two .content .chose a.news .square {
  background: #f90000;
}

.category-events .news-two .content .chose a.events .square {
  background: #f90000;
}

.breadcrumbs .current_page {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero .picture .headline a .article,
.index-six .content .item a .ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-one.assearch {
  padding-top: 60px;
}
.blog-one.assearch .sub-title {
  width: 100%;
}

.search-content {
  width: 100%;
}
.search-content .content {
  width: 100%;
  padding-top: 40px;
}
.search-content .content a {
  color: #000;
  line-height: 1.4;
}
.search-content .content hr {
  margin: 0.5em 0;
}

@media (max-width: 1400px) {
  .about-three .content .item .item-box .bottom {
    padding: 20px 20px 40px;
  }
}
@media (max-width: 1300px) {
  .online-two .inner {
    padding-left: 20px;
  }
  .online-two .inner {
    padding-right: 20px;
  }
}
@media (max-width: 1250px) {
  .header {
    padding: 30px 10px 0px 50px;
  }
  .header .wrap .right .heaer-nav ul li a {
    padding: 0 0.5em;
  }
}
@media (max-width: 1250px) {
  .about-one .content .add {
    display: none;
  }
  .about-three .content .item .item-box .img-ttl {
    font-size: 18px;
    margin-bottom: 0.5em;
    line-height: 1.4;
  }
}
@media (max-width: 1200px) {
  .index-one .wrapper .bg-left,
  .index-one .wrapper .bg-right {
    display: none;
  }
  .case-two .content .item a .item-ttl {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 1150px) {
  .online-two .content .item .ttl {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .index-three .content,
  .index-five .content {
    padding: 0 20px;
  }
  .service-two .content .item {
    width: calc(50% - 0px);
  }
  .about-three .content {
    padding: 0 10px;
  }
  .company-one .content .right .card {
    padding: 50px 20px;
  }
  .company-one .content .right {
    width: calc(50% - 30px);
  }
  .hero .content .jp {
    font-size: 36px;
  }
  .hero .content .en {
    font-size: 14px;
  }
  .head-ttl {
    font-size: 30px;
  }
  .index-two .title {
    min-width: 240px;
    max-width: 240px;
  }
  .footer .top {
    font-size: 22px;
  }
  .page-head .content h1 .en {
    font-size: 40px;
  }
  .about-one .content .title h3 {
    font-size: 32px;
  }
}
@media (max-width: 1100px) {
  .case-two .content .item {
    width: calc(33.33% - 20px);
  }
  .header .wrap .right .heaer-nav ul {
    display: none;
  }
  .page-ttl {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  body {
    padding-right: 56px;
  }
  .footer .copyright {
    margin-left: -20px;
    width: calc(100% + 70px);
  }
  .side-right {
    width: 56px;
  }
  .toggle-btn {
    right: 0;
  }
  .online-two .content .item {
    width: calc(33.33333% - 20px);
  }
  .online-two .content::after {
    left: 33.33333%;
    transform: translateY(-50%) translateX(-30px) rotate(-45deg);
  }
  .online-two .content::before {
    right: 33.33333%;
    transform: translateY(-50%) translateX(10px) rotate(-45deg);
    z-index: 2;
  }
  .online-two .content .item .ttl {
    height: 3.6em;
  }
  .case-two .add {
    display: none;
  }
  .news-two .content .add,
  .contact-two .content .add,
  .online-three .content .add {
    display: none;
  }
  .online-three .content {
    padding: 50px 20px;
  }
  .contact-two .content {
    padding: 50px 20px;
  }
  .hero {
    padding: 0 0px 0 20px;
  }
  .header {
    padding: 30px 10px 0px 20px;
  }
  .wrapper {
    padding: 0 50px 0 20px;
  }
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .case-two .inner {
    padding-left: 20px;
    padding-right: 0px;
  }
}
@media (max-width: 900px) {
  .hero .content.do .jp p {
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
    text-shadow: 2px 2px 2px #ffffff;
  }
  .hero .content.do .jp span {
    display: inline-block;
  }
  .hero .content.do .jp .color-red {
    padding-top: 5px;
    margin-left: -20px;
  }
  body {
    padding-right: 0;
  }
  .toggle-btn {
    right: 22px;
  }
  .side-right {
    position: absolute;
    width: auto;
    height: 100px;
    right: 20px;
    padding: 0;
    top: 50vh;
    background: transparent;
  }
  .index-three .slick-next {
    right: 0;
  }
  .index-five .slick-next {
    right: 0;
  }
  .news-two .content {
    padding: 50px 20px;
  }
  .inner {
    padding: 0 20px;
  }
  .case-two .inner {
    padding: 0 0px 0 20px;
  }
  .page-head {
    width: 100%;
  }
  .breadcrumbs .box {
    width: calc(100% - 100px);
    margin-left: 100px;
    margin-right: 0;
  }
  .breadcrumbs .box {
    padding-right: 20px;
  }
  .index-six .content {
    padding: 40px 50px 80px 20px;
  }
  .hero {
    padding: 0 0 0 20px;
    z-index: 1;
  }
  .wrapper {
    padding: 0 20px 0 20px;
  }
  .index-two .content .right {
    padding-right: 0;
  }
  .index-two .content .right .img {
    width: 100%;
  }
  .header {
    width: 100%;
    padding: 20px 10px 0;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header .wrap {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 35px;
  }
  .side-right .copy {
    display: none;
  }
  .hero .picture {
    position: absolute;
    width: calc(100% - 100px);
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .hero .content .jp p span {
    display: inline-block;
    background-color: #FAFAFA;
    padding: 5px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .hero .content .en {
    color: #fff;
    text-shadow: 1px 1px 2px black;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .news-two .content .news-line {
    flex-wrap: wrap;
  }
  .company-one .content .left {
    width: 100%;
  }
  .news-two .content .news-line .ttl {
    width: 100%;
  }
  .service-two .content {
    display: block;
  }
  .service-two .content .photo {
    position: static;
    width: 100%;
  }
  .service-two .content .photo.bg-photo > img {
    display: block;
    opacity: 0;
  }
  .service-two .content .item {
    width: 100%;
  }
  .blog-one .main-section .mian-right {
    width: 250px;
    min-width: 250px;
  }
  .blog-one .main-section .mian-single-left .single-time {
    flex-wrap: wrap;
  }
  .blog-one .main-section .mian-single-left,
  .blog-one .main-section .mian-left {
    width: calc(100% - 250px - 20px);
  }
  .blog-one .main-section .mian-left .item:first-child .ttl {
    font-size: 20px;
  }
  .case-single-one .content .single-ttl {
    font-size: 22px;
  }
  .index-two .content {
    display: block;
  }
  .index-two .content .right {
    margin-top: 20px;
  }
  .about-two .content .wrap {
    /*width: calc(80%);*/
    min-width: 0;
    padding: 40px 20px 40px;
  }
  .company-one .content {
    flex-direction: column;
    padding: 60px 0;
  }
  .company-one .content .right {
    padding-top: 160px;
  }
  .company-one .content .left {
    order: 3;
  }
  .company-one .content .right {
    width: 100%;
    order: 2;
  }
  .company-one .content .right .card {
    width: 60%;
  }
  .company-one .content .right .bg {
    width: 60%;
    height: calc(100% - 100px);
    left: auto;
    right: 0;
    top: 140px;
  }
  .company-one .content .main-ttl {
    order: 1;
  }
  .online-three .content .form-1 dl {
    display: block;
  }
  .online-three .content .form-1 dl dt {
    width: 100%;
    min-width: 0px;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  .online-two .content .item .ttl {
    font-size: 16px;
  }
  .blog-one .main-section .mian-left {
    width: 100%;
  }
  .blog-one .main-section .mian-right {
    width: 100%;
    min-width: 0;
    max-width: 400px;
  }
  .blog-one.blogsingle .main-section .mian-right {
    display: none;
  }
  .blog-one .main-section {
    display: block;
  }
  .blog-one .main-section .mian-single-left {
    width: 100%;
  }
  .case-two .content .item {
    width: calc(50% - 20px);
  }
  .footer .top {
    padding: 60px 0;
  }
  .footer .bottom {
    display: block;
  }
  .footer .bottom .left {
    width: 100%;
    min-width: 0;
    text-align: center;
    margin-bottom: 1.5em;
  }
  .footer .bottom .left .logo {
    margin: 0 auto 1em;
  }
  .index-two::after {
    width: calc(100% - 100px);
  }
  .index-two .content .right .img {
    width: calc(100% - 30px + 100px);
    transform: translateX(50px);
  }
  .index-two .content .right {
    padding-right: 100px;
  }
  .index-four .bg {
    height: 100%;
  }
  .index-four .content {
    display: block;
  }
  .index-four .content .item a {
    box-shadow: none;
    width: 100%;
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #CECECE;
  }
  .index-four .content .item a .img {
    max-width: 40%;
    border: none;
  }
  .footer-top .content {
    display: block;
  }
  .footer-top .content .item {
    width: 100%;
  }
  .index-four .content .bottom {
    border: none;
  }
  .index-four .content .item a,
  .index-four .content .item {
    background-color: transparent;
  }
  .index-six .content {
    padding: 40px 20px 80px 20px;
  }
}
br.spshow {
  display: none;
}

@media (max-width: 600px) {
  .online-two .content::before,
  .online-two .content::after {
    display: none;
  }
  .online-two .content {
    flex-wrap: wrap;
  }
  .online-two .content .item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
  }
  .online-two .content .item:not(:last-child) {
    margin-bottom: 120px;
  }
  .online-two .content .item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(100% + 40px);
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
    transform-origin: center center;
  }
  .online-two {
    padding: 60px 0;
  }
}
.case-two .chose .add-select {
  display: none;
}

@media (max-width: 550px) {
  .case-two .chose {
    position: relative;
    width: calc(100% - 20px);
    padding: 0.8em 1.5em;
    background: #fff;
    border-radius: 1.5em;
    cursor: pointer;
  }
  .case-two .chose::after {
    content: "";
    position: absolute;
    top: 0.9em;
    right: 1.5em;
    width: 1em;
    height: 1em;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
  }
  .case-two .chose .add-select {
    display: block;
  }
  .case-two .chose.on {
    border-radius: 1.5em 1.5em 0.5em 0.5em;
  }
  .case-two .chose.on a {
    display: flex;
  }
  .case-two .chose a {
    display: none;
    padding-left: 1em;
  }
  .case-two .chose a:first-child {
    display: block;
  }
  .blog-one .main-section .tag,
  .index-five .content .item .box .tag {
    font-size: 12px;
  }
  .index-six .content .item a,
  .news-two .content .news-line {
    padding: 1.5em 0;
  }
  .index-three .title,
  .index-five .title,
  .index-six .title {
    padding-right: 0;
  }
  .case-one .article p br {
    display: none;
  }
  .news-two {
    padding: 60px 0 0px;
  }
  .page-head .content h1 .en {
    font-size: 30px;
  }
  .page-head .content h1 .jp {
    font-size: 16px;
  }
  .online-three .content .form-confirm .ttl,
  .contact-two .content .form-confirm .ttl {
    font-size: 18px;
    line-height: 1.6;
  }
  .online-three .content .form-confirm .article,
  .contact-two .content .form-confirm .article {
    text-align: left;
  }
  .online-three {
    padding: 60px 0 40px;
  }
  .thanks-one .article {
    margin-bottom: 40px;
  }
  .toggle-btn {
    top: 26px;
  }
  .thanks-one {
    padding: 20px 0 60px;
  }
  .thanks-one .article {
    font-size: 16px;
  }
  .thanks-one .ttl {
    font-size: 24px;
  }
  .index-four {
    padding-bottom: 80px;
  }
  .index-four .content .item a .img {
    height: 120px;
  }
  .index-three {
    padding-bottom: 80px;
  }
  .index-three .content::after {
    display: none;
  }
  .online-three .content .form-step {
    font-size: 18px;
  }
  .online-three .content .form-2 dl dt {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 1em;
  }
  .online-three .content .form-2 dl {
    display: block;
  }
  .online-three .content .form-2 dl dd {
    padding-left: 0;
  }
  .online-one .article {
    font-size: 14px;
  }
  .online-one {
    padding-bottom: 60px;
  }
  .contact-one .article {
    font-size: 14px;
  }
  .contact-one {
    padding: 20px 0 60px;
  }
  .contact-two .content .form-2 dl {
    display: block;
  }
  .contact-two .content .form-2 dl dd {
    padding-left: 0;
  }
  .contact-two .content .form-2 dl dt {
    justify-content: flex-start;
  }
  .contact-two {
    padding: 60px 0 20px;
  }
  .news-one {
    padding: 20px 0 60px;
  }
  .news-single-one .content .box .single-ttl {
    font-size: 20px;
  }
  .news-single-one .content .box .article {
    padding-top: 1em;
  }
  .service-one {
    padding-bottom: 60px;
  }
  .service-two .content {
    margin-bottom: 40px;
  }
  .service-two .content .item .point-ttl {
    font-size: 18px;
  }
  .service-two .content .item {
    padding: 20px 0 20px;
  }
  .service-one .article {
    font-size: 14px;
  }
  .blog-one .main-section .mian-left .item:first-child .ttl {
    font-size: 16px;
  }
  .blog-one .main-section .mian-single-left .single-two .ttl {
    font-size: 18px;
  }
  .blog-one .main-section .mian-single-left .single-two .article .article-ttl {
    font-size: 16px;
  }
  .blog-one .main-section .mian-single-left .single-bottom .item .ttl {
    padding: 10px;
  }
  .blog-one .main-section .mian-single-left .single-bottom .item .bottom {
    padding: 0 10px 20px;
  }
  .blog-one .main-section .mian-single-left .single-ttl {
    font-size: 20px;
  }
  .case-two .content .item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .case-two .content .item .img {
    width: 100%;
  }
  .case-two .content .item .img img {
    width: 100%;
  }
  .case-two .chose {
    width: 100%;
  }
  .case-two .inner {
    padding: 0 20px 0 20px;
  }
  .case-two .chose a {
    width: 100%;
  }
  .case-one .article {
    font-size: 14px;
    font-weight: normal;
  }
  .page-ttl {
    font-size: 20px;
  }
  .case-single-one .content .three {
    display: block;
    padding: 20px 20px 40px;
  }
  .case-single-one .content .three .left {
    margin: 0 auto 20px;
  }
  .case-single-one .content .single-ttl {
    font-size: 16px;
  }
  .case-single-one .content .box {
    padding: 0;
  }
  .case-single-one .content .img-ttl {
    font-size: 18px;
  }
  .case-single-one .content .article-ttl {
    font-size: 16px;
  }
  .case-single-one .content .top-img p {
    text-align: left;
    padding: 0;
  }
  .case-single-one .content {
    box-shadow: none;
  }
  .page-head .content {
    height: 350px;
  }
  .company-two,
  .company-three {
    padding: 60px 0;
  }
  .company-two .content dl,
  .company-three .content dl {
    display: block;
  }
  .company-four .map-content {
    position: static;
  }
  .company-four .map-content {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 20px;
    transform: translateY(0px);
  }
  .company-four {
    padding-bottom: 60px;
  }
  .company-four .map-content .ttl {
    font-size: 20px;
    margin-bottom: 1em;
  }
  .company-four .map-content .info p {
    margin-top: 15px;
  }
  .company-four .map-content .info p:first-child {
    margin-top: 0;
  }
  .company-four .map-content {
    padding: 40px 20px;
  }
  .company-four .map {
    width: 100%;
    height: 335px;
    z-index: 0;
  }
  .company-one .content .right .bg {
    position: static;
    width: 100%;
    height: auto;
    transform: translateY(20px);
    max-height: 380px;
  }
  .company-one .content .right .bg.bg-photo > img {
    display: block;
    opacity: 0;
  }
  .company-one .content .left {
    width: 100%;
    margin-top: -20px;
  }
  .company-one .content .right .card {
    width: calc(100% + 40px);
    transform: translateX(-20px) translateY(-20px);
  }
  .company-one .content .right {
    padding-top: 0px;
    display: block;
  }
  .hero {
    display: flex;
    align-items: center;
  }
  .header .wrap .brand {
    width: 80px;
    min-width: 80px;
  }
  .side-right {
    height: auto;
  }
  .toggle-btn .en {
    transform: scale(0.9);
    transform-origin: top left;
  }
  .toggle-btn label {
    padding-bottom: 8px;
  }
  .hero .content .jp {
    font-size: 30px;
  }
  .hero .picture .photo {
    border-radius: 0 0 0 90px;
  }
  .hero .picture .headline {
    width: calc(100% - 40px);
    transform: translateX(0%);
    left: 20px;
    height: auto;
    bottom: 80px;
    padding: 1em 2em;
    border-radius: 2.5em;
  }
  .hero .picture .headline a {
    display: block;
    height: auto;
  }
  .hero .picture .headline a .icon-right {
    display: none;
  }
  .head-ttl {
    font-size: 24px;
  }
  .index-one .article {
    max-width: 300px;
    margin: 40px auto 0;
  }
  .btn a {
    width: 100%;
    max-width: 320px;
  }
  .btn input {
    width: 100%;
    max-width: 320px;
  }
  .index-two::after {
    width: calc(100% - 50px);
  }
  .index-one {
    padding-bottom: 60px;
  }
  .index-two {
    padding: 60px 0;
  }
  .main-ttl .top .en {
    font-size: 24px;
  }
  .index-two .content .article-ttl {
    font-size: 18px;
  }
  body {
    font-size: 14px;
  }
  .index-one .article {
    font-size: 16px;
  }
  .index-two .btn a {
    margin: 30px auto 0;
  }
  .index-two .content .right {
    padding-right: 0;
  }
  .index-two .content .article-ttl,
  .index-two .content .article {
    padding-right: 60px;
  }
  .index-four .title .text {
    font-size: 14px;
  }
  .index-four .main-ttl .top .jp {
    display: none;
  }
  .index-four .content .bottom {
    padding-right: 0;
  }
  .index-six .title .button {
    display: none;
  }
  .index-six .content .item a {
    flex-wrap: wrap;
  }
  .index-six .content .item a .ttl {
    width: 100%;
    margin-top: 0.5em;
  }
  .index-six .content {
    padding: 10px 20px 60px 20px;
  }
  .index-six .content .btn {
    margin-top: 40px;
  }
  .footer-top .content .item {
    padding-top: 30px;
  }
  .footer-top .content .item .btn a {
    max-width: 300px;
  }
  .footer .top {
    font-size: 18px;
  }
  br.spshow {
    display: block;
  }
  /*.footer {
          background-color: #000000;
          background-image: none !important;
      }*/
  .footer .top {
    padding: 40px 0;
  }
  .footer .bottom .left .logo {
    width: 120px;
    margin-bottom: 1.5em;
  }
  .footer .bottom .left {
    margin-bottom: 2.5em;
  }
  .footer .bottom .right .menu-footer-nav-container ul li {
    width: 33.33%;
  }
  .footer .bottom .right .menu-footer-nav-container ul a {
    margin-right: 0;
  }
  .ghost-nav ul {
    width: auto;
  }
  .about-one .content .title h3 {
    font-size: 24px;
  }
  .about-one {
    padding: 60px 0;
  }
  .about-one .content {
    padding: 60px 20px;
  }
  .about-two .head .word {
    max-width: 320px;
    margin: 0 auto;
  }
  .about-two .content {
    padding: 0;
  }
  .about-two .content .bg {
    position: static;
    width: calc(100% + 40px);
    transform: translateX(-20px);
  }
  .about-two .content .bg.bg-photo > img {
    display: block;
    opacity: 0;
  }
  .about-two .content .wrap {
    width: 100%;
    transform: translateY(-40px);
  }
  .about-two .content .wrap .article {
    font-size: 14px;
  }
  .about-two {
    padding-bottom: 40px;
  }
  .about-three .inner .word {
    font-size: 14px;
  }
  .about-three .content .item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .about-three .content .item .item-box {
    width: 100%;
  }
  .about-three {
    padding: 60px 0;
  }
  .sitemap-one .content .nav ul li a .en {
    font-size: 20px;
  }
  .sitemap-one .content .nav ul li a .jp {
    font-size: 12px;
  }
  .sitemap-one .content .nav ul li a {
    margin-bottom: 20px;
  }
  .sitemap-one {
    padding: 60px 0 60px;
  }
}
@media (max-width: 500px) {
  .news-two .content .chose {
    padding: 0;
  }
  .news-two .content .chose a {
    width: 100%;
  }
  .index-three .btn.showsp,
  .index-four .btn.showsp,
  .index-five .btn.showsp {
    width: calc(100% - 40px);
    margin-left: 20px;
  }
  .index-five .btn {
    width: calc(100% - 40px);
    margin-left: 20px;
  }
  .blog-one .main-section .mian-left .item:first-child .ttl {
    font-size: 14px;
  }
  .blog-one .main-section .mian-left .item {
    width: 100%;
  }
  .hero .picture .headline {
    width: calc(100vw - 40px);
    left: auto;
    /*right: 20px;*/
  }
  .hero .picture {
    width: calc(100% - 50px);
  }
  .ghost-nav a .en {
    font-size: 24px;
  }
  .case-two .chose a {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .blog-one .main-section .mian-single-left .single-bottom .item {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .footer .bottom .right .menu-footer-nav-container ul li {
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .footer .bottom .right .menu-footer-nav-container ul a {
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.8em;
  }
  .sitemap-one .content .menu-footer-nav-container ul li {
    width: 50%;
  }
  .sitemap-one .content .menu-footer-nav-container ul li a {
    margin-right: 0;
  }
}
@media (max-width: 400px) {
  .about-one .content .title h3 {
    font-size: 20px;
  }
  .sitemap-one .content .nav ul li {
    width: 100%;
  }
  .hero .content .jp {
    font-size: 24px;
  }
  .hero .content .en {
    margin-top: 1em;
  }
  .case-two .content .item a {
    display: block;
  }
  .case-two .content .item .img {
    width: 100%;
  }
  .case-two .content .item .img img {
    width: 100%;
  }
  .case-two .content .item a .bottom {
    padding: 10px 10px 20px;
    width: 100%;
  }
  .breadcrumbs .box {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
  .head-ttl {
    font-size: 20px;
  }
  .about-two .head .word {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .ghost-nav a {
    padding: 0.5em 0.5em;
  }
  .hero .picture .headline {
    bottom: 60px;
  }
  .about-three .title {
    padding-right: 0px;
  }
  .about-three .title {
    justify-content: center;
  }
  .main-ttl .next-jp {
    text-align: center;
  }
  .index-two .content .article-ttl,
  .index-two .content .article {
    padding-right: 0;
  }
  .index-two .content .right .img {
    width: 100%;
    transform: translateX(0px);
  }
  .index-two .title {
    width: 100%;
    max-width: 100%;
  }
  .index-two::after {
    width: calc(100% - 0px);
  }
  .index-three .title,
  .index-five .title,
  .index-six .title {
    justify-content: center;
  }
}
.slick-track {
  display: flex;
  padding-bottom: 10px;
}
.slick-track .slick-slide {
  height: auto;
}
.slick-track .slick-slide img {
  width: 100%;
}
.slick-track .slick-slide > div {
  height: 100%;
}

.index-three .content .item {
  height: 100%;
}

.index-three .content .item a {
  height: 100%;
}

#toc_container {
  display: block !important;
  width: 100%;
  margin: 20px 0;
  background: #FAFAFA;
  padding: 20px;
}
#toc_container .toc_title {
  font-weight: bold;
}
#toc_container ul a {
  color: #333333;
  transition: 0.3s;
}
#toc_container ul a:hover {
  text-decoration: underline;
  transition: 0.3s;
}
#toc_container ul li ul {
  padding-left: 1em;
}/*# sourceMappingURL=style.css.map */