<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ===========================================
変数
=========================================== */
/* ===========================================
mixin
=========================================== */
/* ===========================================
page style
=========================================== */
html {
  font-size: 62.5%;
} /* 10px */
body {
  background: #FEFCEF;
  font-size: 16px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  line-break: strict;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: justify;
  text-justify: inter-ideograph;
  position: relative;
  counter-reset: number 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.4;
  }
}

img {
  vertical-align: top;
  line-height: 1;
  max-width: 100%;
  height: auto;
}

a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.6;
}

input[type=text], input[type=tel], input[type=email],
textarea, select {
  font-size: 16px;
  padding: 10px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  border: #ddd 2px solid;
}

input[type=checkbox] {
  margin-right: 10px;
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 768px) {
  input[type=checkbox] {
    width: 22px;
    height: 22px;
  }
}

.wrap {
  margin: 0 auto;
  max-width: 1000px;
  width: 94%;
}

.l-header {
  background: #FFF;
}
.l-header .wrap {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 40%;
  }
  .l-header__tel {
    width: 55%;
  }
}
.l-header__tel {
  display: none;
}

.hero {
  background: #DC0000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero {
    overflow: hidden;
  }
}
.hero__wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero__wrap {
    padding: 4% 5% 6%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
.hero::after {
  content: "";
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-top: 20px #DC0000 solid;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__catch {
  order: 2;
  width: 40%;
  text-align: center;
  transform: translateY(-20px);
}
@media screen and (max-width: 768px) {
  .hero__catch {
    width: 100%;
    transform: none;
  }
}
.hero__no1 {
  display: contents;
}
.hero__no1__item {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .hero__no1__item {
    width: 22%;
    position: absolute;
    top: -7px;
    max-width: 112px;
  }
}
.hero__no1__item:nth-child(1) {
  order: 1;
}
@media screen and (max-width: 768px) {
  .hero__no1__item:nth-child(1) {
    left: 5%;
  }
}
.hero__no1__item:nth-child(2) {
  order: 3;
}
@media screen and (max-width: 768px) {
  .hero__no1__item:nth-child(2) {
    right: 5%;
  }
}

.l-main {
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 5%;
  }
}

.headline1 {
  margin-bottom: 10px;
  padding: 20px 5px;
  background: #F5b118;
  color: #FFF;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  text-align: center;
}
.headline1 span {
  font-size: 20px;
}
.headline1::before {
  margin-right: 5px;
  padding: 0 10px;
  font-size: 26px;
  content: "Q";
  background: #FFF;
  color: #F5b118;
  display: inline-block;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .headline1 {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 24px;
    text-align: left;
  }
  .headline1 span {
    margin-top: 5px;
    font-size: 14px;
    display: block;
  }
  .headline1::before {
    padding: 2px 5px;
    font-size: 20px;
  }
}

.form-display {
  padding: 30px 0 70px;
  position: relative;
}
.form-display::after {
  content: "";
  border-top: 3px solid #F5b118;
  border-right: 3px solid #F5b118;
  width: 50px;
  height: 50px;
  transform: rotate(135deg);
  position: absolute;
  bottom: 30px;
  left: calc(50% - 25px);
}
.form-display:last-of-type {
  height: auto;
}
.form-display:last-of-type::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .form-display {
    padding-top: 10px;
  }
}

.form-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.form-list__item {
  padding: 7px;
}
.form-list__label {
  width: 100%;
  height: 120px;
  background: #FFF;
  border: #F5b118 5px solid;
  border-radius: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form-list__label:hover {
  background: #F5b118;
  color: #FFF;
}
.form-list__label.--checked {
  background: #F5b118;
  color: #FFF;
  border: #ffff00 5px solid;
}
.form-list__label span {
  font-size: 16px;
}
.form-list__button {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .form-list {
    grid-template-columns: 1fr 1fr;
  }
  .form-list__item {
    padding: 3px;
    text-align: center;
  }
  .form-list__label {
    padding: 5% 2%;
    height: auto;
    min-height: 70px;
    border: #F5b118 3px solid;
    font-size: 16px;
  }
  .form-list__label span {
    font-size: 12px;
    letter-spacing: -0.05em;
  }
  .form-list__label.--checked {
    border: #ffff00 3px solid;
  }
}

.input-field {
  margin: 2% auto;
  padding: 4% 50px 5%;
  background: #FFF;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .input-field {
    padding: 5% 5% 6%;
  }
}
.input-field__check {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
}
.input-field__check a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .input-field__check {
    font-size: 15px;
  }
}
.input-field .need {
  margin-left: 5px;
  padding: 4px 5px;
  background: #DC0000;
  color: #FFF;
  line-height: 1;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .input-field .need {
    min-width: 38px;
    text-align: center;
  }
}
.input-field .any {
  margin-left: 5px;
  padding: 4px 5px;
  background: #3e6cff;
  color: #FFF;
  line-height: 1;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .input-field .any {
    min-width: 38px;
    text-align: center;
  }
}
.input-field textarea {
  height: 120px;
}
.input-field__text__label {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
}
.input-field__text__input {
  margin-bottom: 15px;
}
.input-field__text__check {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.input-field__text__check li {
  margin-bottom: 1%;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .input-field__text__check li {
    margin-bottom: 3%;
    width: 48%;
  }
}
.input-field__text__check li label {
  border: #ddd 2px solid;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  display: block;
}
@media screen and (max-width: 768px) {
  .input-field__text__check li label {
    padding: 15px;
  }
}
.input-field__button {
  margin-top: 30px;
  text-align: center;
}
.input-field__button a {
  margin: 0 auto;
  width: 80%;
  max-width: 400px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5b118;
  color: #FFF;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: bold;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  cursor: pointer;
}
.input-field__button a.invalid {
  background: #ddd;
  pointer-events: none;
  cursor: auto;
}
@media screen and (max-width: 768px) {
  .input-field__button a {
    font-size: 20px;
    height: 70px;
  }
}
.input-field__send {
  margin: 30px auto 0;
  width: 80%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5b118;
  font-weight: bold;
  font-size: 30px;
  color: #FFF;
  border-radius: 60px;
  line-height: 1;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  position: relative;
  /*
  &amp;::before {
  	content: '';
  	background: url(../img/cta_uchikawa2.png) no-repeat;
  	background-size: contain;
  	width: (365px * 0.8);
  	height: (162px * 0.8);
  	position: absolute;
  	left: -10%;
  	bottom: 0;
  	animation-name: boyon;
  	animation-duration: 1s;
  	animation-iteration-count: infinite;
  	animation-timing-function: ease;
  	transform-origin: center bottom;
  }
  */
}
.input-field__send span {
  margin-right: 8px;
  padding: 10px;
  color: #F5b118;
  background: #FFF;
  transition: 0.3s;
}
.input-field__send:hover {
  background: #DC0000;
}
.input-field__send:hover span {
  color: #DC0000;
}
.input-field__send.invalid {
  background: #ddd;
  pointer-events: none;
  cursor: auto;
}
.input-field__send.invalid span {
  color: #ddd;
}
@media screen and (max-width: 768px) {
  .input-field__send {
    margin: 20px auto 0;
    padding-right: 5%;
    width: 90%;
    height: 80px;
    font-size: 24px;
    border-radius: 40px;
    justify-content: flex-end;
    /*
    &amp;::before {
    	width: calc(365px / 2);
    	height: calc(162px / 2);
    }
    */
  }
}

.illust {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 65%;
  justify-content: flex-start;
  height: 200px;
  padding-top: 15px;
}
.illust:hover, .illust.--checked {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 65%;
}
.illust.--none {
  padding-top: 0;
  justify-content: center;
}

#q1 .form-list__item:nth-of-type(1) .form-list__label {
  background-image: url(../img/q_bg/q1_1.png);
}
#q1 .form-list__item:nth-of-type(2) .form-list__label {
  background-image: url(../img/q_bg/q1_2.png);
}
#q1 .form-list__item:nth-of-type(3) .form-list__label {
  background-image: url(../img/q_bg/q1_3.png);
}
#q1 .form-list__item:nth-of-type(4) .form-list__label {
  background-image: url(../img/q_bg/q1_4.png);
}
#q1 .form-list__item:nth-of-type(5) .form-list__label {
  background-image: url(../img/q_bg/q1_5.png);
}

#q2 .form-list__item:nth-of-type(1) .form-list__label {
  background-image: url(../img/q_bg/q2_1.png);
}
#q2 .form-list__item:nth-of-type(2) .form-list__label {
  background-image: url(../img/q_bg/q2_2.png);
}
#q2 .form-list__item:nth-of-type(3) .form-list__label {
  background-image: url(../img/q_bg/q2_3.png);
}

#q5 .form-list__item:nth-of-type(1) .form-list__label {
  background-image: url(../img/q_bg/q5_1.png);
}
#q5 .form-list__item:nth-of-type(2) .form-list__label {
  background-image: url(../img/q_bg/q5_2.png);
}
#q5 .form-list__item:nth-of-type(3) .form-list__label {
  background-image: url(../img/q_bg/q5_3.png);
}
#q5 .form-list__item:nth-of-type(4) .form-list__label {
  background-image: url(../img/q_bg/q5_4.png);
}
#q5 .form-list__item:nth-of-type(5) .form-list__label {
  background-image: url(../img/q_bg/q5_5.png);
}

#q7 .form-list__item:nth-of-type(1) .form-list__label {
  background-image: url(../img/q_bg/q7_1.png);
}
#q7 .form-list__item:nth-of-type(2) .form-list__label {
  background-image: url(../img/q_bg/q7_2.png);
}

#q8 .form-list__item:nth-of-type(1) .form-list__label {
  background-image: url(../img/q_bg/q8_1.png);
}
#q8 .form-list__item:nth-of-type(2) .form-list__label {
  background-image: url(../img/q_bg/q8_2.png);
}

.chat {
  margin: 0 auto;
  padding-top: 50px;
  max-width: 700px;
  width: 94%;
}
@media screen and (max-width: 768px) {
  .chat {
    width: 94%;
  }
}
.chat__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.chat__img {
  width: 110px;
}
.chat__bot {
  padding-top: 30px;
  padding-bottom: 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.chat__load {
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #fff;
  border: #ccc 2px solid;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  border-radius: 20px;
  position: relative;
}
.chat__load::before {
  border: 9px solid transparent;
  border-right: 18px solid #ccc;
  bottom: 0;
  content: "";
  height: 0;
  left: -29px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.chat__load::after {
  border: 9px solid transparent;
  border-right: 18px solid #fff;
  bottom: 0;
  content: "";
  height: 0;
  left: -24px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.chat__fukidasi {
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #fff;
  border: #ccc 2px solid;
  display: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 20px;
  position: relative;
}
.chat__fukidasi::before {
  border: 9px solid transparent;
  border-right: 18px solid #ccc;
  bottom: 0;
  content: "";
  height: 0;
  left: -29px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.chat__fukidasi::after {
  border: 9px solid transparent;
  border-right: 18px solid #fff;
  bottom: 0;
  content: "";
  height: 0;
  left: -24px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

.keisan {
  margin: 0 auto;
  padding: 20px 0;
  width: 200px;
  background: #3e6cff;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}
.keisan .loader2,
.keisan .loader2:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}
.keisan .loader2 {
  margin: 20px auto 15px;
  font-size: 10px;
  position: relative;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  animation: load8 1.1s infinite linear;
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.keisan.--end .check {
  margin: 20px auto 15px;
}
.keisan.--end .check img {
  width: 5em;
  height: 5em;
}

#chat4 {
  margin-bottom: 150px;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  margin: 0 5em;
  color: #ccc;
  font-size: 10px;
  position: relative;
  transform: translateY(-2.5em);
  animation-delay: -0.16s;
  display: inline-block;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.research-objectives {
  padding: 30px 0;
}
.research-objectives__text {
  margin-bottom: 10px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .research-objectives {
    padding: 30px 0 10px;
  }
  .research-objectives__text {
    margin-bottom: 15px;
    font-size: 11px;
    color: #888;
  }
}

.footer-nav {
  padding: 15px 0 10px;
  background: #FFF;
  border-top: 1px solid #ddd;
}
.footer-nav a {
  text-decoration: underline;
}
.footer-nav .wrap {
  display: flex;
}
.footer-nav__list {
  display: flex;
}
.footer-nav__list__item:first-of-type {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ddd;
}
.footer-nav .copyright {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    padding: 15px 0 10px;
    border-top: 1px solid #ddd;
    font-size: 12px;
  }
}

.fixed {
  width: 300px;
  position: fixed;
  right: 0;
  bottom: 0;
  animation-name: boyon;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  transform-origin: center bottom;
}
@media screen and (max-width: 768px) {
  .fixed {
    width: 130px;
  }
}

@keyframes boyon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/* ===========================================
調整値
=========================================== */
.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: left;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-fb {
  font-weight: bold;
}

.u-f12 {
  font-size: 12px;
}

.u-f16 {
  font-size: 16px;
}

.u-f22 {
  font-size: 22px;
}

.u-shadow {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.u-rd {
  color: #DC0000;
}

/* ===========================================
js用
=========================================== */
#q2,
#q3,
#q4,
#q5,
#q6,
#q7,
#q8,
#q9,
.footer,
#chat1,
#chat2,
#chat3,
#chat4,
#chat5,
#chat5_2,
#chat6,
#chat7 {
  display: none;
}</pre></body></html>