@charset "UTF-8";
/* header */
.header {
  padding: 0 30px;
}
@media (max-width: 767px) {
  .header {
    padding: 0;
  }
}

.header_container {
  height: 100px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.area_header_logo .logo {
  display: block;
  font-size: 0;
}
.area_header_logo .logo img {
  height: 20px;
  width: auto;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .area_header_logo {
    margin-left: 10px;
  }
}

#header_nav_area {
  margin-left: auto;
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}
.header_nav li {
  list-style-type: none;
}
.header_nav li.header_nav_btn_li {
  width: auto;
}
.header_nav li a {
  font-family: futura-pt, sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  -webkit-transition: color 0.5s cubic-bezier(0.4, 0.2, 0.05, 1);
  transition: color 0.5s cubic-bezier(0.4, 0.2, 0.05, 1);
  white-space: nowrap;
}
.header_nav li a:hover {
  color: #3A70D6;
}
.header_nav li a p {
  width: 100%;
  margin: 0;
}
.header_nav li a.header_nav_btn1, .header_nav li a.header_nav_btn2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  min-width: 128px;
  height: 42px;
  font-family: noto-sans-display, sans-serif;
}
.header_nav li a.header_nav_btn1 p, .header_nav li a.header_nav_btn2 p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.header_nav li a.header_nav_btn1:before, .header_nav li a.header_nav_btn2:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #3A70D6;
  border-radius: 21px;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0.2, 0.05, 1);
  transition: 0.5s cubic-bezier(0.4, 0.2, 0.05, 1);
  z-index: 0;
}
.header_nav li a.header_nav_btn1:hover:before, .header_nav li a.header_nav_btn2:hover:before {
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
}
.header_nav li a.header_nav_btn2:before {
  background: #026EAD;
}
.header_nav li.has-child > ul.active {
  display: block;
}
.header_nav li.has-child {
  position: relative;
}
.header_nav li.has-child a.submenu {
  position: relative;
}
.header_nav li.has-child a.submenu:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 30%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.header_nav li.has-child:hover ul.inner_menu {
  display: block;
}
.header_nav li.has-child ul.inner_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 216px;
  padding: 30px 35px 20px;
  z-index: 99;
}
.header_nav li.has-child ul.inner_menu li {
  width: 100%;
  text-align: left;
  display: table;
}
.header_nav li.has-child ul.inner_menu li a {
  display: block;
  height: 100%;
}
.header_nav li.has-child ul.inner_menu li + li {
  margin-top: 10px;
  padding: 0;
}
.header_nav li.has-child ul.inner_menu.active {
  display: block;
}

@media (min-width: 1025px) {
  .header_nav li.header_nav_btn_li + .header_nav_btn_li {
    padding-left: 8px;
  }
  .header_nav li + li {
    padding-left: 35px;
  }

  .sp_header_btns {
    display: none;
  }
}
/* スマホ用レイアウト */
@media screen and (max-width: 1024px) {
  main {
    margin-top: 60px;
  }

  .header_container {
    height: 58px;
    position: relative;
  }

  .area_header_logo .logo img {
    width: 130px;
    height: auto;
  }

  nav.area_header_nav {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 4vh;
    opacity: 0;
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }

  .open nav.area_header_nav {
    top: 0;
    opacity: 1;
  }

  .open nav.area_header_nav .inner {
    width: 100%;
  }

  .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header_nav li a {
    display: table;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.2rem;
    letter-spacing: 0.17em;
    line-height: 2;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    text-align: center;
  }
  .header_nav li.header_nav_btn_li {
    display: none;
  }

  .sp_header_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 280px;
    margin: 30px auto 0;
  }

  .sp_header_btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 49%;
    height: 40px;
    font-family: noto-sans-display, sans-serif;
  }
  .sp_header_btn p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 11px;
    z-index: 1;
  }
  .sp_header_btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #3A70D6;
    border-radius: 21px;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0.2, 0.05, 1);
    transition: 0.5s cubic-bezier(0.4, 0.2, 0.05, 1);
    z-index: 0;
  }
  .sp_header_btn:hover:before {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }

  .header_nav li.has-child a:before {
    top: 40%;
    right: -20px;
    left: auto;
  }

  nav ul {
    display: block;
  }

  .header_nav li.has-child {
    width: 100%;
  }

  .header_nav li.has-child ul.inner_menu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    /*JSで制御するため一旦表示*/
    padding: 28px 0 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 120, 190, 0.1);
            box-shadow: 0 0 15px rgba(0, 120, 190, 0.1);
  }
  .header_nav li.has-child ul.inner_menu li a {
    font-size: 1.1rem;
  }
  .header_nav li.has-child ul.inner_menu li + li {
    margin-top: 18px;
  }
}
/* スマホ用レイアウト */
/* ハンバーガーメニュー */
@media (min-width: 768px) {
  .toggle_btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .toggle_btn {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    height: 30px;
    z-index: 9999;
    cursor: pointer;
  }
  .toggle_btn span {
    position: absolute;
    display: block;
    left: 0;
    width: 30px;
    height: 2px;
    background: #026EAD;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 10px;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
            transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
            transform: translateY(-10px) rotate(315deg);
  }
}
/* ハンバーガーメニュー */
footer {
  background: #292929;
  height: 40px;
}

.copyright {
  text-align: center;
  font-family: "游ゴシック体", YuGothic sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  line-height: 40px;
}

.slick01 {
  max-width: 1256px;
  width: 100%;
  max-height: 622px;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.slick01 li {
  list-style: none;
}
.slick02 {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 4% auto;
  padding: 0;
}
.slick02 li {
  list-style: none;
}

.slick03 {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 4% auto;
  padding: 0;
}
.slick03 li {
  list-style: none;
}

.slick-dots li button:before {
  font-size: 30px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-slide .main_copy_02 img {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 1.2s ease-in-out 1.5s;
  transition: 1.2s ease-in-out 1s;
}
.slick-slide .main_copy_03 img {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 1.2s ease-in-out 1.7s;
  transition: 1.2s ease-in-out 1.2s;
}
.slick-slide.slick-current .main_copy_02 img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.slick-slide.slick-current .main_copy_03 img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.futura_b {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.futura_n {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
}

a.button {
  display: table;
  margin: 2% auto;
  max-width: 316px;
  width: 100%;
  height: 50px;
  position: relative;
  background: darkorange;
  color: #fff;
  border: solid 1px darkorange;
  border-radius: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a.button span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
a.button:hover {
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
}

a.btn_02 {
  display: block;
  text-decoration: none;
  background: #0379BF;
  max-width: 273px;
  width: 100%;
  margin: 0 auto;
  padding: 2.12em 3em;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 767px) {
  a.btn_02 {
    padding: 2.13em 3em;
  }
}
a.btn_02 span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
}
a.btn_02:hover {
  background: #02598d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: noto-sans-display, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 17px;
  overflow: auto;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body {
  padding: 0;
  margin: 0;
}

section {
  position: relative;
}

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

figure {
  margin: 0 !important;
}
figure img {
  width: 100%;
}

/*fonts*/
.futura {
  font-family: futura-pt, sans-serif;
}

@media (max-width: 1023px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .tablet-only {
    display: none !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .tablet-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tablet-only {
    display: none !important;
  }
}

/*main content*/
main {
  margin: 0;
  padding: 0;
}

/* main visual（PC）*/
@media (max-width: 1024px) {
  .main_visual_section {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1024px) {
  .slick01 {
    max-width: none;
    width: calc(100vw - 110px);
    margin: 0 0 auto auto;
  }

  .slick-slide > img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1023px) {
  .slick01 {
    width: 100%;
    margin: 0;
    max-height: none;
  }
}
.scroll {
  display: block;
  position: absolute;
  bottom: 0;
  left: 3.5%;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-bottom: 130px;
  font-family: futura-pt, sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0;
  z-index: 5;
}
.scroll:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto 0 auto;
  width: 1px;
  height: 120px;
  background: #000;
}
@media (max-width: 767px) {
  .scroll {
    display: none;
  }
}

button {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

button {
  display: block;
  width: 300px;
  height: 70px;
  margin: 40px auto 0;
  color: #fff;
  font-size: 1.5em;
  background: #384878;
}

.one {
  color: red;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.main_visual_section {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .main_visual_section {
    margin-bottom: 0;
  }
}

.main_visual_container {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 0 auto auto;
  padding: 0;
  overflow: hidden;
}
.main_visual_container li {
  list-style: none;
}
@media (min-width: 1025px) {
  .main_visual_container {
    width: 91.947%;
    margin-left: 8.053%;
    min-height: 622px;
  }
}
@media (max-width: 1024px) {
  .main_visual_container {
    margin: 0 auto;
  }
}

.main_copy_01 {
  position: absolute;
  top: 40px;
  left: -15px;
}
.main_copy_01 img {
  width: 227px;
  height: 389px;
}

.main_copy_02 {
  position: absolute;
  top: 27%;
  left: 66.5%;
}
@media (min-width: 1367px) {
  .main_copy_02 {
    top: auto;
    bottom: 65%;
  }
}
.main_copy_02 img {
  width: 282px;
  height: 149px;
}
.main_copy_02.ex {
  top: 57%;
}
@media (min-width: 1367px) {
  .main_copy_02.ex {
    top: auto;
    bottom: 35%;
  }
}

.main_copy_03 {
  position: absolute;
  left: 66.5%;
  top: 64%;
}
@media (min-width: 1367px) {
  .main_copy_03 {
    top: auto;
    bottom: 37%;
  }
}
.main_copy_03 img.fv_copy_img03_01 {
  width: 319px;
  height: 137px;
}
.main_copy_03 img.fv_copy_img03_02 {
  width: 237px;
  height: 133px;
}
.main_copy_03 img.fv_copy_img03_03 {
  width: 346px;
  height: 64px;
}

@media (max-width: 1024px) {
  .main_copy_01,
.main_copy_02,
.main_copy_03 {
    display: none;
  }
}
.main_visual_container .slick-slide {
  position: relative;
}

.main_copy_01 [data-aos=fv_animation01] {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
  -webkit-transition-timing-function: ease-in-out !important;
          transition-timing-function: ease-in-out !important;
  -webkit-transition-duration: 1.5s !important;
          transition-duration: 1.5s !important;
}

.main_copy_01 [data-aos=fv_animation01].aos-animate {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.main_copy_02 [data-aos=fv_animation02] {
  -webkit-transform: translateY(-149px);
          transform: translateY(-149px);
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
  -webkit-transition-timing-function: ease-in !important;
          transition-timing-function: ease-in !important;
  -webkit-transition-duration: 0.5s !important;
          transition-duration: 0.5s !important;
}

.main_copy_02 [data-aos=fv_animation02].aos-animate {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@font-face {
  font-family: "Playlist-Script";
  src: url("Playlist-Script.ttf.woff") format("woff"), url("Playlist-Script.ttf.svg#Playlist-Script") format("svg"), url("Playlist-Script.ttf.eot"), url("Playlist-Script.ttf.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}
.recruit_top_section_01 {
  position: relative;
  background: #EBEFF3;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .recruit_top_section_01 {
    height: 100vh;
    min-width: 780px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .recruit_top_section_01 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) {
  .recruit_top_section_01 {
    min-height: 768px;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_01 {
    padding: 90px 10px;
  }
}
.recruit_top_section_01 .container {
  position: relative;
  z-index: 2;
}
.recruit_top_section_01 h2 {
  text-align: center;
  font-weight: bold;
}
.recruit_top_section_01 h2 span {
  display: block;
}
.recruit_top_section_01 h2 span:nth-child(1) {
  font-family: "游ゴシック体", YuGothic sans-serif;
  font-weight: bold;
  color: #020202;
  font-size: 17px;
}
.recruit_top_section_01 h2 span:nth-child(2) {
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 50px;
  letter-spacing: 0.05em;
  margin: 0.2em auto;
}
@media (max-width: 767px) {
  .recruit_top_section_01 h2 span:nth-child(2) {
    font-size: 45px;
  }
}
.recruit_top_section_01 p {
  text-align: center;
}
.recruit_top_section_01 p.lead {
  font-size: 40px;
  margin-bottom: 0.8em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit_top_section_01 p.lead {
    font-size: 28px;
  }
}
.recruit_top_section_01 p:not(.lead) {
  font-size: 18px;
  font-weight: bold;
  line-height: 3em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .recruit_top_section_01 p:not(.lead) {
    font-size: 17px;
    line-height: 2em;
  }
}
.recruit_top_section_01 .flow_txt_01,
.recruit_top_section_01 .flow_txt_02,
.recruit_top_section_01 .flow_txt_03 {
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .recruit_top_section_01 .flow_txt_01,
.recruit_top_section_01 .flow_txt_02,
.recruit_top_section_01 .flow_txt_03 {
    display: none;
  }
}
.recruit_top_section_01 .flow_txt_01 span,
.recruit_top_section_01 .flow_txt_02 span,
.recruit_top_section_01 .flow_txt_03 span {
  white-space: nowrap;
  color: #FFF;
  font-weight: bold;
  font-size: 170px;
  line-height: 1em;
}
.recruit_top_section_01 .flow_txt_01 {
  top: -1.6em;
  left: 0;
  -webkit-animation: scrollText_a 20s linear infinite;
          animation: scrollText_a 20s linear infinite;
}
.recruit_top_section_01 .flow_txt_02 {
  top: 120px;
  left: 0;
  -webkit-animation: scrollText_b 20s linear infinite;
          animation: scrollText_b 20s linear infinite;
}
.recruit_top_section_01 .flow_txt_03 {
  bottom: -3em;
  left: 0;
  -webkit-animation: scrollText_a 20s linear infinite;
          animation: scrollText_a 20s linear infinite;
}

@-webkit-keyframes scrollText_a {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollText_a {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes scrollText_b {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes scrollText_b {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.recruit_top_section_02 {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .recruit_top_section_02 {
    padding: 0;
  }
}
.recruit_top_section_02 .container {
  max-width: 963px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.recruit_top_section_02 figure img {
  position: relative;
  z-index: 0;
}
.recruit_top_section_02 h2 {
  font-weight: bold;
  margin: 0;
  line-height: 1;
  z-index: 1;
}
@media (min-width: 768px) {
  .recruit_top_section_02 h2 {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_02 h2 {
    text-align: center;
    padding: 0;
    -webkit-transform: translateY(36px);
            transform: translateY(36px);
    z-index: 2;
    position: relative;
  }
}
.recruit_top_section_02 h2 span {
  display: block;
}
.recruit_top_section_02 h2 span:nth-child(2) {
  font-weight: bold;
  color: #020202;
  font-size: 20px;
  background: #fff;
  display: inline-block;
  padding: 0.2em 1em;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.recruit_top_section_02 h2 span:nth-child(1) {
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 60px;
  letter-spacing: 0.05em;
  margin: 0.2em auto;
}
@media (max-width: 767px) {
  .recruit_top_section_02 h2 span:nth-child(1) {
    font-size: 45px;
  }
}
.recruit_top_section_02 h3 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0.3em 0;
  margin: 0 0 0.7em 0;
  line-height: 1.6em;
  position: relative;
}
.recruit_top_section_02 h3:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto 0 0;
  width: 119px;
  height: 1px;
  background: #0379BF;
}
@media (min-width: 1000px) {
  .recruit_top_section_02 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@media (max-width: 999px) {
  .recruit_top_section_02 .flex {
    padding: 0 40px 40px;
  }
}
.recruit_top_section_02 .flex .flex_left {
  font-size: 18px;
  margin: 0;
  padding-bottom: 0.7em;
  position: relative;
}
.recruit_top_section_02 .flex .flex_left:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto 0 0;
  width: 119px;
  height: 1px;
  background: #0379BF;
}
@media (max-width: 767px) {
  .recruit_top_section_02 .flex .flex_left:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_02 .flex .flex_left {
    padding-bottom: 0;
    margin-bottom: 0.8em;
  }
}

.recruit_top_section_03 {
  position: relative;
}
@media (min-width: 1366px) {
  .recruit_top_section_03 .container {
    width: 1366px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .recruit_top_section_03 {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_03 {
    padding: 0;
  }
  .recruit_top_section_03 .container > h2 {
    position: relative;
    padding: 0;
    text-align: center;
    -webkit-transform: translateY(33px);
            transform: translateY(33px);
    z-index: 4;
  }
  .recruit_top_section_03 .container > h2:before {
    display: none !important;
  }
  .recruit_top_section_03 .container > h2 span img {
    height: 79px;
  }
}
.recruit_top_section_03:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto 0 0;
  background: #F7F8F8;
  width: 100vw;
  height: 523px;
  z-index: 0;
}
@media (max-width: 767px) {
  .recruit_top_section_03:before {
    display: none;
  }
}
@media (min-width: 768px) {
  .recruit_top_section_03 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
  }
}
.recruit_top_section_03 .text_box {
  position: relative;
  z-index: 3;
}
@media (min-width: 1000px) {
  .recruit_top_section_03 .text_box {
    width: 19.7%;
    max-width: 270px;
    margin: auto 160px 0 auto;
  }
}
@media (max-width: 999px) and (min-width: 768px) {
  .recruit_top_section_03 .text_box {
    width: 40%;
    padding: 0 1%;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_03 .text_box {
    padding: 10px 40px 40px;
  }
  .recruit_top_section_03 .text_box p {
    padding: 0;
    margin: 0 0 0.8em 0;
    font-size: 18px;
  }
}
.recruit_top_section_03 .text_box .btn_02 {
  margin-top: 2.4em;
}
@media (max-width: 767px) {
  .recruit_top_section_03 .text_box .btn_02 {
    margin-top: 1.4em;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_03 .text_box > h2 {
    display: none;
  }
}
.recruit_top_section_03 h2 {
  position: relative;
  font-weight: bold;
  margin: 0;
  padding: 0;
  line-height: 1;
  z-index: 1;
}
@media (min-width: 768px) {
  .recruit_top_section_03 h2 {
    text-align: left;
  }
}
.recruit_top_section_03 h2 span {
  display: block;
}
.recruit_top_section_03 h2 span:nth-child(1) {
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 65px;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit_top_section_03 h2 span:nth-child(1) {
    font-size: 45px;
  }
}
.recruit_top_section_03 h3 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0.8em 0;
  margin: 0 0 1.6em 0;
  line-height: 1.6em;
  position: relative;
}
.recruit_top_section_03 h3:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto 0 0;
  width: 119px;
  height: 1px;
  background: #0379BF;
}
@media (max-width: 767px) {
  .recruit_top_section_03 h3 {
    padding: 0 0 0.3em 0;
    margin: 0 0 0.7em 0;
  }
}
.recruit_top_section_03 .image_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .recruit_top_section_03 .image_box {
    width: 60%;
    max-width: 820px;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_03 .image_box {
    margin: 0 auto;
  }
}
.recruit_top_section_03 .image_box figure {
  width: 33.33333333%;
}
.recruit_top_section_03 .image_box figure a {
  display: block;
  height: 100%;
  position: relative;
}
.recruit_top_section_03 .image_box figure a img {
  background: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recruit_top_section_03 .image_box figure a img.hide_txt {
  width: 90%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .recruit_top_section_03 .image_box figure a img.hide_txt {
    display: none;
  }
}
.recruit_top_section_03 .image_box figure a:hover img {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}
.recruit_top_section_03 .image_box figure a:hover img.hide_txt {
  opacity: 1;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.recruit_top_section_04 {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .recruit_top_section_04 {
    padding: 40px 0;
  }
}
.recruit_top_section_04 .container {
  max-width: 963px;
  width: 100%;
  margin: 0 auto;
}
.recruit_top_section_04 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .recruit_top_section_04 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .recruit_top_section_04 .row .col {
    max-width: 460px;
    width: 47.76%;
  }
}
@media (max-width: 767px) {
  .recruit_top_section_04 .row .col {
    width: 100%;
  }
  .recruit_top_section_04 .row .col figure {
    width: 90%;
  }
  .recruit_top_section_04 .row .col figure figcaption {
    max-width: 315px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .recruit_top_section_04 .row .col:nth-child(1) figure figcaption {
    margin: 0.8em 0 auto auto;
  }
  .recruit_top_section_04 .row .col:nth-child(2) {
    margin-top: 20px;
  }
  .recruit_top_section_04 .row .col:nth-child(2) figure {
    margin: 0 0 auto auto !important;
  }
  .recruit_top_section_04 .row .col:nth-child(2) figure figcaption {
    margin: 0.8em auto auto 0;
  }
}
.recruit_top_section_04 h2 {
  position: relative;
  font-weight: bold;
  margin: 0 0 0.8em 0;
  padding: 0;
  line-height: 1;
  text-align: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit_top_section_04 h2 {
    margin: 0 auto;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.recruit_top_section_04 h2 span {
  display: block;
}
.recruit_top_section_04 h2 span:nth-child(1) {
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 65px;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit_top_section_04 h2 span:nth-child(1) {
    font-size: 45px;
  }
}
.recruit_top_section_04 h2 span:nth-child(2) {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  margin: 0.3em 0 0 0;
  line-height: 1.6em;
  position: relative;
}
@media (max-width: 767px) {
  .recruit_top_section_04 h2 span:nth-child(2) {
    display: none;
  }
}
.recruit_top_section_04 a figure img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recruit_top_section_04 a figure figcaption {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 27px;
}
.recruit_top_section_04 a figure figcaption span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-weight: bold;
  padding-left: 130px;
  line-height: 1em;
}
.recruit_top_section_04 a figure figcaption span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto 0.2em 0;
  width: 119px;
  height: 1px;
  background: #0379BF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recruit_top_section_04 a:hover figure img {
  opacity: 0.8;
}
.recruit_top_section_04 a:hover figure figcaption span:before {
  width: 40px;
  margin: auto auto 0.45em 80px;
}

.recruit_top_section_05 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .recruit_top_section_05 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit_top_section_05 .row .col {
  width: 50%;
}
@media (max-width: 767px) {
  .recruit_top_section_05 .row .col {
    width: 100%;
  }
}
.recruit_top_section_05 a.sec05_bnr_01, .recruit_top_section_05 a.sec05_bnr_02 {
  display: block;
  height: 118px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recruit_top_section_05 a.sec05_bnr_01 .inner, .recruit_top_section_05 a.sec05_bnr_02 .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 98%;
  text-align: center;
}
.recruit_top_section_05 a.sec05_bnr_01 .inner p, .recruit_top_section_05 a.sec05_bnr_02 .inner p {
  margin: 0;
  color: #fff;
}
.recruit_top_section_05 a.sec05_bnr_01 .inner p:nth-child(1), .recruit_top_section_05 a.sec05_bnr_02 .inner p:nth-child(1) {
  font-size: 16px;
  letter-spacing: -0.05em;
}
.recruit_top_section_05 a.sec05_bnr_01 .inner p:nth-child(2), .recruit_top_section_05 a.sec05_bnr_02 .inner p:nth-child(2) {
  font-size: 19px;
  font-weight: bold;
}
.recruit_top_section_05 a.sec05_bnr_01 {
  background: #3A70D6;
}
.recruit_top_section_05 a.sec05_bnr_01:hover {
  background: #4f7fda;
}
.recruit_top_section_05 a.sec05_bnr_02 {
  background: #026EAD;
}
.recruit_top_section_05 a.sec05_bnr_02:hover {
  background: #027ec6;
}

.ttl_04 {
  color: #0379BF;
  font-size: 100px;
  line-height: 1;
  text-align: left;
  margin-bottom: 55px;
  font-weight: bold;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
}

#sec_04 {
  padding: 0 0 100px;
  margin-top: 160px;
  background-size: 100% auto !important;
  position: relative;
}
#sec_04:before {
  content: "";
  display: block;
  position: absolute;
  background: url(https://www.ttop-inc.co.jp/wp/wp-content/uploads/2022/01/recruit2022_page01_img10.jpg) no-repeat center/cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto auto auto;
  width: 100%;
  height: 330px;
  z-index: 0;
}
@media (max-width: 767px) {
  #sec_04:before {
    height: 20vh;
  }
}

#sec_04 .secInner {
  width: 1200px;
  margin: auto;
}

#sec_04 .box .ttl_04 span {
  color: #fff;
}

#sec_04 .box {
  position: relative;
  padding: 250px 0 0 0;
}

#sec_04 .box.inviewfadeInUp {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#sec_04 .box .ttl_04 {
  position: absolute;
  top: -61px;
  left: 0;
}

#sec_04 .box .ChangeElem_Btn_Content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#sec_04 .box button {
  background: rgba(255, 255, 255, 0.6);
  width: 590px;
  height: 70px;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP";
  color: #000;
}

#sec_04 .box .is-active {
  background: #fff;
}

#sec_04 .box table {
  width: 1000px;
  margin: 0 auto 50px;
  text-align: left;
}

#sec_04 .box table th {
  width: 200px;
  border-top: 2px solid #0379BF;
  padding: 30px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
}

#sec_04 .box table tr:last-child th {
  border-bottom: 2px solid #0379BF;
}

#sec_04 .box table td {
  width: 800px;
  border-top: 2px solid #f0f0f0;
  padding: 30px 25px;
}

#sec_04 .box table tr:last-child td {
  border-bottom: 2px solid #f0f0f0;
}

#sec_04 .box table td span {
  font-weight: bold;
}

#sec_04 .box table td a {
  color: #0379BF;
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  #sec_04 .box table td a:hover {
    text-decoration: none;
  }
}
#sec_04 .box .btn_01 {
  margin: auto;
  width: 360px;
}

#sec_04 .ChangeElem_Panel {
  display: none;
}

#sec_04 .ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

#sec_04 .ttl span {
  display: block;
  font-size: 16px;
}

@media (max-width: 767px) {
  #sec_04 .secInner {
    width: 92%;
  }

  #sec_04 .box button {
    width: 49%;
    height: 56px;
    padding: 10px 0;
    margin-bottom: 30px;
  }

  #sec_04 .box table {
    width: 100%;
    padding: 16px 10px;
  }

  #sec_04 .box table th {
    width: 26%;
    padding: 30px 5px;
  }

  #sec_04 .box table td {
    width: 86%;
    padding: 30px 10px;
  }

  #sec_04 .box .btn_01 {
    width: 80%;
  }

  #sec_04 .box table th,
#sec_04 .box table td,
#sec_04 .box table td li {
    font-size: 14px;
  }
}
#sec_04 .box.inviewfadeInUp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sec_04 .ttl {
  text-align: center;
}

#sec_04 .ChangeElem_Panel {
  list-style: none;
}

@media screen and (max-width: 767px) {
  #sec_04 {
    margin-top: 50px !important;
    /* margin-top: 100px; */
    padding-bottom: 50px;
    background-size: 1000px;
  }

  #sec_04 .secInner {
    width: 92%;
  }

  #sec_04 .box {
    padding: 80px 0 0 0;
  }

  .ttl_04 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  #sec_04 .box .ttl_04 {
    top: 70px;
    left: 22px;
  }

  #sec_04 .box table {
    width: 100%;
    padding: 16px 10px;
  }

  #sec_04 .box table th {
    width: 26%;
    padding: 30px 5px;
  }

  #sec_04 .box table td {
    width: 86%;
    padding: 30px 10px;
  }
}
.senior_voice_sec01 {
  position: relative;
}
.senior_voice_sec01 h2 {
  position: absolute;
  top: 50%;
  left: calc(50% + 180px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 50px;
  letter-spacing: 0.05em;
  margin: 0.2em auto;
  color: #fff;
  font-weight: 100;
  margin: 0;
}
@media (max-width: 767px) {
  .senior_voice_sec01 h2 {
    left: 20px;
  }
  .senior_voice_sec01 h2 img {
    width: 60%;
    height: auto;
  }
}
.senior_voice_sec01 h2 span {
  display: block;
  text-align: center;
}
.senior_voice_sec01 h2 span:nth-child(1) {
  font-size: 60px;
}
@media (max-width: 767px) {
  .senior_voice_sec01 h2 span:nth-child(1) {
    font-size: 30px;
  }
}
.senior_voice_sec01 h2 span:nth-child(2) {
  font-size: 25px;
}
@media (max-width: 767px) {
  .senior_voice_sec01 h2 span:nth-child(2) {
    font-size: 12px;
  }
}
.senior_voice_sec01 .senior_voice_sec01_voice {
  position: absolute;
  top: 70%;
  right: 20px;
}
@media (min-width: 768px) {
  .senior_voice_sec01 .senior_voice_sec01_voice {
    right: auto;
    left: calc(50% + 180px);
  }
}

.senior_voice_sec02 {
  padding: 160px 0;
}
@media (max-width: 767px) {
  .senior_voice_sec02 {
    padding: 100px 0;
  }
}
.senior_voice_sec02 .container {
  max-width: 963px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.senior_voice_sec02 h2 {
  font-weight: bold;
  margin: 0;
  line-height: 1;
  z-index: 1;
  text-align: center;
}
.senior_voice_sec02 h2 span {
  display: block;
}
.senior_voice_sec02 h2 span:nth-child(1) {
  font-weight: bold;
  color: #020202;
  font-size: 20px;
  background: #fff;
  display: inline-block;
  padding: 0.2em 1em;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
@media (max-width: 767px) {
  .senior_voice_sec02 h2 span:nth-child(1) {
    font-size: 17px;
  }
}
.senior_voice_sec02 h2 span:nth-child(2) {
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 60px;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .senior_voice_sec02 h2 span:nth-child(2) {
    font-size: 40px;
  }
}
.senior_voice_sec02 p {
  text-align: center;
}
.senior_voice_sec02 p.lead {
  font-size: 40px;
  margin-bottom: 0.8em;
  font-weight: bold;
  letter-spacing: 0.09em;
}
@media (max-width: 767px) {
  .senior_voice_sec02 p.lead {
    font-size: 23px;
  }
}
.senior_voice_sec02 p.name {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0.8em;
}
.senior_voice_sec02 > .scroll {
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 767px) {
  .senior_voice_sec02 > .scroll {
    display: none;
  }
}

.senior_voice_sec03 {
  padding: 0 0 160px 0;
}
@media (max-width: 767px) {
  .senior_voice_sec03 {
    padding: 0 0 100px 0;
  }
}
.senior_voice_sec03 .container {
  max-width: 963px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.senior_voice_sec03 .row {
  margin-bottom: 50px;
}
.senior_voice_sec03 h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.8em;
}
@media (max-width: 767px) {
  .senior_voice_sec03 h3 {
    font-size: 20px;
    margin-right: 20px;
    margin-left: 20px;
    text-align: center;
  }
}
.senior_voice_sec03 p {
  font-size: 18px;
  margin: 0;
  line-height: 1.7777777778;
}
@media (max-width: 767px) {
  .senior_voice_sec03 p {
    font-size: 17px;
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .senior_voice_sec03 figure.not_wide {
    max-width: 778px;
    height: auto;
  }
}

.special_talk_sec01 {
  position: relative;
}
.special_talk_sec01 h2 {
  position: absolute;
  bottom: 10%;
  left: calc(50% + 180px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 50px;
  letter-spacing: 0.05em;
  margin: 0.2em auto;
  color: #fff;
  font-weight: 100;
  margin: 0;
}
@media (max-width: 767px) {
  .special_talk_sec01 h2 {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    bottom: auto;
  }
}
.special_talk_sec01 h2 span {
  display: block;
  text-align: center;
  font-family: Playlist Script;
  letter-spacing: 0.05em;
  color: #fff;
}
.special_talk_sec01 h2 span:nth-child(1) {
  font-size: 60px;
}
@media (max-width: 767px) {
  .special_talk_sec01 h2 span:nth-child(1) {
    font-size: 30px;
  }
}
.special_talk_sec01 h2 span:nth-child(2) {
  font-size: 25px;
}
@media (max-width: 767px) {
  .special_talk_sec01 h2 span:nth-child(2) {
    font-size: 12px;
  }
}

.special_talk_sec02 {
  position: relative;
  background: #F7F7F7;
  padding: 150px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .special_talk_sec02 {
    padding: 90px 10px;
  }
}
.special_talk_sec02 .container {
  position: relative;
  z-index: 2;
}
.special_talk_sec02 h2 {
  text-align: center;
  font-weight: bold;
}
.special_talk_sec02 h2 span {
  display: block;
}
.special_talk_sec02 h2 span:nth-child(1) {
  font-family: "游ゴシック体", YuGothic sans-serif;
  font-weight: bold;
  color: #020202;
  font-size: 17px;
}
.special_talk_sec02 h2 span:nth-child(2) {
  font-family: Playlist Script;
  color: #1D7ABC;
  font-size: 50px;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .special_talk_sec02 h2 span:nth-child(2) {
    font-size: 45px;
  }
}
.special_talk_sec02 p {
  text-align: center;
}
.special_talk_sec02 p.lead {
  font-size: 40px;
  margin-bottom: 0.8em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .special_talk_sec02 p.lead {
    font-size: 28px;
  }
}
.special_talk_sec02 p.name {
  font-size: 25px;
  letter-spacing: 0.09em;
  font-weight: bold;
}
.special_talk_sec02 p.name2 {
  font-size: 30px;
  font-family: Playlist Script;
}
@media (max-width: 767px) {
  .special_talk_sec02 p.name2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .special_talk_sec02 p.name2 br {
    display: none;
  }
}
.special_talk_sec02 p.name2 span {
  display: inline-block;
  padding: 0 0.8em;
}
.special_talk_sec02 > .scroll {
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 767px) {
  .special_talk_sec02 > .scroll {
    display: none;
  }
}

.special_talk_sec03 {
  padding: 73px 0;
}
.special_talk_sec03 .container {
  max-width: 963px;
  width: 100%;
  margin: 0 auto !important;
}
.special_talk_sec03 .row {
  margin-bottom: 60px;
}
.special_talk_sec03 h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .special_talk_sec03 h3 {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 20px;
  }
}
.special_talk_sec03 p {
  line-height: 1.7777777778;
}
.special_talk_sec03 p.indent {
  text-indent: -3em;
}
@media (max-width: 767px) {
  .special_talk_sec03 p.indent {
    text-indent: 0;
  }
  .special_talk_sec03 p.indent span {
    display: block;
  }
}
@media (max-width: 767px) {
  .special_talk_sec03 p {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 17px;
  }
}
.special_talk_sec03 figure.not_wide {
  max-width: 770px;
  width: 100%;
  margin: 0 auto !important;
}
.special_talk_sec03 a.btn_02 {
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */
