@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  transition: font-size 0.2s ease-in-out;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* PC: 769px以上 */
@media (min-width: 769px) {
  html {
    /* 1920pxで1rem = 10pxになるように計算 */
    font-size: 0.5208333333vw;
  }
}
/* SP: 768px以下 */
@media (max-width: 768px) {
  html {
    /* 390pxで1rem = 10pxになるように計算 */
    font-size: 2.3255813953vw;
  }
}
@font-face {
  font-family: "Sukhumvit Set Bold";
  src: url(../fonts/sukhumvit-set/SukhumvitSet-Bold.ttf);
}
@font-face {
  font-family: "Sukhumvit Set Light";
  src: url(../fonts/sukhumvit-set/SukhumvitSet-Light.ttf);
}
@font-face {
  font-family: "Sukhumvit Set Medium";
  src: url(../fonts/sukhumvit-set/SukhumvitSet-Medium.ttf);
}
@font-face {
  font-family: "Sukhumvit Set Thin";
  src: url(../fonts/sukhumvit-set/SukhumvitSet-Thin.ttf);
}
@font-face {
  font-family: "Sukhumvit Set semibold";
  src: url(../fonts/sukhumvit-set/SukhumvitSet-SemiBold.ttf);
}
@font-face {
  font-family: "Impact";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/impact/impact.woff);
}
body {
  font-size: 1.2rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* color: #333333; */
  overflow-x: hidden;
  background-color: #fff;
}

.bg_img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0.5;
}

.page {
  overflow-x: hidden;
}

.f-w3 {
  font-family: "Hiragino Kaku Gothic W3 JIS2004";
  font-weight: 300;
}

.f-w4 {
  font-family: "Hiragino Kaku Gothic W4 JIS2004";
  font-weight: 400;
}

.f-w5 {
  font-family: "Hiragino Kaku Gothic W5 JIS2004";
  font-weight: 500;
}

.f-w6 {
  font-family: "Hiragino Kaku Gothic W6 JIS2004";
  font-weight: 700;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
  /* margin: 10rem 0; */
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

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

span {
  display: inline-block;
}

li {
  list-style: none;
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .header {
    padding: 0;
  }
}
.header.sub-header .header_contain {
  background: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.header.sub-header .header_contain .header_logo .whitelogo {
  display: none;
}
.header.sub-header .header_contain .header_logo .darklogo {
  display: block;
}
.header.sub-header .header_contain .header_recruitlink a {
  color: #003f92;
  border-color: #003f92;
}
.header.sub-header .header_contain .header_nav_list li a {
  color: #003f92;
}
.header.sub-header .header_contain .header_entry {
  border-color: #003f92;
}
.header.sub-header .header_contain .header_menu span {
  background-color: #003f92;
}
.header.active .header_contain {
  box-shadow: none;
  filter: none;
  background-color: #fff;
}
.header.active .header_nav {
  opacity: 0;
  display: none;
}
.header.active .header_logo .whitelogo {
  display: none;
}
.header.active .header_logo .darklogo {
  display: block;
}
.header.active .header_recruitlink a {
  color: #003f92;
  border-color: #003f92;
}
.header_contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: 0.3s;
  border-radius: 1.3rem;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .header_contain {
    border-radius: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }
}
.header_contain.bg {
  background: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.header_contain.bg .header_logo .whitelogo {
  display: none;
}
.header_contain.bg .header_logo .darklogo {
  display: block;
}
.header_contain.bg .header_recruitlink a {
  color: #003f92;
  border-color: #003f92;
}
.header_contain.bg .header_nav_list li a {
  color: #003f92;
}
.header_contain.bg .header_entry {
  border-color: #003f92;
}
.header_contain.bg .header_menu span {
  background-color: #003f92;
}
.header_left {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .header_left {
    gap: 1rem;
    justify-content: center;
  }
}
.header_recruitlink a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.5rem;
  height: 4.4rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  font-family: "Sukhumvit Set semiBold";
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media (min-width: 769px) {
  .header_recruitlink a:hover {
    opacity: 0.8;
    color: #003f92;
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .header_recruitlink a {
    width: 11rem;
    height: 3rem;
    font-size: 1.3rem;
    border-color: #003F92;
    color: #003F92;
  }
}
.header_logo {
  max-width: 32rem;
  width: 100%;
}
@media (max-width: 768px) {
  .header_logo {
    max-width: 22rem;
  }
}
.header_logo a {
  display: block;
}
.header_logo .whitelogo {
  display: block;
}
@media (max-width: 768px) {
  .header_logo .whitelogo {
    display: none;
  }
}
.header_logo .darklogo {
  display: none;
}
@media (max-width: 768px) {
  .header_logo .darklogo {
    display: block;
  }
}
.header_right {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  position: relative;
  z-index: 100;
}
.header_nav {
  position: relative;
  z-index: 10;
  margin-top: 0.7rem;
}
@media (max-width: 768px) {
  .header_nav {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    padding: 10em 2rem;
    transition: 0.3s;
  }
  .header_nav.open {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
}
.header_nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
}
@media (max-width: 768px) {
  .header_nav_list {
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.header_nav_list li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media (min-width: 769px) {
  .header_nav_list li a:hover {
    color: #003f92;
  }
}
@media (max-width: 768px) {
  .header_nav_list li a {
    color: #003f92;
    align-items: flex-start;
  }
}
.header_nav_list li a .en {
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "Sukhumvit Set Light";
}
.header_entry {
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  border-radius: 3rem;
  background: transparent;
  border: 0.1rem solid #fff;
  padding: 0.5rem 0.7rem;
  padding-right: 2.5rem;
}
@media (max-width: 768px) {
  .header_entry {
    border: none;
    padding: 0;
  }
}
.header_entry.active {
  border-color: #003F92;
}
.header_entry_link {
  font-family: "Sukhumvit Set semibold";
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  color: #fff;
  width: 15.5rem;
  height: 5rem;
  border-radius: 2.4rem;
  background: #003f92;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .header_entry_link {
    display: none;
  }
}
.header_entry_link span {
  margin-top: 0.5rem;
}
.header_entry_link img {
  width: 12rem;
}
.header_menu {
  position: relative;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.9rem;
}
.header_menu span {
  width: 3rem;
  border-radius: 0.2rem;
  height: 0.3rem;
  background-color: #fff;
  transition: 0.1s;
}
@media (max-width: 768px) {
  .header_menu span {
    background-color: #003f92;
  }
}
.header_menu.change span:first-child {
  transform: rotate(-45deg) translate(-0.9rem, 0.8rem);
  background-color: #003F92;
}
.header_menu.change span:nth-child(2) {
  opacity: 0;
}
.header_menu.change span:nth-child(3) {
  transform: rotate(45deg) translate(-0.9rem, -0.8rem);
  background-color: #003F92;
}
.header_menunav {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  overflow-y: auto;
  background-color: rgba(23, 23, 23, 0.8);
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_menunav {
    background-color: #fff;
  }
}
.header_menunav.open {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.header_menunav_bg {
  background-image: url(../img/common/menu-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 50rem;
}
@media (max-width: 768px) {
  .header_menunav_bg {
    padding-bottom: 0;
    background: #fff;
    background-image: none;
  }
}
.header_menunav_inner {
  max-width: 145rem;
  width: 100%;
  margin: auto;
  padding-top: 20rem;
}
@media (max-width: 768px) {
  .header_menunav_inner {
    max-width: 32rem;
    padding-top: 13rem;
  }
}
.header_menunav_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3.5rem 5.5rem;
}
@media (max-width: 768px) {
  .header_menunav_list {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
.header_menunav_list li a {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding-bottom: 2rem;
  position: relative;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: -0.06em;
  text-align: left;
  color: #161616;
  border-bottom: 2px solid #cbcbcb;
  transition: 0.3s;
}
.header_menunav_list li a.current {
  color: #003F92;
  border-color: #003F92;
}
.header_menunav_list li a.current::before {
  background-color: #003F92;
}
.header_menunav_list li a.current::after {
  border-color: #fff;
}
@media (max-width: 768px) {
  .header_menunav_list li a {
    padding-bottom: 1rem;
    font-size: 1.8rem;
    gap: 2rem;
  }
}
@media (min-width: 769px) {
  .header_menunav_list li a:hover {
    color: #003F92;
    border-color: #003F92;
  }
  .header_menunav_list li a:hover::before {
    background-color: #003F92;
  }
  .header_menunav_list li a:hover::after {
    border-color: #fff;
  }
}
.header_menunav_list li a::before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0.3rem solid #003f92;
  background-color: #fff;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_menunav_list li a::before {
    width: 3rem;
    height: 3rem;
    border-width: 0.2rem;
  }
}
.header_menunav_list li a::after {
  content: "";
  position: absolute;
  left: 1.8rem;
  top: 2rem;
  transform: rotate(-45deg);
  width: 2rem;
  height: 2rem;
  border-bottom: 0.3rem solid #003F92;
  border-right: 0.3rem solid #003F92;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_menunav_list li a::after {
    width: 0.9rem;
    height: 0.9rem;
    border-width: 0.2rem;
    left: 0.9rem;
    top: 1.1rem;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.t-fv {
  position: relative;
}
.t-fv_img img {
  max-height: 1079px;
  width: 100%;
  height: initial;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .t-fv_img img {
    height: 50rem;
  }
}
.t-fv_img video {
  max-height: 1079px;
  width: 100%;
  height: initial;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .t-fv_img video {
    height: 90vw;
  }
}
.t-fv_scrolldown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3.5rem;
}
@media (max-width: 768px) {
  .t-fv_scrolldown {
    display: none;
    bottom: 2rem;
  }
}
.t-fv_scrolldown a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .t-fv_scrolldown a:hover {
    opacity: 0.6;
  }
}
.t-fv_scrolldown a .txt {
  font-family: "Sukhumvit Set semibold";
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  position: relative;
}
.t-fv_scrolldown a .txt::after {
  display: block;
  content: "";
  margin: 0 auto;
  margin-top: 1rem;
  width: 0.2rem;
  height: 14.5rem;
  background-color: #fff;
  animation: scroll 2s infinite;
}
@media (max-width: 768px) {
  .t-fv_scrolldown a .txt::after {
    width: 0.1rem;
    height: 8rem;
  }
}
.t-fv_scrolldown a .arrow {
  width: 5.2rem;
  height: 5.2rem;
  border: 0.2rem solid #fff;
  border-radius: 100%;
  margin-top: -1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .t-fv_scrolldown a .arrow {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: -1rem;
  }
}
.t-fv_scrolldown a .arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-left: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .t-fv_scrolldown a .arrow::after {
    width: 1rem;
    height: 1rem;
    border-width: 0.1rem;
  }
}
.t-fv_content {
  position: absolute;
  bottom: 0;
  left: -1.4rem;
  bottom: -1.6rem;
}
@media (max-width: 768px) {
  .t-fv_content {
    left: -0.5rem;
    bottom: -0.6rem;
  }
}
.t-fv_content h1 {
  font-weight: 700;
  font-size: 14rem;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .t-fv_content h1 {
    font-size: 6rem;
  }
}
.t-fv_content h1 .txt01 {
  writing-mode: vertical-lr;
  letter-spacing: -0.1em;
}

.secafter::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100rem;
  z-index: -1;
  background-image: url(../img/common/sec-after.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  background-color: #003F92;
}
@media (max-width: 768px) {
  .secafter::after {
    height: 15.1rem;
  }
}

.secbefore::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 86rem;
  z-index: -1;
  background-image: url(../img/common/sec-before.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
@media (max-width: 768px) {
  .secbefore::before {
    height: 16.1rem;
  }
}

.p-secbody {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-left: 12rem;
  gap: 10rem;
}
@media (max-width: 768px) {
  .p-secbody {
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    padding: 0 2rem;
  }
}

.p-sechead p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: left;
  color: #003f92;
  writing-mode: vertical-lr;
}
@media (max-width: 768px) {
  .p-sechead p {
    writing-mode: initial;
    font-size: 1.4rem;
  }
}

.p-secbox {
  width: 100%;
  max-width: 100%;
}

.p-sectitle h2 {
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: -0.08em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-sectitle h2 {
    font-size: 3rem;
  }
}
.p-sectitle p.en {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.5em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-sectitle p.en {
    font-size: 1.5rem;
  }
}

.p-seclargetxt {
  font-weight: 700;
  display: inline-block;
  font-size: 6rem;
  letter-spacing: -0.06em;
  text-align: left;
  color: #fff;
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .p-seclargetxt {
    margin-top: 3rem;
    font-size: 1.6rem;
    padding: 1rem;
  }
}

.p-sectxt {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: left;
  color: #161616;
  margin-top: 13rem;
}
@media (max-width: 768px) {
  .p-sectxt {
    font-size: 1.6rem;
    margin-top: 5rem;
    line-height: 1.7;
  }
}

.morelinks {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 7rem;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .morelinks {
    margin-right: 0;
  }
}
.morelinks_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Sukhumvit Set semibold";
  font-size: 2.7rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #003f92;
  line-height: 1;
}
@media (max-width: 768px) {
  .morelinks_item {
    font-size: 1.6rem;
  }
}
.morelinks_item img {
  max-width: 30rem;
  margin-top: -1rem;
}
@media (max-width: 768px) {
  .morelinks_item img {
    max-width: 20rem;
    margin-top: 0;
  }
}
.morelinks_item:nth-child(1) {
  margin-right: 5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .morelinks_item:nth-child(1) {
    margin-right: 3rem;
  }
}

.seclogo {
  max-width: 51rem;
  width: 100%;
  position: absolute;
  top: -11rem;
  left: -5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .seclogo {
    max-width: 20rem;
    max-width: 15rem;
    top: 0;
  }
}
.secinner {
  position: relative;
  z-index: 3;
}

.t-sec01 {
  z-index: 2;
  margin-top: 23rem;
  padding: 17.5rem 15rem 55rem;
  background-color: #003f92;
}
@media (max-width: 768px) {
  .t-sec01 {
    margin-top: 10rem;
    padding: 8rem 2rem 15rem;
  }
}
.t-sec01_title {
  position: absolute;
  top: -13.4rem;
  left: -1.1rem;
  font-weight: 700;
  font-size: 12rem;
  letter-spacing: -0.1em;
  line-height: 12rem;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .t-sec01_title {
    font-size: 4rem;
    line-height: 5rem;
    top: -5rem;
    left: 0;
  }
}
.t-sec01_title .txt01 {
  color: #161616;
  letter-spacing: -0.11em;
}
.t-sec01_txt {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 6rem;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .t-sec01_txt {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.t-sec01 .largelogo {
  position: absolute;
  z-index: 3;
  top: -48rem;
  right: -30rem;
  max-width: 100rem;
}
@media (max-width: 768px) {
  .t-sec01 .largelogo {
    max-width: 15rem;
    top: -10rem;
    right: -5rem;
  }
}

.t-sec02 {
  padding-top: 0.8rem;
  position: relative;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.t-sec02_imgs {
  position: relative;
  width: 100%;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .t-sec02_imgs {
    margin-top: 3rem;
  }
}
.t-sec02_imgs .img01 {
  position: absolute;
  right: 0;
  top: -25rem;
  width: 87rem;
}
@media (max-width: 768px) {
  .t-sec02_imgs .img01 {
    position: initial;
    width: 35rem;
    margin: auto;
    margin-right: 0;
    top: unset;
  }
}
.t-sec02_imgs .img02 {
  width: 72rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .t-sec02_imgs .img02 {
    width: 25rem;
    margin-top: 1rem;
  }
}
.t-sec02_imgs .img03 {
  position: absolute;
  left: 59rem;
  top: 46rem;
  width: 58rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .t-sec02_imgs .img03 {
    width: 18rem;
    margin: auto;
    margin-right: 0;
    margin-top: -2rem;
    position: initial;
  }
}
.t-sec02 .morelinks {
  margin-top: 20rem;
}
@media (max-width: 768px) {
  .t-sec02 .morelinks {
    margin-top: 3rem;
  }
}

.t-sec03 {
  padding: 76rem 0rem 68rem;
  margin-top: -20rem;
}
@media (max-width: 768px) {
  .t-sec03 {
    margin-top: 0;
    padding: 16rem 0rem 15rem;
  }
}
.t-sec03 .seclogo {
  left: 0;
}
.t-sec03 .p-sectxt {
  margin-top: 11rem;
}
.t-sec03_imgs {
  position: relative;
  width: 100%;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .t-sec03_imgs {
    margin-top: 3rem;
  }
}
.t-sec03_imgs .img01 {
  position: absolute;
  right: 0;
  top: -15rem;
  width: 94rem;
}
@media (max-width: 768px) {
  .t-sec03_imgs .img01 {
    width: 30rem;
    position: initial;
    margin: auto;
    margin-right: 0;
  }
}
.t-sec03_imgs .img02 {
  width: 85rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .t-sec03_imgs .img02 {
    margin-top: 1rem;
    width: 30rem;
    position: initial;
  }
}
.t-sec03 .secinner {
  background: #003f92;
}
.t-sec03 .p-sechead p {
  color: #fff;
}
.t-sec03 .p-sectitle h2 {
  color: #fff;
}
.t-sec03 .p-sectitle p.en {
  color: #fff;
}
.t-sec03 .p-sectxt {
  color: #fff;
}
.t-sec03 .morelinks {
  margin-top: -21rem;
}
@media (max-width: 768px) {
  .t-sec03 .morelinks {
    margin-top: 3rem;
  }
}
.t-sec03 .morelinks_item {
  color: #fff;
}

.t-sec04 {
  position: relative;
  z-index: 4;
}
@media (max-width: 768px) {
  .t-sec04 {
    padding: 1rem 0 0rem;
  }
}
.t-sec04 .morelinks {
  margin-top: 18rem;
  margin-right: 12rem;
}
@media (max-width: 768px) {
  .t-sec04 .morelinks {
    margin-top: 3rem;
    margin-right: 3rem;
    max-width: 100%;
  }
}
.t-sec04 .p-sectxt {
  margin-top: 9rem;
}
@media (max-width: 768px) {
  .t-sec04 .p-sectxt {
    margin-top: 5rem;
  }
}
.t-sec04 .p-secbody {
  max-width: calc(100% - 12rem);
}
@media (max-width: 768px) {
  .t-sec04 .p-secbody {
    max-width: 100%;
  }
}

.t-sec05 {
  padding: 75rem 0rem 0rem;
  margin-top: -20rem;
}
@media (max-width: 768px) {
  .t-sec05 {
    margin-top: 0;
    padding: 15rem 0 0;
  }
}
.t-sec05 .seclogo {
  left: 0;
}
.t-sec05 .secinner {
  background: #003f92;
  padding-bottom: 25rem;
}
@media (max-width: 768px) {
  .t-sec05 .secinner {
    padding-bottom: 15rem;
  }
}
.t-sec05 .p-sechead p {
  color: #fff;
}
.t-sec05 .p-sectitle h2 {
  color: #fff;
}
.t-sec05 .p-sectitle p.en {
  color: #fff;
}
.t-sec05 .p-sectxt {
  margin-top: 15rem;
  color: #fff;
}
@media (max-width: 768px) {
  .t-sec05 .p-sectxt {
    margin-top: 8rem;
  }
}
.t-sec05 .recruitlink {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 120rem;
  width: 100%;
  margin: auto;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .t-sec05 .recruitlink {
    margin-top: 3rem;
    max-width: 100%;
    padding: 0 2rem;
  }
}
.t-sec05 .recruitlink_item {
  position: relative;
}
@media (min-width: 769px) {
  .t-sec05 .recruitlink_item:hover .recruitlink_item_bg img {
    transform: scale(1.05);
  }
}
.t-sec05 .recruitlink_item_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  width: 100%;
}
@media (max-width: 768px) {
  .t-sec05 .recruitlink_item_content {
    gap: 2rem;
  }
}
.t-sec05 .recruitlink_item_content img {
  max-width: 24rem;
}
@media (max-width: 768px) {
  .t-sec05 .recruitlink_item_content img {
    max-width: 8rem;
  }
}
.t-sec05 .recruitlink_item_content .txt {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .t-sec05 .recruitlink_item_content .txt {
    font-size: 1.6rem;
  }
}
.t-sec05 .recruitlink_item_bg {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
}
.t-sec05 .recruitlink_item_bg img {
  transition: 0.5s;
  border-radius: 1.1rem;
}
@media (max-width: 768px) {
  .t-sec05 .recruitlink_item_bg img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 12rem;
  }
}

.p-sechead.bottomtxt {
  opacity: 1;
  position: absolute;
  z-index: 4;
  bottom: -49rem;
  letter-spacing: 0.3em;
  right: 10rem;
}
@media (max-width: 768px) {
  .p-sechead.bottomtxt {
    display: none;
  }
}
.p-sechead.bottomtxt p {
  color: #fff;
}

.t-sec06 {
  position: relative;
  background: #003F92;
  margin-top: -3rem;
}
.t-sec06 .p-sectitle h2 {
  color: #fff;
}
.t-sec06 .p-sectitle p.en {
  color: #fff;
}
.t-sec06 .seclogo {
  left: 0;
}
.t-sec06_box {
  max-width: 120rem;
  width: 100%;
  margin: auto;
}
@media (max-width: 768px) {
  .t-sec06_box {
    max-width: 100%;
    padding: 0 2rem;
  }
}
.t-sec06_bottomtxt {
  margin-top: 3rem;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-align: right;
  color: #fff;
}
@media (max-width: 768px) {
  .t-sec06_bottomtxt {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 2rem;
  }
}

.p-interview {
  position: relative;
}
.p-interview_box {
  position: relative;
  margin-top: 4.5rem;
}
.p-interview_slider {
  position: relative;
  margin-top: 9.5rem;
  margin-left: -7rem;
}
@media (max-width: 768px) {
  .p-interview_slider {
    margin-left: -1rem;
  }
}
.p-interview_slider .slick-list {
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .p-interview_slider {
    margin-top: 3rem;
  }
}
.p-interview_slider .slick-slide {
  margin: 0 3rem;
  height: auto;
}
@media (max-width: 768px) {
  .p-interview_slider .slick-slide {
    padding: 1rem 0;
    margin: 0 1rem;
  }
}
.p-interview_slider .slick-track {
  display: flex;
  align-items: stretch;
}
.p-interview_slider .slick-prev {
  position: absolute;
  bottom: -5rem;
  right: 3rem;
  width: 8.5rem;
  height: 8.5rem;
  top: unset;
  left: unset;
  z-index: 6;
}
@media (max-width: 768px) {
  .p-interview_slider .slick-prev {
    width: 4rem;
    height: 4rem;
    bottom: -2rem;
    right: 8rem;
  }
}
.p-interview_slider .slick-prev::before {
  position: absolute;
  content: "";
  width: 8.5rem;
  height: 8.5rem;
  background-image: url(../img/common/slick-prev.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-interview_slider .slick-prev::before {
    width: 4rem;
    height: 4rem;
  }
}
.p-interview_slider .slick-next {
  position: absolute;
  bottom: -5rem;
  right: 3rem;
  width: 8.5rem;
  height: 8.5rem;
  top: unset;
  left: unset;
  z-index: 6;
}
@media (max-width: 768px) {
  .p-interview_slider .slick-next {
    width: 4rem;
    height: 4rem;
    bottom: -2rem;
    right: 3rem;
  }
}
.p-interview_slider .slick-next::before {
  position: absolute;
  content: "";
  width: 8.5rem;
  height: 8.5rem;
  background-image: url(../img/common/slick-next.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-interview_slider .slick-next::before {
    width: 4rem;
    height: 4rem;
  }
}
.p-interview_box {
  position: relative;
  margin-top: 9.5rem;
  margin-left: -7rem;
}
@media (max-width: 768px) {
  .p-interview_box {
    margin-left: -1rem;
  }
}
.p-interview_item {
  position: relative;
}
.p-interview_item .num {
  top: -2.5rem;
  left: 1rem;
  z-index: 2;
  position: absolute;
  font-family: Impact;
  font-weight: 300;
  font-size: 10rem;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-interview_item .num {
    top: -1rem;
    font-size: 5rem;
  }
}
.p-interview_item_img {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.p-interview_item_img img {
  transition: 0.5s;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview_item_title {
  position: absolute;
  right: 3.5rem;
  top: -1.5rem;
  background: #003f92;
  padding: 4rem 2.5rem;
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .p-interview_item_title {
    right: 2rem;
    font-size: 1.6rem;
    padding: 2rem 1rem;
  }
}
.p-interview_item_category {
  position: absolute;
  bottom: 5rem;
  right: -1rem;
  background-color: #fff;
  padding: 1rem 4rem;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-align: right;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-interview_item_category {
    bottom: 2rem;
    right: -0.5rem;
    font-size: 1.4rem;
    padding: 1rem;
  }
}
.p-interview_body {
  border-radius: 1.5rem;
  border: 0.2rem solid #003f92;
  padding: 6rem 3rem;
}
@media (max-width: 768px) {
  .p-interview_body {
    padding: 3rem 2rem;
  }
}
.p-interview_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5rem;
}
@media (max-width: 768px) {
  .p-interview_grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}

.p-interviewsec {
  position: relative;
  padding: 7rem 5rem 7rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-interviewsec {
    padding: 3rem 2rem;
  }
}
.p-interviewsec_title {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .p-interviewsec_title {
    margin-bottom: 4rem;
  }
}
.p-interviewsec_title .jp {
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.06em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-interviewsec_title .jp {
    font-size: 2.6rem;
  }
}
.p-interviewsec_title .en {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.4em;
  text-align: left;
  color: #003f92;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .p-interviewsec_title .en {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
}
.p-interviewsec .p-interview_item .num {
  font-size: 7.3rem;
  top: -2rem;
}
@media (max-width: 768px) {
  .p-interviewsec .p-interview_item .num {
    font-size: 3rem;
    top: -1rem;
  }
}
.p-interviewsec .p-interview_item_title {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-interviewsec .p-interview_item_title {
    font-size: 1.6rem;
    top: -1.5rem;
  }
}
.p-interviewsec .morelinks {
  margin-top: 5rem;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  .p-interviewsec .morelinks {
    margin-top: 2rem;
    margin-right: 1rem;
  }
}

.p-faqbox {
  max-width: 120rem;
  width: 100%;
  margin: auto;
  margin-top: -22em;
}
@media (max-width: 768px) {
  .p-faqbox {
    max-width: 100%;
    margin-top: 3rem;
  }
}
.p-faqbox_item {
  margin-bottom: 4.6rem;
}
@media (max-width: 768px) {
  .p-faqbox_item {
    margin-bottom: 2rem;
  }
}
.p-faqbox_item:last-child {
  margin-bottom: 0;
}
.p-faqbox_item .question {
  padding: 2.5rem 3.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9019607843);
  color: #303030;
}
@media (max-width: 768px) {
  .p-faqbox_item .question {
    padding: 1rem;
  }
}
.p-faqbox_item .question .txt {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: left;
  color: #303030;
  text-indent: -2em;
  padding-left: 2em;
}
@media (max-width: 768px) {
  .p-faqbox_item .question .txt {
    font-size: 1.6rem;
  }
}
.p-faqbox_item .question .smalltxt {
  text-align: right;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-faqbox_item .question .smalltxt {
    font-size: 1.4rem;
  }
}
.p-faqbox_item .answer {
  margin-top: 1.7rem;
  padding: 2.5rem 3.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9019607843);
  color: #303030;
}
@media (max-width: 768px) {
  .p-faqbox_item .answer {
    margin-top: 1rem;
    padding: 1rem;
  }
}
.p-faqbox_item .answer .txt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: left;
  color: #303030;
  text-indent: -2em;
  padding-left: 2em;
}
@media (max-width: 768px) {
  .p-faqbox_item .answer .txt {
    font-size: 1.6rem;
  }
}
.p-faqbox_item .answer .smalltxt {
  text-align: right;
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  margin-right: 15.7rem;
}
@media (max-width: 768px) {
  .p-faqbox_item .answer .smalltxt {
    margin-right: 0;
    font-size: 1.4rem;
  }
}

.footer {
  position: relative;
  z-index: 2;
  padding-top: 60rem;
  background: #003F92;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 25rem;
  }
}
.footer_contain {
  background-color: #fff;
  padding: 10rem 17rem 21rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer_contain {
    align-items: center;
    padding: 13rem 2rem 5rem;
  }
}
.footer_img {
  position: absolute;
  z-index: 1;
  top: 3rem;
  left: -9rem;
  max-width: 99rem;
  width: 100%;
}
@media (max-width: 768px) {
  .footer_img {
    max-width: 25rem;
    top: 5rem;
    left: -1rem;
  }
}
.footer_logo {
  max-width: 74rem;
  width: 100%;
}
@media (max-width: 768px) {
  .footer_logo {
    max-width: 30rem;
  }
}
.footer_logo .recruittxt {
  margin-left: 13rem;
  font-family: "Sukhumvit Set bold";
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .footer_logo .recruittxt {
    font-size: 1.4rem;
    margin-left: 5.2rem;
  }
}
.footer_nav {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .footer_nav {
    margin-top: 3rem;
  }
}
.footer_nav_list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3.1rem;
}
@media (max-width: 768px) {
  .footer_nav_list {
    align-items: center;
    gap: 1rem;
  }
}
.footer_nav_list li a {
  font-family: "Sukhumvit Set bold";
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  color: #003f92;
  position: relative;
}
@media (max-width: 768px) {
  .footer_nav_list li a {
    font-size: 1.8rem;
  }
}
.footer_nav_list li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0.1rem;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  background-color: #003F92;
}
@media (min-width: 769px) {
  .footer_nav_list li a:hover::after {
    width: 100%;
  }
}
.footer .copyright {
  font-family: "Sukhumvit Set bold";
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #303030;
  padding-bottom: 5rem;
  background: #fff;
}
@media (max-width: 768px) {
  .footer .copyright {
    padding: 2rem 0;
    font-size: 1rem;
  }
}

.p-subpagefv {
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .p-subpagefv_bg img {
    height: 55vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-subpagefv .pagetitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .p-subpagefv .pagetitle {
    top: 60%;
  }
}
.p-subpagefv .pagetitle .en {
  font-family: Impact;
  font-size: 10rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .p-subpagefv .pagetitle .en {
    font-size: 5rem;
  }
}
.p-subpagefv .pagetitle .jp {
  position: relative;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .p-subpagefv .pagetitle .jp {
    font-size: 1.6rem;
  }
}
.p-subpagefv .pagetitle .jp::before {
  position: absolute;
  content: "";
  width: 100rem;
  transform: translateX(-100%);
  left: -6rem;
  top: 50%;
  height: 0.2rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-subpagefv .pagetitle .jp::before {
    left: -3rem;
    height: 0.1rem;
  }
}
.p-subpagefv .pagetitle .jp::after {
  position: absolute;
  content: "";
  width: 100rem;
  transform: translateX(100%);
  right: -6rem;
  top: 50%;
  height: 0.2rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-subpagefv .pagetitle .jp::after {
    right: -3rem;
    height: 0.1rem;
  }
}

.breadcrumb {
  position: relative;
  z-index: 5;
  padding: 2rem 3rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 1.5rem 2rem;
  }
}
.breadcrumb_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumb_item {
  position: relative;
}
.breadcrumb_item a::after {
  display: inline-block;
  content: "-";
  margin: 0 1rem;
  color: #003f92;
}
.breadcrumb_item,
.breadcrumb a {
  position: relative;
  font-family: "Sukhumvit Set Medium";
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .breadcrumb_item,
  .breadcrumb a {
    font-size: 1.2rem;
  }
}

.p-worksec {
  position: relative;
  background: #003f92;
  padding: 8rem 0 0rem;
}
.p-worksec .seclogo {
  top: -2rem;
  left: 0;
}
.p-worksec .p-sechead p {
  color: #fff;
}
.p-worksec .p-sectitle h2 {
  color: #fff;
}
.p-worksec .p-sectitle p.en {
  color: #fff;
}
.p-worksec .p-sectxt {
  color: #fff;
  margin-top: 7rem;
}

.p-worksecbox {
  max-width: 147rem;
  margin: 0;
  width: 100%;
  margin-top: 12rem;
}
@media (max-width: 768px) {
  .p-worksecbox {
    max-width: 100%;
    margin-top: 5rem;
  }
}
.p-worksecbox .tabhead {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-worksecbox .tabhead {
    gap: 1rem;
  }
}
.p-worksecbox .tabbtn {
  flex: 1;
  padding: 2rem 0;
  border: none;
  outline: none;
  border-radius: 1.5rem 1.5rem 0px 0px;
  background: #cbcbcb;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #003f92;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .p-worksecbox .tabbtn {
    padding: 2rem 1rem;
    font-size: 1.6rem;
    border-radius: 1rem 1rem 0 0;
  }
}
.p-worksecbox .tabbtn:hover {
  background: #fff;
}
.p-worksecbox .tabbtn.active {
  padding: 2.5rem 0;
  background: #fff;
}
.p-worksecbox .tabbody {
  background-color: #fff;
  padding: 12rem 6rem 5rem;
}
@media (max-width: 768px) {
  .p-worksecbox .tabbody {
    padding: 3rem 2rem;
  }
}
.p-worksecbox_title .jp {
  font-weight: 700;
  font-size: 5rem;
  letter-spacing: 0.06em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-worksecbox_title .jp {
    font-size: 3rem;
  }
}
.p-worksecbox_title .en {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.4em;
  text-align: left;
  color: #003f92;
  margin-top: 0.1rem;
}
@media (max-width: 768px) {
  .p-worksecbox_title .en {
    font-size: 1.6rem;
  }
}
.p-worksecbox #work02 {
  display: none;
}
.p-worksecbox_largetxt {
  display: inline-block;
  margin-top: 4rem;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .p-worksecbox_largetxt {
    margin-top: 3rem;
    padding: 1rem 0;
    font-size: 2.2rem;
  }
}
.p-worksecbox_main {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .p-worksecbox_main {
    margin-top: 3rem;
  }
}
.p-worksecbox_main .flexitem {
  margin-bottom: 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem {
    margin-bottom: 3rem;
    gap: 2rem;
  }
}
.p-worksecbox_main .flexitem:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem {
    flex-direction: column;
  }
}
.p-worksecbox_main .flexitem:nth-child(2) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem:nth-child(2) {
    flex-direction: column;
  }
}
.p-worksecbox_main .flexitem_img {
  max-width: 62rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem_img {
    max-width: 100%;
  }
}
.p-worksecbox_main .flexitem_content {
  max-width: 65.8rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem_content {
    max-width: 100%;
  }
}
.p-worksecbox_main .flexitem_content .title {
  margin-bottom: 3.5rem;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 5rem;
  text-align: left;
  color: #484848;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem_content .title {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
.p-worksecbox_main .flexitem_content .txt {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  line-height: 4rem;
  text-align: left;
  color: #161616;
}
@media (max-width: 768px) {
  .p-worksecbox_main .flexitem_content .txt {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

.l-interview {
  position: relative;
  z-index: 7;
  margin-top: 5rem;
}
.l-interview_item {
  margin-bottom: 8rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  gap: 8rem;
}
@media (max-width: 768px) {
  .l-interview_item {
    padding: 0 2rem;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }
}
.l-interview_item:nth-child(2) {
  flex-direction: row;
}
@media (max-width: 768px) {
  .l-interview_item:nth-child(2) {
    flex-direction: column;
  }
}
.l-interview_item:nth-child(2) .l-interview_item_head {
  left: unset;
  right: 0;
}
.l-interview_item:nth-child(2) .l-interview_item_head .num {
  text-align: right;
}
.l-interview_item:nth-child(2) .l-interview_item_txt {
  text-align: right;
  padding-left: 4rem;
  padding-right: 5rem;
}
@media (max-width: 768px) {
  .l-interview_item:nth-child(2) .l-interview_item_txt {
    padding: 1rem 2rem;
  }
}
.l-interview_item:nth-child(2) .l-interview_item_txt::after {
  left: unset;
  right: 0;
}
.l-interview_item:nth-child(2) .l-interview_item_name {
  right: unset;
  left: 0;
}
.l-interview_item:nth-child(2) .l-interview_item_category {
  right: unset;
  left: 1.5rem;
  align-items: flex-start;
}
.l-interview_item:last-child {
  margin-bottom: 0;
}
.l-interview_item_img {
  max-width: 142rem;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .l-interview_item_img {
    max-width: 100%;
  }
}
.l-interview_item_link {
  max-width: 41rem;
  width: 100%;
}
@media (max-width: 768px) {
  .l-interview_item_link {
    max-width: 25rem;
  }
}
.l-interview_item_link a {
  font-weight: 700;
  font-size: 2.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #003f92;
}
@media (max-width: 768px) {
  .l-interview_item_link a {
    font-size: 1.6rem;
  }
}
.l-interview_item_link a span {
  display: block;
  margin-bottom: -1rem;
}
.l-interview_item_link a img {
  max-width: 41rem;
  width: 100%;
}
@media (max-width: 768px) {
  .l-interview_item_link a img {
    max-width: 30rem;
  }
}
.l-interview_item_head {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .l-interview_item_head {
    position: initial;
    width: 100%;
  }
}
.l-interview_item_head .num {
  font-family: "Impact";
  font-weight: 400;
  font-size: 10rem;
  line-height: 0.8;
  letter-spacing: 0.06em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .l-interview_item_head .num {
    font-size: 5rem;
  }
}
.l-interview_item_name {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-family: "Sukhumvit Set bold";
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: right;
  color: #fff;
  z-index: 3;
}
@media (max-width: 768px) {
  .l-interview_item_name {
    font-size: 3rem;
    bottom: 0rem;
    right: 0rem;
  }
}
.l-interview_item_txt {
  padding: 3rem 4rem 3rem 10rem;
  background: #003f92;
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.2em;
  line-height: 5rem;
  text-align: left;
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .l-interview_item_txt {
    padding: 1rem 2rem;
    font-size: 1.6rem;
    line-height: 2.6rem;
    width: 100%;
  }
}
.l-interview_item_txt::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  margin-top: 1rem;
  width: 80rem;
  height: 0.3rem;
  background-color: #003F92;
}
@media (max-width: 768px) {
  .l-interview_item_txt::after {
    width: 80%;
    height: 0.1rem;
  }
}
.l-interview_item_category {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: 1.5rem;
  bottom: 4rem;
  gap: 1.5rem;
  z-index: 3;
}
@media (max-width: 768px) {
  .l-interview_item_category {
    position: initial;
    gap: 1rem;
    position: initial;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.l-interview_item_category li {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  background-color: #fff;
  padding: 2rem 5rem;
  text-align: right;
  color: #003f92;
}
@media (max-width: 768px) {
  .l-interview_item_category li {
    background-color: #003F92;
    color: #fff;
    font-size: 1.4rem;
    padding: 1rem;
  }
}

.l-interviewbottom {
  padding: 75rem 0 0;
  margin-top: -15rem;
  position: relative;
  z-index: 4;
}
@media (max-width: 768px) {
  .l-interviewbottom {
    margin-top: 0;
    padding: 15rem 0 0;
  }
}
.l-interviewbottom_inner {
  background-color: #003F92;
  padding-top: 20rem;
}
@media (max-width: 768px) {
  .l-interviewbottom_inner {
    padding-top: 5rem;
  }
}
.l-interviewbottom_link {
  margin: auto;
  text-align: center;
}
.l-interviewbottom_link a {
  max-width: 75rem;
  width: 100%;
  border-radius: 5rem;
  background: #fff;
  border: 1px solid #003f92;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #003f92;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s;
}
@media (min-width: 769px) {
  .l-interviewbottom_link a:hover::after {
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .l-interviewbottom_link a {
    max-width: 35rem;
    font-size: 1.6rem;
    padding: 2rem;
  }
}
.l-interviewbottom_link a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  border-radius: 50%;
  border: 0.2rem solid #003f92;
  width: 7rem;
  height: 7rem;
}
@media (max-width: 768px) {
  .l-interviewbottom_link a::before {
    width: 4rem;
    height: 4rem;
  }
}
.l-interviewbottom_link a::after {
  position: absolute;
  content: "";
  width: 10rem;
  height: 7.5rem;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/common/link03.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .l-interviewbottom_link a::after {
    width: 5rem;
    height: 3rem;
    right: 2.5rem;
  }
}

.p-vision .seclogo {
  max-width: 119rem;
  width: 100%;
  left: -4.5rem;
  top: 0;
}
@media (max-width: 768px) {
  .p-vision .seclogo {
    max-width: 20rem;
    left: 0;
  }
}
.p-vision .secinner {
  max-width: 144rem;
  width: 100%;
  margin: auto;
}
@media (max-width: 768px) {
  .p-vision .secinner {
    max-width: 100%;
  }
}
.p-vision .p-sechead {
  position: absolute;
  top: 0rem;
  left: -12rem;
}
@media (max-width: 768px) {
  .p-vision .p-sechead {
    position: initial;
    margin-bottom: 2rem;
  }
}

.p-overview {
  position: relative;
  padding: 14rem 0;
}
@media (max-width: 768px) {
  .p-overview {
    padding: 5rem 2rem;
  }
}
.p-overview_box {
  margin-top: 12rem;
}
@media (max-width: 768px) {
  .p-overview_box {
    margin-top: 5rem;
  }
}
.p-overview_itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 4.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .p-overview_itembox {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.p-overview_itembox:last-child {
  margin-bottom: 0;
}
.p-overview_itembox:nth-child(2n) {
  flex-direction: row;
}
@media (max-width: 768px) {
  .p-overview_itembox:nth-child(2n) {
    flex-direction: column;
  }
}
.p-overview_itembox:nth-child(2n) .p-overview_itembox_title {
  justify-content: flex-end;
}
.p-overview_itembox:first-child p {
  width: 105%;
}
.p-overview_itembox_content {
  max-width: 63rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-overview_itembox_content {
    max-width: 100%;
    padding: 0;
  }
}
.p-overview_itembox_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .p-overview_itembox_title {
    font-size: 2rem;
  }
}
.p-overview_itembox_txt {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  line-height: 4rem;
  text-align: left;
  color: #161616;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .p-overview_itembox_txt {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
.p-overview_itembox_img {
  max-width: 75.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-overview_itembox_img {
    max-width: 100%;
  }
}
.p-overview .p-sechead p {
  color: #003F92;
}

.p-management {
  padding: 12.8rem 0 0;
}
@media (max-width: 768px) {
  .p-management {
    padding: 5rem 2rem 0;
  }
}
.p-management_box {
  margin-top: 16rem;
  margin-left: 8rem;
  font-size: 2.5rem;
  letter-spacing: -0.06em;
  line-height: 7rem;
  text-align: left;
  color: #003f92;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-management_box {
    margin-left: 0;
    margin-top: 5rem;
    font-size: 1.6rem;
    line-height: 3rem;
    text-indent: -1.5em;
    padding-left: 1.5em;
  }
}
.p-management .p-sechead p {
  color: #003F92;
}

.p-company {
  position: relative;
  z-index: 5;
  padding: 61rem 0 0rem;
}
@media (max-width: 768px) {
  .p-company {
    padding: 20rem 0 0;
  }
}
.p-company.secbefore::before {
  height: 74rem;
}
@media (max-width: 768px) {
  .p-company.secbefore::before {
    height: 20rem;
  }
}
@media (max-width: 768px) {
  .p-company .p-secbody {
    padding: 0;
  }
}
.p-company .secinner {
  background-color: #003F92;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .p-company .secinner {
    padding: 0 2rem;
  }
}
.p-company .seclogo {
  top: -13rem;
  left: 0;
}
@media (max-width: 768px) {
  .p-company .seclogo {
    max-width: 20rem;
    left: 0;
    top: -4rem;
  }
}
.p-company .p-sechead p {
  color: #fff;
}
.p-company .p-sectitle .en,
.p-company .p-sectitle .jp {
  color: #fff;
}
.p-company_body {
  position: relative;
  z-index: 5;
  max-width: 147rem;
  width: 100%;
  margin: auto;
  margin-top: -24rem;
}
@media (max-width: 768px) {
  .p-company_body {
    margin-top: 5rem;
  }
}
.p-company_body .inner {
  background-color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
@media (max-width: 768px) {
  .p-company_body .inner {
    padding: 2rem;
  }
}
.p-company_box {
  position: relative;
  border-left: 0.3rem solid #003f92;
  border-top: 0.3rem solid #003f92;
  padding: 1.5rem;
  padding-bottom: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .p-company_box {
    border-width: 0.1rem;
    padding: 2rem 1rem;
    padding-bottom: 0;
    padding-right: 0;
  }
}
.p-company_box_head {
  position: absolute;
  top: -2rem;
  left: 1.3rem;
  padding: 0 2rem;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-company_box_head {
    font-size: 1.6rem;
    top: -1.5rem;
  }
}
.p-company_box_itemrow {
  display: flex;
  align-items: stretch;
  border-bottom: 0.3rem solid #fff;
}
@media (max-width: 768px) {
  .p-company_box_itemrow {
    flex-direction: column;
  }
}
.p-company_box_itemrow .head {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  min-width: 37rem;
  background: #003F92;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3.5rem;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .p-company_box_itemrow .head {
    font-size: 1.6rem;
    min-width: auto;
    line-height: 1.5;
    padding: 1rem;
  }
}
.p-company_box_itemrow .content {
  padding: 2.2rem 4rem;
  background: #f5f9ff;
  width: 100%;
  font-family: "Hiragino Sans";
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3.5rem;
  text-align: left;
  color: #161616;
  margin-left: 0;
}
@media (max-width: 768px) {
  .p-company_box_itemrow .content {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.p-recruit {
  padding: 2rem;
}
.p-recruit_inner {
  max-width: 137rem;
  width: 100%;
  margin: auto;
}
@media (max-width: 768px) {
  .p-recruit_inner {
    max-width: 100%;
  }
}
.p-recruit_body {
  border-radius: 1.5rem;
  background: transparent;
  border: 0.2rem solid #003f92;
  padding: 8rem 7.5rem 15rem;
}
@media (max-width: 768px) {
  .p-recruit_body {
    padding: 4rem 1rem;
  }
}
.p-recruit_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .p-recruit_title {
    margin-bottom: 5rem;
  }
}
.p-recruit_title .jp {
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.06em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-recruit_title .jp {
    font-size: 2.53rem;
  }
}
.p-recruit_title .en {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.4em;
  text-align: left;
  color: #003f92;
  margin-top: 0.1rem;
}
@media (max-width: 768px) {
  .p-recruit_title .en {
    font-size: 1.6rem;
  }
}
.p-recruit_box {
  position: relative;
}
.p-recruit_itembox {
  margin-bottom: 10rem;
  position: relative;
  border-left: 0.3rem solid #003f92;
  border-top: 0.3rem solid #003f92;
  padding: 1.5rem;
  padding-bottom: 0;
  padding-right: 0;
}
.p-recruit_itembox:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-recruit_itembox {
    border-width: 0.1rem;
    padding: 2rem 1rem;
    padding-bottom: 0;
    padding-right: 0;
  }
}
.p-recruit_itembox_head {
  position: absolute;
  top: -2rem;
  left: 1.3rem;
  padding: 0 2rem;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-recruit_itembox_head {
    font-size: 1.6rem;
    top: -1.5rem;
  }
}
.p-recruit_itembox_row {
  display: flex;
  align-items: stretch;
  border-bottom: 0.3rem solid #fff;
}
@media (max-width: 768px) {
  .p-recruit_itembox_row {
    flex-direction: column;
  }
}
.p-recruit_itembox_row .head {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  min-width: 37rem;
  background: #003F92;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3.5rem;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .p-recruit_itembox_row .head {
    font-size: 1.6rem;
    min-width: auto;
    line-height: 1.5;
    padding: 1rem;
  }
}
.p-recruit_itembox_row .content {
  margin-left: 0.5rem;
  padding: 2.2rem 5.5rem;
  background: #f5f9ff;
  width: 100%;
  font-family: "Hiragino Sans";
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3.5rem;
  text-align: left;
  color: #161616;
}
@media (max-width: 768px) {
  .p-recruit_itembox_row .content {
    margin-left: 0;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.p-recruit_itembox_content {
  padding: 2rem;
}
@media (max-width: 768px) {
  .p-recruit_itembox_content {
    padding: 1rem;
  }
}
.p-recruit_itembox_content .txt {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  color: #484848;
}
@media (max-width: 768px) {
  .p-recruit_itembox_content .txt {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.p-recruit_btbox {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .p-recruit_btbox {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }
}
.p-recruit_btbox_img {
  display: block;
  position: relative;
  max-width: 54rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit_btbox_img:hover .bgimg img {
    transform: scale(1.1);
  }
}
.p-recruit_btbox_img .bgimg {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
.p-recruit_btbox_img .bgimg img {
  transition: 0.5s;
}
@media (max-width: 768px) {
  .p-recruit_btbox_img {
    max-width: 100%;
  }
}
.p-recruit_btbox_img .linkbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .p-recruit_btbox_img .linkbox {
    flex-direction: column;
  }
}
.p-recruit_btbox_img .linkbox img {
  max-width: 15rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-recruit_btbox_img .linkbox img {
    max-width: 10rem;
  }
}
.p-recruit_btbox_img .linkbox .txt {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .p-recruit_btbox_img .linkbox .txt {
    font-size: 1.6rem;
  }
}
.p-recruit_btbox_content {
  max-width: 60rem;
  width: 100%;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-recruit_btbox_content {
    max-width: 100%;
  }
}
.p-recruit_btbox_content .title {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-recruit_btbox_content .title {
    font-size: 1.6rem;
  }
}
.p-recruit_btbox_content .txt {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 4rem;
  text-align: left;
  color: #484848;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .p-recruit_btbox_content .txt {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}

body:has(.p-recruit) .footer {
  padding-top: 38rem;
}
@media (max-width: 768px) {
  body:has(.p-recruit) .footer {
    padding-top: 17rem;
  }
}
body:has(.p-recruit) .footer_img {
  top: -18rem;
}
@media (max-width: 768px) {
  body:has(.p-recruit) .footer_img {
    top: -3rem;
  }
}

.p-recruitbottom {
  padding-top: 50rem;
}
@media (max-width: 768px) {
  .p-recruitbottom {
    padding-top: 20rem;
  }
}
.p-recruitbottom.secbefore::before {
  height: 57rem;
}
@media (max-width: 768px) {
  .p-recruitbottom.secbefore::before {
    height: 20rem;
  }
}

.p-viewdetailmain {
  position: relative;
}
@media (max-width: 768px) {
  .p-viewdetailmain_img img {
    height: 40rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}
.p-viewdetailmain_txt {
  position: absolute;
  left: 5rem;
  top: 47%;
  transform: translateY(-50%);
  font-size: 6rem;
  letter-spacing: 0.2em;
  line-height: 7rem;
  text-align: left;
  color: #fff;
  text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .p-viewdetailmain_txt {
    font-size: 3rem;
    line-height: 3.5rem;
    left: 2rem;
  }
}
.p-viewdetailmain_name {
  position: absolute;
  bottom: -3rem;
  left: 0;
  font-family: "Sukhumvit Set bold";
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: right;
  color: #fff;
  z-index: 3;
}
@media (max-width: 768px) {
  .p-viewdetailmain_name {
    left: 1rem;
    font-size: 4rem;
    bottom: -1rem;
  }
}
.p-viewdetailmain_category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  position: absolute;
  left: 2.5rem;
  bottom: 4rem;
  z-index: 3;
}
@media (max-width: 768px) {
  .p-viewdetailmain_category {
    gap: 1rem;
    left: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-viewdetailmain_category li {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  background-color: #fff;
  padding: 1.5rem 5rem;
  text-align: right;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-viewdetailmain_category li {
    font-size: 1.4rem;
    padding: 1rem;
  }
}

.p-interdetail {
  position: relative;
}
.p-interdetail_head {
  position: absolute;
  top: -13rem;
  right: 5.5rem;
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-align: left;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .p-interdetail_head {
    display: none;
  }
}
.p-interdetail_head .--base {
  color: #003f92;
  z-index: 1;
}
.p-interdetail_head .--invert {
  position: absolute;
  right: 0;
  color: #fff;
  z-index: 2;
  clip-path: inset(0% 0% 67% 0%);
}
@media (max-width: 768px) {
  .p-interdetail_head .--invert {
    display: none;
  }
}
.p-interdetail::before {
  position: absolute;
  content: "";
  width: 0.3rem;
  height: 150%;
  top: 0;
  right: 10rem;
  background-color: #003F92;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-interdetail::before {
    right: 2rem;
    width: 0.1rem;
    display: none;
  }
}
@media (max-width: 768px) {
  .p-interdetail {
    padding: 0 2rem;
  }
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(1) .p-interdetail_item_content {
  max-width: 72rem;
}
@media (max-width: 768px) {
  .p-interdetail.interdetail02 .p-interdetail_item:nth-child(1) .p-interdetail_item_content {
    max-width: 100%;
  }
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(1) .p-interdetail_item_title.--invert {
  clip-path: inset(0 93% 0 0%);
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(1) .p-interdetail_item_txt01.--invert {
  clip-path: inset(0 90% 0 0%);
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(4) .p-interdetail_item_title {
  letter-spacing: 0.03em;
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(4) .p-interdetail_item_title.--invert {
  clip-path: inset(0 0% 0 87%);
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(5) .p-interdetail_item_title {
  letter-spacing: 0.08em;
}
.p-interdetail.interdetail02 .p-interdetail_item:nth-child(5) .p-interdetail_item_title.--invert {
  clip-path: inset(0 76% 0 0%);
}
.p-interdetail.interdetail02 .p-interdetail_item03 {
  margin-bottom: 18rem;
}
@media (max-width: 768px) {
  .p-interdetail.interdetail02 .p-interdetail_item03 {
    margin-bottom: 5rem !important;
  }
}
.p-interdetail.interdetail02 .p-interdetail_item03 .p-interdetail_item {
  margin-bottom: 0 !important;
  align-items: flex-start;
}
.p-interdetail.interdetail02 .p-interdetail_item03 .p-interdetail_item_bttxt {
  margin-top: 0.5rem;
  margin-left: 10rem;
  margin-right: 18rem;
}
@media (max-width: 768px) {
  .p-interdetail.interdetail02 .p-interdetail_item03 .p-interdetail_item_bttxt {
    margin: 0;
  }
}
.p-interdetail.interdetail02 .p-interdetail_item03 .p-interdetail_item_title {
  position: initial;
  margin-top: 2rem;
}
.p-interdetail.interdetail02 .p-interdetail_item03 .p-interdetail_item_txt01 {
  position: initial;
  margin: 4rem auto;
}
.p-interdetail_box {
  margin: 12rem auto 0;
}
@media (max-width: 768px) {
  .p-interdetail_box {
    margin: 5rem auto 0;
  }
}
.p-interdetail_item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18rem;
  gap: 10rem;
}
.p-interdetail_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-interdetail_item {
    margin-bottom: 5rem !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
}
.p-interdetail_item:nth-child(2n-1) {
  margin-right: 18rem;
}
@media (max-width: 768px) {
  .p-interdetail_item:nth-child(2n-1) {
    margin-right: 0;
  }
}
.p-interdetail_item:nth-child(2n) {
  flex-direction: row-reverse;
  margin-left: 10rem;
}
@media (max-width: 768px) {
  .p-interdetail_item:nth-child(2n) {
    flex-direction: column;
    margin-left: 0;
  }
}
.p-interdetail_item:nth-child(2n) .p-interdetail_item_content {
  max-width: 79rem;
}
@media (max-width: 768px) {
  .p-interdetail_item:nth-child(2n) .p-interdetail_item_content {
    max-width: 100%;
  }
}
.p-interdetail_item:nth-child(2n) .p-interdetail_item_txt01 {
  left: 0;
  right: unset;
  text-align: left;
}
.p-interdetail_item:nth-child(2n) .p-interdetail_item_title {
  text-align: left;
}
.p-interdetail_item:nth-child(2n) .p-interdetail_item_title {
  left: 0;
  right: unset;
}
.p-interdetail_item:nth-child(2) .p-interdetail_item_title {
  top: -34rem;
}
.p-interdetail_item:nth-child(2) .p-interdetail_item_txt01 {
  top: -18.3rem;
}
.p-interdetail_item:nth-child(3) .p-interdetail_item_title, .p-interdetail_item:nth-child(4) .p-interdetail_item_title, .p-interdetail_item:nth-child(5) .p-interdetail_item_title {
  top: -30rem;
}
.p-interdetail_item:nth-child(3) .p-interdetail_item_txt01, .p-interdetail_item:nth-child(4) .p-interdetail_item_txt01, .p-interdetail_item:nth-child(5) .p-interdetail_item_txt01 {
  top: -14rem;
}
.p-interdetail_item:nth-child(6), .p-interdetail_item:nth-child(7) {
  align-items: flex-start;
}
.p-interdetail_item:nth-child(6) .p-interdetail_item_title, .p-interdetail_item:nth-child(7) .p-interdetail_item_title {
  position: initial;
  top: -30rem;
  right: -2rem;
}
.p-interdetail_item:nth-child(6) .p-interdetail_item_txt01, .p-interdetail_item:nth-child(7) .p-interdetail_item_txt01 {
  margin: 4rem auto;
  top: -14rem;
  position: initial;
}
.p-interdetail_item:nth-child(8) .p-interdetail_item_img {
  max-width: 85rem;
}
.p-interdetail_item:nth-child(8) .p-interdetail_item_title {
  top: -32rem;
}
.p-interdetail_item:nth-child(8) .p-interdetail_item_title.--invert {
  clip-path: inset(0 0% 0 88%);
}
.p-interdetail_item:nth-child(8) .p-interdetail_item_txt01 {
  top: -16rem;
}
.p-interdetail_item_img {
  max-width: 89rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-interdetail_item_img {
    max-width: 100%;
  }
}
.p-interdetail_item_content {
  max-width: 70rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-interdetail_item_content {
    max-width: 100%;
  }
}
.p-interdetail_item .titlewrap {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.p-interdetail_item_title {
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  color: #003f92;
  position: absolute;
  top: -26rem;
  right: 0;
}
@media (max-width: 768px) {
  .p-interdetail_item_title {
    font-size: 2.4rem;
    position: initial;
    white-space: wrap;
    text-align: left;
  }
}
.p-interdetail_item_title.--base {
  color: #003f92;
  z-index: 1;
}
.p-interdetail_item_title.--invert {
  position: absolute;
  right: 0;
  color: #fff;
  z-index: 2;
  clip-path: inset(0 87% 0 0);
}
@media (max-width: 768px) {
  .p-interdetail_item_title.--invert {
    display: none;
  }
}
.p-interdetail_item .txtwrap {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.p-interdetail_item_txt01 {
  white-space: nowrap;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.07em;
  line-height: 5rem;
  text-align: right;
  color: #484848;
  position: absolute;
  top: -9rem;
  right: 0;
}
@media (max-width: 768px) {
  .p-interdetail_item_txt01 {
    white-space: wrap;
    margin: 2rem auto !important;
    position: initial;
    font-size: 1.6rem;
    line-height: 3rem;
    text-align: left;
  }
}
.p-interdetail_item_txt01.--base {
  color: #484848;
  z-index: 1;
}
.p-interdetail_item_txt01.--invert {
  color: #fff;
  z-index: 2;
  clip-path: inset(0 96% 0 0);
}
@media (max-width: 768px) {
  .p-interdetail_item_txt01.--invert {
    display: none;
  }
}
.p-interdetail_item_txt02 {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  line-height: 4rem;
  text-align: left;
  color: #161616;
}
@media (max-width: 768px) {
  .p-interdetail_item_txt02 {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}

.p-schedule {
  padding: 75rem 0 0;
  margin-top: -5rem;
}
@media (max-width: 768px) {
  .p-schedule {
    margin-top: 0;
    padding: 15rem 0 0;
  }
}
.p-schedule_inner {
  background-color: #003F92;
  padding: 15rem 10rem 5rem;
}
@media (max-width: 768px) {
  .p-schedule_inner {
    padding: 5rem 2rem;
  }
}
.p-schedule_title .en {
  font-family: "Sukhumvit Set bold";
  font-size: 15rem;
  line-height: 1;
  text-align: left;
  color: #fff;
  margin-left: -3rem;
}
@media (max-width: 768px) {
  .p-schedule_title .en {
    margin-left: 0;
    font-size: 4rem;
  }
}
.p-schedule_title .jp {
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .p-schedule_title .jp {
    font-size: 1.6rem;
  }
}
.p-schedule_box {
  margin-top: 10rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-schedule_box {
    flex-direction: column;
    margin-top: 5rem;
  }
}
.p-schedule_img {
  max-width: 76rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-schedule_img {
    max-width: 100%;
  }
}
.p-schedule_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .p-schedule_content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-schedule_head {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .p-schedule_head {
    margin-top: 0;
  }
}
.p-schedule_head .title {
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: 0.2em;
  text-align: right;
  color: #fff;
}
@media (max-width: 768px) {
  .p-schedule_head .title {
    text-align: left;
    font-size: 3rem;
  }
}
.p-schedule_head .txt {
  margin-top: 15rem;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  line-height: 8rem;
  text-align: right;
  color: #fff;
}
@media (max-width: 768px) {
  .p-schedule_head .txt {
    margin-top: 3rem;
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
  }
}
.p-schedule_link {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 75rem;
}
@media (max-width: 768px) {
  .p-schedule_link {
    margin-top: 5rem;
    width: 100%;
  }
}
.p-schedule_link a.entrylink {
  background: #fff;
  justify-content: flex-end;
  color: #003f92;
}
.p-schedule_link a.listlink {
  background: #303030;
  justify-content: flex-start;
  color: #fff;
}
.p-schedule_link a {
  border-radius: 5rem;
  display: flex;
  align-items: center;
  gap: 7rem;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .p-schedule_link a {
    font-size: 1.6rem;
    padding: 1rem;
  }
}
.p-schedule_link a img {
  width: 12rem;
}
@media (max-width: 768px) {
  .p-schedule_link a img {
    width: 6rem;
  }
}
.p-schedule .p-sechead.bottomtxt {
  right: 6rem;
}

.p-entry {
  padding: 2rem;
}
.p-entry_inner {
  max-width: 137rem;
  width: 100%;
  margin: auto;
}
@media (max-width: 768px) {
  .p-entry_inner {
    max-width: 100%;
  }
}
.p-entry_body {
  border-radius: 1.5rem;
  background: transparent;
  border: 0.2rem solid #003f92;
  padding: 8rem 25rem 15rem;
}
@media (max-width: 768px) {
  .p-entry_body {
    padding: 4rem 1rem;
  }
}
.p-entry_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .p-entry_title {
    margin-bottom: 5rem;
    gap: 0.5rem;
  }
}
.p-entry_title .jp {
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: 0.06em;
  text-align: left;
  color: #003f92;
}
@media (max-width: 768px) {
  .p-entry_title .jp {
    font-size: 2.53rem;
  }
}
.p-entry_title .en {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.4em;
  text-align: left;
  color: #003f92;
  margin-top: 0.1rem;
}
@media (max-width: 768px) {
  .p-entry_title .en {
    font-size: 1.6rem;
  }
}
.p-entry_form {
  position: relative;
  padding-bottom: 6rem;
  border-bottom: 1px solid #bababa;
}
@media (max-width: 768px) {
  .p-entry_form {
    padding-bottom: 4rem;
  }
}
.p-entry_item {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .p-entry_item {
    margin-bottom: 2rem;
  }
}
.p-entry_item_head {
  font-weight: 400;
  font-size: 3rem;
  text-align: left;
  color: #404040;
  position: relative;
}
@media (max-width: 768px) {
  .p-entry_item_head {
    font-size: 1.8rem;
    display: inline-block;
  }
}
.p-entry_item_head.required::before {
  position: absolute;
  content: "必須";
  top: 50%;
  left: -11rem;
  transform: translateY(-50%);
  width: 8rem;
  height: 3rem;
  border-radius: 1.5rem;
  background: #a40000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .p-entry_item_head.required::before {
    left: calc(100% + 2rem);
    font-size: 1.2rem;
    width: 4rem;
    height: 2rem;
  }
}
.p-entry_item_inputbox {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 1rem;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .p-entry_item_inputbox {
    gap: 1rem;
  }
}
.p-entry_item_inputbox:last-child {
  margin-bottom: 0;
}
.p-entry_item_inputbox .inputitem {
  width: 100%;
}
.p-entry_item_inputbox .inputitem_txt {
  font-weight: 300;
  font-size: 2rem;
  text-align: left;
  color: #404040;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .p-entry_item_inputbox .inputitem_txt {
    font-size: 1.4rem;
  }
}
.p-entry_item_inputbox .inputitem input,
.p-entry_item_inputbox .inputitem select,
.p-entry_item_inputbox .inputitem textarea {
  width: 100%;
  height: 6rem;
  padding: 1rem 2rem;
  border-radius: 0.6rem;
  background: #fff;
  border: 1px solid #bababa;
  font-weight: 300;
  font-size: 2rem;
  text-align: left;
  color: #404040;
}
@media (max-width: 768px) {
  .p-entry_item_inputbox .inputitem input,
  .p-entry_item_inputbox .inputitem select,
  .p-entry_item_inputbox .inputitem textarea {
    height: 4rem;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
  }
}
.p-entry_item_inputbox .inputitem input::-moz-placeholder, .p-entry_item_inputbox .inputitem select::-moz-placeholder, .p-entry_item_inputbox .inputitem textarea::-moz-placeholder {
  color: #bababa;
}
.p-entry_item_inputbox .inputitem input::placeholder,
.p-entry_item_inputbox .inputitem select::placeholder,
.p-entry_item_inputbox .inputitem textarea::placeholder {
  color: #bababa;
}
.p-entry_item_inputbox .inputitem textarea {
  height: 27rem;
}
@media (max-width: 768px) {
  .p-entry_item_inputbox .inputitem textarea {
    height: 13rem;
  }
}
.p-entry_item_inputbox .inputitem .address01 {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-entry_item_inputbox .inputitem .address01 {
    font-size: 1.4rem;
    gap: 0.5rem;
  }
}
.p-entry_item_inputbox .inputitem .address01 input:nth-child(1) {
  max-width: 16rem;
}
.p-entry_item_inputbox .inputitem .address01 input:nth-child(2) {
  max-width: 23rem;
}
.p-entry_item_inputbox .telbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .p-entry_item_inputbox .telbox {
    gap: 0.5rem;
  }
}
.p-entry_item_inputbox .telbox span {
  max-width: 20rem;
}
.p-entry_item_inputbox .telbox input {
  max-width: 20rem;
}
.p-entry_item_inputbox .selectbox {
  position: relative;
}
.p-entry_item_inputbox .selectbox::after {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 1rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-image: url(../img/common/select-icon.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
.p-entry_submit {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .p-entry_submit {
    margin-top: 5rem;
  }
}
.p-entry_submit input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border-radius: 5rem;
}
@media (max-width: 768px) {
  .p-entry_submit_btn {
    width: 80%;
  }
}
.p-entry_submit_box {
  position: relative;
  z-index: 4;
  width: 54rem;
  height: 10rem;
  border-radius: 5rem;
  background: #003f92;
  border: 1px solid #003f92;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .p-entry_submit_box {
    width: 90%;
    height: 6rem;
  }
}
.p-entry_submit_box .txt {
  font-weight: 600;
  font-size: 3.3rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .p-entry_submit_box .txt {
    font-size: 1.6rem;
  }
}
.p-entry_submit_box img {
  max-width: 38rem;
  margin-top: -1.5rem;
}
@media (max-width: 768px) {
  .p-entry_submit_box img {
    max-width: 20rem;
    margin-top: -0.5rem;
  }
}
.p-entry .seclogo {
  z-index: -1;
  top: unset;
  left: unset;
  bottom: -8rem;
  right: -23rem;
  max-width: 120rem;
}
@media (max-width: 768px) {
  .p-entry .seclogo {
    bottom: 0rem;
    right: -10rem;
    max-width: 40rem;
  }
}

body:has(.p-entry) .footer {
  padding-top: 50rem;
}
@media (max-width: 768px) {
  body:has(.p-entry) .footer {
    padding-top: 20rem;
  }
}
body:has(.p-entry) .footer_img {
  top: -3rem;
}
@media (max-width: 768px) {
  body:has(.p-entry) .footer_img {
    top: 0;
  }
}

.back_line {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: transparent;
  background: #003f92;
  font-size: 6rem;
  font-weight: 700;
  text-align: left;
  color: #fff;
  padding: 2.3rem 5rem;
}
@media (max-width: 768px) {
  .back_line {
    padding: 1rem 2rem;
    font-size: 2.5rem;
  }
}

.back_line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 0;
}

/* ワイプで出す白背景 */
.back_line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #003F92;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
}

/* 文字（1文字ずつ） */
.back_line .char {
  position: relative;
  z-index: 2;
  display: inline-block;
  opacity: 0;
  transform: translateY(12%);
  color: #FFF;
}

.back_line.animate::before {
  animation: wipeBg 0.7s ease forwards;
}

.back_line.animate .char {
  animation: charIn 0.45s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes wipeBg {
  to {
    transform: scaleX(1);
  }
}
@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btnlink01 {
  transition: 0.3s;
}
.btnlink01 img {
  transition: 0.3s;
}
@media (min-width: 769px) {
  .btnlink01:hover img {
    transition: 0.3s;
    transform: translateX(2rem);
  }
}

.btnlink02 {
  transition: 0.3s;
}
.btnlink02 img {
  transition: 0.3s;
}
@media (min-width: 769px) {
  .btnlink02:hover img {
    transition: 0.3s;
    transform: translateX(-2rem);
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

html {
  scroll-padding-top: 8rem;
}

.p-interview_item img {
  transition: all 0.3s;
}

.p-interview_item img:hover {
  scale: 1.05;
  transition: all 0.3s;
}

.l-interview_item {
  justify-content: space-between;
}/*# sourceMappingURL=style.css.map */

/* サンクスページ */

.p-entry-thanks {
	padding: 120px 20px;
}

.p-entry-thanks_inner {
	max-width: 900px;
	margin: 0 auto;
}

.p-entry-thanks_body {
	text-align: center;
}

.p-entry-thanks_title {
	margin-bottom: 40px;
}

.p-entry-thanks_title .jp {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
}

.p-entry-thanks_title .en {
	margin-top: 8px;
	font-size: 14px;
	letter-spacing: 0.12em;
}

.p-entry-thanks_message .lead {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 24px;
}

.p-entry-thanks_message .text {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 16px;
}

.p-entry-thanks_btn {
	margin-top: 40px;
}

.p-entry-thanks_btn .c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 16px 24px;
	text-decoration: none;
	border: 1px solid #003f92;
  color: #003f92;
}

@media (max-width: 768px) {
  .p-entry-thanks {
    padding: 50px 20px;
  }
}