@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  font-weight: 400;
  color: #333;
  font-size: 1.5rem;
  /*
  &.newgraduate .career-tag {
    display: none !important;
  }

  &.career .new-tag {
    display: none !important;
  }
  */
}

#bg {
  position: relative;
  z-index: 0;
}

img[src$=".svg"],
img {
  width: 100%;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.en {
  font-family: "Inter", sans-serif;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInup 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.fade.active {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.6s;
}

.inview.clip.delay02 {
  transition-delay: 0.9s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

._spShowImportant {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .inviewwrap {
    position: static;
  }
  ._pcShowImportant {
    display: none !important;
  }
  ._spShowImportant {
    display: block !important;
  }
}
.zoom {
  display: block;
  position: relative;
  overflow: hidden;
}
.zoom img {
  transform-origin: center;
  transition: all 1.2s ease;
}

.zoom:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
main {
  position: relative;
  padding-top: 90px;
  margin: auto;
  max-width: 1800px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}
main .inner {
  max-width: calc(1310px + 6vw);
  padding: 0 3vw;
  margin: auto;
}
main .btn {
  position: relative;
}
main .btn::after {
  content: url(/assets/image/common/link-arrow.svg);
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 1px;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
main .btn[target=_blank]::after {
  content: url(/assets/image/common/blank.svg);
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 1px;
  width: 15px;
  height: 12px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
main a.txtlink {
  position: relative;
  color: #FF0000;
  text-decoration: underline;
}
main a.txtlink[target=_blank] {
  padding-right: 25px;
  display: inline-block;
}
main a.txtlink[target=_blank]::after {
  content: url("/assets/image/common/blank.svg");
  display: block;
  position: absolute;
  right: 5px;
  top: 52%;
  transform: translateY(-50%);
}

/* HEADER
================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 3000;
}

.header-layout-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .header-layout-main {
    height: 60px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  margin: 1rem 0 0 1rem;
  padding: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 10px;
    flex-direction: column;
    gap: 7px;
    padding-bottom: 5px;
    width: 112px;
  }
}
.header-logo h1 a {
  line-height: 1;
}
.header-logo .images {
  width: 165px;
  margin: 0 0 0 0;
}
@media screen and (max-width: 767px) {
  .header-logo .images {
    width: 112px;
  }
}
.header-logo p.txtlink {
  line-height: 1;
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header-logo p.txtlink {
    margin-top: 5px;
    padding: 0;
    font-size: 3vw;
  }
}

nav.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

#pc_gnav {
  margin: 0 0 0 2vw;
  width: 100%;
}
@media screen and (max-width: 1160px) {
  #pc_gnav {
    display: none;
  }
}
#pc_gnav ul {
  display: flex;
  width: 100%;
  justify-content: center;
}
#pc_gnav ul li {
  margin: 0 1vw 0 0;
}
#pc_gnav ul li a {
  font-size: clamp(13px, 1vw, 1.2rem);
  font-feature-settings: "palt";
}
#pc_gnav ul li a:hover {
  color: #FF0000;
}
#pc_gnav ul li a[target=_blank] p::after {
  content: "";
  background: url(/assets/image/common/blank.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}

#header-insta {
  display: block;
  padding: 20px 0;
  margin-right: 18px;
  width: 35px;
  line-height: 0;
  text-align: right;
}
#header-insta img {
  width: 35px;
}

#tags {
  display: block;
  margin: 0 0 0 auto;
}
#tags .btn {
  font-size: clamp(13px, 1vw, 1rem);
  background: #444341;
  display: block;
  padding: 0 1em;
  max-width: 180px;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 90px;
}
#tags .btn.active, #tags .btn:hover {
  background: #000;
}
@media screen and (max-width: 767px) {
  #tags .btn {
    height: 60px;
    padding: 0 10px;
    line-height: 1.3;
    font-size: 3vw;
    width: 65px;
  }
}

#entry_mypage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 1vw 0 18px;
}
#entry_mypage p {
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
}
#entry_mypage .btn {
  display: flex;
  justify-content: space-between;
  margin: 5px 0 0 0;
  width: 100%;
}
#entry_mypage .btn a {
  width: 49%;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  display: block;
  background: #FF0000;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
#entry_mypage .btn a p {
  padding: 0;
}
#entry_mypage .btn a:hover {
  background: #be0030;
}
@media screen and (max-width: 767px) {
  #entry_mypage {
    display: none;
  }
}

#career_entry_mypage {
  display: block;
  margin: 0 1vw 0 1vw;
  max-width: 188px;
  width: 17%;
}
#career_entry_mypage p {
  font-size: clamp(10px, 1vw, 14px);
}
#career_entry_mypage .btn {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2px;
}
#career_entry_mypage .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
  line-height: 1;
  background: #FF0000;
  transition: all 0.3s ease;
  font-size: clamp(14px, 1vw, 1.2rem);
  height: 29px;
}
#career_entry_mypage .btn a:hover {
  background: #be0030;
}
#career_entry_mypage .btn a:nth-child(2) {
  height: 28px;
}
@media screen and (max-width: 767px) {
  #career_entry_mypage {
    display: none;
  }
}

#slide-menu {
  display: none;
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9900;
}
#slide-menu .slide-menu-top {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
}
#slide-menu .slide-menu-top .logo {
  display: flex;
  align-items: center;
}
#slide-menu .slide-menu-top .logo a {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.6vw, 2.4rem);
  white-space: nowrap;
}
#slide-menu .slide-menu-top .logo a .images {
  width: 40px;
  margin: 0.5em 0 0 0;
}
#slide-menu .slide-menu-top .logo a img {
  line-height: 0;
}
#slide-menu .slide-menu-top .logo .sub {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0 1rem;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-top .logo .sub {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-top .logo {
    width: 200px;
    margin: 2px 0 0 6%;
  }
}
#slide-menu .slide-menu-top .entry-menu {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-top {
    align-items: flex-start;
  }
}
#slide-menu .slide-menu-top-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-top-menu {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #slide-menu #sp-mm-close {
    position: absolute;
    top: 7px;
    right: 9px;
  }
}
#slide-menu #sp-mm-close .sp-mm-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 0 0 1rem;
}
@media screen and (max-width: 767px) {
  #slide-menu #sp-mm-close .sp-mm-btn {
    width: 54px;
    height: 50px;
  }
}
#slide-menu #sp-mm-close .sp-mm-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
  width: 21px;
  height: 21px;
}
#slide-menu #sp-mm-close .sp-mm-btn span:before, #slide-menu #sp-mm-close .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
#slide-menu #sp-mm-close .sp-mm-btn span:before {
  background-color: #3e3e3e;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
}
#slide-menu #sp-mm-close .sp-mm-btn span:after {
  background-color: #3e3e3e;
  height: 100%;
  width: 2px;
  left: 50%;
  margin-left: -1px;
}
#slide-menu #sp-mm-close .sp-mm-btn:hover {
  background-color: #3e3e3e;
}
#slide-menu #sp-mm-close .sp-mm-btn:hover span:before {
  background-color: #fff;
}
#slide-menu #sp-mm-close .sp-mm-btn:hover span:after {
  background-color: #fff;
}
#slide-menu ul.entry-menu {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #slide-menu ul.entry-menu {
    margin-right: 0;
    width: 100%;
    margin: 3rem 0 0 0;
    justify-content: space-between;
    position: absolute;
    padding: 0 5%;
  }
}
#slide-menu ul.entry-menu li {
  width: 200px;
  margin-bottom: 10px;
  position: relative;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  #slide-menu ul.entry-menu li {
    width: 48%;
  }
}
#slide-menu ul.entry-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  text-align: center;
  border-radius: 5px;
  background-color: #FF0000;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #slide-menu ul.entry-menu li a {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem 0 0 0;
  }
}
#slide-menu ul.entry-menu li a:hover {
  opacity: 0.8;
}
#slide-menu ul.entry-menu li a.internship {
  background-color: #fff;
  color: #9A0026;
}
#slide-menu ul.entry-menu li a.internship span {
  transform: scaleX(90%);
  padding-right: 4px;
}
#slide-menu .other-site-menu {
  padding: 0 40px 0 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 3%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #slide-menu .other-site-menu {
    justify-content: flex-start;
    padding-left: 5%;
  }
}
#slide-menu .other-site-menu li {
  padding-right: 23px;
  position: relative;
}
#slide-menu .other-site-menu li::after {
  content: url("/recruit/images/blank-icon.svg");
  display: block;
  position: absolute;
  right: 0px;
  top: 52%;
  transform: translateY(-50%);
}
#slide-menu .other-site-menu li a {
  color: #3e3e3e;
}
#slide-menu .slide-menu-nav-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  padding: 5rem 5vw 0 5vw;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout {
    display: block;
    padding: 13rem 5% 50px 5%;
  }
}
#slide-menu .slide-menu-nav-layout .titles {
  border-bottom: 1px solid #eee;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .titles {
    margin: 0 0 0 0;
    position: relative;
    padding: 0 0 1rem 0;
  }
  #slide-menu .slide-menu-nav-layout .titles .icon {
    width: 14px;
    position: absolute;
    top: 0em;
    right: 5%;
  }
  #slide-menu .slide-menu-nav-layout .titles.active .icon {
    transform: rotate(45deg);
  }
}
#slide-menu .slide-menu-nav-layout .titles p.jp {
  font-weight: 500;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .titles p.jp {
    font-size: 1.6rem;
    line-height: 1;
  }
}
#slide-menu .slide-menu-nav-layout .titles p.en {
  font-size: 1rem;
  color: #555;
}
#slide-menu .slide-menu-nav-layout .people_nav_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .people_nav_flex {
    display: block;
  }
}
#slide-menu .slide-menu-nav-layout .people_nav_flex ul {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .people_nav_flex ul {
    width: 100%;
    display: block !important;
    padding: 0 2rem !important;
  }
}
#slide-menu .slide-menu-nav-layout .block {
  margin: 0 0 5rem 0;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .block {
    margin: 0 0 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .block ul {
    display: none;
    padding: 2rem 0 0 0;
    background: #FF0000;
    padding: 2rem 2rem 2rem 2rem;
  }
}
#slide-menu .slide-menu-nav-layout .block ul li {
  font-feature-settings: "palt";
}
#slide-menu .slide-menu-nav-layout .block ul li a {
  display: block;
  padding: 5px 0;
  color: #555;
}
#slide-menu .slide-menu-nav-layout .block ul li a span {
  font-size: 1.2rem;
  display: inline-block;
  line-height: 1.4;
}
#slide-menu .slide-menu-nav-layout .block ul li a p.name {
  line-height: 1.2;
}
#slide-menu .slide-menu-nav-layout .block ul li a:hover {
  color: #FF0000;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .block ul li a {
    font-size: 1.4rem;
    padding: 0.5em 0;
    color: #ffffff;
    position: relative;
  }
  #slide-menu .slide-menu-nav-layout .block ul li a::after {
    position: absolute;
    top: 50%;
    right: -0.8em;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 10px;
    content: "";
    background: url(/recruit/assets/image/common/yaji_white.svg) no-repeat;
  }
}
#slide-menu .slide-menu-nav-layout .col {
  width: 22%;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col {
    width: 100%;
  }
}
#slide-menu .slide-menu-nav-layout .col .parent-menu {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu {
    margin-bottom: 0;
  }
}
#slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title {
  position: relative;
  display: block;
  color: #3e3e3e;
  border-bottom: 1px solid #3e3e3e;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title {
    font-size: 1.6rem;
    padding: 12px 0;
    margin-bottom: 0;
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title i {
    position: absolute;
    display: block;
    width: 19px;
    height: 19px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title i::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #3e3e3e;
    top: calc(50% - 1px);
    left: 0;
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title i::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #3e3e3e;
    top: 0;
    left: calc(50% - 1px);
  }
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu.open .parent-title i {
    transform: translateY(-50%) rotate(45deg);
  }
}
#slide-menu .special {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #slide-menu .special {
    text-align: center;
  }
}

.drawer_menu,
#tagsearch {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .drawer_menu,
  #tagsearch {
    top: 60px;
    padding: 2rem 3rem;
  }
}

#tagsearch {
  background: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  #tagsearch {
    padding: 0;
  }
}
#tagsearch .in {
  height: calc(100vh - 90px);
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  #tagsearch .in {
    height: calc(100vh - 60px);
  }
}
#tagsearch .tag-header {
  max-width: calc(1310px + 6vw);
  padding: 50px 3vw;
}
@media screen and (max-width: 767px) {
  #tagsearch .tag-header {
    padding: 30px 3vw;
  }
}
#tagsearch .tag-header .en {
  font-size: clamp(5rem, 3.376rem + 2.1vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  #tagsearch .tag-header .en {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}
#tagsearch .tag-block {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #tagsearch .tag-block {
    flex-direction: column;
    padding: 3vw;
  }
  #tagsearch .tag-block .tag-header {
    position: relative;
    padding: 0;
    line-height: 1;
  }
  #tagsearch .tag-block .tag-header .oc {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  #tagsearch .tag-block .tag-header .oc::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
    top: calc(50% - 1px);
    left: 0;
  }
  #tagsearch .tag-block .tag-header .oc::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    top: 0;
    left: calc(50% - 1px);
  }
  #tagsearch .tag-block .tag-header.active .oc::after {
    transform: rotate(90deg);
  }
  #tagsearch .tag-block .tag-rows {
    display: none;
    padding-top: 20px;
  }
}
#tagsearch .tag-block .tag-menu {
  width: 30%;
  max-width: 340px;
  background-color: #E5E4DF;
  padding: 40px 24px;
}
@media screen and (max-width: 767px) {
  #tagsearch .tag-block .tag-menu {
    width: 100%;
    max-width: none;
    margin-bottom: 40px;
    padding: 20px 3vw;
  }
}
#tagsearch .tag-block .tag-menu .tag-row {
  border-bottom: 1px solid #D8D7D5;
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  #tagsearch .tag-block .tag-menu .tag-row {
    padding: 6px 0;
  }
}
#tagsearch .tag-block .tag-menu .tag-row ul li {
  display: inline-block;
}
#tagsearch .tag-block .tag-menu .tag-row ul li a {
  display: block;
  line-height: 1;
  background-color: #fff;
  border-radius: 5px;
  line-height: 1;
  font-size: 1.3rem;
  padding: 5px 10px;
  margin-right: 4px;
}
#tagsearch .tag-block .tag-menu .tag-row ul li a:hover {
  background-color: #FF0000;
  color: #fff;
}
#tagsearch .tag-block .tag-menu .tag-row ul li a.active {
  background-color: #444341;
  color: #fff;
}
#tagsearch .tag-block .tag-menu .reset {
  text-align: center;
  padding-top: 32px;
}
#tagsearch .tag-block .tag-menu .reset a {
  display: inline-block;
  width: 100%;
  max-width: 180px;
  background-color: #464646;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  line-height: 1;
}
#tagsearch .tag-block #tag-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.5%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #tagsearch .tag-block #tag-list {
    padding: 0;
  }
}
#tagsearch .tag-block #tag-list .box {
  width: 24%;
  padding: 0;
  margin-right: 1%;
  margin-bottom: 15px;
  display: block;
  transition: all 0.3s ease;
}
#tagsearch .tag-block #tag-list .box:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1160px) {
  #tagsearch .tag-block #tag-list .box {
    width: calc(50% - 10px);
  }
  #tagsearch .tag-block #tag-list .box:nth-child(2n) {
    margin-right: 0;
  }
}
#tagsearch .tag-block #tag-list .box[target=_blank] .title .jp::after {
  content: "";
  background: url(/assets/image/common/blank_white.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}
#tagsearch .tag-block #tag-list .box .image {
  line-height: 0;
  overflow: hidden;
  aspect-ratio: 313/157;
}
#tagsearch .tag-block #tag-list .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#tagsearch .tag-block #tag-list .box .title {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#tagsearch .tag-block #tag-list .box .title .cat, #tagsearch .tag-block #tag-list .box .title .jp {
  display: inline-block;
  background-color: #666;
  color: #fff;
  font-size: clamp(1rem, 0.724rem + 0.4vw, 1.3rem);
  line-height: 1;
  padding: 4px;
}
#tagsearch .tag-block #tag-list .box .title .cat {
  background-color: #ccc;
  color: #000;
}

#drawer_menu_block .entry {
  display: none;
  padding: 10px;
}
#drawer_menu_block .entry .btn {
  display: flex;
  gap: 5px;
}
#drawer_menu_block .entry .btn a {
  width: 50%;
  display: block;
  background-color: #FF0000;
  color: #fff;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
}
@media screen and (max-width: 1160px) {
  #drawer_menu_block {
    display: none;
    position: relative;
    z-index: 10000;
    padding-bottom: 40px;
    position: fixed;
    overflow-y: auto;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: #fff;
    padding-top: 40px;
  }
  #drawer_menu_block.is-open {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  #drawer_menu_block .drawer_menu {
    position: static;
    visibility: visible;
    padding: 0 5vw;
  }
  #drawer_menu_block .drawer_menu .inner {
    display: block;
    opacity: 1;
  }
  #drawer_menu_block .drawer_menu .inner .title {
    display: block;
    width: 100%;
    margin-bottom: 0 !important;
    font-size: 1.4rem;
  }
  #drawer_menu_block .drawer_menu .inner .title p.en {
    margin-right: 0;
    padding: 16px 0 0;
    line-height: 1;
  }
  #drawer_menu_block .drawer_menu .inner .title a {
    display: block;
    width: 100%;
    position: relative;
  }
  #drawer_menu_block .drawer_menu .inner .title a::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    right: 10px;
    top: 14px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
  }
  #drawer_menu_block .drawer_menu .inner .title a[target=_blank]::after {
    content: "";
    background: url(/assets/image/common/blank.svg) no-repeat center center/contain;
    display: inline-block;
    margin-left: 5px;
    line-height: 0;
    vertical-align: 0px;
    width: 14px;
    height: 10px;
  }
  #drawer_menu_block .drawer_menu .inner .boxs {
    display: block;
    border-bottom: 1px solid #999;
    padding: 0.5rem 0;
  }
  #drawer_menu_block .drawer_menu .inner .boxs li a {
    position: relative;
    padding: 1em 0;
  }
  #drawer_menu_block .drawer_menu .inner .boxs li a::after {
    content: none;
  }
  #drawer_menu_block .drawer_menu .inner .boxs li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    right: 10px;
    top: 18px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
  }
  #drawer_menu_block .drawer_menu .inner .boxs li a img {
    display: none;
  }
  #drawer_menu_block .drawer_menu .inner .boxs li a span {
    position: static;
    color: #000;
    font-size: 1.3rem;
  }
  #drawer_menu_block .drawer_menu .inner .boxs li a[target=_blank] span::after {
    content: "";
    background: url(/assets/image/common/blank.svg) no-repeat center center/contain;
    display: inline-block;
    margin-left: 5px;
    line-height: 0;
    vertical-align: 0px;
    width: 14px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  #drawer_menu_block {
    padding-top: 0px;
    top: 60px;
    height: calc(100vh - 60px);
    padding-bottom: 100px;
  }
  #drawer_menu_block.is-open {
    display: block !important;
  }
  #drawer_menu_block .entry {
    display: block;
  }
}
#drawer_menu_block .hb-only {
  display: none;
}
#drawer_menu_block.is-open .hb-only {
  display: block;
}
#drawer_menu_block.is-open .hb-only .title p.en {
  padding-bottom: 16px !important;
}
#drawer_menu_block.is-open .hb-only .title a::before {
  top: 5px;
}
#drawer_menu_block.is-open .hb-only + .hb-only .title {
  border-top: 1px solid #999;
}

.drawer_menu {
  display: block;
  visibility: hidden;
  padding: 3rem 5rem;
}
.drawer_menu .bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: #ffffff;
  max-height: 0;
  transition: all 0.5s ease;
}
.drawer_menu .inner {
  max-width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 10;
  opacity: 0;
  transition: all 0.2s ease;
  transition-delay: 0s;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .drawer_menu .inner {
    opacity: 1;
  }
}
.drawer_menu .inner .title {
  display: flex;
  align-items: baseline;
  margin: 0 0 3rem 0 !important;
  width: 150px;
  margin: 0 0 1rem 0;
}
.drawer_menu .inner .title p.en {
  font-size: 1.8rem;
  margin: 0 1em 0 0;
  letter-spacing: 0.1em;
}
.drawer_menu .inner .title p.jp {
  font-weight: 500;
  margin: 0 1rem 0 0;
}
.drawer_menu .inner .boxs {
  flex: 1;
  display: grid;
  gap: 15px;
  align-items: baseline;
  grid-template-columns: repeat(4, 1fr);
}
.drawer_menu .inner .boxs li .box {
  display: block;
  position: relative;
  line-height: 0;
}
.drawer_menu .inner .boxs li .box::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  top: 0;
  left: 0;
}
.drawer_menu .inner .boxs li .box[target=_blank] span::after {
  content: "";
  background: url(/assets/image/common/blank_white.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}
.drawer_menu .inner .boxs li .box span {
  color: #fff;
  font-size: clamp(1rem, 0.492rem + 0.7vw, 1.5rem);
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 15px;
  line-height: 1;
}
.drawer_menu.is-open {
  visibility: visible;
  z-index: 1;
}
.drawer_menu.is-open .inner {
  opacity: 1;
  transition-delay: 0.3s;
}
.drawer_menu.is-open .bg {
  height: 100%;
  max-height: 100%;
}

.drawer_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.drawer_flex.four .box {
  width: 24%;
}
.drawer_flex .image {
  position: relative;
}
.drawer_flex .image .icons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  line-height: 2;
  width: 80px;
}
.drawer_flex .image .icons p {
  display: block;
  background: #FF0000;
  color: #ffffff;
  text-align: center;
  font-size: 11px;
}
.drawer_flex .image .icons2 {
  position: absolute;
  top: 1.5em;
  right: 0;
  z-index: 30;
  line-height: 2;
  width: 80px;
}
.drawer_flex .image .icons2 p {
  display: block;
  background: #321a7b;
  color: #ffffff;
  text-align: center;
  font-size: 11px;
}
.drawer_flex.mbs .box {
  margin: 0 0 2rem 0;
}
.drawer_flex .box {
  width: 30%;
  margin: 0 0 2em 0;
  line-height: 1;
}
.drawer_flex .box .image {
  margin: 0 0 0.5em 0;
}
.drawer_flex .box:hover .txt .icon {
  background: #301BB4;
}
.drawer_flex .box:hover .image::before {
  opacity: 0.3;
}
.drawer_flex .box .txt {
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
}
.drawer_flex .box .txt.btnss {
  background: #d1d3db;
  color: #000;
  color: #ffffff;
  padding: 2rem;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.drawer_flex .box .txt.btnss:hover {
  background: #3865DB;
}
.drawer_flex .box .txt.btnss:hover p {
  color: #ffffff;
}
.drawer_flex .box .txt.btnss p {
  color: #000;
}
.drawer_flex .box .txt .icon {
  width: 30px;
  height: 20px;
  background: #000;
  border-radius: 30px;
  text-align: center;
  line-height: 1;
  margin: 0 0 0 1rem;
}
.drawer_flex .box .txt .icon img[src$=".svg"],
.drawer_flex .box .txt .icon img {
  width: 10px;
  line-height: 0;
  margin: auto;
}
.drawer_flex .box .txt .profile {
  font-size: 1.5rem;
  line-height: 1.4;
}
.drawer_flex .box .txt .arrows {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  transform-origin: center;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.drawer_flex .box .txt .arrows .bround {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #ffffff;
  transition: all 0.3s ease;
}
.drawer_flex .box .txt p {
  font-weight: 500;
  font-size: 0.9rem;
}
.drawer_flex .box .image {
  position: relative;
}
.drawer_flex .box .image::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  background: transparent linear-gradient(52deg, #938BC3 0%, #D37EBE 100%) 0% 0% no-repeat padding-box;
  opacity: 0;
  transition: all 0.3s ease;
}
.drawer_flex .box .image.bgs {
  display: block;
  height: 200px;
  background: #FF0000;
}

/* FOOTER
================================================== */
#pagetop {
  position: fixed;
  right: 5%;
  bottom: 5%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 49;
  width: 44px;
}
@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 24px;
    width: 24px;
  }
}
#pagetop:hover::after {
  animation: pagetop 0.3s ease infinite;
  animation-duration: 1s;
}

@keyframes pagetop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
.tatete {
  /* vertical-rl を基準 */
  writing-mode: vertical-rl;
  /* mixed */
  text-orientation: mixed;
  /* upright */
  text-orientation: upright;
  /* sideways */
  text-orientation: sideways;
}

.grbg {
  background: transparent linear-gradient(52deg, #938BC3 0%, #D37EBE 100%) 0% 0% no-repeat padding-box;
}

.bor {
  overflow: hidden;
}
.bor img {
  border-radius: 0 0 30px 0;
}

.bor2 {
  overflow: hidden;
}
.bor2 img {
  border-radius: 0 0 30px 30px;
}

#footer_menu {
  padding: 5rem 0 0 0;
}
#footer_menu .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 3rem 0;
}
#footer_menu .logos img {
  width: 50px;
  line-height: 0;
}
#footer_menu .logos .txt {
  font-size: 3rem;
  margin: 0 0 0.2em 0;
  font-weight: 400;
}
#footer_menu .logos p.sub {
  line-height: 1.4;
  margin: 0 2rem 0 2rem;
  color: #8B8B8B;
  font-size: 1rem;
}
#footer_menu .slide-menu-nav-layout {
  display: flex;
  justify-content: space-between;
}
#footer_menu .slide-menu-nav-layout .col {
  width: 23%;
}
#footer_menu .slide-menu-nav-layout .col .block {
  margin: 0 0 5rem 0;
}
#footer_menu .slide-menu-nav-layout .col .block .titles {
  display: flex;
  align-items: baseline;
  margin: 0 0 1rem 0;
}
#footer_menu .slide-menu-nav-layout .col .block .titles p.jp {
  font-size: 1.8rem;
}
#footer_menu .slide-menu-nav-layout .col .block .titles p.en {
  font-size: 1rem;
  margin: 0 0 0 1rem;
}
#footer_menu .slide-menu-nav-layout .col .block ul li a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-feature-settings: "palt";
  padding: 0.3rem 0;
  letter-spacing: 0.1em;
}
#footer_menu .slide-menu-nav-layout .col .block ul li a:hover {
  color: #301BB4;
}
@media screen and (max-width: 767px) {
  #footer_menu .slide-menu-nav-layout ul.indexlink {
    padding: 2rem 2rem 0 2rem;
  }
}

@media screen and (max-width: 767px) {
  .submenus {
    display: none;
  }
  .submenus ul.indexlinks {
    display: block !important;
    padding: 2rem 2rem 0 2rem !important;
  }
  .submenus .people_nav_flex ul.lasts li:last-child {
    padding: 0 0 2rem 0 !important;
  }
}

.mainoverlay {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 999;
  background: rgba(255, 0, 0, 0.5);
  position: fixed;
  display: none;
}
.mainoverlay.is-open {
  display: block;
}

#visual_header {
  position: relative;
}
#visual_header.noimg {
  min-height: 500px;
}
@media screen and (max-width: 767px) {
  #visual_header.noimg {
    min-height: 200px;
  }
  #visual_header.noimg.long {
    min-height: 300px;
  }
  #visual_header.noimg.long .title {
    top: 20%;
  }
  #visual_header.noimg .title {
    top: 35%;
  }
}
#visual_header .image {
  position: relative;
  line-height: 1;
}
#visual_header .image::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
}
#visual_header .title {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 10;
  color: #ffffff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #visual_header .title {
    text-align: center;
    right: 50%;
    width: 100%;
    transform: translateY(-50%) translateX(50%);
  }
}
#visual_header .title p.cat {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #visual_header .title p.cat {
    font-size: 1.4rem;
  }
}
#visual_header .title h1 {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  #visual_header .title h1 {
    font-size: 4vw;
    line-height: 1.5;
  }
}
#visual_header .top_name {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  color: #ffffff;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  #visual_header .top_name {
    position: static;
    text-align: center;
    margin: 2rem 0 0 0;
  }
}

.hi .image {
  overflow: hidden !important;
  line-height: 1;
}
.hi .image img {
  transition: all 0.5s ease;
  will-change: transform;
}
.hi:hover .image img {
  transform: scale(1.05);
}

.tatetes {
  writing-mode: vertical-rl;
  line-height: 1.4;
}
.tatetes span.numbers {
  text-combine-upright: all;
}
@media screen and (max-width: 767px) {
  .tatetes {
    writing-mode: horizontal-tb;
  }
}

section.recommend {
  padding: 10vw;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30px 30px 0 0;
  margin: 5rem 0;
}
section.recommend .title {
  text-align: center;
  margin: 0 0 5rem 0;
}
@media screen and (max-width: 767px) {
  section.recommend .title {
    margin: 0 0 2rem 0;
  }
}
section.recommend .title p.en {
  font-size: 5rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  section.recommend .title p.en {
    font-size: 1.6rem;
  }
}
section.recommend .recommend_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  section.recommend .recommend_flex {
    display: block;
  }
}
section.recommend .recommend_flex .box {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.recommend .recommend_flex .box {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
section.recommend .recommend_flex .box .btns {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  background: #000;
  color: #ffffff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 10rem 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  section.recommend .recommend_flex .box .btns {
    font-size: 1.3rem;
    padding: 1rem 5rem 1rem 2rem;
    bottom: 1em;
    left: 1em;
  }
}
section.recommend .recommend_flex .box .btns .icon {
  width: 30px;
  height: 20px;
  background: #ffffff;
  border-radius: 30px;
  text-align: center;
  line-height: 1;
  margin: 0 0 0 0;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
section.recommend .recommend_flex .box .btns .icon img[src$=".svg"],
section.recommend .recommend_flex .box .btns .icon img {
  width: 10px;
  margin: auto;
}
section.recommend .recommend_flex .box:hover .btns {
  background: #301BB4;
}

.dummy::after {
  content: "";
  background: url(/assets/image/common/dummy_moji.png) no-repeat 0 0;
  background-size: contain;
  width: 168px;
  height: 66px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 35;
}

.menuoverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 50;
  display: none;
  content: "";
  opacity: 0;
}
.menuoverlay.is-open {
  display: block;
  opacity: 1;
  animation: fadeIns 0.3s ease-in 0s forwards;
}
@keyframes fadeIns {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

/*============
#spmenu
=============*/
#spmenu {
  transition: all 0.5s;
  cursor: pointer;
  z-index: 101;
  width: 60px;
  margin: 0 1rem 0 0;
  position: relative;
  padding: 1rem 0 0 0;
  display: flex;
  align-items: flex-start;
  display: none;
}
@media screen and (max-width: 1160px) {
  #spmenu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #spmenu {
    display: block;
    right: 0;
    top: 0;
    width: 50px;
    height: 60px;
    margin: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  #spmenu.fixed .circle {
    background: none;
  }
}
#spmenu .ins {
  position: relative;
  width: 60px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #spmenu .ins {
    width: 50px;
    transform: translateX(-50%) translateY(-50%);
  }
}
#spmenu span {
  display: block;
  position: absolute;
  left: 5px;
  width: 50px;
  height: 1px;
  background-color: #333;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  #spmenu span {
    width: 40px;
  }
}

#spmenu span:nth-child(1) {
  top: 6px;
}

#spmenu span:nth-child(2) {
  top: 13px;
}

#spmenu span:nth-child(3) {
  top: 20px;
}

#spmenu.active span:nth-child(1) {
  transform: translateY(7px) rotate(-315deg);
}

#spmenu.active span:nth-child(2) {
  opacity: 0;
}

#spmenu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(315deg);
}

/* FOOTER DESIGN
================================================== */
footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0;
  }
}
footer .footer-main {
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  gap: 15%;
  max-width: 1600px;
}
@media screen and (max-width: 767px) {
  footer .footer-main {
    flex-direction: column;
    gap: 40px;
    display: none;
  }
}
footer .footer-left {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .footer-left {
    width: 100%;
  }
}
footer .footer-brand {
  width: 50%;
}
footer .footer-brand .site-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #ccc;
}
footer .footer-brand .copy-image {
  margin-bottom: 5rem;
  width: 240px;
}
footer .footer-brand .copy-image img {
  width: auto;
  height: 60px;
}
footer .footer-brand .logo {
  margin-bottom: 5rem;
}
footer .footer-brand .logo img {
  width: 160px;
  height: auto;
}
footer .footer-brand .career-btn a {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #555;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
footer .footer-brand .career-btn a:hover {
  background-color: #fff;
  color: #333;
}
footer .footer-brand .career-btn a::after {
  content: "";
  background: url(/assets/image/common/blank_white.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}
footer .footer-brand .corporate-link {
  margin-top: 20px;
}
footer .footer-brand .corporate-link a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
footer .footer-brand .corporate-link a:hover {
  color: #fff;
}
footer .footer-brand .corporate-link a[target=_blank]::after {
  content: "";
  background: url(/assets/image/common/blank_white.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}
footer .footer-copy {
  flex: 1;
  text-align: center;
}
footer .footer-copy p {
  font-size: clamp(1.2rem, 0.968rem + 0.3vw, 1.4rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  color: #ccc;
}
footer .footer-links {
  width: 50%;
  display: flex;
  justify-content: space-between;
  gap: 20%;
}
@media (max-width: 1000px) {
  footer .footer-links {
    flex-direction: column;
  }
}
footer .footer-links .block {
  width: 48%;
}
@media (max-width: 1000px) {
  footer .footer-links .block {
    width: 100%;
  }
}
footer .footer-links .block.wide {
  width: 40%;
}
@media screen and (max-width: 1160px) {
  footer .footer-links .block.wide {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}
footer .link-section {
  margin: 0 0 2rem 0;
  flex: 1;
}
footer .link-section h3 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid #666;
}
footer .link-section ul {
  list-style: none;
}
footer .link-section ul li {
  margin-bottom: 8px;
}
footer .link-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
footer .link-section ul li a:hover {
  color: #fff;
}
footer .link-section ul li a[target=_blank]::after {
  content: "";
  background: url(/assets/image/common/blank_white.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}
footer .interview-section {
  flex: 2;
}
footer .interview-section .interview-index .interview-names {
  display: flex;
  gap: 1rem;
}
footer .interview-section .interview-index .interview-names .name-column {
  flex: 1;
}
footer .interview-section .interview-index .interview-names .name-column p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
  color: #ccc;
}
footer .footer-bottom {
  padding: 20px 0;
  margin-top: 60px;
}
footer .footer-bottom .layout {
  display: flex;
  justify-content: space-between;
  max-width: calc(1310px + 6vw);
  padding: 0 3vw;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .layout {
    flex-direction: column;
  }
}
footer .footer-bottom .menu a {
  color: #ccc;
  font-size: 12px;
}
footer .footer-bottom .menu a:hover {
  color: #fff;
}
footer .footer-bottom .copyright {
  font-size: 12px;
  color: #999;
  text-align: left;
}

#portal .header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  margin-right: 3vw;
}
#portal .header-nav a {
  position: relative;
  padding-right: 20px;
}
#portal .header-nav a[target=_blank]::after {
  content: url(/assets/image/common/blank.svg);
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 1px;
  width: 15px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#portal #portal_footer {
  padding-top: 0;
}
#portal #portal_footer .footer-bottom {
  margin-top: 0;
}

#privacy {
  background-color: #F9F9FA;
}
#privacy #visual {
  background-color: #EEEEF0;
  height: 260px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #privacy #visual {
    height: 200px;
    margin-bottom: 40px;
  }
}
#privacy #visual .inner {
  display: flex;
  align-items: center;
  text-align: left;
  height: 100%;
}
#privacy #visual .inner h1 .jp {
  font-size: clamp(2.8rem, 2.336rem + 0.6vw, 3.2rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #privacy #visual .inner h1 .jp {
    font-size: 2rem;
  }
}
#privacy #visual .inner h1 .en {
  font-size: clamp(1.6rem, 1.368rem + 0.3vw, 1.8rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #privacy #visual .inner h1 .en {
    font-size: 1.4rem;
  }
}
#privacy #page_nav {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #privacy #page_nav {
    margin-bottom: 50px;
  }
}
#privacy #page_nav ul {
  display: flex;
  flex-wrap: wrap;
}
#privacy #page_nav ul li {
  position: relative;
  width: 33.333%;
  padding-right: 15px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  #privacy #page_nav ul li {
    width: 100%;
  }
}
#privacy #page_nav ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #101010;
  border-right: 1px solid #101010;
  transform: rotate(45deg);
  left: 0;
  top: 11px;
}
#privacy #page_nav ul li a {
  font-size: 1.4rem;
}
#privacy #page_nav ul li a:hover {
  text-decoration: underline;
}
#privacy #contents {
  padding-bottom: 100px;
}
#privacy #contents .block {
  margin-bottom: 50px;
}
#privacy #contents .block h2 {
  font-size: clamp(2.4rem, 1.936rem + 0.6vw, 2.8rem);
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E1E2;
  margin-bottom: 20px;
}
#privacy #contents .block p {
  font-size: clamp(1.6rem, 1.368rem + 0.3vw, 1.8rem);
}
#privacy #contents .block p.note {
  font-size: 1.3rem;
}
#privacy #contents .block p.last {
  text-align: right;
}
#privacy #contents .block h3 {
  font-weight: 500;
  margin-top: 1.5rem;
}
#privacy #contents .block ul {
  padding-left: 25px;
  list-style: disc;
}
#privacy #contents .block ul li {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}