@charset "UTF-8";
/*===================================
    Mixin
===================================*/
/*-----------------------------------
    Common
-----------------------------------*/
/*-----------------------------------
    about_guild_mission
-----------------------------------*/
/*===================================
    Variables
===================================*/
:root {
  --color_green: #06c755;
  --color_lightblue: #3CBAC8;
  --color_blue: #0000C6;
  --color_orange: #F85F00;
  --color_yellow: #FFDC19;
  --color_gray: #EDEDED;
}

/*===================================
    Common 
===================================*/
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  position: relative;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
}

.br_pc_non {
  display: none;
}

.br_sp_non {
  display: block;
}

@media screen and (max-width: 768px) {
  .br_pc_non {
    display: block;
  }
  .br_sp_non {
    display: none;
  }
}
/*===================================
    Header
===================================*/
header {
  width: 1200px;
  height: 100px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px 0 40px;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header {
    width: 90%;
    height: 60px;
    display: block;
    padding: 0 20px;
    top: 20px;
    transition: height 0.3s ease, border-radius 0.4s ease;
  }
  header.is-open {
    height: 330px;
    border-radius: 30px;
    transition: height 0.3s ease, border-radius 0.4s ease;
  }
}
header .hdr_logo img {
  display: block;
}
@media screen and (max-width: 768px) {
  header .hdr_logo {
    align-self: center;
    padding-top: 17px;
  }
  header .hdr_logo img {
    width: 120px;
  }
}
header .hdr_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  header .hdr_nav {
    display: none;
  }
}
header .hdr_nav.is-open {
  display: block;
  -webkit-animation: fadeIn 0.4s ease 0.4s both;
          animation: fadeIn 0.4s ease 0.4s both;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header .hdr_nav_list {
  display: flex;
  justify-content: space-between;
}
header .hdr_nav_list li {
  margin-left: 20px;
}
header .hdr_nav_list li a {
  transition: all 0.2s;
}
header .hdr_nav_list li a:hover {
  opacity: 0.5;
}
header .hdr_nav_list li.hdr_nav_uc {
  color: #d0d0d0;
}
header .hdr_nav_list li.hdr_nav_uc span {
  color: var(--color_orange);
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  position: relative;
  top: -3px;
}
@media screen and (max-width: 768px) {
  header .hdr_nav_list {
    display: block;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    margin-top: 15px;
  }
  header .hdr_nav_list li {
    margin: 0 0 10px 0;
  }
  header .hdr_nav_list li a {
    display: block;
  }
}
header .hdr_nav_btn {
  width: 170px;
  height: 50px;
  background-color: var(--color_green);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  transition: all 0.17s ease-out;
}
header .hdr_nav_btn:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  header .hdr_nav_btn {
    width: 230px;
    margin: 0 auto;
  }
}
header .hdr_nav_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
header .hdr_nav_btn a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 29px;
  background: url(../images/common/icon_line_b@2x.png) no-repeat center center;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
}

/*-----------------------------------
    Header SP
-----------------------------------*/
.gnav_btn {
  display: none;
  width: 25px;
  height: 25px;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .gnav_btn {
    display: block;
  }
}

.gnav_btn::before,
.gnav_btn::after {
  display: block;
  content: "";
  height: 3px;
  background-color: var(--color_orange);
  position: absolute;
  transition: all 0.4s;
  left: 0;
}

.gnav_btn::before {
  width: 25px;
  top: 4px;
}

.gnav_btn::after {
  width: 25px;
  bottom: 4px;
}

.gnav_btn span {
  display: block;
  height: 3px;
  background-color: var(--color_orange);
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  transform: translateY(-50%);
  transition: all 0.4s;
}

.gnav_btn.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.gnav_btn.is-open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

.gnav_btn.is-open span {
  opacity: 0;
}

/*===================================
    Footer
===================================*/
/*-----------------------------------
    Footer Button
-----------------------------------*/
.ftr_btn_wrapp {
  width: 990px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -100px;
}
@media screen and (max-width: 768px) {
  .ftr_btn_wrapp {
    width: 80%;
    display: block;
    top: -50px;
  }
}
.ftr_btn_wrapp .ftr_btn_01 {
  width: 445px;
  height: 220px;
  border-radius: 20px;
  background-color: var(--color_yellow);
  position: relative;
}
@media screen and (max-width: 768px) {
  .ftr_btn_wrapp .ftr_btn_01 {
    width: 100%;
    height: 160px;
    padding-top: 15px;
    margin-bottom: 20px;
  }
}
.ftr_btn_wrapp .ftr_btn_02 {
  width: 445px;
  height: 220px;
  border-radius: 20px;
  background-color: var(--color_lightblue);
  position: relative;
}
@media screen and (max-width: 768px) {
  .ftr_btn_wrapp .ftr_btn_02 {
    width: 100%;
    height: 175px;
    padding-top: 15px;
  }
}
.ftr_btn_wrapp .ftr_btn_tab {
  background-color: #000;
  padding: 0 10px;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin: 25px 0 10px 45px;
}
@media screen and (max-width: 768px) {
  .ftr_btn_wrapp .ftr_btn_tab {
    font-size: 1.4rem;
    margin: 0 0 5px 25px;
  }
}
.ftr_btn_wrapp .ftr_btn_txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ftr_btn_wrapp .ftr_btn_txt {
    width: 80%;
    margin: 0 auto;
  }
  .ftr_btn_wrapp .ftr_btn_txt img {
    width: 100%;
  }
}
.ftr_btn_wrapp .ftr_btn_mail {
  text-align: center;
}
.ftr_btn_wrapp .ftr_btn_link {
  font-size: 2rem;
  width: 275px;
  height: 50px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transition: all 0.17s ease-out;
}
.ftr_btn_wrapp .ftr_btn_link:hover {
  transform: translateX(-50%) scale(1.05);
}
@media screen and (max-width: 768px) {
  .ftr_btn_wrapp .ftr_btn_link {
    font-size: 1.6rem;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    bottom: 20px;
  }
}
.ftr_btn_wrapp .ftr_btn_link a {
  width: 100%;
  height: 100%;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-----------------------------------
    Note
-----------------------------------*/
.note_wrapp {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .note_wrapp {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .note_wrapp {
    width: 100%;
    flex-direction: column;
  }
}
.note_wrapp .note_hdr {
  padding: 30px 30px 0 40px;
}
@media screen and (max-width: 768px) {
  .note_wrapp .note_hdr {
    padding: 0;
    display: contents;
  }
}
.note_wrapp .note_logo {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .note_wrapp .note_logo {
    order: 1;
    margin-bottom: 20px;
    width: 120px;
    padding-left: 20px;
  }
  .note_wrapp .note_logo img {
    width: 100%;
  }
}
.note_wrapp .note_btn {
  width: 200px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 30px;
  margin: 0 auto;
  font-size: 2rem;
  transition: all 0.17s ease-out;
}
.note_wrapp .note_btn:hover {
  transform: scale(1.05);
}
.note_wrapp .note_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .note_wrapp .note_btn {
    order: 3;
  }
}
.note_wrapp .note_item_wrapp {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .note_wrapp .note_item_wrapp {
    order: 2;
    width: 100%;
    overflow-x: scroll;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .note_wrapp .note_item_wrapp iframe {
    min-width: 60%;
  }
}

/*-----------------------------------
    Footer
-----------------------------------*/
footer {
  width: 1300px;
  margin: 0 auto;
  padding: 100px 0 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  footer {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  footer {
    width: 85%;
    padding: 50px 0 0;
    display: block;
  }
}
footer .ftr_logo {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer .ftr_logo {
    margin-bottom: 20px;
    width: 160px;
  }
  footer .ftr_logo img {
    width: 100%;
  }
}
footer .ftr_nav_wrapp {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .ftr_nav_wrapp {
    margin-bottom: 30px;
  }
}
footer .ftr_nav {
  margin-right: 60px;
  font-size: 2.2rem;
}
footer .ftr_nav li a {
  display: block;
  width: 100%;
  transition: all 0.2s;
}
footer .ftr_nav li a:hover {
  opacity: 0.7;
}
footer .ftr_nav li.ftr_nav_uc {
  color: #505050;
}
@media screen and (max-width: 768px) {
  footer .ftr_nav {
    margin-right: 0;
    font-size: 1.6rem;
  }
  footer .ftr_nav li {
    margin-bottom: 5px;
  }
}
footer .ftr_sns_wrapp {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer .ftr_sns_wrapp .ftr_sns_btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.17s ease-out;
}
footer .ftr_sns_wrapp .ftr_sns_btn:hover {
  transform: scale(1.05);
}
footer .ftr_sns_wrapp .ftr_sns_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  footer .ftr_sns_wrapp .ftr_sns_btn {
    width: 50px;
    height: 50px;
  }
  footer .ftr_sns_wrapp .ftr_sns_btn img {
    width: 25px;
    height: auto;
  }
}
footer .ftr_copy {
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .ftr_copy {
    text-align: center;
  }
}

/*===================================
    Loader
===================================*/
.loader_wrapp {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader_inner {
  overflow: hidden;
}

.loader_logo {
  margin-bottom: 20px;
}

.loader_line {
  width: 100%;
  height: 3px;
  position: relative;
  margin-bottom: 5px;
}

.loader_line_gray {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f2f2f2;
}

.loader_line_orange {
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--color_orange);
}

.loader_txt {
  text-align: center;
}

/*===================================
    Home
===================================*/
/*-----------------------------------
    KV
-----------------------------------*/
.kv_wrapp {
  position: relative;
  background-color: var(--color_orange);
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .kv_wrapp {
    height: 100svh;
  }
}
.kv_wrapp::before {
  content: "";
  display: block;
  width: 25%;
  height: 100vh;
  background-image: linear-gradient(0deg, #f0f0f0 1px, transparent 1px), linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
  background-size: 25px 25px;
  background-repeat: repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  opacity: 0.35;
}
.kv_wrapp .kv_catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .kv_wrapp .kv_catch img {
    width: 770px;
  }
}
.kv_wrapp .kv_catch span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .kv_wrapp .kv_catch .kv_catch_01 img {
    width: 310px;
  }
}
.kv_wrapp .kv_catch .kv_catch_02 {
  position: relative;
  top: -40px;
  margin-left: 140px;
}
@media screen and (max-width: 768px) {
  .kv_wrapp .kv_catch .kv_catch_02 {
    top: -1vh;
    margin-left: 25px;
  }
  .kv_wrapp .kv_catch .kv_catch_02 img {
    width: 315px;
  }
}
.kv_wrapp .kv_txt {
  position: absolute;
  left: 70px;
  z-index: 100;
  width: 110px;
  height: 1450px;
  -webkit-animation: kv_txt_loop 12s infinite linear;
          animation: kv_txt_loop 12s infinite linear;
}
@-webkit-keyframes kv_txt_loop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1450px);
  }
}
@keyframes kv_txt_loop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1450px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .kv_wrapp .kv_txt {
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .kv_wrapp .kv_txt {
    display: none;
  }
}

.kv_img_top {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
  right: -20%;
  z-index: 90;
}
@media screen and (max-width: 768px) {
  .kv_img_top {
    right: auto;
    left: -80%;
  }
}
.kv_img_top p {
  height: auto;
}
.kv_img_top p img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.kv_img_top .kv_img_01 {
  width: 70%;
  height: auto;
  margin-top: -40vh;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .kv_img_top .kv_img_01 {
    margin-top: -35vh;
  }
}
@media screen and (max-width: 768px) {
  .kv_img_top .kv_img_01 {
    flex: 0 0 400px;
    width: auto;
    margin-top: -70px;
  }
}
.kv_img_top .kv_img_02 {
  width: 60%;
  height: auto;
  margin-top: -140px;
  margin-right: -15%;
}
@media screen and (max-width: 768px) {
  .kv_img_top .kv_img_02 {
    flex: 0 0 400px;
    width: auto;
    margin-top: -20px;
    margin-right: auto;
  }
}

.kv_img_btm {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  position: relative;
  bottom: -20vh;
  z-index: 90;
}
.kv_img_btm p {
  width: 40%;
  height: auto;
}
.kv_img_btm p img {
  width: 100%;
  height: auto;
}
.kv_img_btm .kv_img_03 {
  margin-left: -10%;
}
.kv_img_btm .kv_img_05 {
  margin-right: -10%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .kv_img_btm {
    bottom: -35vh;
  }
}
@media screen and (max-width: 768px) {
  .kv_img_btm {
    bottom: -27vh;
  }
  .kv_img_btm p {
    flex: 0 0 60%;
    width: auto;
  }
  .kv_img_btm .kv_img_03 {
    margin-left: auto;
  }
  .kv_img_btm .kv_img_05 {
    margin-right: -20%;
  }
}

.kv_img_btm_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .kv_img_btm_sp {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    position: relative;
    left: -40%;
    bottom: -29.5vh;
    z-index: 90;
  }
  .kv_img_btm_sp p {
    flex: 0 0 70%;
  }
  .kv_img_btm_sp p img {
    width: 100%;
    height: auto;
  }
}

.scroll_down {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .scroll_down {
    bottom: 20px;
    right: 20px;
  }
}
.scroll_down span:first-child {
  display: block;
  -webkit-animation: rotate 12s infinite linear;
          animation: rotate 12s infinite linear;
}
@media screen and (max-width: 768px) {
  .scroll_down span:first-child {
    width: 90px;
    height: auto;
  }
  .scroll_down span:first-child img {
    width: 90px;
    height: auto;
  }
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.scroll_down span:last-child {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.scroll_down span:last-child img {
  display: block;
}
@media screen and (max-width: 768px) {
  .scroll_down span:last-child img {
    width: 12px;
    height: 10px;
  }
}

/*-----------------------------------
    学生ギルド早わかり
-----------------------------------*/
.quickly_wrapp {
  background-color: var(--color_yellow);
  height: 950px;
  background: url(../images/top/bg_quick.gif) repeat-x left center;
  background-size: 3840 auto;
}
@media screen and (max-width: 768px) {
  .quickly_wrapp {
    height: auto;
    background-size: 2000px auto;
  }
}
.quickly_wrapp .quickly_inner {
  width: 1150px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 150px 0;
}
.quickly_wrapp .quickly_inner .quickly_video {
  width: 990px;
  aspect-ratio: 16/9;
}
.quickly_wrapp .quickly_inner .quickly_video iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .quickly_wrapp .quickly_inner {
    width: 85%;
    height: auto;
    display: block;
    padding: 50px 0;
  }
  .quickly_wrapp .quickly_inner h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .quickly_wrapp .quickly_inner .quickly_video {
    width: 100%;
  }
  .quickly_wrapp .quickly_inner .quickly_video iframe {
    width: 100%;
  }
}

/*-----------------------------------
    学生ギルドに参加する
-----------------------------------*/
.home_join_wrapp {
  width: 100%;
  height: 300px;
  background-color: #FFF6C4;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home_join_wrapp {
    height: auto;
    padding: 40px 0;
  }
}

.join_line_btn {
  width: 860px;
  height: 126px;
  background-color: var(--color_green);
  border-radius: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.4rem;
  font-weight: bold;
  position: relative;
  z-index: 200;
  transition: all 0.17s ease-out;
}
.join_line_btn:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .join_line_btn {
    width: 85%;
    height: 60px;
    border-radius: 30px;
    font-size: 2rem;
  }
}
.join_line_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.join_line_btn a::after {
  content: "";
  display: inline-block;
  width: 65px;
  height: 62px;
  background: url(../images/common/icon_line_join@2x.png) no-repeat center center;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .join_line_btn a::after {
    width: 30px;
    height: 28px;
  }
}

.join_bg_txt {
  background: url(../images/top/bg_txt_join.png) repeat-x;
  background-size: 1880px 160px;
  width: 100%;
  height: 160px;
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 100;
  -webkit-animation: join_bg_txt 15s infinite linear;
          animation: join_bg_txt 15s infinite linear;
}
@media screen and (max-width: 768px) {
  .join_bg_txt {
    display: none;
  }
}
@-webkit-keyframes join_bg_txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1880px 0;
  }
}
@keyframes join_bg_txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1880px 0;
  }
}

/*-----------------------------------
    学生ギルドとは
-----------------------------------*/
.about_guild_wrapp {
  background-color: var(--color_yellow);
}

.about_guild_inner {
  width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .about_guild_inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .about_guild_inner {
    width: 85%;
    padding: 50px 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .about_guild_txt {
    display: contents;
  }
}

.about_guild_catch {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about_guild_catch {
    margin-bottom: 20px;
    order: 1;
  }
}

.about_guild_txt_01 {
  font-size: 2.4rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .about_guild_txt_01 {
    font-size: 2rem;
    margin-bottom: 20px;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .about_guild_txt_02 {
    order: 4;
  }
}

.about_guild_list li {
  position: relative;
  padding-left: 20px;
}
.about_guild_list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .about_guild_list li {
    padding-left: 17px;
  }
}

.about_guild_img {
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .about_guild_img {
    padding-top: 0;
    margin-bottom: 30px;
    order: 3;
  }
  .about_guild_img img {
    width: 100%;
    height: auto;
  }
}

/*---------- Scroll Contents ----------*/
.about_guild_scroll_outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.about_guild_scroll_wrapp {
  display: flex;
  align-items: stretch;
  padding: 0 0 150px 150px;
}
@media screen and (max-width: 768px) {
  .about_guild_scroll_wrapp {
    display: block;
    padding: 0 0 30px 0;
    width: 90%;
    margin: 0 auto;
  }
}

.about_guild_graph_paper {
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .about_guild_graph_paper {
    margin-bottom: 20px;
  }
  .about_guild_graph_paper:last-child {
    margin-bottom: 0;
  }
}
.about_guild_graph_paper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, var(--color_orange) 1px, transparent 1px), linear-gradient(90deg, var(--color_orange) 1px, transparent 1px);
  background-size: 35px 35px;
  background-repeat: repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .about_guild_graph_paper::before {
    background-size: 25px 25px;
  }
}
.about_guild_graph_paper:nth-last-child(1) .about_guild_scroll_inner {
  border-right: none;
}

.about_guild_scroll_inner {
  position: relative;
  z-index: 100;
  border-right: 2px dashed var(--color_orange);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .about_guild_scroll_inner {
    border-right: none;
  }
}

.about_guild_scroll_catch {
  font-size: 2.4rem;
  line-height: 1.4;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 40px 50px;
  min-height: 150px;
  border-bottom: 2px dashed var(--color_orange);
}
@media screen and (max-width: 768px) {
  .about_guild_scroll_catch {
    font-size: 2rem;
    padding: 20px 30px;
    min-height: 100px;
  }
}
.about_guild_scroll_catch::before {
  content: "";
  display: block;
  width: 50px;
  height: 59px;
  background: url(../images/common/icon_g@2x.png) no-repeat center center;
  background-size: contain;
  position: relative;
  bottom: -5px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about_guild_scroll_catch::before {
    width: 30px;
    height: 35px;
    bottom: -2px;
  }
}

.about_guild_scroll_container {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .about_guild_scroll_container {
    padding: 40px 20px;
  }
}

.about_guild_mission_wrapp {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_wrapp {
    display: block;
  }
}

/*---------- Mission_01 ----------*/
.about_guild_mission_01_wrapp {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_01_wrapp {
    margin-bottom: 20px;
  }
}

.about_guild_mission_01_tab {
  background: url("../images/top/mission_tab_01.png") no-repeat center center;
  background-size: contain;
  width: 213px;
  height: 43px;
  position: relative;
}
.about_guild_mission_01_tab span {
  display: block;
  position: absolute;
  bottom: -5px;
  left: 30px;
}

.about_guild_mission_01_inner {
  background-color: #F85F00;
  width: 460px;
  min-height: 360px;
  padding: 25px 30px;
  border-radius: 0 20px 20px 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_01_inner {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }
}

.about_guild_mission_01_contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_01_contents {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .about_guild_mission_img {
    margin-bottom: 20px;
  }
  .about_guild_mission_img img {
    width: 100%;
    height: auto;
  }
}

.about_guild_mission_01_caption {
  width: 148px;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_01_caption {
    width: 100%;
  }
}
.about_guild_mission_01_caption h4 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 3px;
}
.about_guild_mission_01_caption p {
  font-size: 1.6rem;
  line-height: 1.4;
  border-bottom: 1px dashed #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.about_guild_mission_01_caption p:last-child {
  margin-bottom: 0;
}
.about_guild_mission_01_caption p span {
  letter-spacing: -0.1em;
}

.about_guild_mission_01_txt {
  font-size: 1.4rem;
  padding-top: 20px;
}

/*---------- Mission_02 ----------*/
.about_guild_mission_02_wrapp {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_02_wrapp {
    margin-bottom: 20px;
  }
}

.about_guild_mission_02_tab {
  background: url("../images/top/mission_tab_02.png") no-repeat center center;
  background-size: contain;
  width: 213px;
  height: 43px;
  position: relative;
}
.about_guild_mission_02_tab span {
  display: block;
  position: absolute;
  bottom: -5px;
  left: 30px;
}

.about_guild_mission_02_inner {
  background-color: #3CBAC8;
  width: 460px;
  min-height: 360px;
  padding: 25px 30px;
  border-radius: 0 20px 20px 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_02_inner {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }
}

/*---------- Mission_03 ----------*/
.about_guild_mission_03_wrapp {
  position: relative;
  color: #F85F00;
  display: flex;
  flex-direction: column;
}

.about_guild_mission_03_tab {
  background: url("../images/top/mission_tab_03.png") no-repeat center center;
  background-size: contain;
  width: 213px;
  height: 43px;
  position: relative;
}
.about_guild_mission_03_tab span {
  display: block;
  position: absolute;
  bottom: -5px;
  left: 30px;
}

.about_guild_mission_03_inner {
  background-color: #FFDC19;
  width: 460px;
  min-height: 360px;
  padding: 25px 30px;
  border-radius: 0 20px 20px 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_03_inner {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }
}

.about_guild_mission_03_caption {
  width: 148px;
}
@media screen and (max-width: 768px) {
  .about_guild_mission_03_caption {
    width: 100%;
  }
}
.about_guild_mission_03_caption h4 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 3px;
}
.about_guild_mission_03_caption p {
  font-size: 1.6rem;
  line-height: 1.4;
  border-bottom: 1px dashed #F85F00;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.about_guild_mission_03_caption p:last-child {
  margin-bottom: 0;
}
.about_guild_mission_03_caption p span {
  letter-spacing: -0.1em;
}

/*---------- プロジェクトに挑むことで学⽣は⾃⾝のスキルを可視化できる！ ----------*/
.about_guild_skill_wrapp {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .about_guild_skill_wrapp {
    display: block;
    margin-bottom: 30px;
  }
}
.about_guild_skill_wrapp .about_guild_skill_txt {
  width: 700px;
}
.about_guild_skill_wrapp .about_guild_skill_txt h4 {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about_guild_skill_wrapp .about_guild_skill_txt h4 {
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .about_guild_skill_wrapp .about_guild_skill_txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about_guild_skill_wrapp .about_guild_skill_img img {
  width: 400px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about_guild_skill_wrapp .about_guild_skill_img img {
    width: 100%;
  }
}

.about_guild_skill_lead {
  display: block;
}
@media screen and (max-width: 768px) {
  .about_guild_skill_lead {
    text-align: center;
  }
}

/*---------- 学生ギルドのポイント ----------*/
.about_guild_point_wrapp {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about_guild_point_wrapp {
    display: block;
  }
  .about_guild_point_wrapp p {
    text-align: center;
  }
  .about_guild_point_wrapp p img {
    width: 80%;
  }
}

/*-----------------------------------
    データで見る学生ギルド
-----------------------------------*/
.data_wrapp {
  background-color: var(--color_orange);
}

.data_inner {
  width: 1240px;
  margin: 0 auto;
  padding: 150px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .data_inner {
    width: 85%;
    margin: 0 auto;
    padding: 50px 0;
    display: block;
  }
}

.data_catch {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .data_catch {
    text-align: left;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .data_container {
    margin-bottom: 13px;
  }
  .data_container:last-child {
    margin-bottom: 0;
  }
}
.data_container picture {
  display: block;
  position: relative;
  height: 100%;
  margin-bottom: 13px;
}
.data_container picture:last-child {
  margin-bottom: 0;
}
.data_container picture .data_graph {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .data_container picture source {
    width: 100%;
    height: auto;
  }
}
.data_container picture .data_bubble_01 {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 200;
  -webkit-animation: purun 2.5s ease-in-out 0s infinite;
          animation: purun 2.5s ease-in-out 0s infinite;
}
@media screen and (max-width: 768px) {
  .data_container picture .data_bubble_01 {
    display: none;
  }
}
.data_container picture .data_bubble_02 {
  position: absolute;
  top: -15px;
  right: -10px;
  z-index: 200;
  -webkit-animation: purun 2.8s ease-in-out 0.6s infinite;
          animation: purun 2.8s ease-in-out 0.6s infinite;
}
@media screen and (max-width: 768px) {
  .data_container picture .data_bubble_02 {
    width: 80px;
    top: -10px;
    right: 10px;
  }
  .data_container picture .data_bubble_02 img {
    width: 100%;
  }
}
.data_container picture .data_bubble_03 {
  position: absolute;
  top: -20px;
  right: 60px;
  z-index: 200;
  -webkit-animation: purun 2.2s ease-in-out 1.2s infinite;
          animation: purun 2.2s ease-in-out 1.2s infinite;
}
@media screen and (max-width: 768px) {
  .data_container picture .data_bubble_03 {
    display: none;
    width: 80px;
    top: -10px;
    right: 30px;
  }
  .data_container picture .data_bubble_03 img {
    width: 100%;
  }
}
.data_container picture .data_bubble_04 {
  position: absolute;
  top: 30px;
  right: -40px;
  z-index: 200;
  -webkit-animation: purun 3s ease-in-out 1.8s infinite;
          animation: purun 3s ease-in-out 1.8s infinite;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .data_container picture .data_bubble_04 {
    top: -25px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .data_container picture .data_bubble_04 {
    width: 80px;
    top: -10px;
    right: -10px;
  }
}
.data_container picture .data_bubble_04 img {
  width: 100%;
}
.data_container picture .data_bubble_05 {
  display: none;
  position: absolute;
  z-index: 200;
  -webkit-animation: purun 2.6s ease-in-out 2.4s infinite;
          animation: purun 2.6s ease-in-out 2.4s infinite;
}
@media screen and (max-width: 768px) {
  .data_container picture .data_bubble_05 {
    display: block;
    width: 80px;
    top: -5px;
    right: 120px;
  }
  .data_container picture .data_bubble_05 img {
    width: 100%;
  }
}
.data_container picture .data_bubble_06 {
  display: none;
  position: absolute;
  z-index: 200;
  -webkit-animation: purun 2.5s ease-in-out 0s infinite;
          animation: purun 2.5s ease-in-out 0s infinite;
}
@media screen and (max-width: 768px) {
  .data_container picture .data_bubble_06 {
    display: block;
    width: 80px;
    top: -15px;
    right: 90px;
  }
  .data_container picture .data_bubble_06 img {
    width: 100%;
  }
}
@-webkit-keyframes purun {
  0% {
    transform: rotate(0deg);
  }
  3% {
    transform: rotate(-13deg);
  }
  6% {
    transform: rotate(13deg);
  }
  9% {
    transform: rotate(-8deg);
  }
  12% {
    transform: rotate(8deg);
  }
  15% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes purun {
  0% {
    transform: rotate(0deg);
  }
  3% {
    transform: rotate(-13deg);
  }
  6% {
    transform: rotate(13deg);
  }
  9% {
    transform: rotate(-8deg);
  }
  12% {
    transform: rotate(8deg);
  }
  15% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/*-----------------------------------
    Ticker
-----------------------------------*/
.ticker_wrapp {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .ticker_wrapp {
    padding: 20px 0;
  }
}

.ticker_inner {
  background: url(../images/top/ticker_img_01@2x.png) repeat-x;
  background-size: 1080px 60px;
  width: 100%;
  height: 60px;
  -webkit-animation: ticker_loop 8s infinite linear;
          animation: ticker_loop 8s infinite linear;
}
@media screen and (max-width: 768px) {
  .ticker_inner {
    background-size: 600px 33px;
    height: 33px;
  }
}

@-webkit-keyframes ticker_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1080px 0;
  }
}

@keyframes ticker_loop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1080px 0;
  }
}
@media screen and (max-width: 768px) {
  @-webkit-keyframes ticker_loop {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -600px 0;
    }
  }
  @keyframes ticker_loop {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -600px 0;
    }
  }
}
/*-----------------------------------
    Student Voice
-----------------------------------*/
.student_voice_wrapp {
  background-color: var(--color_yellow);
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .student_voice_wrapp {
    padding: 50px 0;
  }
}

.student_voice_catch {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .student_voice_catch {
    margin-bottom: 30px;
  }
}

.student_voice_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .student_voice_inner {
    display: block;
    width: 85%;
    margin: 0 auto;
  }
}

.student_voice_container_01 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: 1fr 2fr;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .student_voice_container_01 {
    margin-left: -5%;
    height: 85vh;
  }
}
@media screen and (min-width: 1441px) and (max-width: 1899px) {
  .student_voice_container_01 {
    margin-left: -5%;
    height: 75vh;
  }
}
@media screen and (min-width: 1900px) {
  .student_voice_container_01 {
    margin-left: -10%;
    width: 80%;
    height: 85vh;
  }
}
@media screen and (max-width: 768px) {
  .student_voice_container_01 {
    display: block;
    margin-left: auto;
    height: auto;
  }
}
.student_voice_container_01 p {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.student_voice_container_01 p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.student_voice_container_01 p video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .student_voice_container_01 p:nth-child(1), .student_voice_container_01 p:nth-child(2), .student_voice_container_01 p:nth-child(3) {
    display: none;
  }
}
.student_voice_container_01 .student_voice_img_03 {
  grid-column: 1/3;
  grid-row: 2/3;
}
.student_voice_container_01 .student_voice_img_04 {
  grid-column: 3/4;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .student_voice_container_01 .student_voice_img_04 {
    height: 500px;
  }
}
.student_voice_container_01 .student_voice_img_04 .movie_btn {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 18px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .student_voice_container_01 .student_voice_img_04 .movie_btn {
    top: 15px;
    left: 18px;
  }
}
.student_voice_container_01 .student_voice_img_04 .movie_btn .js-video-button {
  background: url(../images/top/icon_sound_off@2x.png) no-repeat center;
  background-size: 40px 27px;
  width: 40px;
  height: 27px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .student_voice_container_01 .student_voice_img_04 .movie_btn .js-video-button {
    background-size: 35px 23px;
    width: 35px;
    height: 23px;
  }
}
.student_voice_container_01 .student_voice_img_04 .movie_btn .js-video-button.sound_on {
  background: url(../images/top/icon_sound_on@2x.png) no-repeat center;
  background-size: 40px 27px;
}
@media screen and (max-width: 768px) {
  .student_voice_container_01 .student_voice_img_04 .movie_btn .js-video-button.sound_on {
    background-size: 35px 23px;
  }
}

.student_voice_container_02 {
  width: 40%;
  position: relative;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .student_voice_container_02 {
    width: 100%;
    padding: 0;
  }
}
.student_voice_container_02 .student_voice_babble {
  position: relative;
  left: -40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .student_voice_container_02 .student_voice_babble {
    position: absolute;
    left: auto;
    right: -10px;
    top: -100px;
    width: 250px;
  }
  .student_voice_container_02 .student_voice_babble img {
    width: 100%;
  }
}
.student_voice_container_02 .student_voice_txt_wrapp h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.student_voice_container_02 .student_voice_txt_wrapp p {
  border-bottom: 1px dashed #000;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .student_voice_container_02 .student_voice_txt_wrapp {
    padding-top: 40px;
  }
  .student_voice_container_02 .student_voice_txt_wrapp h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.student_voice_container_03 {
  display: grid;
  gap: 20px;
  position: relative;
  margin-right: -7%;
  height: 75vh;
}
@media screen and (max-width: 768px) {
  .student_voice_container_03 {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .student_voice_container_03 {
    height: 85vh;
  }
}
@media screen and (min-width: 1441px) and (max-width: 1899px) {
  .student_voice_container_03 {
    height: 75vh;
  }
}
@media screen and (min-width: 1900px) {
  .student_voice_container_03 {
    height: 85vh;
  }
}
.student_voice_container_03 p {
  border-radius: 20px;
  overflow: hidden;
}
.student_voice_container_03 p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn_01_wrapp {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.btn_01_wrapp .btn_01 {
  width: 300px;
  height: 68px;
  background-color: #000;
  border-radius: 34px;
  font-size: 2.4rem;
  margin-top: 30px;
  transition: all 0.17s ease-out;
}
.btn_01_wrapp .btn_01:hover {
  transform: scale(1.05);
}
.btn_01_wrapp .btn_01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .btn_01_wrapp {
    display: block;
  }
  .btn_01_wrapp .btn_01 {
    width: 250px;
    height: 60px;
    border-radius: 30px;
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-----------------------------------
    Client Voice
-----------------------------------*/
.client_voice_wrapp {
  background-color: var(--color_gray);
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .client_voice_wrapp {
    padding: 50px 0;
  }
}

.client_voice_catch {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .client_voice_catch {
    margin-bottom: 30px;
  }
}

.client_voice_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .client_voice_inner {
    flex-direction: column;
    width: 85%;
    margin: 0 auto;
    overflow-x: visible;
  }
}
.client_voice_inner .client_voice_img_01 {
  width: 35%;
  position: relative;
  z-index: 90;
  margin-left: -7%;
}
.client_voice_inner .client_voice_img_01 img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .client_voice_inner .client_voice_img_01 {
    width: 50%;
    bottom: -20px;
  }
}
@media screen and (max-width: 768px) {
  .client_voice_inner .client_voice_img_01 {
    display: none;
  }
}
.client_voice_inner .client_voice_img_02 {
  width: 30%;
  position: relative;
  z-index: 100;
  margin-left: -3%;
}
.client_voice_inner .client_voice_img_02 img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .client_voice_inner .client_voice_img_02 {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .client_voice_inner .client_voice_img_02 {
    width: 75%;
    margin: -25px auto 30px;
    order: 2;
  }
}
.client_voice_inner .client_voice_txt_wrapp {
  width: 42%;
  height: auto;
  margin: 0 70px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .client_voice_inner .client_voice_txt_wrapp {
    width: 40%;
    margin: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .client_voice_inner .client_voice_txt_wrapp {
    width: 100%;
    padding: 0;
    display: contents;
  }
}
.client_voice_inner .client_voice_txt_wrapp .client_voice_bubble {
  position: relative;
  left: -40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .client_voice_inner .client_voice_txt_wrapp .client_voice_bubble {
    left: auto;
    margin-bottom: 0;
    width: 300px;
    order: 1;
  }
  .client_voice_inner .client_voice_txt_wrapp .client_voice_bubble img {
    width: 100%;
  }
}
.client_voice_inner .client_voice_txt_wrapp .client_voice_txt {
  padding: 0 0 0 20px;
}
@media screen and (max-width: 768px) {
  .client_voice_inner .client_voice_txt_wrapp .client_voice_txt {
    padding: 0;
    order: 3;
  }
}
.client_voice_inner .client_voice_txt_wrapp .btn_01_wrapp {
  order: 4;
}
.client_voice_inner .client_voice_img_03 {
  width: 35%;
  position: relative;
  margin-right: -10%;
}
.client_voice_inner .client_voice_img_03 img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .client_voice_inner .client_voice_img_03 {
    width: 50%;
    margin-right: -15%;
  }
}
@media screen and (max-width: 768px) {
  .client_voice_inner .client_voice_img_03 {
    display: none;
  }
}

/*-----------------------------------
    Thoughts on GAKUSEI GUILD
-----------------------------------*/
.thoughts_footer_wrapp {
  background-color: #000;
  padding: 0 0 100px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .thoughts_footer_wrapp {
    padding: 0 0 50px;
  }
}

.thoughts_bg_txt {
  width: 100%;
  height: 116px;
  background: url(../images/top/thoughts_bg_txt@2x.png) repeat-x;
  background-size: 1479px 116px;
  position: absolute;
  top: 300px;
  left: 0;
  z-index: 100;
  -webkit-animation: thoughts_bg_txt 12s infinite linear;
          animation: thoughts_bg_txt 12s infinite linear;
}
@-webkit-keyframes thoughts_bg_txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1479px 0;
  }
}
@keyframes thoughts_bg_txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1479px 0;
  }
}
@media screen and (max-width: 768px) {
  .thoughts_bg_txt {
    height: 50px;
    background-size: 638px 50px;
    top: 200px;
    -webkit-animation: thoughts_bg_txt 9s infinite linear;
            animation: thoughts_bg_txt 9s infinite linear;
  }
  @-webkit-keyframes thoughts_bg_txt {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -638px 0;
    }
  }
  @keyframes thoughts_bg_txt {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -638px 0;
    }
  }
}

.thoughts_arc {
  border-bottom-right-radius: 50% 400px;
  border-bottom-left-radius: 50% 400px;
  margin-left: -100px;
  margin-right: -100px;
  padding: 100px 0 200px;
  background-color: var(--color_orange);
}
@media screen and (max-width: 768px) {
  .thoughts_arc {
    border-bottom-right-radius: 50% 80px;
    border-bottom-left-radius: 50% 80px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 50px 20px 100px;
  }
}

.thoughts_catch {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .thoughts_catch {
    margin-bottom: 20px;
  }
}

.thoughts_bubble {
  text-align: center;
  position: relative;
  z-index: 200;
}
@media screen and (max-width: 768px) {
  .thoughts_bubble {
    width: 90%;
    margin: 0 auto;
  }
  .thoughts_bubble img {
    width: 100%;
  }
}

.thoughts_inner {
  width: 1250px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .thoughts_inner {
    width: 100%;
  }
}

.thoughts_member_wrapp {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 60px;
  position: relative;
  z-index: 300;
  top: -45px;
}
@media screen and (max-width: 768px) {
  .thoughts_member_wrapp {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    gap: 10px;
    top: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .thoughts_member_wrapp .thoughts_member {
    flex: 0 0 60%;
    scroll-snap-align: center;
    width: 60%;
  }
}
.thoughts_member_wrapp .thoughts_member h3 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .thoughts_member_wrapp .thoughts_member h3 {
    font-size: 2.4rem;
    padding: 0 10px;
    margin-bottom: 0;
  }
}
.thoughts_member_wrapp .thoughts_member .thoughts_member_txt {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .thoughts_member_wrapp .thoughts_member .thoughts_member_txt {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .thoughts_member_wrapp .thoughts_member .thoughts_member_img {
    width: 100%;
  }
  .thoughts_member_wrapp .thoughts_member .thoughts_member_img img {
    width: 100%;
    height: auto;
  }
}

.thoughts_statement_wrapp {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding: 0 150px;
}
@media screen and (max-width: 768px) {
  .thoughts_statement_wrapp {
    display: block;
    padding: 0;
  }
  .thoughts_statement_wrapp p:first-child {
    text-align: center;
    margin-bottom: 30px;
  }
  .thoughts_statement_wrapp p:first-child img {
    width: 180px;
  }
  .thoughts_statement_wrapp p:last-child {
    width: 85%;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=style.css.map */