@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-primary: #c7a26c;
  --color-primary-light: rgba(199, 162, 108, 0.35);
  --color-bg-primary-light: rgba(199, 162, 108, 0.05);
  --color-link: #4895e6;
}

/*!
global > content-width
------------------------------
*/
main {
  max-width: 128rem;
  margin: 0 auto;
}

.pd {
  padding: 0 3rem;
}

/*!
global > font
------------------------------
*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

p {
  font-size: 1.6rem;
}

@font-face {
  font-family: "my font", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN";
  src: url(../../font/HiraMinProN-W3-AlphaNum-01.otf);
}
@font-face {
  font-family: "my font", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN";
  src: url(../../font/HiraMinProN-W6-AlphaNum-03.otf);
  font-weight: bold;
}
@font-face {
  font-family: "Hiragino Kaku";
  src: url(../../font/HiraKakuProN-W3-AlphaNum-01.otf);
}
@font-face {
  font-family: "Hiragino Kaku";
  src: url(../../font/HiraKakuProN-W6-AlphaNum-01.otf);
  font-weight: bold;
}
/*!
global > animation
------------------------------
*/
span {
  display: inline-block;
}

#box1 {
  animation: 20s linear infinite rotation1;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.delay-time-01 {
  animation-delay: 0.1s;
}

.delay-time-02 {
  animation-delay: 0.2s;
}

.delay-time-03 {
  animation-delay: 0.3s;
}

.delay-time-04 {
  animation-delay: 0.4s !important;
}

.delay-time-05 {
  animation-delay: 0.5s;
}

.delay-time-06 {
  animation-delay: 0.6s;
}

.delay-time-07 {
  animation-delay: 0.7s !important;
}

.delay-time-08 {
  animation-delay: 0.8s !important;
}

/**
 * ----------------------------------------
 * hover
 * ----------------------------------------
 */
.interview__cards__wrapper__group__button a:hover:after {
  right: -11px;
}

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
.trackingin {
  opacity: 0;
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
.textfocusin {
  opacity: 0;
}

.text-focus-in {
  -webkit-animation: text-focus-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: text-focus-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
.fadeinfwd {
  opacity: 0;
}

.fade-in-fwd {
  -webkit-animation: fade-in-fwd 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-fwd 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
/**
* ----------------------------------------
* animation fade-in-bottom
* ----------------------------------------
*/
.fadeinbottom {
  opacity: 0;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
.puffincenter {
  opacity: 0;
}

.puff-in-center {
  -webkit-animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation flip-in-ver-right
 * ----------------------------------------
 */
.flipinright {
  opacity: 0;
}

.flip-in-ver-right {
  -webkit-animation: flip-in-ver-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: flip-in-ver-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
    transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
}
@keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
    transform: rotateY(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
}
/**
* ----------------------------------------
* animation fade-in-right
* ----------------------------------------
*/
.fadeinright {
  opacity: 0;
}

.fade-in-right {
  -webkit-animation: fade-in-right 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
* Generated by Animista on 2025-1-26 20:50:1
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
.slideintop {
  opacity: 0;
}

.slide-in-top {
  -webkit-animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
body {
  font-family: "Hiragino Kaku", sans-serif;
  line-height: 1.8;
}

/*!
component > component
------------------------------
*/
@media screen and (min-width: 426px) {
  .pc-br {
    display: block;
    /* PCを改行して */
  }

  .sp-br {
    display: none;
    /* SPの改行を隠す */
  }
}
@media screen and (max-width: 425px) {
  .pc-br {
    display: none;
    /* PCの改行を隠して */
  }

  .sp-br {
    display: block;
    /* SPを改行する */
  }
}
.bg-blue {
  background-color: #D3EDFB;
}

/*!
layout > container
------------------------------
*/
.l-container, .l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

/*!
layout > header
------------------------------
*/
#header {
  background: #3FA1C6;
  display: flex;
  flex-flow: row wrap;
  padding: 3rem;
  flex-direction: row-reverse;
  font-weight: 600;
  width: 100%;
}

#header h1 {
  color: #ffff;
  font-size: clamp(2rem, 3vw, 3rem);
}

#header nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  max-width: 128rem;
  margin: auto;
}

#header #navi {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
  color: #5B5B5B;
  align-content: center;
}

#header #navi li {
  margin: 0 0.2rem;
  line-height: 1.2;
  font-size: clamp(1.4rem, 2vw, 1.4rem);
  letter-spacing: 0.01em;
  background-color: white;
  color: #3FA1C6;
  padding: 0rem 1rem;
  border-radius: 3rem;
  text-align: center;
  height: 4.5rem;
  display: flex;
  align-items: center;
  width: 15.5rem;
  justify-content: center;
}

#header #navi li span {
  font-size: 1.2rem;
  font-weight: normal;
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

#header #navi li a {
  text-decoration: none;
}
#header #navi li a:hover {
  opacity: 0.8;
}
#header #navi li.request {
  color: #fff;
  background-color: #3FA1C6;
  border: 1px white solid;
  border-radius: 0rem;
  height: 5rem;
  width: 7rem;
  font-size: 1.5rem;
  margin-left: 0.8rem;
}
#header #navi li.original {
  color: #000;
  background-color: #FFF794;
  border: 1px white solid;
  border-radius: 0rem;
  height: 5rem;
  width: 16rem;
  font-size: 1.4rem;
  margin-left: 0.8rem;
}
/*#header #navi li.request {
  color: #000;
  background-color: #FFF794;
  border: 1px white solid;
  border-radius: 1.5rem;
  height: 5rem;
  width: 17rem;
  font-size: 2.7rem;
  margin-left: 2rem;
}*/

/*PCメニュー*/
/*SPメニュー*/
@media screen and (max-width: 1200px) {
  /* bager menu */
  #header #navi {
    transition: all 0.6s;
    overflow-y: auto;
    padding-top: 140px;
    width: 300px;
    height: 100vh;
    z-index: 200;
    top: 0;
    right: -320px;
    background-color: #3FA1C6;
    position: fixed;
    flex-direction: column;
    align-items: baseline;
    font-weight: bold;
  }

  #header #navi li {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  #header .nav_btn {
    width: 44px;
    height: 44px;
    z-index: 300;
    top: 30px;
    right: 30px;
    cursor: pointer;
    position: absolute;
  }

  .hamburger_line {
    transition: all 0.6s;
    width: 34px;
    height: 2px;
    left: 5px;
    background-color: #ffffff;
    position: absolute;
  }

  .hamburger_line1 {
    top: 10px;
  }

  .hamburger_line2 {
    top: 21px;
  }

  .hamburger_line3 {
    top: 32px;
  }

  .nav_bg {
    opacity: 0;
    transition: all 0.6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #000;
    cursor: pointer;
    position: fixed;
  }

  /* 表示された時用のCSS */
  .nav_open #header #navi {
    right: 0;
  }

  .nav_open .nav_bg {
    opacity: 0.8;
    visibility: visible;
  }

  .nav_open .hamburger_line1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav_open .hamburger_line2 {
    width: 0;
    left: 50%;
  }

  .nav_open .hamburger_line3 {
    transform: rotate(-45deg);
    top: 20px;
  }
}
/*!
layout > footer
------------------------------
*/
.footer {
  background-color: #3FA1C6;
  width: 100%;
}
.footer__wrapper {
  max-width: 128rem;
  margin: 0 auto;
  justify-content: space-between;
  display: flex;
  padding: 4rem 3rem;
}
.footer__left {
  font-size: clamp(2rem, 3vw, 3rem);
  color: white;
  font-weight: 500;
}
.footer__right {
  display: flex;
  gap: 0.5rem;
}
.footer__right a:hover {
  opacity: 0.8;
}
.footer__link {
  background-color: white;
  border-radius: 3rem;
  color: #3FA1C6;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.1;
  height: 4rem;
}

/*!
page > top > top (common)
------------------------------
*/
.top-section-text {
  margin-top: 8px;
}
.top-section-text a {
  color: var(--color-link);
}

/*!
page > top > top-section01
------------------------------
*/
.fv__overlay {
  position: absolute;
  top: 32%;
  left: 29%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  /* オーバーレイ画像の最大幅を設定 */
  height: auto;
  z-index: 1;
}
.fv__bg {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  margin: 10rem 0;
}
.fv__bg__ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/fv_bg.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.intro {
  background-color: #00A0E9;
  color: white;
  padding: 4rem 5rem;
}
.intro__ttl {
  position: relative;
  padding: 0 0 0 6rem;
  font-size: clamp(4rem, 6vw, 6rem);
}
.intro__ttl span {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
}
.intro__ttl::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: url(../img/puzzle1.svg);
  width: 5rem;
}
.intro__txt {
  margin-top: 1rem;
  font-weight: 500;
}

.point {
  padding: 8rem 5rem;
}
.point__top {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
.point__top__ttl {
  color: #00A0E9;
  font-size: clamp(3rem, 5vw, 5.6rem);
}
.point__top__img {
  width: 10rem;
}
.point__bottom {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.point__bottom__txt {
  width: 60%;
  font-family: "Hiragino Kaku";
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
.point__bottom__txt p {
  margin-bottom: 2rem;
}
.point__bottom__img {
  width: 35%;
  align-self: flex-end;
}

.attention {
  padding: 8rem 5rem;
}
.attention__balloon {
  /* 位置をずらした吹きだし下向き（枠線あり） */
  background: #fff;
  color: #333;
  position: relative;
  padding: 1rem;
  border: 2px solid #44a5e6;
  display: inline-block;
  border-radius: 6rem;
  width: 100%;
}
.attention__balloon::before {
  content: "";
  border: 14px solid transparent;
  border-top: 16px solid #00A0E9;
  margin-left: -5px;
  top: 100%;
  left: 51%;
  position: absolute;
}
.attention__balloon::after {
  content: "";
  border: 14px solid transparent;
  border-top: 16px solid #fff;
  margin-left: -10px;
  margin-top: 0;
  top: 100%;
  left: 51.2%;
  position: absolute;
}
.attention__balloon h2 {
  background-color: #00A0E9;
  border-radius: 6rem;
  padding: 1rem;
  color: #FFF100;
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 500;
}
.attention__ttl {
  margin: 8rem 0;
}
.attention__ttl__ttl-balloon {
  position: relative;
  padding: 0 0 0 9rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.5;
}
.attention__ttl__ttl-balloon::before {
  position: absolute;
  top: -1.8rem;
  left: 0;
  content: url(../img/puzzle2.svg);
  width: 6.5rem;
}
.attention__ttl__sub-ttl {
  padding: 0 0 0 9.5rem;
  color: #00A0E9;
  font-size: clamp(2rem, 5vw, 2.6rem);
}
.attention__contents {
  display: flex;
  gap: 3rem;
}
.attention__contents__txt {
  width: 60%;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2;
}
.attention__contents__img {
  width: 40%;
}

.example {
  position: relative;
}
.example__ttl {
  margin: 1rem auto 0 auto;
  display: flex;
  justify-content: center;
}
.example__dropcap {
  width: 100%;
}
.example__dropcap p {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 2;
}
.example__dropcap:first-letter {
  font-size: 6.8rem;
  /*文字の大きさ*/
  margin-right: 6px;
  margin-top: 6px;
  float: left;
  line-height: 1;
  font-weight: bold;
  /*必要*/
}
.example h2 {
  color: #00A0E9;
  font-size: clamp(2rem, 5vw, 5rem);
  position: relative;
}
.example h2::before {
  position: absolute;
  top: 5px;
  content: url(../img/example_icon.svg);
  width: 5rem;
  left: -5rem;
}
.example__scroll {
  gap: 3rem;
}
.example__img {
  width: 100%;
}

.area {
  overflow: hidden;
}

.wrap {
  display: flex;
}

.item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
}

.js-area {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.js-wrap {
  display: flex;
  height: 100%;
}

.js-item {
  flex-shrink: 0;
  height: 100%;
  padding: 0 6rem;
}

.static-content {
  position: relative;
  width: 100%;
}

.science {
  padding: 10rem 5rem 0 5rem;
}
.science__top__ttl-wrap {
  position: relative;
}
.science__top__ttl {
  position: absolute;
  right: 3%;
  top: 15%;
}
.science__top__ttl h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.5;
}
.science__top__ttl span {
  color: #00A0E9;
  font-size: clamp(3rem, 5vw, 5rem);
}
.science__top__balloon {
  width: 70%;
}
.science__bottom {
  background-image: linear-gradient(#76c2be, #ffffff 0%, #ffffff 68%, #76c2be 95%);
}
.science__txt {
  padding: 2rem 2rem 7rem 2rem;
  font-weight: 500;
}

.features {
  padding: 8rem 5rem;
}
.features__txt {
  font-weight: 500;
  margin-bottom: 4rem;
  font-size: 1.8rem;
}
.features__box {
  padding: 2rem 3rem;
  background-color: #D3EDFB;
  margin-bottom: 2rem;
}
.features__box__ttl {
  color: #00A0E9;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.features__img {
  margin: 0 0 0 auto;
  max-width: 50rem;
}

.sub_ttl {
  color: #00A0E9;
  font-size: clamp(3rem, 5vw, 3.6rem);
  border-top: #00A0E9 2px solid;
  border-bottom: #00A0E9 2px solid;
  padding: 1rem 0;
}

.appeal_ttl {
  color: #00A0E9;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.5;
  margin: 3rem 0;
  letter-spacing: 0.1em;
}

.shifted_ttl {
  margin-bottom: 5rem;
}

.require {
  padding: 8rem 5rem;
}
.require__area {
  display: flex;
  gap: 6rem;
}
.require__top-txt {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 5rem;
}
.require__group ul {
  margin-bottom: 3rem;
}
.require__group__ttl {
  color: #00A0E9;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.1em;
  font-weight: 600;
  border-bottom: 1px solid black;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.require__group__txt {
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 500;
}
.require__left {
  width: 50%;
}
.require__left__img {
  margin: 0 auto;
  max-width: 20rem;
}
.require__right {
  width: 50%;
}
.require__bottom {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.require__bottom p {
  width: 65%;
  font-size: clamp(2rem, 3.2vw, 4rem);
  color: #00A0E9;
  font-weight: 600;
}
.require__bottom__img {
  width: 35%;
}

.field h2 {
  margin-bottom: 3rem;
  padding: 0 2rem;
}
.field__area {
  padding: 5rem 5rem 8rem 5rem;
}
.field__ttl {
  color: #00A0E9;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.field__txt {
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
}
.field__shifted {
  padding: 0 5rem;
}

/*!
page > top > top-section02
------------------------------
*/
.top-section02 {
  background-color: var(--color-bg-primary-light);
}

/*!
page > top > top-section03
------------------------------
*/
/*!
responsive > responsive
------------------------------
*/
@media screen and (max-width: 768px) {
  #header #navi li {
    margin: 0 auto 2rem auto;
  }

  #header #navi li.request {
    margin-left: 0;
    width: 16rem;
  }
  #header #navi li.original {
    margin-left: 0;
  }
  #header #navi a br.br-pc {
    display: none;
  }
  .point__bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
  .point__bottom__txt {
    width: 100%;
  }
  .point__bottom__img {
    width: 60%;
    align-self: auto;
  }

  .attention__contents {
    flex-direction: column-reverse;
  }
  .attention__contents__txt {
    width: 100%;
  }
  .attention__contents__img {
    width: 100%;
  }

  .science__top__ttl {
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .science__top__ttl h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
  }
  .science__top__ttl span {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
  }

  .item {
    flex-direction: column;
  }

  .example__img {
    width: 80%;
  }
  .example__ttl {
    margin: 4rem auto 0rem 6rem;
  }
}
@media screen and (max-width: 425px) {
  .fv__bg {
    margin: 5rem 0;
  }

  .intro {
    padding: 4rem 3rem;
  }

  .point {
    padding: 4rem 3rem;
  }
  .point__top {
    flex-direction: column;
  }

  .attention {
    padding: 4rem 3rem;
  }
  .attention__balloon h2 {
    font-size: clamp(2rem, 5vw, 5rem);
  }
  .attention__balloon::after {
    left: 51.7%;
  }
  .attention__ttl {
    margin: 5rem 0;
  }
  .attention__contents__txt {
    font-size: clamp(1.6rem, 5vw, 1.6rem);
  }

  .science {
    padding: 8rem 3rem 0 3rem;
  }
  .science__top__ttl {
    left: 50%;
    text-align: center;
  }
  .science__top__balloon {
    margin: 0 auto;
  }

  .features {
    padding: 8rem 3rem;
  }

  .require {
    padding: 2rem 3rem;
  }
  .require__area {
    flex-direction: column;
  }
  .require__left {
    width: 100%;
  }
  .require__right {
    width: 100%;
  }
  .require__bottom {
    flex-direction: column;
    align-items: center;
  }
  .require__bottom p {
    width: 100%;
  }
  .require__bottom__img {
    width: 100%;
  }
  .require__group__ttl {
    font-size: clamp(2.4rem, 3vw, 3rem);
  }

  .example__ttl {
    margin: 2rem auto 5rem auto;
  }
  .example h2 {
    font-size: clamp(2rem, 7vw, 5rem);
  }
  .example__img {
    width: 70%;
  }
  .example__dropcap p {
    font-size: clamp(1.8rem, 3vw, 1.8rem);
  }

  .field__area {
    padding: 0 3rem 8rem 3rem;
  }
  .field__ttl {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .field__shifted {
    padding: 2rem 3rem 5rem 3rem;
  }
  .field__txt {
    font-size: clamp(1.8rem, 3vw, 1.8rem);
  }

  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .js-item {
    padding: 0 3rem;
  }

  .item {
    justify-content: normal;
    gap: 5rem;
  }
}

/*# sourceMappingURL=style.css.map */
