@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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,600;1,600&display=swap");
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.3rem, 1.0569620253rem + 0.3164556962vw, 1.5rem);
  line-height: 1.8;
}

_:-ms-lang(x)::-ms-backdrop, body {
  font-family: "メイリオ", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, dl {
  margin: 0;
}

dd {
  margin-left: 0;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

th, td {
  padding: 0;
}

ul, ol {
  margin: 0;
  padding-left: 0;
}
ul li, ol li {
  list-style: none;
}

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

img[src$=".svg"] {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
  height: auto;
}
svg[display=none] {
  display: none;
}

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

/* ==========================================================================
   common
   ========================================================================== */
.wrap {
  width: 79.4871794872%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .wrap {
    width: min(1340px, 92.5373134328%);
  }
}

.sp {
  display: block;
}

.pc {
  display: none;
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
.number {
  font-family: "Josefin Sans", sans-serif;
}

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

.marker-white {
  background: linear-gradient(transparent 50%, #fff 50%);
}

.colored {
  color: #FF7000;
}

.sub-colored {
  color: #FF8627;
}

.border-b {
  border-bottom: 1px solid currentColor;
}

.bold {
  font-weight: 700;
}

.txt-link {
  display: inline-block;
  color: #FF7000;
  text-decoration: underline;
  transition: 0.2s ease-in;
}

.txt-link:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 28.6458333333vw, 348px);
  background: #FF8627;
  border: 2px solid #FF8627;
  color: #fff;
  font-size: clamp(1.4rem, 0.6708860759rem + 0.9493670886vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 0.8em 0.5em;
  margin: 0 auto;
  position: relative;
  transition: 0.3s ease-in;
}
.btn:hover {
  background: #fff;
  color: #FF8627;
  transition: 0.3s ease-in;
}
.btn.color01 {
  background-color: #66D5D4;
  border-color: #66D5D4;
}
.btn.color01:hover {
  background: #fff;
  color: #66D5D4;
}
.btn.color02 {
  background-color: #F5C31E;
  border-color: #F5C31E;
}
.btn.color02:hover {
  background: #fff;
  color: #F5C31E;
}
.btn.white {
  color: #FF7000;
  background-color: #fff;
  border-color: #FF7000;
}
.btn.white:hover {
  background: #FF7000;
  color: #fff;
}
.btn.round {
  border-radius: min(40px, 7.6923076923vw);
}

.btn-box {
  margin-top: min(60px, 17.9487179487vw);
}

.btn-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(24px, 6.1538461538vw) 4.6153846154%;
}
@media screen and (min-width: 768px) {
  .btn-list {
    flex-direction: row;
  }
}

.movie-wrap {
  width: clamp(300px, 78.125%, 900px);
  margin: 0 auto;
}

.movie-box {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.movie-box iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  opacity: 0;
}
.fadeIn.in {
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}

.fadeInUp {
  opacity: 0;
}
.fadeInUp.in {
  -webkit-animation: fadeInUp 0.4s ease-out forwards;
          animation: fadeInUp 0.4s ease-out forwards;
}

/* ==========================================================================
  header
  ========================================================================== */
.header {
  width: 100%;
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 0 clamp(70px, 10.2564102564%, 140px) 0 min(60px, 3.0769230769%);
  z-index: 100;
}
@media screen and (min-width: 640px) {
  .header {
    height: 80px;
  }
}

.site-id {
  width: clamp(84px, 16.4102564103vw, 143px);
  line-height: 1;
  z-index: 1;
}

.header-inner {
  width: calc(100% - min(143px, 10.7692307692vw));
}

.header-btn a {
  width: clamp(90px, 15.3846153846vw, 224px);
  height: clamp(29px, 5.1282051282vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF7000;
  border: 1px solid #FF7000;
  border-radius: min(27px, 3.8461538462vw);
  color: #fff;
  font-size: clamp(1rem, 0.0278481013rem + 1.2658227848vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: 0.2s ease-in;
}
.header-btn a:hover {
  background: #fff;
  color: #FF7000;
  transition: 0.2s ease-in;
}

.menu {
  max-width: 480px;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: fixed;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 0 min(60px, 9.3333333333vw);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(0, 1);
  transform-origin: right;
  z-index: 10;
}
.menu .nav-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2em min(40px, 2.8571428571%);
  margin-bottom: 2em;
}
.menu .nav-list a {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  color: #fff;
  font-size: clamp(1.6rem, 0.8708860759rem + 0.9493670886vw, 2.2rem);
  font-weight: 600;
  transition: 0.3s ease-in;
}
.menu .nav-list a:hover {
  color: #FF7000;
  transition: 0.3s ease-in;
}
.menu .nav-list .arrow {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.menu .nav-list .arrow::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  border-style: solid;
  border-top: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
  border-left: 0.3em solid currentColor;
  border-right: 0;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 640px) {
  .menu {
    height: auto;
    padding: min(155px, 11.0714285714vw) min(60px, 9.3333333333vw);
  }
}

.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: right;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  width: min(44px, 10.2564102564vw);
  height: min(44px, 10.2564102564vw);
  position: absolute;
  right: min(60px, 3.0769230769%);
  top: 50%;
  cursor: pointer;
  transition: 0.2s all ease-in;
  transform: translateY(-50%);
  z-index: 999;
}
.menu-icon .line {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s ease-in;
}
.menu-icon .line:nth-of-type(1) {
  top: 10px;
}
.menu-icon .line:nth-of-type(2) {
  top: 20px;
}
.menu-icon .line:nth-of-type(3) {
  top: 30px;
}
@media (hover: hover) {
  .menu-icon:hover .line {
    background-color: #FF7000;
    transition: 0.3s ease-in;
  }
}

.menu-btn:checked ~ .menu-icon .line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .line:nth-of-type(2) {
  opacity: 0;
}
.menu-btn:checked ~ .menu-icon .line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.menu-btn:checked ~ .menu-icon .icon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .icon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .icon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .icon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .icon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* ==========================================================================
   mv
========================================================================== */
.main-container {
  overflow: hidden;
}

.mv {
  width: 100%;
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.mv::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
}
.mv img {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .mv {
    max-height: 800px;
    margin-top: 80px;
  }
}
.mv .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.mv-title {
  color: #fff;
  font-size: clamp(2rem, -1.6455696203rem + 4.746835443vw, 5rem);
  font-weight: 800;
  line-height: 1.25;
}
.mv-catch {
  color: #fff;
  font-size: clamp(1.4rem, -0.3012658228rem + 2.2151898734vw, 2.8rem);
  font-weight: 700;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .mv-catch {
    line-height: 3;
    margin-top: 1em;
  }
}

@media screen and (min-width: 1400px) {
  .mv-bg {
    height: 790px;
  }
  .mv-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.contact-container {
  background: linear-gradient(90deg, rgb(255, 234, 107) 0%, rgb(254, 166, 22) 60%);
  color: #fff;
  font-size: clamp(1.4rem, 0.6708860759rem + 0.9493670886vw, 2rem);
  font-weight: 600;
  text-align: center;
  padding: min(70px, 5.1282051282vw) 0 min(60px, 6.1538461538vw);
}
.contact-container .btn-box {
  margin-top: min(48px, 6.1538461538vw);
}
.contact-container .btn-box a {
  border-radius: 5px;
}

.interview-container {
  padding: min(170px, 15.3846153846vw) 0 min(150px, 20.5128205128vw);
}
.interview-container .interview-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.8rem, -0.3873417722rem + 2.8481012658vw, 3.6rem);
  font-weight: 600;
  text-align: center;
  margin: 0 auto min(100px, 9.7435897436vw);
  position: relative;
}
.interview-container .interview-title::before {
  content: "";
  background: url(../../assets/img/top/interview-title.svg) center/contain no-repeat;
  width: min(420px, 44.8717948718vw);
  height: min(64px, 6.9230769231vw);
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 640px) {
  .interview-container .interview-title::before {
    top: -20px;
  }
}
@media screen and (min-width: 768px) {
  .interview-container .wrap {
    width: min(1240px, 90.2777777778%);
  }
}

.interview-group {
  display: flex;
  flex-direction: column;
  gap: min(120px, 17.9487179487vw) 1.6129032258%;
}
@media screen and (min-width: 768px) {
  .interview-group {
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.interview-item a {
  display: block;
  position: relative;
  transition: 0.3s ease-in;
}
.interview-item a:hover .img-box {
  filter: drop-shadow(0 0 1em rgba(245, 195, 30, 0.8)) brightness(1.05);
  transition: 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .interview-item a:hover .interview-txt {
    filter: drop-shadow(0 0 1em rgba(245, 195, 30, 0.8));
    transition: 0.3s ease-in;
  }
}
.interview-item .interview-row {
  display: flex;
  -moz-column-gap: 3.2258064516%;
       column-gap: 3.2258064516%;
  align-items: center;
  margin-bottom: min(20px, 5.1282051282vw);
}
.interview-item .interview-row .img-box {
  width: 40.3225806452%;
  border-radius: min(5px, 0.5128205128vw);
  overflow: hidden;
  transition: 0.3s ease-in;
}
.interview-item .interview-row .txt-box {
  width: 56.4516129032%;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .interview-item .interview-row {
    align-items: flex-start;
    margin-bottom: 0;
  }
  .interview-item .interview-row .txt-box {
    margin-top: min(20px, 1.4285714286vw);
  }
}
.interview-item .studio {
  font-size: clamp(1.6rem, 0.5063291139rem + 1.4240506329vw, 2.5rem);
  font-weight: 700;
}
.interview-item .com {
  font-size: clamp(1.2rem, 0.4708860759rem + 0.9493670886vw, 1.8rem);
  font-weight: 700;
  line-height: 1.6;
  margin-top: min(10px, 5.1282051282vw);
}
.interview-item .com .small {
  font-size: clamp(1.2rem, 0.9569620253rem + 0.3164556962vw, 1.4rem);
}
.interview-item .name {
  font-size: clamp(1.3rem, -0.2797468354rem + 2.0569620253vw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
}
.interview-item .name .post {
  display: block;
  font-size: clamp(1.2rem, 0.9569620253rem + 0.3164556962vw, 1.4rem);
}
.interview-item .name .small {
  font-size: 80%;
}
.interview-item .interview-txt {
  display: flex;
  flex-direction: column;
  row-gap: min(30px, 3.8461538462vw);
  font-size: clamp(1.4rem, 1.2784810127rem + 0.1582278481vw, 1.5rem);
}
.interview-item .readmore {
  color: #F5C31E;
  font-size: clamp(1.4rem, 1.1569620253rem + 0.3164556962vw, 1.6rem);
  font-weight: 700;
  margin-left: auto;
}
.interview-item .readmore .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  position: relative;
}
.interview-item .readmore .arrow::before, .interview-item .readmore .arrow::after {
  content: "";
  position: absolute;
}
.interview-item .readmore .arrow::before {
  width: 100%;
  height: 2px;
  left: -2px;
  top: 50%;
  background: #F5C31E;
  transform: translateY(-50%);
}
.interview-item .readmore .arrow::after {
  width: 7px;
  height: 7px;
  right: 0;
  top: calc(50% - 1px);
  border-right: 2px solid #F5C31E;
  border-bottom: 2px solid #F5C31E;
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  .interview-item {
    width: 49.1935483871%;
  }
  .interview-item .interview-txt {
    width: min(416px, 68.1967213115%);
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    padding: min(20px, 1.4285714286vw) min(30px, 2.1428571429vw);
    margin: -21.5633423181% 0 0 auto;
    position: relative;
    z-index: 1;
  }
}

/* ==========================================================================
  footer
========================================================================== */
.footer {
  background: #000;
}
@media screen and (min-width: 768px) {
  .footer .wrap {
    width: min(1240px, 90.2777777778%);
  }
}
.footer .copyright {
  color: #fff;
  font-size: clamp(1rem, 0.7569620253rem + 0.3164556962vw, 1.2rem);
  text-align: center;
  padding: min(20px, 5.1282051282vw) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  row-gap: min(50px, 12.8205128205vw);
  padding: min(40px, 10.2564102564vw) 0;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-col .menu-list li {
  padding-left: 1.4em;
  position: relative;
}
.footer-col .menu-list li + li {
  margin-top: min(20px, 5.1282051282vw);
}
.footer-col .menu-list li::before {
  content: ">";
  color: #FF7000;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-col .menu-list a {
  display: block;
  color: #fff;
  transition: 0.2s ease-in;
}
.footer-col .menu-list a:hover {
  color: #FF7000;
  transition: 0.2s ease-in;
}
.footer-col.footer-group {
  display: flex;
  flex-wrap: wrap;
  gap: min(25px, 6.4102564103vw) 16.1290322581%;
}
.footer-col.footer-group .img {
  width: 41.935483871%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-col.footer-group .group-list {
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .footer-col.footer-group {
    width: 50%;
    justify-content: flex-end;
    -moz-column-gap: 8.5714285714%;
         column-gap: 8.5714285714%;
    border-left: 1px dashed #5C5C5C;
  }
  .footer-col.footer-group .group-list {
    width: 18.5714285714%;
    display: flex;
    flex-direction: column;
    row-gap: min(20px, 1.4285714286vw);
  }
  .footer-col.footer-group .img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer-col {
    flex-shrink: 0;
  }
}

.footer-btn .btn {
  margin: min(40px, 10.2564102564vw) auto;
}
@media screen and (min-width: 768px) {
  .footer-btn .btn {
    margin: min(40px, 10.2564102564vw) 0;
  }
}

/* ==========================================================================
   top
   ========================================================================== */
.top .content-title01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.6rem, -0.3443037975rem + 2.5316455696vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 auto min(80px, 12.8205128205vw);
  position: relative;
}
.top .content-title01::before {
  content: "";
  width: min(125px, 11.5384615385vw);
  height: min(115px, 10.5128205128vw);
  position: absolute;
  left: max(-80px, -7.6923076923vw);
  top: 50%;
  background: url(../../assets/img/top/title-object01.svg) center/contain no-repeat;
  transform: translateY(-50%);
  z-index: -1;
}
.top .content-lead {
  font-size: clamp(1.4rem, 0.6708860759rem + 0.9493670886vw, 2rem);
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin-bottom: min(120px, 15.3846153846vw);
}
.top .about-container {
  padding: min(120px, 15.3846153846vw) 0 min(85px, 12.8205128205vw);
}
.top .about-container .wrap {
  position: relative;
}
.top .about-container .object {
  position: absolute;
  z-index: -1;
}
.top .about-container .object.img01 {
  width: min(46px, 7.6923076923vw);
  left: -5.1282051282vw;
  top: min(122px, 44.8717948718vw);
}
@media screen and (min-width: 768px) {
  .top .about-container .object.img01 {
    left: min(90px, 6.9230769231vw);
  }
}
.top .about-container .object.img02 {
  width: min(90px, 13.3333333333vw);
  left: 13.8461538462vw;
  top: min(310px, 66.6666666667vw);
}
@media screen and (min-width: 768px) {
  .top .about-container .object.img02 {
    left: min(90px, 6.9230769231vw);
    top: min(310px, 28.6458333333vw);
  }
}
.top .about-container .object.img03 {
  width: min(109px, 11.5384615385vw);
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .top .about-container .object.img03 {
    right: min(150px, 11.5384615385vw);
    top: min(26px, 1.8571428571vw);
  }
}
.top .about-container .object.img04 {
  width: min(82px, 10.2564102564vw);
  right: -1.7948717949vw;
  top: min(330px, 66.6666666667vw);
}
@media screen and (min-width: 768px) {
  .top .about-container .object.img04 {
    right: min(40px, 3.0769230769vw);
    top: min(330px, 28.6458333333vw);
  }
}
.top .movie-wrap {
  margin-bottom: min(110px, 10.2564102564vw);
}
.top .synergy-container {
  padding: min(85px, 12.8205128205vw) 0 0;
}
@media screen and (min-width: 768px) {
  .top .synergy-container {
    padding-bottom: min(100px, 13.0208333333vw);
  }
}
.top .synergy-list {
  width: min(300px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  counter-reset: synergynumber;
  margin: min(150px, 20.5128205128vw) auto 0;
}
.top .synergy-list li {
  display: flex;
  align-items: center;
  -moz-column-gap: min(20px, 4.1025641026vw);
       column-gap: min(20px, 4.1025641026vw);
}
.top .synergy-list li:nth-child(2n+1) {
  margin-right: auto;
}
.top .synergy-list li:nth-child(2n) {
  margin-left: auto;
}
.top .synergy-list .number {
  counter-increment: synergynumber;
  color: rgba(255, 112, 0, 0.22);
  font-size: clamp(3rem, 0.8126582278rem + 2.8481012658vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
.top .synergy-list .number::before {
  content: counter(synergynumber, decimal-leading-zero);
}
.top .synergy-list .inner {
  text-align: center;
}
.top .synergy-list .img-box {
  width: min(103px, 15.3846153846vw);
  margin: 0 auto min(30px, 5.1282051282vw);
}
.top .synergy-list .txt {
  font-size: clamp(1.4rem, 0.9139240506rem + 0.6329113924vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
}
.top .synergy-list .txt .large {
  font-size: clamp(1.4rem, 0.1848101266rem + 1.582278481vw, 2.4rem);
}
@media screen and (min-width: 640px) {
  .top .synergy-list {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 5.3846153846%;
         column-gap: 5.3846153846%;
  }
  .top .synergy-list li {
    flex-shrink: 0;
    align-items: flex-end;
  }
  .top .synergy-list li:nth-child(2n+1) {
    margin-right: 0;
  }
  .top .synergy-list li:nth-child(2n) {
    margin-left: 0;
  }
}
.top .reason-block {
  counter-reset: reasonnumber;
  margin-top: -1.1510791367vw;
  padding: min(150px, 38.4615384615vw) 0 min(210px, 30.7692307692vw);
  position: relative;
}
.top .reason-block::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFEA6B;
  -webkit-clip-path: polygon(0 6%, 100% 0, 100% 94%, 0% 100%);
          clip-path: polygon(0 6%, 100% 0, 100% 94%, 0% 100%);
  z-index: -1;
}
@media screen and (min-width: 640px) {
  .top .reason-block {
    margin-top: min(110px, 7.8571428571vw);
  }
  .top .reason-block::before {
    -webkit-clip-path: polygon(0 12%, 100% 0, 100% 88%, 0% 100%);
            clip-path: polygon(0 12%, 100% 0, 100% 88%, 0% 100%);
  }
}
.top .reason-item {
  display: flex;
  flex-direction: column;
  gap: 0 4.6153846154%;
}
.top .reason-item + .reason-item {
  margin-top: min(100px, 12.8205128205vw);
}
.top .reason-item .reason-img {
  margin-bottom: min(20px, 5.1282051282vw);
}
.top .reason-item .reason-img img {
  width: 100%;
}
.top .reason-item .reason-txt {
  margin-top: 12.8205128205vw;
}
.top .reason-item .reason-txt p + p {
  margin-top: 1em;
}
.top .reason-item .reason-number {
  color: #FF7000;
  font-size: clamp(1.6rem, 0.6278481013rem + 1.2658227848vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: min(30px, 5.1282051282vw);
}
.top .reason-item .reason-number .number {
  counter-increment: reasonnumber;
  margin-left: 0.4em;
}
.top .reason-item .reason-number .number::after {
  content: counter(reasonnumber, decimal-leading-zero);
  font-size: clamp(2.8rem, 0.3696202532rem + 3.164556962vw, 4.8rem);
  letter-spacing: 0.1em;
  line-height: 1;
}
.top .reason-item .reason-title {
  font-size: clamp(2rem, 0.5417721519rem + 1.8987341772vw, 3.2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: min(30px, 5.1282051282vw);
}
.top .reason-item .btn-box {
  margin-top: min(50px, 5.1282051282vw);
}
@media screen and (min-width: 640px) {
  .top .reason-item {
    flex-direction: row;
  }
  .top .reason-item.reverse {
    flex-direction: row-reverse;
  }
  .top .reason-item .reason-img {
    width: 41.2307692308%;
    margin-bottom: 0;
  }
  .top .reason-item .reason-txt {
    width: 54.1538461538%;
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  .top .reason-item .reason-txt {
    display: contents;
  }
  .top .reason-item .reason-number {
    order: -2;
  }
  .top .reason-item .reason-title {
    order: -1;
    text-align: center;
  }
}
.top .support-block {
  padding: min(180px, 7.6923076923vw) 0 min(90px, 15.3846153846vw);
}
.top .support-block .wrap {
  padding: 0 1.6129032258%;
}
@media screen and (min-width: 640px) {
  .top .support-block .wrap {
    padding: 0 3.0769230769%;
  }
}
.top .support-title01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5em;
  margin-bottom: min(150px, 17.9487179487vw);
}
.top .support-title01 .title {
  background: #F5C31E;
  color: #fff;
  font-size: clamp(1.6rem, -0.3443037975rem + 2.5316455696vw, 3.2rem);
  font-weight: 700;
  padding: 0.5em 1.5em;
}
.top .support-title01 .txt {
  color: #F5C31E;
  font-size: clamp(1.4rem, 0.1848101266rem + 1.582278481vw, 2.4rem);
  font-weight: 700;
}
@media screen and (min-width: 640px) {
  .top .support-title01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
    border-bottom: 1px solid #F5C31E;
  }
  .top .support-title01 .txt {
    padding: 0 1.6em;
  }
}
.top .support-item {
  display: flex;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.top .support-item + .support-item {
  margin-top: min(160px, 12.8205128205vw);
}
.top .support-item .support-title02 {
  font-size: clamp(1.6rem, 0.6278481013rem + 1.2658227848vw, 2.4rem);
  font-weight: 700;
}
.top .support-item .txt {
  font-size: clamp(1.4rem, 0.9139240506rem + 0.6329113924vw, 1.8rem);
  font-weight: 400;
}
@media screen and (min-width: 640px) {
  .top .support-item {
    -moz-column-gap: 4.0983606557%;
         column-gap: 4.0983606557%;
  }
  .top .support-item .support-img {
    width: 15.1639344262%;
  }
  .top .support-item .support-txt {
    width: 79.9180327869%;
  }
  .top .support-item .support-title02 {
    margin-bottom: min(30px, 2.1428571429vw);
  }
}
@media screen and (max-width: 639px) {
  .top .support-item {
    flex-wrap: wrap;
    align-items: center;
    gap: min(30px, 7.6923076923vw) 5%;
  }
  .top .support-item .support-txt {
    display: contents;
  }
  .top .support-item .support-img {
    width: 23.3333333333%;
  }
  .top .support-item .support-title02 {
    width: 71.6666666667%;
  }
  .top .support-item .txt {
    width: 100%;
  }
}
.top .flow-box {
  margin-top: min(260px, 15.3846153846vw);
  border: min(3px, 0.5128205128vw) solid #F5C31E;
  border-radius: min(20px, 5.1282051282vw);
  padding: min(80px, 12.8205128205vw) min(100px, 7.6923076923vw) min(60px, 10.2564102564vw);
  position: relative;
}
.top .flow-box .flow-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: min(365px, 46.1538461538vw);
  position: absolute;
  left: 50%;
  top: 0;
  background: #fff;
  border: min(3px, 0.5128205128vw) solid #F5C31E;
  border-radius: 40px;
  font-size: clamp(1.6rem, -0.3443037975rem + 2.5316455696vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 0.4em 0;
  transform: translate(-50%, -50%);
}
.top .studio-container {
  background: #66D5D4;
  color: #fff;
  padding: min(80px, 15.3846153846vw) 0 min(100px, 12.8205128205vw);
}
.top .studio-container .catch {
  font-size: clamp(1.6rem, -0.3443037975rem + 2.5316455696vw, 3.2rem);
  font-weight: 700;
  line-height: 1.6;
}
.top .studio-container .catch .large {
  font-size: clamp(1.8rem, -1.8455696203rem + 4.746835443vw, 4.8rem);
  line-height: 1.4;
}
.top .studio-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: min(20px, 5.1282051282vw);
}
.top .studio-inner {
  padding-bottom: min(60px, 15.3846153846vw);
  position: relative;
}
.top .studio-inner .studio-img {
  width: min(875px, 100%);
  margin: 0 auto min(46px, 11.7948717949vw);
}
@media screen and (min-width: 768px) {
  .top .studio-inner {
    margin-top: max(-70px, -5vw);
  }
}
.top .studio-list {
  width: 50%;
  font-size: clamp(1.4rem, 0.4278481013rem + 1.2658227848vw, 2.2rem);
  font-weight: 700;
}
.top .studio-list .title {
  color: #FFF500;
}
.top .studio-list a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top .studio-list {
    width: auto;
    position: absolute;
    z-index: 1;
  }
  .top .studio-list.hokkaido-tohoku {
    top: 17.6923076923%;
    right: 6.1349693252%;
  }
  .top .studio-list.kanto {
    top: 46.1538461538%;
    right: 0;
  }
  .top .studio-list.tokyo {
    bottom: 0;
    right: 20.4498977505%;
  }
  .top .studio-list.kinki {
    bottom: 0;
    left: 38.854805726%;
  }
  .top .studio-list.chubu {
    top: 13.8461538462%;
    left: 36.8098159509%;
  }
  .top .studio-list.chugoku-shikoku {
    top: 20%;
    left: 18.4049079755%;
  }
  .top .studio-list.kyushu {
    top: 46.1538461538%;
    left: 0;
  }
}

/* ==========================================================================
  about
  ========================================================================== */
.about .about-container {
  padding: min(160px, 12.8205128205vw) 0 min(150px, 17.9487179487vw);
}
.about .about-container .wrap {
  width: min(1200px, 90.2777777778%);
}
.about .about-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: min(24px, 6.1538461538vw) 5.3846153846%;
}
.about .about-item + .about-item {
  margin-top: min(140px, 15.3846153846vw);
}
.about .about-item .item-title {
  color: #FF7000;
  font-size: clamp(1.8rem, 0.3417721519rem + 1.8987341772vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: min(30px, 7.6923076923vw);
}
.about .about-item .txt {
  font-size: clamp(1.4rem, 0.9139240506rem + 0.6329113924vw, 1.8rem);
}
.about .about-item .img01 {
  width: min(436px, 64.5161290323%);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about .about-item {
    flex-direction: row;
    align-items: flex-start;
  }
  .about .about-item.reverse {
    flex-direction: row-reverse;
  }
  .about .about-item .txt-box {
    width: 52.5%;
  }
  .about .about-item .img-box {
    width: 41.6666666667%;
  }
  .about .about-item .item-title {
    text-align: left;
  }
}
.about .about-img {
  width: min(205px, 52.5641025641vw);
  margin: min(160px, 15.3846153846vw) auto 0;
}
@media screen and (min-width: 768px) {
  .about .about-img {
    width: min(842px, 60.1428571429vw);
  }
}
.about .cost-box {
  width: min(846px, 100%);
  border: min(3px, 0.5128205128vw) solid #F5C31E;
  border-radius: 5px;
  margin: min(180px, 17.9487179487vw) auto 0;
  padding: min(30px, 7.6923076923vw) min(50px, 5.1282051282vw) min(40px, 10.2564102564vw);
}
.about .cost-box .box-title {
  color: #FF7000;
  font-size: clamp(1.6rem, 0.1417721519rem + 1.8987341772vw, 2.8rem);
  font-weight: 700;
  margin-bottom: min(20px, 5.1282051282vw);
}
.about .cost-box .box-inner + .box-inner {
  margin-top: min(30px, 6.1538461538vw);
}
.about .cost-box .cost-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.6rem, 0.6278481013rem + 1.2658227848vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.about .cost-box .cost-list {
  padding-left: 1em;
}
.about .cost-box .cost-list li {
  display: flex;
  justify-content: space-between;
  font-size: clamp(1.4rem, 0.6708860759rem + 0.9493670886vw, 2rem);
  font-weight: 700;
}
.about .cost-box .cost-list li + li {
  margin-top: 0.5em;
}
.about .cost-box .cost-list .small {
  font-size: 70%;
}
.about .cost-box .note {
  font-size: clamp(1.2rem, 0.9569620253rem + 0.3164556962vw, 1.4rem);
  margin: 1em 0 0 1em;
}
.about .learning-container {
  background: linear-gradient(0deg, #F5C51E 0%, #FEA616 100%);
  padding: min(70px, 12.8205128205vw) 0;
}
.about .learning-container .learning-title {
  color: #fff;
  font-size: clamp(2rem, 0.5417721519rem + 1.8987341772vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: min(40px, 10.2564102564vw);
}
.about .learning-container .lead {
  color: #fff;
  font-size: clamp(1.4rem, 0.6708860759rem + 0.9493670886vw, 2rem);
  font-weight: 700;
  margin-bottom: min(50px, 10.2564102564vw);
}
@media screen and (min-width: 768px) {
  .about .learning-container .lead {
    text-align: center;
  }
}
.about .learning-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(50px, 10.2564102564vw) 2.9850746269%;
}
.about .learning-list .img-box img {
  border: 5px solid #fff;
}
.about .learning-list .caption {
  color: #fff;
  font-size: clamp(1.6rem, 0.6278481013rem + 1.2658227848vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-top: min(16px, 2.5641025641vw);
}
@media screen and (min-width: 640px) {
  .about .learning-list {
    flex-direction: row;
    align-items: flex-start;
  }
  .about .learning-list li {
    width: 31.3432835821%;
  }
}

/* ==========================================================================
  studio
  ========================================================================== */
.studio .studio-container {
  padding: min(130px, 10.2564102564vw) 0 min(170px, 20.5128205128vw);
}
@media screen and (min-width: 768px) {
  .studio .studio-container .wrap {
    width: min(1140px, 81.4285714286%);
  }
}
.studio .container-group {
  display: flex;
  flex-direction: column;
  row-gap: min(140px, 10.2564102564vw);
}
.studio .studio-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.6rem, -0.1012658228rem + 2.2151898734vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin: 0 auto min(60px, 7.6923076923vw);
}
.studio .marker {
  background: linear-gradient(transparent 85%, #FEA616 85%);
  padding-bottom: 0.2em;
}
.studio .lead {
  font-size: clamp(1.4rem, 0.9139240506rem + 0.6329113924vw, 1.8rem);
  font-weight: 500;
}
.studio .lead + .lead {
  margin-top: 1em;
}
@media screen and (min-width: 640px) {
  .studio .lead {
    text-align: center;
  }
}
.studio .studio-img-box {
  width: min(243px, 78.3870967742%);
  margin: min(100px, 12.8205128205vw) auto min(180px, 17.9487179487vw);
}
@media screen and (min-width: 480px) {
  .studio .studio-img-box {
    width: min(962px, 100%);
  }
}
.studio .content-row {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 4.3859649123%;
       column-gap: 4.3859649123%;
  position: relative;
}
.studio .content-row::after {
  content: "";
  width: 100vw;
  height: 1px;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.studio .content-row .box-title {
  font-size: clamp(1.6rem, 0.1417721519rem + 1.8987341772vw, 2.8rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: min(60px, 12.8205128205vw);
}
.studio .content-row.color01::after {
  top: min(34px, 8.7179487179vw);
  background: #66D5D4;
}
.studio .content-row.color01 .box-title {
  color: #66D5D4;
}
.studio .content-row.color02::after {
  top: min(60px, 15.3846153846vw);
  background: #F5C31E;
}
.studio .content-row.color02 .box-title {
  color: #F5C31E;
}
@media screen and (max-width: 639px) {
  .studio .content-row .box-title {
    order: -1;
    text-align: center;
  }
  .studio .content-row .txt-box {
    display: contents;
  }
  .studio .content-row .img-box {
    margin: 0 auto min(30px, 7.6923076923vw);
  }
}
@media screen and (min-width: 640px) {
  .studio .content-row {
    flex-direction: row;
  }
  .studio .content-row .img-box {
    width: 47.8070175439%;
  }
  .studio .content-row .txt-box {
    width: 47.8070175439%;
  }
  .studio .content-row.color01::after {
    top: min(60px, 4.2857142857vw);
  }
  .studio .content-row.color02::after {
    top: min(100px, 7.1428571429vw);
  }
}
.studio .btn.emerald {
  border-color: #66D5D4;
  background: #fff;
  color: #66D5D4;
}
.studio .btn.emerald:hover {
  background: #66D5D4;
  color: #fff;
}
.studio .course-container {
  padding: 0 0 min(150px, 15.3846153846vw);
}
@media screen and (min-width: 768px) {
  .studio .course-container .wrap {
    width: min(1220px, 87.1428571429%);
  }
}
.studio .course-title01 {
  font-size: clamp(1.6rem, -0.1012658228rem + 2.2151898734vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto min(38px, 9.7435897436vw);
  position: relative;
}
.studio .course-title01::before {
  content: "";
  background: url(../../assets/img/studio/course-title.svg) center/contain no-repeat;
  width: min(450px, 32.0512820513vw);
  height: min(65px, 7.6923076923vw);
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 640px) {
  .studio .course-title01 {
    margin: 0 auto;
  }
  .studio .course-title01::before {
    top: -30px;
  }
}
.studio .course-title02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #FF8627;
  color: #fff;
  font-size: clamp(1.4rem, 0.1848101266rem + 1.582278481vw, 2.4rem);
  font-weight: 700;
  padding: 0.5em 1.5em;
  margin-bottom: min(30px, 5.1282051282vw);
}
.studio .course-img-list {
  display: flex;
  flex-direction: column;
  gap: min(26px, 6.6666666667vw) 7.2131147541%;
  margin: min(60px, 7.6923076923vw) 0;
}
@media screen and (min-width: 640px) {
  .studio .course-img-list {
    flex-direction: row;
  }
  .studio .course-img-list li {
    width: 46.393442623%;
  }
}
.studio .btn-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(20px, 6.6666666667vw) 10.6557377049%;
}
@media screen and (min-width: 640px) {
  .studio .btn-list {
    flex-direction: row;
  }
}
.studio .course-group {
  padding: min(10px, 2.5641025641vw) 0 0;
  position: relative;
}
.studio .course-group + .course-group {
  margin-top: min(150px, 15.3846153846vw);
}
.studio .course-group::after {
  content: "";
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 138, 0, 0.2);
  -webkit-clip-path: polygon(0 13%, 100% 0%, 100% 87%, 0% 100%);
          clip-path: polygon(0 13%, 100% 0%, 100% 87%, 0% 100%);
  z-index: -1;
}
@media screen and (min-width: 640px) {
  .studio .course-group::after {
    height: 100%;
    -webkit-clip-path: polygon(0 40%, 100% 0%, 100% 60%, 0% 100%);
            clip-path: polygon(0 40%, 100% 0%, 100% 60%, 0% 100%);
  }
}
.studio .course-group.web::after {
  background: rgba(245, 195, 30, 0.2);
}
.studio .course-group.web .course-title02 {
  background: #F5C31E;
}
.studio .course-group.web .btn {
  background: #F5C31E;
  border-color: #F5C31E;
}
.studio .course-group.web .btn:hover {
  background: #fff;
  color: #F5C31E;
}
.studio .course-group.netmovie::after {
  background: rgba(102, 213, 212, 0.2);
}
.studio .course-group.netmovie .course-title02 {
  background: #66D5D4;
}
.studio .course-group.netmovie .btn {
  background: #66D5D4;
  border-color: #66D5D4;
}
.studio .course-group.netmovie .btn:hover {
  background: #fff;
  color: #66D5D4;
}
@media screen and (min-width: 640px) {
  .studio .course-group {
    padding: min(140px, 10vw) 0 min(120px, 8.5714285714vw);
  }
  .studio .course-group + .course-group {
    margin-top: 0;
  }
}
.studio .course-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(40px, 10.2564102564vw) 7.3770491803%;
  margin-top: min(60px, 15.3846153846vw);
}
.studio .course-row .course-img img {
  filter: drop-shadow(10px 10px 0 #F5C31E);
}
@media screen and (min-width: 640px) {
  .studio .course-row {
    flex-direction: row;
  }
  .studio .course-row .course-img {
    width: 45.0819672131%;
  }
  .studio .course-row .course-txt {
    width: 47.5409836066%;
  }
}

/* ==========================================================================
  interview
========================================================================== */
.interview .interview-block + .interview-block {
  margin-top: min(130px, 17.9487179487vw);
}
.interview .block-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.6rem, -0.1012658228rem + 2.2151898734vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto min(110px, 15.3846153846vw);
  padding-bottom: min(50px, 5.1282051282vw);
  position: relative;
}
.interview .block-title::after {
  content: "";
  width: min(507px, 72.8205128205vw);
  height: min(24px, 3.5897435897vw);
  position: absolute;
  left: 50%;
  bottom: 0;
  background: url(../../assets/img/interview/title-object01.svg) center repeat-x;
  background-size: 100% auto;
  transform: translateX(-50%);
}
.interview .content-row {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: min(30px, 7.6923076923vw) 5.3571428571%;
}
.interview .content-row .txt {
  font-size: clamp(1.3rem, 0.935443038rem + 0.4746835443vw, 1.6rem);
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .interview .content-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0 min(60px, 4.2857142857vw);
  }
  .interview .content-row .img-box {
    width: 35.7142857143%;
  }
  .interview .content-row .txt-box {
    width: 58.9285714286%;
  }
  .interview .content-row .txt {
    line-height: 2.1875;
  }
}

.interview-single .mv-title {
  line-height: 2;
}
.interview-single .interview-container {
  padding-bottom: min(80px, 15.3846153846vw);
}
@media screen and (min-width: 768px) {
  .interview-single .wrap {
    width: min(1000px, 92.5373134328%);
  }
}
.interview-single .content-block {
  padding-top: min(70px, 12.8205128205vw);
  position: relative;
}
.interview-single .content-block::before {
  content: "";
  width: min(500px, 51.2820512821vw);
  height: min(500px, 51.2820512821vw);
  position: absolute;
  left: max(-200px, -10.2564102564vw);
  top: 0;
  background: #FFF8E1;
  z-index: -1;
}
.interview-single .block-title {
  color: #EDAA18;
  font-size: clamp(1.8rem, -0.3873417722rem + 2.8481012658vw, 3.6rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: min(90px, 10.2564102564vw);
}
.interview-single .content-head {
  display: flex;
  flex-direction: column;
  gap: min(40px, 10.2564102564vw) 7%;
  margin-bottom: min(140px, 12.8205128205vw);
}
.interview-single .content-head .head-txt {
  line-height: 1.4;
  position: relative;
}
.interview-single .content-head .head-txt::after {
  content: "";
  width: 100%;
  height: min(20px, 5.1282051282vw);
  position: absolute;
  left: 50%;
  bottom: max(-25px, -5.1282051282vw);
  background: url(../../assets/img/interview/title-object01.svg) center repeat-x;
  background-size: 100% auto;
  transform: translateX(-50%);
}
@media screen and (min-width: 640px) {
  .interview-single .content-head .head-txt::after {
    width: 107%;
    height: min(40px, 2.8571428571vw);
    left: -7%;
    bottom: min(80px, 5.7142857143vw);
    transform: translateX(0);
  }
}
.interview-single .content-head .label {
  color: #EDAA18;
  font-size: clamp(1.4rem, -0.3012658228rem + 2.2151898734vw, 2.8rem);
  font-weight: 700;
  margin-bottom: min(20px, 2.5641025641vw);
}
.interview-single .content-head .base {
  font-size: clamp(1.6rem, -0.1012658228rem + 2.2151898734vw, 3rem);
  font-weight: 700;
  margin-bottom: min(40px, 5.1282051282vw);
}
.interview-single .content-head .com {
  font-size: clamp(1.2rem, 0.2278481013rem + 1.2658227848vw, 2rem);
  font-weight: 700;
}
.interview-single .content-head .name {
  font-size: clamp(1.6rem, -0.1012658228rem + 2.2151898734vw, 3rem);
  font-weight: 700;
}
.interview-single .content-head .name .small {
  font-size: 80%;
}
.interview-single .content-head .head-img {
  aspect-ratio: 400/400;
  border-radius: 5px;
  overflow: hidden;
}
.interview-single .content-head .head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (min-width: 640px) {
  .interview-single .content-head {
    flex-direction: row-reverse;
  }
  .interview-single .content-head .head-img {
    width: 49%;
  }
  .interview-single .content-head .head-txt {
    width: 54%;
    margin-top: min(40px, 5.2083333333vw);
  }
}
.interview-single .i-catch {
  font-size: clamp(1.6rem, 0.1417721519rem + 1.8987341772vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin: 0 auto min(60px, 7.6923076923vw);
  position: relative;
}
.interview-single .i-catch::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #FF7000;
  transform: translateX(-50%);
}
@media screen and (min-width: 640px) {
  .interview-single .i-catch::after {
    width: 85.7142857143vw;
    left: auto;
    right: 0;
    transform: translateX(0);
  }
  .interview-single .i-catch.reverse::after {
    right: auto;
    left: 0;
  }
}
.interview-single .i-txt {
  font-size: clamp(1.3rem, 0.6924050633rem + 0.7911392405vw, 1.8rem);
}
.interview-single .i-txt + .i-catch {
  margin-top: min(80px, 10.2564102564vw);
}
.interview-single .i-txt + .i-txt {
  margin-top: 1em;
}
.interview-single .content-row {
  display: flex;
  flex-direction: column;
  gap: min(30px, 7.6923076923vw) 6%;
  margin: min(60px, 7.6923076923vw) 0 min(80px, 10.2564102564vw);
}
@media screen and (min-width: 640px) {
  .interview-single .content-row {
    flex-direction: row;
  }
  .interview-single .content-row.reverse {
    flex-direction: row-reverse;
  }
  .interview-single .content-row .col {
    width: 47%;
  }
}