@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Oswald", "Roboto", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.header {
  height: 75px;
  width: 100%;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 1000;
    top: 0;
  }
}

.header__inner {
  display: flex;
  align-items: start;
  height: inherit;
}

.header__name {
  margin-right: auto;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 114px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 70px;
}
@media screen and (max-width: 1024px) {
  .header__item:not(:first-child) {
    margin-left: 40px;
  }
}

.header__link {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #000;
}

.header__link.header__link--contact {
  background-color: #011950;
  color: #fff;
  padding: 0 41px 0 42px;
}
.header__link.header__link--contact::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 200;
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .header__link.header__link--contact {
    padding: 0 13px;
  }
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
}

.hamburger.is-active {
  top: 32px;
  right: 20px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger.is-active span {
  background-color: #fff;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #001135;
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: inherit;
  padding-top: 80px;
  padding-left: 50px;
}

.drawer-menu__items {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.drawer-menu__item {
  display: inline-block;
  width: 100%;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu__link {
  font-size: 14px;
  font-weight: 300;
  font-family: "Roboto";
  display: inline-block;
  color: #fff;
  width: 100%;
}

.drawer-menu__sns {
  display: flex;
  margin-top: 50px;
}

.drawer-menu__sns__item:not(:first-child) {
  margin-left: 20px;
}

.drawer-icon {
  color: #fff;
  font-size: 22px;
}

.js-drawer {
  -webkit-animation-name: gnaviAnime;
          animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #001135;
  transform: scale(0);
  right: -50px;
  bottom: -50px;
  transition: all 0.6s;
}

.circle-bg.is-active {
  transform: scale(50);
}

.mv-inner {
  display: flex;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .mv-inner {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.mv__title {
  font-size: 60px;
  font-weight: 700;
  writing-mode: vertical-rl;
  margin-top: 135px;
  font-family: "Noto-sans JP";
}
@media screen and (max-width: 768px) {
  .mv__title {
    writing-mode: initial;
    font-size: 34px;
    margin-top: 29px;
  }
}

.swiper-wrapper {
  height: 67vw;
}
@media screen and (max-width: 768px) {
  .swiper-wrapper {
    height: 54vh;
  }
}

.swiper-slide img {
  height: auto;
  max-width: 1030px;
  width: 100%;
}

.slogan {
  width: 100%;
  margin-top: 56px;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .slogan {
    margin-top: 17px;
  }
}

.slogan__text {
  display: inline-block;
  margin-right: 100px;
  color: #252d2b;
  font-weight: 700;
  font-size: 150px;
}
@media screen and (max-width: 768px) {
  .slogan__text {
    margin-right: 50px;
    font-size: 84px;
  }
}

.text-flow {
  animation: textFlowing 10s linear infinite;
}

@keyframes textFlowing {
  0% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(-100%);
  }
}

.topabout {
  margin-top: 59px;
}

.topabout__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topabout__items {
    flex-direction: column;
  }
}

.topabout__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .topabout__item {
    width: 100%;
  }
}

.topabout__body {
  width: 44.6%;
}
@media screen and (max-width: 768px) {
  .topabout__body {
    width: 100%;
    margin-top: 30px;
  }
}

.topabout__text {
  margin-top: 31px;
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .topabout__text {
    margin-top: 27px;
    font-size: 14px;
  }
}

.topabout__title.section__title--main {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .topabout__title.section__title--main {
    font-size: 16px;
  }
}

.topabout__button {
  margin-top: 46px;
}

.topservice {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .topservice {
    margin-top: 79px;
  }
}

.topservice__title.section__title--main {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .topservice__title.section__title--main {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.topservice__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 49px;
}
@media screen and (max-width: 768px) {
  .topservice__cards {
    padding: 0px;
  }
}

.topservice__body {
  position: relative;
}

.topservice__body__text {
  position: absolute;
  top: 40%;
  left: 8%;
  color: #fff;
}

.topservice__text {
  font-size: 16px;
  margin-top: 30px;
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topservice__text {
    margin-top: 14px;
  }
}

.topservice__button {
  border: 1px solid #001E63;
  border-radius: 5px;
  padding: 10px 20px 10px 24px;
  width: 140px;
  margin-left: auto;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .topservice__button {
    margin-top: 26px;
  }
}

.topservice__button .read-button {
  justify-content: flex-start;
  margin: 0;
}

.topworks {
  background-color: #F8F8F8;
  margin-top: 84px;
  padding-top: 126px;
}
@media screen and (max-width: 768px) {
  .topworks {
    margin-top: 60px;
  }
}

.topworks__cards {
  background-color: #fff;
  padding: 0 25px 59px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .topworks__cards {
    margin: 20px 0 80px;
    padding: 0 40px;
  }
}

.topworks__card {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .topworks__card {
    padding: 30px 0 31px;
  }
}

.topworks__card__title .Item-Text {
	display: inline-block;
	max-width: 25em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
	.topworks__card__title .Item-Text {
			max-width: 10em;
	}
}

.topworks__img {
    width: 290px;
    height: 230px;
}
@media screen and (max-width: 375px) {
  .topworks__img {
    width: 120px;
    height: 90px;
  }
}

.topworks__body {
  flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .topworks__body {
    margin-left: 18px;
  }
}

.tag span {
  background-color: #F3F3F3;
  padding: 7px 18px;
  font-size: 11px;
  color: #626262;
}
@media screen and (max-width: 768px) {
  .tag span {
    font-size: 10px;
  }
}

.topworks__card__title {
  font-size: 24px;
  font-family: "Noto Sans JP";
  margin-top: 37px;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .topworks__card__title {
    font-size: 14px;
    margin-top: 12px;
    line-height: 2;
  }
}

.text.topworks__text {
  margin-top: 20px;
	color: #000;
}

.topworks__date {
  margin-top: 41px;
  font-size: 12px;
  color: #A9A9A9;
  font-family: "Noto Sans JP";
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .topworks__date {
    font-size: 10px;
    margin-top: 21px;
  }
}

@media screen and (max-width: 768px) {
  .topworks__inner.inner {
    padding: 0;
  }
}

.section__title--main.topworks__title {
  padding: 0 15px;
}

.topworks__button {
  margin-top: 53px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .topworks__button {
    margin-top: 40px;
  }
}

.topnews {
  padding: 150px 0 171px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .topnews {
    padding: 60px 0 80px;
  }
}

.topnews__body {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .topnews__body {
    flex-direction: column;
  }
}

.topnews__content {
  flex: 1;
  border-left: 1px solid #E2E2E2;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
	.topnews__content {
		border: 0;
		padding: 0 6%;
		margin-top: 30px;
		width: 100%;
  }
}

.topnews__title {
  color: #000;
}

.topnews__sidebar {
	max-width: 260px;
	width: 100%;
}
@media screen and (max-width: 768px) {
  .topnews__sidebar {
    max-width: 100%;
  }
}

.topnews--sidebar__items {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .topnews--sidebar__items {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 6%;
    line-height: 3.333;
  }
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	width: 24%;
	color: #626262;
}
@media screen and (max-width: 768px) {
  .tab {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 6%;
	  width: 100%;
	  column-gap: 40px;
	  row-gap: 15px;
  }
}

.tab__link  {
  color: #A9A9A9;
  margin-left: 13px;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .tab__link  {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  body:not(.home) .tab__link {
	  margin: 0;
  }
}

.tab__link.is-active {
  color: #000;
}

.tab__link.is-active::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #000;
  display: inline-block;
  margin-right: 6px;
}

.tab__link:not(:first-child) {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .tab__link:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .tab__link:nth-child(2n) {
    margin-left: 40px;
  }
}

.topnews__item {
  border-bottom: 1px solid #E2E2E2;
}

.topnews__item:not(:first-child) {
  margin-top: 30px;
}

.topnews__taglist {
  display: flex;
  align-items: center;
}

.topnews--item__date {
	font-size: 12px;
	color: #A9A9A9;
	font-family: "Noto-sans JP";
	display: block;
}
@media screen and (max-width: 768px) {
  .topnews--item__date {
    font-size: 10px;
  }
}

.news__tag {
  display: flex;
  margin-left: 34px;
}
@media screen and (max-width: 768px) {
  .news__tag {
    margin-left: 16px;
  }
}

.topnews__tag.news__tag .topnews--item__tag {
  background-color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .topnews--item__tag span {
    padding: 8px 15px;
  }
}

.topnews--item__tag:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .topnews--item__tag:not(:first-child) {
    margin-left: 6px;
  }
}

.topnews__item__title {
  margin: 31px 0;
  font-family: "Noto-sans JP";
  display: inline-block;
	color: #000;
}
@media screen and (max-width: 768px) {
  .topnews__item__title {
    font-size: 14px;
    margin: 20px 0 26px;
  }
}

.topnews__button {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .topnews__button {
    margin-right: 9%;
  }
}

.nav-links {
  display: flex;
  gap: 12px;
	margin-top: 60px;
}
	@media screen and (max-width: 768px) {
  .nav-links {
    margin-top: 40px;
  }
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #242424;
  border-radius: 0;
  background-color: #E9EEEF;
  font-size: 14px;
}

.page-numbers.current {
  color: #fff;
  background-color: #001E63;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}

.info {
  background-color: #011950;
}

.info__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .info__body {
    flex-direction: column-reverse;
  }
}

.info__img {
  width: 56.9%;
}
@media screen and (max-width: 768px) {
  .info__img {
    width: 100%;
  }
}

.info__content {
  flex: 1;
  padding: 83px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .info__content {
    padding: 84px 0 80px;
  }
}

.info__text {
  color: #fff;
  font-size: 18px;
  font-family: "Noto-sans JP";
}
@media screen and (max-width: 768px) {
  .info__text {
    font-size: 14px;
  }
}

.button__info.contact__button {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .button__info.contact__button {
    margin-top: 42px;
  }
}

.button__info.tell__button {
  margin-top: 20px;
}

.info__time {
  margin-top: 24px;
  font-size: 14px;
  color: #fff;
  font-family: "Noto-sans JP";
}

.fa-phone {
  transform: scaleX(-1);
}

.footer__inner {
  display: flex;
  background-color: #001135;
  justify-content: space-between;
  align-items: center;
  padding: 0 11%;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column-reverse;
    padding: 0 11% 15px;
  }
}

.footer__sns {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__logo {
  max-width: 258px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 114px;
  }
}

.footersns__items {
  display: flex;
  margin-left: 46px;
}
@media screen and (max-width: 768px) {
  .footersns__items {
    margin: 51px 0 0 0;
  }
}

.footersns__itme:not(:first-child) {
  margin-left: 20px;
}

.footersns__itme {
  font-size: 22px;
}

.footersns__link {
  color: #fff;
}

.footer__copyright {
  color: #fff;
  font-family: "Noto-sans JP";
  font-size: 12px;
  margin-top: 25px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 55px;
  }
}

.footernav__items {
  display: flex;
  flex-direction: column;
  margin: 57px 0 58px;
}
@media screen and (max-width: 768px) {
  .footernav__items {
    margin: 62px 0 63px;
  }
}

.footernav__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footernav__item:not(:first-child) {
    margin-top: 24px;
  }
}

.footer__nav__link {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  font-family: "Roboto";
  line-height: 1.31;
}
@media screen and (max-width: 768px) {
  .footer__nav__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .mv.sub__mv {
    margin-top: 105px;
  }
}

.sub__mv-inner {
  position: relative;
  max-width: 1270px;
  width: 100%;
  margin: 160px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .sub__mv-inner {
    max-width: 365px;
    margin-top: 30px;
  }
}

.sub__mv__title {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 500px;
  width: 100%;
  padding: 0 0 51px 50px;
}
@media screen and (max-width: 768px) {
  .sub__mv__title {
    padding: 10px 0 40px 18px;
    max-width: 190px;
  }
}

.sub__mv__title--main {
  color: #000;
  font-size: 100px;
}
@media screen and (max-width: 768px) {
  .sub__mv__title--main {
    font-size: 44px;
    line-height: 1.02;
  }
}

.sub__mv__title--ja {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub__mv__title--ja {
    font-size: 12px;
    line-height: 3.75;
  }
}

.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 18px;
	padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
	padding-right: 10px;
  }
}

.breadcrumb__between {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
  background-color: #000;
}

.breadcrumb span {
	font-family: 'Roboto';
}

.breadcrumb a {
	color: #A9A9A9;
}

.breadcrumb span[property="name"] {
    display: inline-block;
    padding: 0;
    margin-top: -3px;
    vertical-align: middle;
    max-width: 11em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb span[property="name"]:hover {
    max-width: none;
}

.catchcopy {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .catchcopy {
    padding: 0 20px;
  }
}

.anchorlink {
  display: flex;
  justify-content: center;
  margin-top: 63px;
}

.anchorlink .anchorlink__list:not(:first-child) {
  margin-left: 120px;
}
@media screen and (max-width: 768px) {
  .anchorlink .anchorlink__list:not(:first-child) {
    margin-left: 40px;
  }
}

.anchorlink__link {
  color: #011950;
  display: flex;
  align-items: center;
}

.anchorlink__link:after {
  content: "";
  background-image: url(../images/arrow-down.png);
  display: inline-block;
  width: 9px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .anchorlink__link {
    font-size: 12px;
  }
}

.catchcopy__title {
  font-size: 40px;
  font-family: "Noto Sans JP";
  font-weight: 300;
  margin-top: 103px;
}
@media screen and (max-width: 768px) {
  .catchcopy__title {
    font-size: 18px;
    margin-top: 62px;
  }
}

.text.catchcopy__text {
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .text.catchcopy__text {
    margin-top: 38px;
  }
}

.philosophy {
  margin: 128px 11.8% 0 0;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin: 86px 0 0 0;
  }
}

.philosophy__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .philosophy__inner {
    flex-direction: column;
    padding: 0 20px;
  }
}

.philosophy__body {
  max-width: 680px;
  width: 100%;
  margin-left: 11.8%;
}
@media screen and (max-width: 768px) {
  .philosophy__body {
    margin: 0;
  }
}

.philosophy__img {
  flex: 1;
  margin-left: 59px;
}
@media screen and (max-width: 768px) {
  .philosophy__img {
    margin: 32px 0 0 0;
  }
}

.sub__title--jp {
  font-size: 16px;
  font-weight: 700;
  color: #001E63;
}
@media screen and (max-width: 768px) {
  .sub__title--jp {
    font-size: 12px;
  }
}

.sub__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.125;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sub__title {
    font-size: 26px;
    line-height: 1.73;
  }
}
.sub__title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-left: 20px;
}

.sub__title--jp.philosophy__sub__title {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .sub__title--jp.philosophy__sub__title {
    margin-top: 63px;
  }
}

.philosophy__text.text {
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .philosophy__text.text {
    margin-top: 28px;
  }
}

.philosophy__name.text {
  text-align: right;
  margin: 42px 0 73px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .philosophy__name.text {
    margin: 38px 0 0;
  }
}

.access {
  margin-top: 205px;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 84px;
  }
}

.access__inner {
  max-width: 1270px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding-left: 20px;
  }
}

.access__text {
  font-weight: 300;
  font-family: "Noto-sans JP";
  display: flex;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .access__text {
    flex-direction: column;
  }
}

.adress {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .adress {
    margin: 9px 0 0 0;
  }
}

.map {
  margin-top: 61px;
  max-width: 1270px;
}
@media screen and (max-width: 768px) {
  .map {
    margin-top: 21px;
  }
}

.company {
	background-color: #F8F8F8;
	margin-top: 120px;
	padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
	.company {
		margin-top: 80px;
		padding-bottom: 60px;
	}
}

.company__sub__title {
  padding-top: 75px;
}

.company__table {
  width: 100%;
  margin-top: 20px;
}

.company__table th, .company__table td {
  font-family: "Noto-sans JP";
  font-weight: 300;
  text-align: left;
  padding: 45px 0 41px;
  border-bottom: 1px solid #E2E2E2;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .company__table th, .company__table td {
    display: block;
    padding: 22px 0 21px;
    font-size: 14px;
  }
}

.company__table th {
  width: 170px;
}
@media screen and (max-width: 768px) {
  .company__table th {
    width: 100%;
    border: 0;
    padding: 24px 0 0 0;
  }
}

.company__table p:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .company__table p:not(:first-child) {
    margin-top: 11px;
  }
}

.service {
  margin-top: 158px;
}
@media screen and (max-width: 768px) {
  .service {
    margin-top: 84px;
  }
}

.service.service--top {
  margin-top: 126px;
}
@media screen and (max-width: 768px) {
  .service.service--top {
    margin-top: 60px;
  }
}

.service__card {
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service__card {
    flex-direction: column;
  }
}

.service__content {
  flex: 1;
  margin-left: 170px;
}
@media screen and (max-width: 768px) {
  .service__content {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.service__number {
  font-size: 40px;
  font-weight: 700;
}
.service__number::after {
  content: "";
  width: 1px;
  height: 34px;
  background-color: #000;
  display: inline-block;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .service__number::after {
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .service__number {
    font-size: 32px;
    margin-top: 60px;
  }
}

.service__title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .service__title {
    font-size: 20px;
    margin-top: 25px;
  }
}

.service__card__text {
  font-size: 22px;
  font-weight: 300;
  line-height: 2.09;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .service__card__text {
    font-size: 14px;
  }
}

.service__card__img {
  max-width: 760px;
  width: 100%;
  margin-left: 110px;
}
@media screen and (max-width: 768px) {
  .service__card__img {
    margin: 26px 0 0 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.features__title {
  font-size: 22px;
  font-weight: 300;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .features__title {
    font-size: 18px;
  }
}

.features__title__ja {
  color: #A9A9A9;
  font-size: 12px;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .features__title__ja {
    margin-left: 10px;
  }
}

.features__text.text {
  line-height: 1.82;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .features__text.text {
    line-height: 2.29;
  }
}

.info.service__info {
  margin-top: 158px;
}
@media screen and (max-width: 768px) {
  .info.service__info {
    margin-top: 104px;
  }
}

@media screen and (max-width: 768px) {
  .sub__mv-inner.news__mv-inner {
    padding-top: 80px;
  }
}

.news {
	margin: 58px 0 120px;
}
@media screen and (max-width: 768px) {
  .news {
    margin: 33px 0 80px;
  }
}

.topnews.news {
  background-color: #fff;
}

.news__tag .topnews--item__tag {
	background-color: #F8F8F8;
	padding: 7px 18px;
	font-size: 11px;
	color: #626262;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news__tag .topnews--item__tag {
    padding: 7px 15px;
    font-size: 10px;
  }
}

.single__breadcrumb .breadcrumb {
	margin-top: 120px;
}

.inner.single__inner {
	max-width:1100px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 60px;
	margin-bottom: 120px;
}

.detail {
  display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.detail {
		flex-direction: column;
	}
}

.detail__body {
	flex: 1;
	max-width: 680px;
}

.detail__side {
	max-width: 300px;
	width: 100%;
}
@media screen and (max-width: 768px) {
  .detail__side {
    max-width: 100%;
    margin: 80px 0;
  }
}

.single .detail__date, .works-detail__date, .news__date {
	font-size: 11px;
	color: #A9A9A9;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	margin-top: 36px;
	display: inline-block;
}

.detail__categories {
	margin-top: 0;
}

.detail__category:not(:first-child) {
	margin-left: 20px;
}

.single .detail__categories span, .news__category {
  font-size: 11px;
  background-color: #F8F8F8;
  padding: 7px 18px;
  color: #000;
}

.detail__title, .works-detail__title, .news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
  color: #000;
}

.detail__article:not(:last-child) {
  	border-bottom: 1px solid #E2E2E2;
	padding-bottom: 18px;
}

.detail__article img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin: 0;
}

.detail__text {
	margin-left: 18px;
}

.detail__side-title {
	background-color: #011950;
	color: #fff;
	padding: 19px 0 17px 18px;
	font-size: 14px;
	font-weight: 400;
}

.detail__list .detail__link {
  display: flex;
}

.detail__thumbnail {
	height: auto;
	aspect-ratio: 680 / 380;
	margin-top: 40px;
}

.detail__summary {
  font-size: 12px;
  color: #000;
  line-height: 2.33;
  font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

.detail__day {
  font-size: 10px;
  color: #A9A9A9;
  font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
}

.detail__archive a {
  color: #000;
}

.detail__group:not(:first-child) {
  margin-top: 40px;
}

.detail__archive .detail__link, .detail__list li {
  font-size: 14px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  padding: 18px 0;
  display: block;
}

.detail__list li:not(:last-child) {
  border-bottom: 1px solid #E2E2E2;
}

.detail__content {
	margin-top: 40px;
}

.detail__content h1 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 28px;
	margin-bottom: 32px;
	padding: 8px 16px;
	border: 3px solid #67a7cc;
}

.detail__content h2 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	padding: 8px 0 16px 10px;
	color: #000;
	font-weight: 400;
	background-color: #F8F9F9;
	border-left: 3px solid #001E63;
}

.detail__content h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 400;
	padding: 0 16px 8px;
	position: relative;
	margin-top: 40px;
}

.detail__content h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #E4E4E4;
}

.detail__content h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 270px;
	height: 1px;
	background: #001E63;
}

.detail__content p {
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 40px;
}

.detail__content a {
  display: block;
  text-decoration: underline;
  color: #0072bc;
}

.detail__content ul {
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 45px;
}

.detail__content li {
  position: relative;
  padding-left: 1em;
}

.detail__content li::after {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 4px;
    background-color: #001E63;
}

.detail__other {
	border-top: 1px solid #E2E2E2;
	padding-top: 40px;
	display: flex;
	margin-top: 43px;
}
@media screen and (max-width: 768px) {
  .detail__other  {
		justify-content: center;
  }
}

.detail__other a {
	font-size: 14px;
	color: #001E63;
	padding: 15px 0 14px;
	border: 1px solid #001E63;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	max-width: 128px;
	width: 100%;
}

.detail__prev img, .detail__next img {
  width: 5px;
}

.detail__prev .detail__link-text {
  margin-left: 10px;
}

.detail__next .detail__link-text {
  margin-right: 10px;
}

.detail__other a:hover .detail__link-text {
  margin-left: 15px;
  transition: all 0.3s;
}

.detail__next {
	margin-left: 30px;
}

.detail__link {
	color: #000;
}

/* Works */
.works__link {
    display: flex;
}

.works__img {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.works__text-wrapper {
    margin-left: 30px;
}
@media screen and (max-width: 768px) {
	.works__text-wrapper {
		margin-left: 15px;
	}
}

.works__article {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.works__article img {
		width: 130px;
		height: 100px;
	}
}

.topnews__item__title.works__item__title {
  margin: 35px 0 0 0;
}

@media screen and (max-width: 768px) {
	.topnews__item__title.works__item__title {
		margin: 10px 0 0 0;
	}
}

.topnews--item__date.works--item__date {
  font-size: 10px;
  font-weight: bold;
  margin: 23px 0 0 0;
}
@media screen and (max-width: 768px) {
	.topnews--item__date.works--item__date {
		margin: 18px 0 0 0;
	}
}

/* 実績詳細ページ */
.single-works .breadcrumb {
  margin-top: 120px;
}

.works-detail {
	margin: 60px 0 120px;
}
@media screen and (max-width: 768px) {
	.works-detail {
		max-width: 325px;
		margin: 30px auto 80px;
	}
}

.works-detail__body {
	max-width: 840px;
	width: 100%;
	margin: 0 auto;
}

.works-detail__content p {
	font-family: "Noto Sans JP", sans-serif;
}

/* works-d */
.tax-genre .works {
  margin-top: 120px;
}

.work__inner {
  max-width: 890px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: auto;
  margin-right: auto;
}

.works-detail__thumbnail {
	margin-top: 40px;
	height: auto;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.works-detail__thumbnail {

	}
}

@media screen and (max-width: 768px) {
	.single-works .breadcrumb {
		margin-top: 90px;
	}
}

.works-detail__content {
  margin-top: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.works-detail__btn a {
  font-size: 14px;
  color: #001E63;
  padding: 15px 0 14px;
  border: 1px solid #001E63;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  max-width: 280px;
  width: 100%;
  margin: 60px auto 0;
	align-items: center;
}

.works-detail__prev {
	width: 5px;
	height: 8px;
	margin-right: 10px;
}

/* お問い合わせフォーム */
.form__list {
  margin-top: 40px;
}

.form__field+ .form__field,
.form__acceptance {
  margin-top: 24px;
}

.form__required {
  color: #e20000;
}

.form__input::placeholder {
  color: #a9a9a9;
}

.form__textarea {
  height: 160px;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
}

.form__acceptance-text {
  overflow-y: auto;
  height: 120px;
  background-color: #f2f2f2;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 46%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #000;
  border-right: solid 2px #000;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__data,
.form__data-radio,
.form__data-select,
.form__data-check {
  margin-top: 4px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item+ .wpcf7-list-item {
  margin-left: 20px;
}

.wpcf7-form-control-wrap[data-name="radio-category"] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item-label::before {
  position: absolute;
  top: 56%;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 7px;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item-label::after {
  position: absolute;
  top: 56%;
  left: 3px;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 4px;
  background-color: #000;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item
  input:checked+ .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-list-item-label::before {
  position: absolute;
  top: 3.25px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #000;
  border-radius: 3px;
}

.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-list-item-label::after {
  position: absolute;
  top: 9.25px;
  left: 5px;
  width: 10px;
  height: 5px;
  content: "";
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
}

.form__checkbox:checked+ .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__submit-button {
  margin-top: 40px;
  text-align: center;
}

.form__submit-input {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 16px 20px;
  transition: opacity 0.3s;
  color: #fff;
  border-radius: 4px;
  background-color: #000;
  &:hover {
    transition: opacity 0.3s;
    opacity: 0.7;
  }
}

.contact__inner.inner {
	margin-top: 60px;
	margin-bottom: 120px;
}

.contact__inner p {
	line-height: 2.375;
}

.section__title--main {
  font-size: 70px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section__title--main {
    font-size: 38px;
  }
}

.section__title--sub {
  font-size: 40px;
  font-weight: 700;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
  line-height: 1.12;
}
.section__title--sub::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 20px;
  width: 60px;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .section__title--sub::after {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .section__title--sub {
    font-size: 26px;
    line-height: 1.73;
  }
}

.section__title--ja {
  font-size: 16px;
  font-weight: #001E63;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.375;
  font-family: "Noto-sans JP";
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
    line-height: 2.28;
  }
}

.button:hover {
  border-bottom: 1px solid #001E63;
  max-width: 97px;
  width: 100%;
}

.read-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto";
  color: #001E63;
  width: 92px;
  position: relative;
  margin-left: auto;
}
.read-button::after {
  content: "";
  display: inline-block;
  background-image: url(../images/read-button.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 8.74px;
  position: absolute;
  top: calc(50% - 5px);
  right: -10px;
  transition: 0.3s;
}
.read-button:hover::after {
  right: -15px;
}

.read-button.service-button {
  border: 1px solid #001E63;
  border-radius: 4px;
  padding: 12px 0px;
  max-width: 140px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.inner {
  max-width: 1150px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.button__info {
  border: 1px solid #fff;
  font-size: 22px;
  padding: 25px 0 21px;
  max-width: 235px;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-family: "Noto-sans JP";
  line-height: 0.9;
  border-radius: 4px;
  transition: ease 0.2s;
  position: relative;
  overflow: hidden;
}
.button__info:hover {
  opacity: 1;
}

.button__info span {
  position: relative;
  z-index: 3;
  color: #fff;
}

.button__info:hover span {
  color: #001E63;
}

.animation--color:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.animation--color:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.fa-regular {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 16px;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.Item-Text {
  position: relative;
  z-index: 1;
}

.Item-Text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 2px;
  background: #000;
  z-index: -1;
  transition: all 0.5s;
}

.Item:hover .Item-Text:after {
  width: 100%;
}

