@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bg_illust {
  position: relative;
}
.bg_illust:before, .bg_illust:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bg_illust:after {
  background: url("../img/common/page_background/bg_illust.png") center/80px;
  opacity: 0.2;
}
.bg_illust.white:before {
  background-color: #fafafa;
}
.bg_illust.blue:before {
  background-color: #007eff;
}
.bg_illust.yellow:before {
  background-color: #ffee71;
}

.bg_logo {
  position: relative;
}
.bg_logo:before, .bg_logo:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bg_logo:after {
  background: url("../img/common/page_background/bg_logo.svg") center/400px;
  opacity: 0.1;
}
@media screen and (max-width: 800px) {
  .bg_logo:after {
    background-size: 200px;
  }
}
.bg_logo.orange:before {
  background-color: #ff6c0c;
}
.bg_logo.blue:before {
  background-color: #007eff;
}
.bg_logo.white:before {
  background-color: #fafafa;
}
.bg_logo.white:after {
  opacity: 0.03;
}

header.sp {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: solid 2px #0071bd;
}
@media screen and (min-width: 800px) {
  header.sp {
    display: none;
  }
}
header.sp .upper {
  background: #0071bd;
  text-align: center;
  padding: 0.5em;
  color: #fff;
  font-size: 12px;
}
header.sp .character {
  position: absolute;
  width: 45px;
  top: 15px;
  left: 5px;
}
header.sp .character img {
  width: 100%;
}
header.sp .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
}
header.sp .inner .logo {
  flex: 1;
  height: 100%;
  padding: 5px;
  padding-left: 60px;
}
header.sp .inner .logo img {
  height: 100%;
}
header.sp .inner nav {
  display: flex;
  height: 100%;
}
header.sp .inner nav .btn_nav a {
  display: flex;
  align-items: center;
  background: #0071bd;
  color: #fff;
  padding: 0.5em 1em;
  height: 100%;
  font-size: 14px;
}
header.sp .inner nav .btn_drawer {
  width: 1.2em;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  header.sp .inner nav .btn_drawer {
    font-size: 40px;
  }
}
header.sp .inner nav .btn_drawer span,
header.sp .inner nav .btn_drawer span:after,
header.sp .inner nav .btn_drawer span:before {
  content: "";
  display: block;
  width: 0.5em;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
  border-radius: 5px;
}
header.sp .inner nav .btn_drawer span:before {
  bottom: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .inner nav .btn_drawer span:after {
  top: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .inner nav .btn_drawer span.active {
  background: rgba(255, 255, 255, 0);
}
header.sp .inner nav .btn_drawer span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .inner nav .btn_drawer span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}

header.pc {
  position: relative;
}
@media screen and (max-width: 800px) {
  header.pc {
    display: none;
  }
}
header.pc .upper {
  background: #0071bd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  padding-left: 100px;
}
@media screen and (max-width: 1000px) {
  header.pc .upper {
    padding-left: 60px;
  }
}
header.pc .upper span {
  font-size: clamp(11px, 1.2vw, 13px);
}
header.pc .upper span:first-child {
  display: block;
  background: #fff;
  border-radius: 5px;
  padding: 0.4em 0.8em;
  position: relative;
}
header.pc .upper span:first-child::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -0.4em;
  transform: rotate(45deg);
  border-radius: 2px;
}
header.pc .upper span:last-child {
  color: #fff;
}
header.pc .character {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80px;
}
@media screen and (max-width: 1000px) {
  header.pc .character {
    width: 40px;
    top: 5px;
    left: 5px;
  }
}
header.pc .character img {
  width: 100%;
}
header.pc .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
  gap: 20px;
  border-bottom: solid 2px #0071bd;
}
@media screen and (max-width: 1000px) {
  header.pc .inner {
    padding-left: 10px;
  }
}
header.pc .inner .logo {
  flex: 1;
  line-height: 0;
}
header.pc .inner .logo img {
  max-width: 350px;
}
header.pc .inner .highlight {
  display: flex;
  gap: 5px;
}
header.pc .inner .highlight ul {
  display: flex;
}
header.pc .inner .highlight ul li {
  border-left: solid 2px #1472b2;
}
header.pc .inner .highlight ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.8em 1em;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.4;
}
header.pc .inner .highlight ul li a:hover {
  background: rgba(20, 114, 178, 0.1);
}
header.pc .inner .highlight ul li a:hover img {
  transform: scale(1.1);
}
header.pc .inner .highlight ul li a img {
  display: block;
  width: clamp(20px, 3vw, 40px);
  transition: 0.1s;
}
@media screen and (max-width: 1100px) {
  header.pc .inner .highlight ul li a img {
    display: none;
  }
}
header.pc .inner .highlight ul li a span {
  display: block;
}
header.pc .inner .highlight ul li a span:nth-child(1) {
  font-size: 13px;
}
header.pc .inner .highlight ul li a span:nth-child(2) {
  font-weight: 600;
  color: #1472b2;
}
header.pc .gnav {
  font-size: clamp(14px, 1.5vw, 16px);
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}
header.pc .gnav ul {
  display: flex;
}
header.pc .gnav ul li {
  position: relative;
}
header.pc .gnav ul li::after {
  content: "";
  display: block;
  width: 2px;
  height: 80%;
  background: #1472b2;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
  border-radius: 10em;
  transform: rotate(20deg);
}
header.pc .gnav ul li:last-child::after {
  display: none;
}
header.pc .gnav ul li a {
  display: block;
  color: #000;
  padding: 0.2em 1em;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  header.pc .gnav ul li a {
    padding: 0.2em 0.6em;
  }
}
header.pc .gnav ul li a:hover {
  color: #1472b2;
}
header.pc .line {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url("../img/common/header/line.svg");
  background-size: auto 100%;
  background-repeat: repeat-x;
  z-index: 10;
}

.page_heading {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .page_heading {
    height: 300px;
  }
}
.page_heading .inner {
  height: 100%;
  background: #ff6c0c;
  position: relative;
}
.page_heading .inner::before, .page_heading .inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  background-image: url("../img/common/page_heading/bg_1.svg");
  animation: page_heading_bg 0.4s both;
  transform: scale(1);
}
.page_heading .inner::after {
  opacity: 0.5;
  background-image: url("../img/common/page_heading/bg_2.svg");
}
@keyframes page_heading_bg {
  to {
    transform: scale(1.1);
  }
}
.page_heading .inner .photo,
.page_heading .inner .title {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
}
.page_heading .inner .photo img,
.page_heading .inner .title img {
  width: auto;
  height: 100%;
  animation: page_heading 0.3s 0.2s both;
  position: relative;
  transform: translateY(100%);
}
@keyframes page_heading {
  to {
    transform: translateY(0);
  }
}
.page_heading .inner .photo {
  height: 80%;
}
@media screen and (max-width: 800px) {
  .page_heading .inner .photo {
    height: 90%;
  }
}
.page_heading .inner .title {
  height: 35%;
}
@media screen and (max-width: 800px) {
  .page_heading .inner .title {
    height: 30%;
  }
}

.cta {
  background-color: #ff6c0c;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 30px, transparent 30px, transparent 60px);
  border-top: solid 10px #ff6c0c;
  border-bottom: solid 10px #ff6c0c;
}
.cta .cta_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
}
.cta .cta_inner .title {
  text-align: center;
  line-height: 0;
}
.cta .cta_inner .title img {
  width: 100%;
}
.cta .cta_inner .inner {
  background: #fff;
  border-radius: 30px;
  border: solid 3px #000;
  padding: clamp(20px, 3vw, 40px);
  position: relative;
  top: -40px;
}
@media screen and (max-width: 800px) {
  .cta .cta_inner .inner {
    top: -10px;
    border-radius: 10px;
  }
}
.cta .cta_inner .inner .btn ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .cta .cta_inner .inner .btn ul {
    flex-direction: column;
    gap: 10px;
  }
}
.cta .member_slide .slider li {
  text-align: center;
  position: relative;
}
.cta .member_slide .slider li span {
  display: block;
  width: 80%;
  height: 40px;
  background: #ae5011;
  position: absolute;
  bottom: 15px;
}
@media screen and (max-width: 800px) {
  .cta .member_slide .slider li span {
    height: 20px;
    bottom: 10px;
  }
}
.cta .member_slide .slider li span::before, .cta .member_slide .slider li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  border-radius: 100%;
}
@media screen and (max-width: 800px) {
  .cta .member_slide .slider li span::before, .cta .member_slide .slider li span::after {
    height: 20px;
  }
}
.cta .member_slide .slider li span::before {
  background: #ae5011;
  bottom: -15px;
}
@media screen and (max-width: 800px) {
  .cta .member_slide .slider li span::before {
    bottom: -10px;
  }
}
.cta .member_slide .slider li span::after {
  background: #ff893a;
  top: -15px;
}
@media screen and (max-width: 800px) {
  .cta .member_slide .slider li span::after {
    top: -10px;
  }
}
.cta .member_slide .slider li img {
  padding: 0 30px;
  height: 200px;
  width: auto;
  position: relative;
  margin: 0 auto 40px;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .cta .member_slide .slider li img {
    height: 140px;
    margin: 0 auto 20px;
  }
}

.drawer_content {
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 120px 10px;
  overflow: scroll;
  position: fixed;
  right: 0;
  top: -100vh;
  opacity: 0;
  z-index: 100;
  transition: 0.3s;
}
.drawer_content.active {
  opacity: 1;
  top: 0;
}
.drawer_content .highlight ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.drawer_content .highlight ul li a {
  display: block;
  border: solid 2px #0071bd;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
}
.drawer_content .highlight ul li a img {
  width: 50px;
}
.drawer_content .highlight ul li a .txt span {
  display: block;
}
.drawer_content .highlight ul li a .txt span:nth-child(1) {
  font-size: 14px;
}
.drawer_content .highlight ul li a .txt span:nth-child(2) {
  font-size: 16px;
  font-weight: 600;
  color: #0071bd;
}
.drawer_content .gnav {
  padding: 20px 0;
}
.drawer_content .gnav ul li {
  border-bottom: solid 2px #0071bd;
}
.drawer_content .gnav ul li a {
  display: block;
  padding: 1em;
  font-size: 18px;
}

.page_message .mv {
  line-height: 0;
}
.page_message .mv img {
  width: 100%;
}
.page_message .mv img.pc {
  display: block;
}
@media screen and (max-width: 800px) {
  .page_message .mv img.pc {
    display: none;
  }
}
.page_message .mv img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page_message .mv img.sp {
    display: block;
  }
}
.page_message .contents {
  background: #fff;
}
.page_message .contents .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.page_message .contents .inner p {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 1em;
}
.page_message .contents .inner img {
  box-shadow: 5px 5px 30px -20px rgba(0, 0, 0, 0.5);
  margin: 40px 0 60px;
}
.page_message .contents .foot {
  line-height: 0;
}

.page_top .mv {
  line-height: 0;
}
.page_top .mv img {
  width: 100%;
}
.page_top .mv img.pc {
  display: block;
}
@media screen and (max-width: 800px) {
  .page_top .mv img.pc {
    display: none;
  }
}
.page_top .mv img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page_top .mv img.sp {
    display: block;
  }
}
.page_top .new {
  padding: 0 20px clamp(20px, 4vw, 80px);
}
.page_top .new .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 3vw, 40px) 40px;
  position: relative;
}
.page_top .new .inner:before {
  content: "";
  display: block;
  border-radius: 20px;
  width: 100%;
  height: 90%;
  background: #fff;
  border: solid 3px #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 800px) {
  .page_top .new .inner:before {
    height: 95%;
    border-radius: 10px;
  }
}
.page_top .new .inner .txt {
  position: relative;
  margin-bottom: 40px;
}
.page_top .new .inner .txt h2 {
  width: 80%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 800px) {
  .page_top .new .inner .txt h2 {
    width: 100%;
    transform: scale(1.15);
  }
}
.page_top .new .inner .txt p {
  flex: 1;
  font-size: clamp(15px, 1.7vw, 22px);
  text-align: center;
  line-height: 2;
  padding-bottom: 1em;
}
@media screen and (max-width: 800px) {
  .page_top .new .inner .txt p {
    text-align: left;
  }
  .page_top .new .inner .txt p br {
    display: none;
  }
}
.page_top .new .inner .overview {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.page_top .new .inner .overview .item {
  margin-bottom: 40px;
}
.page_top .new .inner .overview .item .category {
  display: none;
}
.page_top .new .inner .overview .item .contents {
  display: flex;
  align-items: center;
  gap: 40px;
}
.page_top .new .inner .overview .item .contents .thumbnail {
  width: 40%;
  display: block;
}
.page_top .new .inner .overview .item .contents .thumbnail img {
  border-radius: 10px;
}
.page_top .new .inner .overview .item .contents .data {
  flex: 1;
}
.page_top .new .inner .overview .item .contents .data .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.page_top .new .inner .overview .item .contents .data .head h3 {
  font-size: clamp(20px, 2.1vw, 22px);
  font-weight: 700;
}
.page_top .new .inner .overview .item .contents .data .head a {
  display: block;
  background: #333;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
}
.page_top .new .inner .overview .item .contents .data .head a:hover {
  opacity: 0.8;
}
.page_top .new .inner .overview .item .contents .data .list {
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.page_top .new .inner .overview .item .contents .data .list table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.page_top .new .inner .overview .item .contents .data .list table tr {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.page_top .new .inner .overview .item .contents .data .list table tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 800px) {
  .page_top .new .inner .overview .item .contents .data .list table tr {
    display: block;
  }
}
.page_top .new .inner .overview .item .contents .data .list table tr th {
  padding: 1em;
  width: 120px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .page_top .new .inner .overview .item .contents .data .list table tr th {
    display: block;
    width: 100%;
    padding: 1em;
    text-align: left;
  }
}
.page_top .new .inner .overview .item .contents .data .list table tr td {
  padding: 1em 2em;
}
@media screen and (max-width: 800px) {
  .page_top .new .inner .overview .item .contents .data .list table tr td {
    display: block;
    width: 100%;
    padding: 1em;
  }
}
.page_top .new .inner .overview .item .contents ul {
  display: flex;
  gap: 1em;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .page_top .new .inner .overview .item .contents ul {
    flex-direction: column;
  }
}
.page_top .new .inner .overview .item .contents ul li {
  flex: 1;
}
.page_top .new .inner .overview .item .contents ul li a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 0.8em 1.4em;
  border-radius: 5px;
  transition: 0.3s;
}
.page_top .new .inner .overview .item .contents ul li a:hover {
  opacity: 0.8;
}
.page_top .new .inner .overview .item .contents ul li:nth-child(1) a {
  background-color: #ff6c0c;
}
.page_top .new .inner .overview .item .contents ul li:nth-child(2) a {
  background-color: #007eff;
}
.page_top .new .inner .overview .item .contents ul li:nth-child(3) a {
  background-color: #00b900;
}
.page_top .photo_slide .slider {
  background: #1472b2;
  padding-bottom: 10px;
}
.page_top .photo_slide .slider li {
  padding: 10px;
}
.page_top .photo_slide .slider li img {
  height: 200px;
  width: auto;
  border-radius: 5px;
}
@media screen and (max-width: 800px) {
  .page_top .photo_slide .slider li img {
    height: 100px;
  }
}
.page_top .about .inner {
  max-width: 1300px;
  padding: clamp(40px, 8vw, 100px) 20px;
  margin: 0 auto;
}
.page_top .about .inner img {
  display: block;
  max-width: 800px;
  margin: 0 auto clamp(20px, 3vw, 40px);
  width: 100%;
}
.page_top .about .inner .txt {
  max-width: 800px;
  margin: 0 auto;
}
.page_top .about .inner .txt p {
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 2.2;
}
.page_top .interview {
  padding: 100px 0;
  width: 100%;
  text-align: center;
}
.page_top .interview h2 {
  line-height: 0;
}
.page_top .interview h2 img {
  max-width: 600px;
}
.page_top .interview .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.page_top .interview .modal .modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  top: 50%;
  transform: translateY(-50%);
}
.page_top .interview .modal .modal-content iframe {
  width: 100%;
  height: 600px;
  border: none;
}
.page_top .interview .modal .modal-content .close {
  position: absolute;
  right: -40px;
  top: -40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.page_top .interview .modal .modal-content .close:hover {
  color: #ccc;
}
.page_top .interview .interview_slider {
  background: #fff;
  padding: 40px 0;
  border: solid 5px #000;
  border-left: none;
  border-right: none;
}
.page_top .interview .interview_slider .slide {
  height: 500px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_top .interview .interview_slider .slide {
    height: auto;
  }
}
.page_top .interview .interview_slider .slide::after {
  content: "";
  display: block;
  width: 95%;
  height: 80%;
  background: #bdddff;
  border: solid 10px #fff;
  border-radius: 60px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 20%, transparent 20%), radial-gradient(rgba(255, 255, 255, 0.2) 20%, transparent 20%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
.page_top .interview .interview_slider .slide img {
  position: relative;
  display: block;
  margin: auto;
  width: auto;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .page_top .interview .interview_slider .slide img {
    height: auto;
  }
}

main.page_comment .inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 20px;
}
main.page_comment .inner .item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 0 clamp(20px, 2vw, 40px);
}
@media screen and (max-width: 800px) {
  main.page_comment .inner .item {
    margin-bottom: 10px;
  }
}
main.page_comment .inner .item:nth-child(odd) {
  flex-direction: row-reverse;
}
main.page_comment .inner .item:nth-child(odd)::before {
  background: #ff6c0c;
}
main.page_comment .inner .item::before {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  background: #007eff;
  position: absolute;
  margin: auto;
  inset: 0;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  main.page_comment .inner .item::before {
    height: 95%;
  }
}
main.page_comment .inner .item .photo {
  width: 200px;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  main.page_comment .inner .item .photo {
    width: 100px;
  }
}
main.page_comment .inner .item .photo img {
  width: 100%;
  position: relative;
}
main.page_comment .inner .item .photo span {
  background: #fff;
  border: solid 2px #000;
  font-weight: 700;
  display: block;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 18px);
  padding: 1.2em 0em;
  position: relative;
  border-radius: 5px;
}
main.page_comment .inner .item .txt {
  flex: 1;
  position: relative;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.8;
  color: #fff;
}
main.page_company {
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.page_company .company_data {
  border: solid 2px #0071bd;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
main.page_company .company_data table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
}
main.page_company .company_data table tr {
  border-bottom: solid 2px #0071bd;
}
main.page_company .company_data table tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 800px) {
  main.page_company .company_data table tr {
    display: block;
  }
}
main.page_company .company_data table tr th {
  padding: 2em 1em;
  width: 150px;
  color: #007eff;
  position: relative;
  background: rgba(0, 126, 255, 0.1);
}
@media screen and (max-width: 800px) {
  main.page_company .company_data table tr th {
    display: block;
    width: 100%;
    padding: 1em;
    text-align: left;
  }
}
main.page_company .company_data table tr td {
  padding: 1em 2em;
}
@media screen and (max-width: 800px) {
  main.page_company .company_data table tr td {
    display: block;
    width: 100%;
    padding: 1em;
  }
}
main.page_company .place {
  padding-top: 100px;
  max-width: 1000px;
  margin: 0 auto;
}
main.page_company .place h2 {
  text-align: center;
  color: #0071bd;
  margin-bottom: 1em;
  font-size: 30px;
}
main.page_company .place .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 800px) {
  main.page_company .place .list {
    grid-template-columns: 1fr;
  }
}
main.page_company .place .list .item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
main.page_company .place .list .item .logo {
  text-align: center;
  padding: 10px 0;
}
main.page_company .place .list .item .logo img {
  max-width: 80%;
  aspect-ratio: 4/1;
  -o-object-fit: contain;
     object-fit: contain;
}
main.page_company .place .list .item .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
main.page_company .place .list .item ul {
  padding: 20px 10px;
}
main.page_company .place .list .item ul li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 16px;
  padding: 0.4em 0;
  line-height: 1.8;
}
main.page_company .place .list .item ul li .icon {
  width: 1.8em;
  line-height: 0;
}
main.page_company .place .list .item ul li .icon img {
  width: 100%;
}
main.page_company .place .list .item ul li .txt {
  font-size: 14px;
}
main.page_company .place .list .item .instagram a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 100%;
  gap: 0.5em;
  font-size: 14px;
  line-height: 0;
  padding: 0.6em;
  font-weight: 400;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
  position: relative;
}
main.page_company .place .list .item .instagram a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
main.page_company .place .list .item .instagram a img {
  width: 2em;
  position: relative;
}
main.page_company .place .list .item .instagram a span {
  color: #fff;
  position: relative;
  padding-bottom: 0.2em;
}
main.page_company .place .banner {
  text-align: center;
  padding: 20px;
  background: #ffed9c;
  border-radius: 10px;
  margin-top: 40px;
}
main.page_company .place .banner img {
  width: 100%;
  max-width: 600px;
}
main.page_step {
  padding: clamp(20px, 4vw, 60px) 20px;
}
main.page_step .inner {
  max-width: 1000px;
  margin: 0 auto;
}
main.page_step .inner .item {
  display: flex;
  background: #fff;
  border-radius: 20px;
  position: relative;
  border: solid 3px #000;
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  main.page_step .inner .item {
    flex-direction: column;
  }
}
main.page_step .inner .item .number {
  background: #007eff;
  position: relative;
  color: #fff;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  main.page_step .inner .item .number {
    width: 100%;
    padding: 20px;
  }
}
main.page_step .inner .item .number span {
  line-height: 1;
  font-weight: 700;
}
main.page_step .inner .item .number span:nth-child(1) {
  font-size: 16px;
}
main.page_step .inner .item .number span:nth-child(2) {
  font-size: 30px;
}
main.page_step .inner .item .txt {
  padding: 30px clamp(20px, 4vw, 40px);
  flex: 1;
}
main.page_step .inner .item .txt h3 {
  font-size: 22px;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #007eff;
}
main.page_step .inner .item .txt ul {
  padding-top: 1em;
}
main.page_step .inner .item .txt ul li {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
main.page_step .inner .item .txt ul li span {
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  width: 70px;
  text-align: center;
  border-radius: 5px;
  margin-right: 0.5em;
  padding: 0.3em;
}
main.page_step .inner .item .txt ul li a {
  text-decoration: underline;
  color: #007eff;
}
main.page_faq {
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.page_faq .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 60px);
  background: #fff;
  border-radius: 20px;
}
main.page_faq .inner ul li {
  margin-bottom: 30px;
}
main.page_faq .inner ul li .Q {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 0.2em;
  font-weight: 700;
  color: #ff6c0c;
}
main.page_faq .inner ul li .A {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
}
main.page_philosophy .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
  border-radius: 20px;
}
main.page_philosophy .inner .copy {
  margin-bottom: 20px;
}
main.page_philosophy .inner p {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 2.2;
  margin-bottom: 1em;
}
main.page_chart {
  padding: clamp(40px, 6vw, 80px) 0;
}
main.page_chart img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
}
main.page_demand .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.page_demand .inner ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
@media screen and (max-width: 800px) {
  main.page_demand .inner ul {
    grid-template-columns: 1fr;
  }
}
main.page_demand .inner ul li {
  background: #fff;
  border: solid 3px #000;
  border-radius: 10px;
  padding: 60px 30px 40px;
  position: relative;
}
main.page_demand .inner ul li .num {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: #ff6c0c;
  border: solid 3px #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
main.page_demand .inner ul li h3 {
  text-align: center;
  font-size: 20px;
  color: #ff6c0c;
  font-weight: 700;
  margin-bottom: 1em;
}
main.page_demand .inner ul li p {
  line-height: 1.8;
}
main.page_welfare .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.page_welfare .inner .item {
  display: flex;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 20px;
}
main.page_welfare .inner .item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  main.page_welfare .inner .item {
    flex-direction: column;
    border-radius: 20px;
  }
  main.page_welfare .inner .item:nth-child(odd) {
    flex-direction: column;
  }
}
main.page_welfare .inner .item .photo {
  width: 40%;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  main.page_welfare .inner .item .photo {
    width: 100%;
  }
}
main.page_welfare .inner .item .photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 800px) {
  main.page_welfare .inner .item .photo img {
    aspect-ratio: 5/3;
  }
}
main.page_welfare .inner .item .txt {
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px);
  flex: 1;
}
main.page_welfare .inner .item .txt h3 {
  color: #007eff;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: clamp(20px, 2.1vw, 22px);
}
@media screen and (max-width: 800px) {
  main.page_welfare .inner .item .txt h3 {
    text-align: center;
  }
}
main.page_welfare .inner .item .txt p {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
}
main.page_overview_index .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 60px) 10px;
}
main.page_overview_index .inner .item {
  margin-bottom: 20px;
}
main.page_overview_index .inner .item .category {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  border: solid 2px #000;
  border-bottom: none;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
main.page_overview_index .inner .item .contents {
  background: #fff;
  border-radius: 10px;
  border-top-left-radius: 0;
  border: solid 2px #000;
  overflow: hidden;
  display: flex;
  padding: 30px clamp(20px, 3vw, 40px);
  align-items: center;
  gap: 40px;
}
main.page_overview_index .inner .item .contents .thumbnail {
  width: 40%;
  display: block;
}
main.page_overview_index .inner .item .contents .thumbnail img {
  border-radius: 10px;
}
main.page_overview_index .inner .item .contents .data {
  flex: 1;
}
main.page_overview_index .inner .item .contents .data .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
main.page_overview_index .inner .item .contents .data .head h2 {
  font-size: clamp(20px, 2.1vw, 22px);
  font-weight: 700;
}
main.page_overview_index .inner .item .contents .data .head a {
  display: block;
  background: #333;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
}
main.page_overview_index .inner .item .contents .data .head a:hover {
  opacity: 0.8;
}
main.page_overview_index .inner .item .contents .data .list {
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
main.page_overview_index .inner .item .contents .data .list table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
main.page_overview_index .inner .item .contents .data .list table tr {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
main.page_overview_index .inner .item .contents .data .list table tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 800px) {
  main.page_overview_index .inner .item .contents .data .list table tr {
    display: block;
  }
}
main.page_overview_index .inner .item .contents .data .list table tr th {
  padding: 1em;
  width: 120px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  main.page_overview_index .inner .item .contents .data .list table tr th {
    display: block;
    width: 100%;
    padding: 1em;
    text-align: left;
  }
}
main.page_overview_index .inner .item .contents .data .list table tr td {
  padding: 1em 2em;
}
@media screen and (max-width: 800px) {
  main.page_overview_index .inner .item .contents .data .list table tr td {
    display: block;
    width: 100%;
    padding: 1em;
  }
}
main.page_overview_index .inner .item .contents ul {
  display: flex;
  gap: 1em;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  main.page_overview_index .inner .item .contents ul {
    flex-direction: column;
    gap: 0.2em;
  }
}
main.page_overview_index .inner .item .contents ul li {
  flex: 1;
}
main.page_overview_index .inner .item .contents ul li a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 0.8em 1.4em;
  border-radius: 5px;
  transition: 0.3s;
}
main.page_overview_index .inner .item .contents ul li a:hover {
  opacity: 0.8;
}
main.page_overview_index .inner .item .contents ul li:nth-child(1) a {
  background-color: #ff6c0c;
}
main.page_overview_index .inner .item .contents ul li:nth-child(2) a {
  background-color: #007eff;
}
main.page_overview_index .inner .item .contents ul li:nth-child(3) a {
  background-color: #00b900;
}
main.page_overview {
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.page_overview .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(10px, 4vw, 60px);
  background: #fff;
  border-radius: 20px;
}
main.page_overview .inner .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  main.page_overview .inner .head {
    flex-direction: column;
    align-items: center;
  }
}
main.page_overview .inner .head h2 {
  font-size: clamp(26px, 2.8vw, 30px);
  font-weight: 700;
  padding: 0 0.5em;
  color: #007eff;
}
main.page_overview .inner .head ul {
  display: flex;
  gap: 0.5em;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  main.page_overview .inner .head ul {
    flex-direction: column;
    width: 100%;
  }
}
main.page_overview .inner .head ul li a {
  text-align: center;
  display: block;
  background-color: #007eff;
  color: #fff;
  padding: 0.8em 1em;
  border-radius: 10px;
  transition: 0.3s;
}
main.page_overview .inner .head ul li a:hover {
  opacity: 0.8;
}
main.page_overview .inner .head ul li:nth-child(1) a {
  background-color: #ff6c0c;
}
main.page_overview .inner .head ul li:nth-child(2) a {
  background-color: #007eff;
}
main.page_overview .inner .head ul li:nth-child(3) a {
  background-color: #00b900;
}
main.page_overview .overview_table {
  border-radius: 10px;
  border: solid 1px #ccc;
  overflow: hidden;
}
main.page_overview .overview_table table {
  width: 100%;
  border-collapse: collapse;
}
main.page_overview .overview_table table tr {
  border-bottom: solid 1px #ccc;
}
main.page_overview .overview_table table tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 800px) {
  main.page_overview .overview_table table tr {
    display: block;
  }
}
main.page_overview .overview_table table tr th {
  padding: 2em 1em;
  width: 150px;
  color: #007eff;
  position: relative;
  background: rgba(0, 126, 255, 0.1);
}
@media screen and (max-width: 800px) {
  main.page_overview .overview_table table tr th {
    display: block;
    width: 100%;
    padding: 1em;
    text-align: left;
  }
}
main.page_overview .overview_table table tr td {
  padding: 1em 2em;
}
@media screen and (max-width: 800px) {
  main.page_overview .overview_table table tr td {
    display: block;
    width: 100%;
    padding: 1em;
  }
}
main.page_contact {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
}
main.page_contact .custom_form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px clamp(20px, 4vw, 60px);
}
main.page_contact .custom_form .form_section {
  margin-bottom: 40px;
}
main.page_contact .custom_form .form_section h3 {
  font-size: 20px;
  color: #007eff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 2px #007eff;
  font-weight: 600;
}
main.page_contact .custom_form .form_section .form_group {
  margin-bottom: 25px;
}
main.page_contact .custom_form .form_section .form_group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
main.page_contact .custom_form .form_section .form_group label .required_mark {
  color: #d32f2f;
  font-weight: bold;
  font-size: 0.8em;
}
main.page_contact .custom_form .form_section .form_group input[type=text],
main.page_contact .custom_form .form_section .form_group input[type=email],
main.page_contact .custom_form .form_section .form_group input[type=tel],
main.page_contact .custom_form .form_section .form_group input[type=date],
main.page_contact .custom_form .form_section .form_group input[type=number],
main.page_contact .custom_form .form_section .form_group textarea {
  width: 100%;
  padding: 12px 15px;
  border: solid 2px #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}
main.page_contact .custom_form .form_section .form_group input[type=text]:focus,
main.page_contact .custom_form .form_section .form_group input[type=email]:focus,
main.page_contact .custom_form .form_section .form_group input[type=tel]:focus,
main.page_contact .custom_form .form_section .form_group input[type=date]:focus,
main.page_contact .custom_form .form_section .form_group input[type=number]:focus,
main.page_contact .custom_form .form_section .form_group textarea:focus {
  outline: none;
  border-color: #007eff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 126, 255, 0.1);
}
main.page_contact .custom_form .form_section .form_group input[type=text]::-moz-placeholder, main.page_contact .custom_form .form_section .form_group input[type=email]::-moz-placeholder, main.page_contact .custom_form .form_section .form_group input[type=tel]::-moz-placeholder, main.page_contact .custom_form .form_section .form_group input[type=date]::-moz-placeholder, main.page_contact .custom_form .form_section .form_group input[type=number]::-moz-placeholder, main.page_contact .custom_form .form_section .form_group textarea::-moz-placeholder {
  color: #999;
}
main.page_contact .custom_form .form_section .form_group input[type=text]::placeholder,
main.page_contact .custom_form .form_section .form_group input[type=email]::placeholder,
main.page_contact .custom_form .form_section .form_group input[type=tel]::placeholder,
main.page_contact .custom_form .form_section .form_group input[type=date]::placeholder,
main.page_contact .custom_form .form_section .form_group input[type=number]::placeholder,
main.page_contact .custom_form .form_section .form_group textarea::placeholder {
  color: #999;
}
main.page_contact .custom_form .form_section .form_group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group .checkbox_item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: solid 2px #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fafafa;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group .checkbox_item:hover {
  border-color: #007eff;
  background: #fff;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group .checkbox_item input[type=checkbox] {
  display: none;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group .checkbox_item .checkmark {
  width: 20px;
  height: 20px;
  border: solid 2px #ddd;
  border-radius: 10em;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group .checkbox_item input[type=checkbox]:checked + .checkmark {
  background: #007eff;
  border-color: #007eff;
}
main.page_contact .custom_form .form_section .form_group .checkbox_group .checkbox_item input[type=checkbox]:checked ~ span {
  color: #007eff;
  font-weight: 600;
}
main.page_contact .custom_form .form_section .form_group .date_inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
main.page_contact .custom_form .form_section .form_group .date_inputs .date_field {
  flex: 1;
}
main.page_contact .custom_form .form_section .form_group .date_inputs .date_field label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}
main.page_contact .custom_form .form_section .form_group .date_inputs .date_field input {
  text-align: center;
  font-weight: 600;
}
main.page_contact .custom_form .form_section .form_group .date_inputs .date_separator {
  font-size: 20px;
  font-weight: bold;
  color: #666;
  margin-top: 20px;
}
main.page_contact .custom_form .form_actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 30px;
}
main.page_contact .custom_form .form_actions .submit_btn,
main.page_contact .custom_form .form_actions .reset_btn {
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}
main.page_contact .custom_form .form_actions .submit_btn {
  background: #007eff;
  color: #fff;
}
main.page_contact .custom_form .form_actions .submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 126, 255, 0.4);
}
main.page_contact .custom_form .form_actions .submit_btn:active {
  transform: translateY(0);
}
main.page_contact .custom_form .form_actions .reset_btn {
  display: none;
}
main.page_contact_complete {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
}
main.page_contact_complete .complete_message {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px clamp(20px, 4vw, 60px);
  text-align: center;
}
main.page_contact_complete .complete_message h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
main.page_contact_complete .complete_message p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  main.page_contact_complete .complete_message .contact_info .contact_buttons {
    flex-direction: column;
    align-items: center;
  }
  main.page_contact_complete .complete_message .contact_info .contact_buttons .contact_btn {
    width: 100%;
    max-width: 280px;
  }
  main.page_contact_complete .complete_message .back_links {
    flex-direction: column;
    align-items: center;
  }
  main.page_contact_complete .complete_message .back_links .back_btn {
    width: 100%;
    max-width: 280px;
  }
}
main.interview_article .title {
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.interview_article .title .youtube {
  max-width: 800px;
  margin: 0 auto;
}
main.interview_article .title .youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
  margin-bottom: 20px;
}
main.interview_article .title h1 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main.interview_article .inner {
  padding: clamp(40px, 6vw, 80px) 20px;
}
main.interview_article .inner section {
  background: #fff;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
}
main.interview_article .inner section .heading {
  text-align: center;
  position: relative;
  padding: 20px;
}
main.interview_article .inner section .heading img {
  width: 80px;
  height: auto;
  position: absolute;
  inset: 0;
  top: -80px;
  margin: auto;
}
main.interview_article .inner section .heading h2 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: #fff;
  position: relative;
  background: #0071bd;
  display: inline-block;
  padding: 0.5em 1.5em;
  border-radius: 10px;
}
main.interview_article .inner section .txt {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
main.interview_article .inner p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2;
  margin-bottom: 1.5em;
}

.fixed_cta {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  z-index: 1000;
}
@media screen and (max-width: 600px) {
  .fixed_cta {
    width: 100%;
    padding: 0;
  }
}
.fixed_cta .character {
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.fixed_cta .character img {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .fixed_cta .character img {
    width: 50px;
  }
}
.fixed_cta .character span {
  font-size: clamp(12px, 1.3vw, 14px);
  display: block;
  background: #fff;
  border-radius: 5px;
  padding: 0.5em 0.8em 0.6em 3em;
  position: relative;
  left: -2.5em;
  border: solid 1px #000;
}
.fixed_cta ul {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .fixed_cta ul {
    gap: 0;
    width: 100%;
    border-top: solid 2px #000;
  }
}
@media screen and (max-width: 600px) {
  .fixed_cta ul li {
    flex: 1;
  }
}
.fixed_cta ul li a {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #fff;
  padding: 0.4em 2em 0.5em 1em;
  border-radius: 10em;
}
@media screen and (max-width: 600px) {
  .fixed_cta ul li a {
    border-radius: 0;
    justify-content: center;
    padding: 0.6em 0.4em;
  }
}
.fixed_cta ul li a img {
  width: 1.6em;
  height: auto;
}
.fixed_cta ul li a span:after {
  content: "する";
}
@media screen and (max-width: 600px) {
  .fixed_cta ul li a span:after {
    display: none;
  }
}
.fixed_cta ul li a.line {
  background: #29b000;
}
.fixed_cta ul li a.mail {
  background: #e79417;
}
.fixed_cta ul li a.tel {
  background: #3d9ae1;
}/*# sourceMappingURL=style.css.map */