@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese");
/* === foundation ===  */
/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

qbefore,
qafter,
blockquotebefore,
blockquoteafter {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #805bce;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button-moz-focus-inner,
input-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

textarea {
  overflow: auto;
  vertical-align: top;
  font-family: sans-serif;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* base */
body {
  font-family: 'Noto Sans JP', Arial, sans-serif;
  color: #141414;
}

html {
  background-color: #ffffff;
}

/* === layout ===  */
/*===============================

footer

=================================*/
.l-footer {
  position: relative;
  padding: 63px 0 0 0;
  color: #fff;
  background-color: #000;
  height: 200px;
  z-index: 1;
}

.l-footer__nav {
  position: relative;
  width: 1200px;
  margin: auto;
  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;
  margin-bottom: 30px;
}

.l-footer__pagetop {
  position: fixed;
  right: 30px;
  bottom: 65px;
  width: 60px;
  height: 60px;
}

.l-footer__pagetop-link {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.l-footer__pagetop-link.is-hidden,
.l-footer__pagetop-link.is-hidden:hover {
  opacity: 0;
  pointer-events: none;
}

.l-footer__pagetop-link:hover {
  opacity: 0.7;
}

.l-footer__pagetop-image {
  width: 100%;
}

.l-footer__nav-item {
  position: relative;
  padding-right: 12px;
  margin-left: 12px;
  font-size: 15px;
  font-weight: 600;
}

.l-footer__nav-item::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 15px;
  content: '';
  background-color: #fff;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-footer__nav-item:last-child:after {
  display: none;
}

.l-footer__nav-link {
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.l-footer__nav-link:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}

/*===============================

header

=================================*/
.l-header {
  position: fixed;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 13px;
  height: 100px;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
  z-index: 10;
}

.l-header__logo {
  display: block;
  margin: 0 auto;
}

.l-header__logo-image,
.l-header__logo-inner {
  display: block;
  margin: 0 auto;
  width: 126px;
}

.l-header__logo-inner {
  margin-bottom: 15px;
}

.l-header__logo-text {
  display: block;
  font-size: 22px;
  text-align: center;
  color: #e60082;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.l-header__entry-button {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 60px;
}

/*===============================

main

=================================*/
.l-main {
  margin: 100px auto 0;
}

/*===============================

sectionの基本的なスタイル

=================================*/
.l-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.l-section__inner {
  display: block;
  margin: 0 auto;
  width: 1140px;
  padding: 0 20px;
  position: relative;
}

.l-section-angle:after {
  content: '';
  display: block;
  width: 100%;
  height: 80px;
  border-bottom: solid 80px #ffffff;
  border-left: solid 100vw transparent;
  border-top: solid 0 transparent;
  border-right: solid 0 transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 0px;
}

.l-section-angle--white:after {
  border-bottom: solid 80px #ffffff;
}

.l-section-angle--purple:after {
  border-bottom: solid 80px #eeeaf6;
}

.l-section-angle--blue:after {
  border-bottom: solid 80px #eaeef7;
}

.l-section--blue {
  background-color: #eaeef7;
}

.l-section--white {
  background-color: #ffffff;
}

.l-section--purple {
  background-color: #eeeaf6;
}

.l-section--pink {
  background-color: #edd7ee;
}

.l-section--water-blue {
  background-color: #d2eff9;
}

.l-section--cv-button {
  padding-top: 70px;
  padding-bottom: 70px;
}

/*===============================

全体のラッパー

=================================*/
.l-wrap {
  width: 100%;
  position: relative;
}

/* === component ===  */
.c-button {
  display: block;
  color: #ffffff;
  text-align: center;
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}

.c-button--entry {
  font-weight: 600;
  height: 60px;
  position: relative;
  height: 100px;
  width: 980px;
  margin: 0 auto;
  font-size: 32px;
  letter-spacing: 0.05em;
}

.c-button--entry:before,
.c-button--entry:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
}

.c-button--entry:before {
  background: -webkit-gradient(linear, left top, right top, from(#0050b4), to(#e50082));
  background: linear-gradient(to right, #0050b4, #e50082);
  opacity: 1;
}

.c-button--entry:after {
  background: -webkit-gradient(linear, left top, right top, from(#e50082), to(#0050b4));
  background: linear-gradient(to right, #e50082, #0050b4);
  opacity: 0;
}

.c-button--entry:hover:after {
  opacity: 1;
}

.c-button--entry__inner {
  position: relative;
  z-index: 3;
  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;
  height: 100px;
}

.c-button--entry__inner:before {
  content: '';
  background: url(../img/icon-entry.png);
  background-size: 59px 54px;
  width: 59px;
  height: 54px;
  margin-right: 30px;
}

.c-button--header-entry {
  font-size: 16px;
  border-radius: 50px;
  width: 200px;
  height: 60px;
  position: absolute;
}

.c-button--header-entry:before,
.c-button--header-entry:after {
  border-radius: 30px;
}

.c-button--header-entry__inner {
  height: 60px;
}

.c-button--header-entry__inner:before {
  background-size: 43px 39px;
  width: 43px;
  height: 39px;
  margin-right: 10px;
}

.c-button--blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 40px;
  height: 110px;
  padding: 15px;
  border-radius: 55px;
  background: #0050b4;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: 750px;
  margin: 20px auto -20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.c-button--blue:hover span {
  opacity: 0.7;
}

.c-button__large {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  display: block;
  width: 100%;
  margin: 0;
}

.c-button__small {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 15px;
  display: table;
  margin: 0 auto;
  padding-left: 30px;
}

.c-button--water-blue-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  color: #1daedf;
  font-weight: 600;
  width: 100%;
  border: 2px solid #1daedf;
  border-radius: 25px;
  height: 50px;
}

.c-button--water-blue-line:hover {
  background-color: #1daedf;
  color: #ffffff;
}

.c-button--water-blue-line:hover .c-icon--arrow-left-water-blue:before {
  opacity: 1;
}

.c-figure {
  display: block;
  margin-top: 10px;
  margin-bottom: 70px;
  position: relative;
}

.c-figure--1 {
  margin: 50px 0 70px;
}

.c-figure--3 {
  width: 980px;
  margin: 50px auto 70px;
}

.c-icon--arrow-left {
  background: url(../img/icon-arrow.png) no-repeat left center;
  background-size: 20px 15px;
}

.c-icon--arrow-left-water-blue {
  background: url(../img/icon-arrow_water-blue.png) no-repeat left center;
  background-size: 20px 15px;
  position: relative;
}

.c-icon--arrow-left-water-blue:before {
  content: '';
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: block;
  position: absolute;
  width: 20px;
  height: 15px;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -45%);
  transform: translate(0, -45%);
  background: url(../img/icon-arrow.png) no-repeat left center;
  background-size: 20px 15px;
  opacity: 0;
}

.c-interview-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-interview-list {
  width: 340px;
  margin-right: 26px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
}

.c-interview-list:nth-child(3n) {
  margin-right: 0;
}

.c-interview-list__image {
  margin-bottom: 15px;
}

.c-interview-list__title {
  font-size: 16px;
  color: #ffffff;
  background: #1daedf;
  display: inline;
  line-height: 2em;
  letter-spacing: 0.025em;
  font-weight: 600;
  padding: 0 8px 2px;
}

.c-interview-list__name {
  font-size: 13px;
  letter-spacing: 0.025em;
  font-weight: 500;
  margin: 15px 0 25px;
}

.c-qa-lists {
  width: 980px;
  margin: 0 auto;
}

.c-qa-list {
  border-radius: 30px;
  background: #cce6fa;
  padding: 28px 55px;
  margin-bottom: 50px;
  width: 800px;
  position: relative;
}

.c-qa-list:before {
  content: '';
  display: block;
  border-top: 45px solid #cce6fa;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  left: 50px;
  bottom: -45px;
  -webkit-transform: skew(-60deg, 0);
  transform: skew(-60deg, 0);
}

.c-qa-list:nth-child(2n) {
  margin-left: 180px;
}

.c-qa-list:last-child {
  margin-bottom: 20px;
}

.c-qa-list:nth-child(2n):before {
  left: auto;
  right: 50px;
  -webkit-transform: skew(60deg, 0);
  transform: skew(60deg, 0);
}

.c-qa-list__q {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
  color: #0e6ab6;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.c-qa-list__q:before {
  content: 'Q.';
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
}

.c-qa-list__a {
  font-size: 15px;
  line-height: 2em;
  font-weight: 400;
  letter-spacing: 0.025em;
  position: relative;
  padding-left: 30px;
}

.c-qa-list__a:before {
  content: 'A.';
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 18px;
  color: #e60082;
  font-weight: 500;
}

.c-text-item {
  position: relative;
  padding: 15px 0 45px;
  min-height: 460px;
}

.c-text-item__texts {
  position: relative;
  z-index: 3;
  width: 550px;
  padding: 40px 35px;
  color: #ffffff;
}

.c-text-item__texts-bg {
  content: '';
  position: absolute;
  z-index: 2;
  display: block;
  top: 15px;
  left: 0;
  mix-blend-mode: multiply;
}

.c-text-item__texts--left {
  margin-top: 115px;
}

.c-text-item__texts--right {
  margin-left: 550px;
  margin-bottom: 50px;
}

.c-text-item__texts-bg--water-blue {
  background: #1daedf;
}

.c-text-item__texts-bg--purple {
  background: #5931a1;
}

.c-text-item__texts-bg--green {
  background: #01873b;
}

.c-text-item__texts-bg--light-green {
  background: #6eb92b;
}

.c-text-item__image {
  position: absolute;
  z-index: 1;
  width: 630px;
  height: 360px;
}

.c-text-item__image--right {
  right: 0;
  top: 15px;
}

.c-text-item__image--left {
  left: 0;
  top: 55px;
}

.c-text-item__title {
  position: relative;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

.c-text-item__text {
  position: relative;
  font-size: 14px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.c-text-item__floating-box {
  z-index: 0;
}

.c-text-item__floating-box:before {
  content: '';
  position: absolute;
  background: #cdbfea;
  width: 1500px;
  height: 785px;
  margin-left: 290px;
  left: 50%;
  top: -35px;
}

.c-text-item__floating-box.is-inview {
  left: 95%;
  opacity: 1;
  -webkit-transform: translateX(50vw);
  transform: translateX(50vw);
}

.c-text-item__floating-box.is-inview--active {
  left: 50%;
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
}

.c-text {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 40px;
}

.c-title {
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-bottom: 28px;
  position: relative;
  margin-bottom: 50px;
}

.c-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.c-title--blue {
  color: #0050b4;
}

.c-title--blue:after {
  background-color: #0050b4;
}

.c-title--water-blue {
  color: #1daedf;
}

.c-title--water-blue:after {
  background-color: #1daedf;
}

.c-title--purple {
  color: #5931a1;
}

.c-title--purple:after {
  background-color: #5931a1;
}

.c-title--green {
  color: #01873b;
}

.c-title--green:after {
  background-color: #01873b;
}

.c-title__en {
  display: block;
  font-size: 45px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

/* === project ===  */
.p-interview-lists {
  padding-bottom: 100px;
}

.p-interview-lists .c-interview-list {
  position: relative;
}

.p-interview-lists .c-interview-list:nth-child(1) {
  top: 44px;
}

.p-interview-lists .c-interview-list:nth-child(2) {
  top: 0;
}

.p-interview-lists .c-interview-list:nth-child(3) {
  top: -44px;
}

/* === page ===  */
/*===============================

TOP

=================================*/
.pg-top-mainvisual {
  background: url(../img/main_bg.jpg);
  background-size: cover;
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  min-width: 1140px;
}

.pg-top-mainvisual__title {
  text-align: center;
  color: #ffffff;
  padding-bottom: 30px;
}

.pg-top-mainvisual__title-jp {
  display: block;
  font-size: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.pg-top-mainvisual__title-en {
  display: block;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* === utility ===  */
.u-pc-none {
  display: none;
}

.u-sp-none {
  display: block;
}

.u-montserrat,
.l-footer__nav-link,
.l-footer__copyright,
.l-header__logo-text,
.c-button--entry,
.c-title__en,
.pg-top-mainvisual__title-en {
  font-family: Montserrat, sans-serif;
}

.u-noto {
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 1140px) {
  .l-section-angle:after {
    width: 1140px;
    border-left: solid 1140px transparent;
  }
}

@media screen and (max-width: 750px) {
  .l-footer {
    padding: 20px 0 0;
    height: 120px;
  }
  .l-footer__nav {
    width: 70%;
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-footer__pagetop {
    display: none;
  }
  .l-footer__nav-item {
    padding-right: 8px;
    margin-left: 8px;
    margin-bottom: 12px;
    font-size: 13px;
  }
  .l-footer__nav-item::after {
    width: 2px;
    height: 12px;
  }
  .l-footer__nav-item:nth-child(2):after {
    display: none;
  }
  .l-footer__copyright {
    font-size: 10px;
  }
  .l-header {
    padding: 6px 10px 0;
    height: 45px;
    min-width: 100%;
  }
  .l-header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-header__logo-image,
  .l-header__logo-inner {
    display: block;
    margin: 0;
    width: 80px;
  }
  .l-header__logo-inner {
    margin: 0 15px 0 0;
  }
  .l-header__logo-text {
    font-size: 11px;
    text-align: left;
  }
  .l-header__entry-button {
    right: 0px;
    top: 0px;
    height: 45px;
  }
  .l-main {
    margin: 45px auto 0;
  }
  .l-section {
    padding: 15px 0 40px;
  }
  .pg-top-mainvisual + .l-section {
    padding: 38px 0 40px;
  }
  .l-section--cv-button + .l-section {
    padding: 38px 0 40px;
  }
  .l-section__inner {
    width: 100%;
    padding: 0 15px;
  }
  .l-section-angle:after {
    width: 100vw;
    height: 25px;
    border-bottom: solid 25px #ffffff;
    border-left: solid 100vw transparent;
  }
  .l-section-angle--white:after {
    border-bottom: solid 25px #ffffff;
  }
  .l-section-angle--purple:after {
    border-bottom: solid 25px #eeeaf6;
  }
  .l-section-angle--blue:after {
    border-bottom: solid 25px #eaeef7;
  }
  .l-section--cv-button {
    padding: 32px 15px;
  }
  .c-button--entry {
    height: 75px;
    width: 100%;
    font-size: 20px;
  }
  .c-button--entry:before,
  .c-button--entry:after {
    content: '';
    border-radius: 10px;
  }
  .c-button--entry__inner {
    height: 75px;
  }
  .c-button--entry__inner:before {
    background-size: 38px 33px;
    width: 38px;
    height: 33px;
    margin-right: 18px;
  }
  .c-button--header-entry {
    font-size: 11px;
    border-radius: 0;
    width: 105px;
    height: 45px;
  }
  .c-button--header-entry:before,
  .c-button--header-entry:after {
    border-radius: 0;
  }
  .c-button--header-entry__inner {
    height: 45px;
  }
  .c-button--header-entry__inner:before {
    background-size: 34px 33px;
    width: 34px;
    height: 33px;
    margin-right: 8px;
  }
  .c-button--blue {
    line-height: 20px;
    height: 75px;
    padding: 5px;
    width: 100%;
    margin: 10px 0 0;
  }
  .c-button__large {
    font-size: 13px;
  }
  .c-button__small {
    font-size: 11px;
    padding-left: 18px;
  }
  .c-button--water-blue-line {
    height: 30px;
  }
  .c-figure {
    display: block;
    margin-top: 10px;
    margin-bottom: 70px;
    position: relative;
  }
  .c-figure--1 {
    margin: 25px 0 25px;
  }
  .c-figure--2 {
    margin: 10px 0 25px;
  }
  .c-figure--3 {
    width: 100%;
    margin: 20px auto 25px;
  }
  .c-icon--arrow-left {
    background-size: 13.5px 10px;
  }
  .c-icon--arrow-left-water-blue {
    background-size: 13.5px 10px;
  }
  .c-icon--arrow-left-water-blue:before {
    width: 13.5px;
    height: 10px;
    background-size: 13.5px 10px;
  }
  .c-interview-lists {
    display: block;
  }
  .c-interview-list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    border-radius: 4px;
    padding: 15px 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .c-interview-list__image {
    width: 115px;
    height: 77px;
  }
  .c-interview-list__text {
    width: calc(100% - 125px);
  }
  .c-interview-list__title {
    font-size: 10px;
    padding: 0 6px 2px;
  }
  .c-interview-list__name {
    font-size: 10px;
    margin: 10px 0 0;
  }
  .c-qa-lists {
    width: 100%;
  }
  .c-qa-list {
    border-radius: 15px;
    padding: 17px 15px;
    margin-bottom: 33px;
    width: 315px;
  }
  .c-qa-list:before {
    border-top: 35px solid #cce6fa;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    left: 5px;
    bottom: -35px;
  }
  .c-qa-list:nth-child(2n) {
    margin-left: 30px;
  }
  .c-qa-list:last-child {
    margin-bottom: 20px;
  }
  .c-qa-list:nth-child(2n):before {
    right: 5px;
  }
  .c-qa-list__q {
    font-size: 13px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .c-qa-list__q:before {
    top: -1px;
  }
  .c-qa-list__a {
    font-size: 11px;
    line-height: 20px;
    padding-left: 20px;
  }
  .c-qa-list__a:before {
    top: -1px;
    font-size: 13px;
  }
  .c-text-item {
    padding: 15px 0 32px;
    min-height: 0;
  }
  .c-text-item__texts {
    width: 315px;
    padding: 15px;
  }
  .c-text-item__texts-bg {
    top: 15px;
    left: 0;
  }
  .c-text-item__texts--left {
    margin-top: 140px;
    margin-left: 45px;
  }
  .c-text-item__texts--right {
    margin-top: 140px;
    margin-left: -15px;
    margin-bottom: 0;
  }
  .c-text-item__image {
    width: 315px;
    height: 180px;
  }
  .c-text-item__image--right {
    right: auto;
    left: 0;
    top: 0;
  }
  .c-text-item__image--left {
    left: auto;
    right: 0;
    top: 0;
  }
  .c-text-item--left .c-text-item__image--left {
    right: auto;
    left: 0;
    top: 0;
  }
  .c-text-item--left .c-text-item__texts--right {
    margin-top: 140px;
    margin-left: 45px;
  }
  .c-text-item__title {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .c-text-item__text {
    font-size: 11px;
    line-height: 24px;
  }
  .c-text-item__floating-box:before {
    width: 300px;
    height: 393px;
    margin-left: 65px;
    left: 50%;
    top: 90px;
  }
  .c-text {
    font-size: 11px;
    line-height: 25px;
  }
  .c-title {
    font-size: 18px;
    padding-bottom: 17px;
    line-height: 27px;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
  }
  .c-title:after {
    width: 50px;
    height: 2px;
  }
  .c-title__en {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .p-interview-lists {
    padding-bottom: 0;
  }
  .p-interview-lists .c-interview-list {
    position: relative;
  }
  .p-interview-lists .c-interview-list:nth-child(1) {
    top: 0;
  }
  .p-interview-lists .c-interview-list:nth-child(2) {
    top: 0;
  }
  .p-interview-lists .c-interview-list:nth-child(3) {
    top: 0;
  }
  .pg-top-mainvisual {
    background-image: url(../img/main_bg_sp.jpg);
    height: 390px;
    min-width: 100%;
  }
  .pg-top-mainvisual__title {
    padding-bottom: 5px;
    line-height: 40px;
  }
  .pg-top-mainvisual__title-jp {
    font-size: 30px;
    margin-bottom: 0;
  }
  .pg-top-mainvisual__title-en {
    font-size: 12px;
  }
  .u-pc-none {
    display: block;
  }
  .u-sp-none {
    display: none;
  }
}
