html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}

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

.container {
  max-width: 1200px;
  padding-inline: 15px;
  margin-inline: auto;
}

.wrapper {
  max-width: 900px;
  padding-inline: 15px;
  margin-inline: auto;
}

.mainvisual {
  width: 100%;
  height: 80vh;
  background-position: center;
  background-size: cover;
  margin-top: 80px;
  margin-bottom: 96px;
}
@media (max-width: 650px) {
  .mainvisual {
    height: 70vh;
  }
}
@media (max-width: 430px) {
  .mainvisual {
    height: 60vh;
  }
}
.mainvisual .container {
  width: 100%;
  height: 100%;
  position: relative;
}
.mainvisual .container .page-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  color: #fff;
  font-size: 5.9rem;
}
@media (max-width: 650px) {
  .mainvisual .container .page-title {
    font-size: 3.8rem;
  }
}

.section-title {
  font-size: 5.9rem;
  letter-spacing: 0.09em;
  color: #0C3256;
  margin-bottom: 96px;
}
@media (max-width: 900px) {
  .section-title {
    font-size: 4.8rem;
  }
}
@media (max-width: 430px) {
  .section-title {
    font-size: 3.4rem;
    margin-bottom: 56px;
  }
}

h4 {
  font-size: 4.8rem;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  h4 {
    font-size: 3.8rem;
  }
}
@media (max-width: 430px) {
  h4 {
    font-size: 3rem;
    margin-bottom: 16px;
  }
}

.btn {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid #000;
  transition: 0.3s ease;
  padding: 16px 72px;
}
@media (max-width: 900px) {
  .btn {
    font-size: 2rem;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .btn {
    font-size: 1.6rem;
  }
}
.btn:hover {
  opacity: 0.5;
}

.fadein {
  opacity: 0;
  transform: translateX(-30px);
  transition: 1s ease;
}
.fadein.active {
  opacity: 1;
  transform: translateX(0);
}

.no-scroll {
  overflow: hidden;
}

.no_post {
  color: #000;
}

#header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 32px;
  z-index: 999;
}
#header a {
  transition: 0.3s ease;
}
#header a:hover {
  opacity: 0.5;
}
#header h1 {
  width: 300px;
  line-height: 0;
  z-index: 1000;
}
@media (max-width: 1100px) {
  #header h1 {
    display: none;
  }
}
#header nav {
  z-index: 1000;
}
@media (max-width: 1100px) {
  #header nav {
    display: none;
  }
}
#header nav .page-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
#header nav .page-links .item {
  margin-right: 24px;
}
#header nav .jp-en {
  background-color: #3c83bb;
  border-radius: 15px;
  padding: 2px 8px;
  margin-right: 24px;
}
#header nav .jp-en a {
  color: #fff;
  font-weight: 700;
}
#header .sp-header {
  display: none;
}
@media (max-width: 1100px) {
  #header .sp-header {
    width: 100%;
    display: block;
    text-align: right;
    margin-right: 45px;
  }
}
@media (max-width: 430px) {
  #header .sp-header {
    margin-right: 32px;
  }
}
#header .sp-header .jp-en {
  color: #fff;
  background-color: #3c83bb;
  border-radius: 15px;
  padding: 2px 8px;
}
#header .toggle {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  right: 32px;
  display: none;
  transition: 0.3s ease;
  z-index: 1000;
}
@media (max-width: 1100px) {
  #header .toggle {
    display: block;
  }
}
@media (max-width: 430px) {
  #header .toggle {
    right: 24px;
  }
}
#header .toggle span {
  width: 100%;
  height: 1px;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  background-color: #000;
}
#header .toggle span:nth-child(1) {
  top: 15%;
}
#header .toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header .toggle span:nth-child(3) {
  bottom: 15%;
}
#header .mask {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.3s ease;
  opacity: 0;
}
#header.active {
  flex-direction: column;
  padding: 15px;
  margin-top: 32px;
}
#header.active h1 {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 650px) {
  #header.active h1 {
    width: 200px;
    margin-top: 56px;
  }
}
#header.active nav {
  display: block;
}
#header.active nav .page-links {
  flex-direction: column;
}
#header.active nav .page-links .item {
  margin-right: 0;
  margin-bottom: 24px;
}
#header.active .toggle {
  top: 32px;
}
#header.active .toggle span {
  top: 50%;
  transform: translateY(-50%);
}
#header.active .toggle span:nth-child(1), #header.active .toggle span:nth-child(2) {
  transform: rotate(45deg);
}
#header.active .toggle span:nth-child(3) {
  transform: rotate(-45deg);
}
#header.active .mask {
  transform: translateX(0);
  opacity: 1;
}
#header.active .sp-header {
  display: none;
}

#footer {
  background-image: url(../img/footer-background.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
  padding-block: 96px;
}
@media (max-width: 430px) {
  #footer {
    padding-block: 56px;
  }
}
#footer::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(12, 50, 86, 0.5);
  z-index: 1;
}
#footer .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 2;
}
@media (max-width: 1100px) {
  #footer .container {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1100px) {
  #footer .container .left {
    text-align: right;
    margin-top: 32px;
  }
}
#footer .container .left img {
  width: 300px;
  margin-bottom: 32px;
}
@media (max-width: 1100px) {
  #footer .container .left img {
    margin-bottom: 24px;
  }
}
@media (max-width: 430px) {
  #footer .container .left img {
    width: 200px;
  }
}
#footer .container .left p {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}
@media (max-width: 430px) {
  #footer .container .left p {
    font-size: 1rem;
  }
}
#footer .container .right nav .page-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 650px) {
  #footer .container .right nav .page-links {
    flex-direction: column;
    align-items: flex-end;
  }
}
#footer .container .right nav .page-links .item {
  margin-right: 24px;
}
@media (max-width: 650px) {
  #footer .container .right nav .page-links .item {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
#footer .container .right nav .page-links .item:last-child {
  margin-right: 0;
}
#footer .container .right nav a {
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease;
}
#footer .container .right nav a:hover {
  opacity: 0.5;
}
#footer .container .right nav .jp-en {
  background-color: #3c83bb;
  border-radius: 15px;
  padding: 2px 8px;
}

.top #fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.top #fv::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(60, 131, 187, 0.5);
  z-index: 2;
}
.top #fv video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.top #fv .fv-title {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 5rem;
  text-shadow: 12px 12px 8.4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-inline: auto;
  z-index: 10;
}
@media (max-width: 900px) {
  .top #fv .fv-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 650px) {
  .top #fv .fv-title {
    font-size: 2.4rem;
  }
}
.top #fv .scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 90px;
  z-index: 10;
}
.top #fv .scroll .scroll-text {
  color: #fff;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .top #fv .scroll .scroll-text {
    font-size: 1.2rem;
  }
}
.top #fv .scroll .scroll-border {
  width: 30px;
  height: 60px;
  position: relative;
  border: 1px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-inline: auto;
}
.top #fv .scroll .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 15px;
  left: 0;
  right: 0;
  background: #fff;
  animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}
.top #hero {
  position: relative;
  color: #fff;
  background-color: #3c83bb;
  padding: 96px 15px 48px 15px;
  margin-bottom: 96px;
}
@media (max-width: 430px) {
  .top #hero {
    padding: 48px 15px 48px 15px;
  }
}
.top #hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .top #hero .container {
    flex-direction: column;
  }
}
.top #hero .container .left {
  width: 50%;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  line-height: 1.79;
  font-weight: 700;
  margin-right: 40px;
}
@media (max-width: 900px) {
  .top #hero .container .left {
    width: 100%;
    font-size: 2.5rem;
    line-height: 1.5;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 430px) {
  .top #hero .container .left {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
}
.top #hero .container .right {
  width: 50%;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 900px) {
  .top #hero .container .right {
    width: 100%;
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media (max-width: 430px) {
  .top #hero .container .right {
    font-size: 1.8rem;
  }
}
.top #hero .scroll-divider {
  overflow: hidden;
  margin-top: 96px;
}
@media (max-width: 900px) {
  .top #hero .scroll-divider {
    margin-top: 56px;
  }
}
@media (max-width: 900px) {
  .top #hero .scroll-divider {
    margin-top: 32px;
  }
}
.top #hero .scroll-divider .scroll-text {
  color: #fff;
  font-size: 9rem;
  font-weight: 700;
  opacity: 0.4;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@media (max-width: 900px) {
  .top #hero .scroll-divider .scroll-text {
    font-size: 8rem;
  }
}
@media (max-width: 430px) {
  .top #hero .scroll-divider .scroll-text {
    font-size: 5rem;
  }
}
.top #partnership {
  margin-bottom: 96px;
}
.top #partnership .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.top #partnership .wrapper img:nth-child(1) {
  width: 75%;
}
.top #services {
  background-color: #0C3256;
  padding-block: 96px;
  margin-bottom: 96px;
}
.top #services .section-title {
  color: #fff;
}
.top #services .box {
  background-color: #fff;
  padding: 56px;
}
@media (max-width: 650px) {
  .top #services .box {
    padding: 32px;
  }
}
@media (max-width: 430px) {
  .top #services .box {
    padding: 16px;
  }
}
.top #services .box .list {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 96px;
}
@media (max-width: 900px) {
  .top #services .box .list {
    flex-direction: column;
    margin-bottom: 56px;
  }
  .top #services .box .list:nth-child(2) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 430px) {
  .top #services .box .list {
    margin-bottom: 32px;
  }
}
.top #services .box .list:last-child {
  margin-bottom: 0;
}
.top #services .box .list .item {
  width: 50%;
  margin-right: 56px;
}
@media (max-width: 900px) {
  .top #services .box .list .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 430px) {
  .top #services .box .list .item {
    margin-bottom: 24px;
  }
}
.top #services .box .list .item:last-child {
  margin-right: 0;
}
.top #services .box .list .item .title {
  color: #0C3256;
}
.top #services .box .list .item .text {
  font-weight: 700;
  line-height: 3;
}
@media (max-width: 900px) {
  .top #services .box .list .item .text {
    line-height: 1.79;
  }
}
@media (max-width: 430px) {
  .top #services .box .list .item .text {
    line-height: 1.5;
  }
}
.top #news {
  margin-bottom: 96px;
}
.top #news .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .top #news .container {
    flex-direction: column;
  }
}
.top #news .container .left {
  width: 35%;
}
@media (max-width: 900px) {
  .top #news .container .left {
    width: 100%;
  }
}
.top #news .container .left img {
  width: calc(100% + (100vw - 1200px) / 2);
  margin-left: calc(-1 * (100vw - 1200px) / 2);
}
@media (max-width: 1100px) {
  .top #news .container .left img {
    width: calc(100% + (100vw - 900px) / 2);
    margin-left: calc(-1 * (100vw - 1000px) / 2);
  }
}
@media (max-width: 900px) {
  .top #news .container .left img {
    width: 100%;
    margin-left: 0;
  }
}
.top #news .container .right {
  width: 50%;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .top #news .container .right {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .top #news .container .right {
    margin-top: 32px;
  }
}
.top #news .container .right .post {
  border-bottom: 1px solid #000;
  margin-bottom: 16px;
}
.top #news .container .right .post a {
  transition: 0.3s ease;
}
.top #news .container .right .post a:hover {
  opacity: 0.5;
}
.top #news .container .right .post a .date {
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  .top #news .container .right .post a .date {
    font-size: 1.4rem;
  }
}
.top #news .container .right .post a .news-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-left: 40px;
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  .top #news .container .right .post a .news-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 900px) {
  .top #news .container .right .btn-container {
    text-align: center;
  }
}
.top #news .container .right .btn-container .btn {
  margin-top: 56px;
}
.top #company {
  color: #fff;
  background-color: #3c83bb;
  padding-block: 96px;
}
.top #company .section-title {
  color: #fff;
}
.top #company .company-table {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .top #company .company-table {
    font-size: 2rem;
  }
}
@media (max-width: 430px) {
  .top #company .company-table {
    font-size: 1.2rem;
  }
}
.top #company .company-table tr {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
  border-bottom: 2px solid #fff;
  padding: 24px 8px;
  margin-bottom: 32px;
}
@media (max-width: 430px) {
  .top #company .company-table tr {
    border-bottom: 1px solid #fff;
    padding: 16px 8px;
    margin-bottom: 24px;
  }
}
.top #company .company-table tr:last-child {
  margin-bottom: 0;
}
.top #company .company-table tr th {
  width: 30%;
}
@media (max-width: 430px) {
  .top #company .company-table tr th {
    width: 35%;
  }
}
.top #company .company-table tr td {
  width: 70%;
}
@media (max-width: 430px) {
  .top #company .company-table tr td {
    width: 65%;
  }
}
.top.top-en #hero .left {
  font-size: 3.8rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .top.top-en #hero .left {
    font-size: 2.5rem;
  }
}
@media (max-width: 430px) {
  .top.top-en #hero .left {
    font-size: 2rem;
  }
}
.top.top-en #hero .right {
  line-height: 1.5;
}
.top.top-en #services .box .title {
  line-height: 1.2;
}

@keyframes scrollbar {
  0% {
    opacity: 0;
    top: 10px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.services .fv {
  background-image: url(../img/services-fv.jpg);
}
.services .lead {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.79;
  margin-bottom: 96px;
}
@media (max-width: 650px) {
  .services .lead {
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
}
.services .lead .title {
  font-size: 3.8rem;
  color: #0C3256;
  margin-bottom: 32px;
}
@media (max-width: 1100px) {
  .services .lead .title {
    font-size: 3.5rem;
  }
}
@media (max-width: 900px) {
  .services .lead .title {
    font-size: 3rem;
  }
}
@media (max-width: 650px) {
  .services .lead .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 430px) {
  .services .lead .title {
    font-size: 2rem;
  }
}
.services .lead .text {
  font-size: 2rem;
}
@media (max-width: 430px) {
  .services .lead .text {
    font-size: 1.8rem;
  }
}
.services .business {
  color: #fff;
  background-color: #3c83bb;
  padding-block: 96px;
  margin-bottom: 96px;
}
.services .business .list .item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .services .business .list .item {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .services .business .list .item:last-child {
    flex-direction: column-reverse;
  }
}
.services .business .list .item img {
  width: 40%;
}
@media (max-width: 900px) {
  .services .business .list .item img {
    width: 95%;
    margin-bottom: 32px;
  }
}
.services .business .list .item .text-area {
  width: 60%;
  font-weight: 700;
  line-height: 1.79;
}
@media (max-width: 1100px) {
  .services .business .list .item .text-area {
    line-height: 1.5;
  }
}
@media (max-width: 900px) {
  .services .business .list .item .text-area {
    width: 100%;
  }
}
.services .business .list .item .text-area h3 {
  font-size: 3.5rem;
  position: relative;
  margin-left: 20px;
}
@media (max-width: 650px) {
  .services .business .list .item .text-area h3 {
    font-size: 3rem;
  }
}
@media (max-width: 430px) {
  .services .business .list .item .text-area h3 {
    font-size: 2.4rem;
  }
}
.services .business .list .item .text-area h3::after {
  width: 3px;
  height: 100%;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  background-color: #fff;
}
.services .business .list .item .text-area .sub {
  font-size: 2.8rem;
  margin-top: 24px;
  margin-bottom: 16px;
}
@media (max-width: 650px) {
  .services .business .list .item .text-area .sub {
    font-size: 2rem;
  }
}
@media (max-width: 430px) {
  .services .business .list .item .text-area .sub {
    font-size: 1.8rem;
  }
}
.services .business .list .item .text-area .text {
  font-size: 2rem;
  line-height: 3;
}
@media (max-width: 1100px) {
  .services .business .list .item .text-area .text {
    line-height: 2;
  }
}
@media (max-width: 650px) {
  .services .business .list .item .text-area .text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media (max-width: 430px) {
  .services .business .list .item .text-area .text {
    font-size: 1.6rem;
  }
}
.services .business .list .left {
  margin-bottom: 96px;
}
@media (max-width: 650px) {
  .services .business .list .left {
    margin-bottom: 56px;
  }
}
.services .business .list .left img {
  margin-right: 56px;
}
@media (max-width: 900px) {
  .services .business .list .left img {
    margin-inline: auto;
  }
}
.services .business .list .left .text-area {
  padding-right: 96px;
}
@media (max-width: 1100px) {
  .services .business .list .left .text-area {
    padding-right: 56px;
  }
}
@media (max-width: 900px) {
  .services .business .list .left .text-area {
    padding-inline: 16px;
  }
}
@media (max-width: 900px) {
  .services .business .list .right img {
    margin-inline: auto;
  }
}
.services .business .list .right .text-area {
  padding-left: 96px;
  margin-right: 56px;
}
@media (max-width: 1100px) {
  .services .business .list .right .text-area {
    padding-left: 56px;
  }
}
@media (max-width: 900px) {
  .services .business .list .right .text-area {
    padding-inline: 16px;
  }
}
.services.services-en .sub {
  font-size: 2.5rem;
}

.company .fv {
  background-image: url(../img/company-fv.jpg);
}
.company .company-box {
  margin-bottom: 96px;
}
.company .company-box .company-table {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 900px) {
  .company .company-box .company-table {
    font-size: 2rem;
  }
}
@media (max-width: 650px) {
  .company .company-box .company-table {
    font-size: 1.8rem;
  }
}
@media (max-width: 430px) {
  .company .company-box .company-table {
    font-size: 1.6rem;
  }
}
.company .company-box .company-table tr {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 2px solid rgb(228, 223, 223);
  padding: 24px 8px;
  margin-bottom: 32px;
}
@media (max-width: 430px) {
  .company .company-box .company-table tr {
    font-size: 1.2rem;
  }
}
.company .company-box .company-table tr:last-child {
  margin-bottom: 0;
}
.company .company-box .company-table tr th {
  width: 30%;
}
@media (max-width: 430px) {
  .company .company-box .company-table tr th {
    width: 35%;
  }
}
.company .company-box .company-table tr td {
  width: 70%;
}
@media (max-width: 430px) {
  .company .company-box .company-table tr td {
    width: 65%;
  }
}

#news .fv {
  background-image: url(../img/news-fv.jpg);
}
#news .fv .page-title {
  color: #0C3256;
}
#news .news {
  margin-bottom: 96px;
}
#news .news .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
@media (max-width: 900px) {
  #news .news .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  #news .news .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
#news .news .container .post a {
  transition: 0.3s ease;
}
#news .news .container .post a:hover {
  opacity: 0.5;
}
#news .news .container .post a img {
  margin-bottom: 16px;
}
#news .news .container .post a .date {
  display: inline-block;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  #news .news .container .post a .date {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
#news .news .container .post a .news-title {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  #news .news .container .post a .news-title {
    font-size: 2rem;
  }
}
#news .news .pagination {
  text-align: center;
  margin-top: 56px;
}
#news .news .pagination a,
#news .news .pagination span {
  cursor: pointer;
  color: #0C3256;
  font-weight: 700;
  line-height: 35px;
  transition: 0.3s ease;
  margin-right: 24px;
}
@media (max-width: 430px) {
  #news .news .pagination a,
  #news .news .pagination span {
    margin-right: 16px;
  }
}
#news .news .pagination a:last-child,
#news .news .pagination span:last-child {
  margin-right: 0;
}
#news .news .pagination a:hover,
#news .news .pagination span:hover {
  opacity: 0.5;
}
#news .news .pagination .page-numbers:not(.prev):not(.next) {
  width: 35px;
  height: 35px;
  border: 1px solid #0C3256;
  display: inline-block;
  text-align: center;
}
#news .news .pagination .current {
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: #0C3256;
  display: inline-block;
  text-align: center;
}

#single .fv {
  background-image: url(../img/news-fv.jpg);
}
#single .fv .page-title {
  color: #0C3256;
}
#single .main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 96px;
}
@media (max-width: 1100px) {
  #single .main {
    flex-direction: column;
  }
}
#single .main .news {
  width: 65%;
  margin-right: 40px;
}
@media (max-width: 1100px) {
  #single .main .news {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 56px;
  }
}
#single .main .news .title {
  font-size: 3.2rem;
  letter-spacing: 0.09em;
  border-bottom: 1px solid #3c83bb;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  #single .main .news .title {
    text-align: left;
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  #single .main .news .title {
    padding-left: 0;
  }
}
@media (max-width: 650px) {
  #single .main .news .title {
    font-size: 2.4rem;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 430px) {
  #single .main .news .title {
    font-size: 2rem;
  }
}
#single .main .news img {
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  #single .main .news img {
    width: 80%;
  }
}
@media (max-width: 650px) {
  #single .main .news img {
    margin-bottom: 24px;
  }
}
@media (max-width: 430px) {
  #single .main .news img {
    width: 100%;
  }
}
#single .main .news .text {
  font-size: 2rem;
  letter-spacing: 0.09em;
  font-weight: 300;
}
@media (max-width: 1100px) {
  #single .main .news .text {
    text-align: left;
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  #single .main .news .text {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  #single .main .news .text {
    font-size: 1.6rem;
  }
}
#single .main .sidebar-news {
  width: 35%;
}
@media (max-width: 1100px) {
  #single .main .sidebar-news {
    width: 100%;
  }
}
#single .main .sidebar-news .sidebar-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  background-color: #3c83bb;
  padding: 10px 20px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  #single .main .sidebar-news .sidebar-title {
    padding-left: 40px;
  }
}
@media (max-width: 430px) {
  #single .main .sidebar-news .sidebar-title {
    font-size: 2rem;
    padding-left: 20px;
  }
}
#single .main .sidebar-news .new-news {
  font-size: 1.4rem;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
}
@media (max-width: 1100px) {
  #single .main .sidebar-news .new-news {
    font-size: 2rem;
  }
}
@media (max-width: 650px) {
  #single .main .sidebar-news .new-news {
    font-size: 1.6rem;
  }
}
#single .main .sidebar-news .new-news a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}
@media (max-width: 430px) {
  #single .main .sidebar-news .new-news a {
    flex-direction: column;
  }
}
#single .main .sidebar-news .new-news a:hover {
  opacity: 0.5;
}
#single .main .sidebar-news .new-news a img {
  width: 45%;
  margin-right: 24px;
}
@media (max-width: 1100px) {
  #single .main .sidebar-news .new-news a img {
    margin-right: 48px;
  }
}
@media (max-width: 650px) {
  #single .main .sidebar-news .new-news a img {
    margin-right: 24px;
  }
}
@media (max-width: 430px) {
  #single .main .sidebar-news .new-news a img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
#single .main .sidebar-news .new-news a .text {
  width: 55%;
  margin-bottom: 16px;
}
@media (max-width: 430px) {
  #single .main .sidebar-news .new-news a .text {
    width: 100%;
  }
}

.recruitment .fv {
  background-image: url(../img/recruitment-fv.jpg);
}
.recruitment .fv .page-title {
  color: #0C3256;
}
.recruitment .recruitment-box .recruitment-title {
  width: 100%;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #3c83bb;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .recruitment .recruitment-box .recruitment-title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .recruitment-title {
    font-size: 2rem;
  }
}
.recruitment .recruitment-box .sub-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .recruitment .recruitment-box .sub-title {
    font-size: 1.8rem;
    text-align: left;
  }
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .sub-title {
    margin-bottom: 24px;
  }
}
.recruitment .recruitment-box .job-table {
  width: 100%;
  margin-bottom: 96px;
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .job-table {
    margin-bottom: 56px;
  }
}
.recruitment .recruitment-box .job-table tr {
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .recruitment .recruitment-box .job-table tr {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .job-table tr {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.recruitment .recruitment-box .job-table tr:last-child {
  margin-bottom: 0;
}
.recruitment .recruitment-box .job-table tr th {
  width: 20%;
  font-weight: 500;
  color: #3c83bb;
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .job-table tr th {
    width: 100%;
    margin-bottom: 8px;
  }
}
.recruitment .recruitment-box .job-table tr th span {
  display: block;
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .job-table tr th span {
    display: inline-block;
  }
}
.recruitment .recruitment-box .job-table tr td {
  width: 80%;
  font-weight: 300;
}
@media (max-width: 430px) {
  .recruitment .recruitment-box .job-table tr td {
    width: 100%;
  }
}
.recruitment .recruitment-box .job-table tr td ul li {
  margin-bottom: 16px;
}

@media (max-width: 650px) {
  .recruitment-en .recruitment-box .job-table tr {
    flex-direction: column;
  }
}
.recruitment-en .recruitment-box .job-table tr th {
  width: 30%;
}
@media (max-width: 650px) {
  .recruitment-en .recruitment-box .job-table tr th {
    width: 100%;
    margin-bottom: 24px;
  }
}
.recruitment-en .recruitment-box .job-table tr td {
  width: 70%;
}
@media (max-width: 650px) {
  .recruitment-en .recruitment-box .job-table tr td {
    width: 100%;
  }
}
.recruitment-en .recruitment-box .job-table tr td span {
  font-weight: 700;
}

.contact .fv {
  background-image: url(../img/contact-fv.jpg);
}
.contact .fv .page-title {
  color: #0C3256;
}
.contact .contact-form {
  margin-bottom: 96px;
}
.contact .contact-form .container {
  width: 100%;
}
.contact .contact-form .container .form-item {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .contact .contact-form .container .form-item {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.contact .contact-form .container .form-item .title {
  width: 25%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 700;
  background-color: #3c83bb;
  padding: 0 16px;
  margin-right: 40px;
}
@media (max-width: 900px) {
  .contact .contact-form .container .form-item .title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.contact .contact-form .container .form-item .title span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  color: red;
  border: 1px solid red;
  padding: 2px;
}
.contact .contact-form .container .form-item .input-area {
  width: 75%;
}
@media (max-width: 900px) {
  .contact .contact-form .container .form-item .input-area {
    width: 100%;
  }
}
.contact .contact-form .container .form-item .input-area input {
  display: inline-block;
}
.contact .contact-form .container .form-item .input-area .input {
  width: 100%;
  font-size: 1.4rem;
  border: 1px solid rgb(228, 223, 223);
  padding: 24px 24px;
}
.contact .contact-form .container .form-item .input-area .input::-moz-placeholder {
  color: rgb(228, 223, 223);
}
.contact .contact-form .container .form-item .input-area .input::placeholder {
  color: rgb(228, 223, 223);
}
.contact .contact-form .container .form-item .input-area .radio {
  font-weight: 300;
  cursor: pointer;
  margin-right: 32px;
}
.contact .contact-form .container .form-item .input-area .radio:last-child {
  margin-right: 0;
}
.contact .contact-form .container .form-item .input-area .radio input {
  margin-right: 8px;
}
.contact .contact-form .container .form-textrea {
  height: 200px;
}
@media (max-width: 900px) {
  .contact .contact-form .container .form-textrea {
    height: 150px;
    display: inline-block;
  }
}
.contact .contact-form .container .form-textrea .textarea {
  width: 100%;
  height: 200px;
  display: inline-block;
  border: 1px solid rgb(228, 223, 223);
  padding: 16px 24px;
}
@media (max-width: 900px) {
  .contact .contact-form .container .form-textrea .textarea {
    height: 150px;
  }
}
.contact .contact-form .container .privacy {
  margin-top: 96px;
  margin-bottom: 96px;
}
.contact .contact-form .container .privacy .wrapper {
  font-weight: 300;
}
.contact .contact-form .container .privacy .wrapper .privacy-box {
  height: 200px;
  border: 1px solid rgb(228, 223, 223);
  overflow-y: auto;
  padding: 32px;
  margin-bottom: 32px;
}
.contact .contact-form .container .privacy .wrapper .privacy-box h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.contact .contact-form .container .privacy .wrapper .privacy-box .privacy-scroll h4 {
  font-size: 1.6rem;
  font-weight: 300;
}
.contact .contact-form .container .privacy .wrapper .privacy-box .privacy-scroll p {
  margin-bottom: 32px;
}
.contact .contact-form .container .privacy .wrapper .privacy-box .privacy-scroll ul {
  margin-bottom: 32px;
}
.contact .contact-form .container .privacy .privacy-check {
  text-align: center;
}
.contact .contact-form .container .privacy .privacy-check .privacy-label {
  cursor: pointer;
}
.contact .contact-form .form-submit {
  text-align: center;
}
.contact .contact-form .form-submit .c-btn {
  font-size: 1.4rem;
  color: #fff;
  background-color: #0C3256;
  padding: 12px 40px;
}
.contact .contact-form .form-submit .wpcf7-spinner,
.contact .contact-form .form-submit span {
  display: none;
}/*# sourceMappingURL=style.css.map */