@charset "UTF-8";
/*---------------------------------------- 
	importFont
------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*---------------------------------------- 
	setting Layout
------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

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

html {
  -webkit-text-size-adjust: none;
  height: 100%;
  max-width: 2560px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.125vw;
  }
}
/*-------------------------------------
base 16px
********************

12px | 0.750em	13px | 0.813em
14px | 0.875em	15px | 0.938em
16px | 1.000em	17px | 1.063em
18px | 1.125em	19px | 1.188em
20px | 1.250em	21px | 1.313em
22px | 1.375em	23px | 1.438em
24px | 1.500em	25px | 1.563em
26px | 1.625em	27px | 1.688em
28px | 1.750em	29px | 1.813em
30px | 1.875em

34px | 2.125em	36px | 2.250em
40px | 2.500em
--------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: bold;
}

ol, ul, ul li, ol li {
  list-style: none;
}

img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
}

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

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.8);
  outline: none;
  text-decoration: none;
  transition: all 0.4s;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

a:active {
  color: #666;
}

a:visited {
  color: #000;
}

a:link {
  text-decoration: none;
}

a:focus {
  overflow: hidden;
  outline: none;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.red {
  color: #E60012;
}

.relative {
  position: relative;
}

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

blockquote, q {
  quotes: "" "";
}

option {
  padding-right: 10px;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.ft14 {
  font-size: 0.875em;
}

.ft16 {
  font-size: 1em;
}

.ft20 {
  font-size: 1.25em;
}

.ft24 {
  font-size: 1.5em;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt40 {
  margin-top: 40px;
}

.mt80 {
  margin-top: 80px;
}

.mt120 {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  br.sp {
    display: none;
  }
}
/*---------------------------------------- 
	print Layout
------------------------------------------*/
@media print {
  body {
    zoom: 1;
    width: 1400px;
    transform: scale(0.5);
    transform-origin: 0 0;
  }
  .header,
  .footer {
    display: none;
  }
  .container {
    margin: 0;
  }
}
/*==============================
 fadeIn
==============================*/
.fadeIn,
.fadeIn2,
.fadeIn3,
.fadeIn4 {
  opacity: 0;
}

.fadeIn.done,
.fadeIn2.done,
.fadeIn3.done,
.fadeIn4.done {
  animation-name: fadeInAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

.fadeIn2.done {
  animation-delay: 0.3s;
}

.fadeIn3.done {
  animation-delay: 0.6s;
}

.fadeIn4.done {
  animation-delay: 0.9s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==============================
 下からふわっと
==============================*/
.scroll-up {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-up.done {
  animation: fadeUpAnime 1s ease forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   ページレイアウト
======================================== */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
html body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
}
html body .wrapper {
  overflow: hidden;
}
html body .wrapper .pc-only {
  display: block;
}
html body .wrapper .sp-only {
  display: none;
}

section .bg-gradient {
  background: linear-gradient(to bottom, #E3F8EC, #E1EFFF);
}
section .bg-grid {
  background-image: url("../../img/bg-grid.svg");
  background-repeat: repeat;
}
section .page-conte {
  margin-left: 40rem;
  padding: 0 5%;
  position: relative;
}
section .page-conte .next-page,
section .page-conte .prev-page {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: auto;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  z-index: 100;
}
section .page-conte .next-page img,
section .page-conte .prev-page img {
  display: block;
}
section .page-conte .next-page {
  animation: nextPageMove 2s ease-in-out infinite;
  bottom: 2%;
}
@keyframes nextPageMove {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
section .page-conte .prev-page {
  top: 1%;
}
section .logo {
  display: inline-block;
  width: 12rem;
  height: auto;
  margin: 1.6rem 2.5% 0.8rem;
}
section .mv {
  width: 95%;
  height: auto;
  margin: 0 auto;
}
section .intro {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 7%;
}
section .intro_illust {
  width: 18rem;
  height: auto;
  display: block;
}
section .intro_message {
  font-size: 2.1rem;
  font-weight: 500;
}
section .chatPage {
  padding: 4% 0;
}
section .chatPage_bubble {
  background-color: #fff;
  border: 1px #7AB7FF dashed;
  max-width: 74rem;
  min-height: 15rem;
  position: relative;
  margin: 3.6rem auto;
  display: flex;
  align-items: center;
}
section .chatPage_bubble.girlIllust {
  padding: 2.2rem 3.6rem 2.2rem 6.4rem;
  left: -6%;
}
section .chatPage_bubble.pchanIllust {
  padding: 2.2rem 6.4rem 2.2rem 3.6rem;
  right: -6%;
}
section .chatPage .girlIllust {
  position: relative;
}
section .chatPage .girlIllust::before {
  content: "";
  position: absolute;
  left: -4.8rem;
  bottom: -4.8rem;
  width: 10rem;
  height: 15rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section .chatPage .girlIllust.girl-1::before {
  background-image: url("../../img/girl-1.png");
}
section .chatPage .girlIllust.girl-2::before {
  background-image: url("../../img/girl-2.png");
}
section .chatPage .girlIllust.girl-3::before {
  background-image: url("../../img/girl-3.png");
}
section .chatPage .girlIllust.girl-4::before {
  background-image: url("../../img/girl-4.png");
}
section .chatPage .girlIllust.girl-5::before {
  background-image: url("../../img/girl-5.png");
}
section .chatPage .girlIllust.girl-6::before {
  background-image: url("../../img/girl-6.png");
}
section .chatPage .girlIllust.girl-7::before {
  background-image: url("../../img/girl-7.png");
}
section .chatPage .girlIllust.girl-8::before {
  background-image: url("../../img/girl-8.png");
}
section .chatPage .pchanIllust {
  position: relative;
}
section .chatPage .pchanIllust::before {
  content: "";
  position: absolute;
  right: -5.6rem;
  bottom: -2.4rem;
  width: 13rem;
  height: 10rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section .chatPage .pchanIllust.pchan-1::before {
  background-image: url("../../img/pchan-1.png");
}
section .chatPage .pchanIllust.pchan-2::before {
  background-image: url("../../img/pchan-2.png");
}
section .chatPage .pchanIllust.pchan-3::before {
  background-image: url("../../img/pchan-3.png");
}
section .chatPage .pchanIllust.pchan-4::before {
  background-image: url("../../img/pchan-4.png");
}
section .chatPage .pchanIllust.pchan-5::before {
  background-image: url("../../img/pchan-5.png");
}
section .chatPage .pchanIllust.pchan-6::before {
  background-image: url("../../img/pchan-6.png");
}
section .chatPage .pchanIllust.pchan-7::before {
  background-image: url("../../img/pchan-7.png");
}
section .chatPage .pchanIllust.pchan-8::before {
  background-image: url("../../img/pchan-8.png");
}
section .chatPage_message {
  font-size: 1.8rem;
}
section .chatPage_message .boldBlue {
  color: #7AB7FF;
  font-weight: 900;
}
section .chatPage_message .boldBlack {
  font-weight: 900;
}
section .chatPage_message .prompt {
  font-weight: 900;
  margin: 1.6rem 0;
}
section .chatPage_message .line-spacing {
  margin-bottom: 1.2rem;
  display: block;
}
section .slidePage {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
section .slidePage .slide {
  padding: 3% 5%;
  width: 100%;
  position: relative;
}
section .slidePage .slide.bg-green {
  background-color: #77C899;
}
section .slidePage .slide.bg-blue {
  background-color: #7AB7FF;
}
section .slidePage .slide-ttl {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  font-weight: 900;
  position: relative;
  display: table;
  margin: 0 auto;
}
section .slidePage .slide-ttl span {
  font-size: 2.4rem;
  margin: 0 -0.8rem 0 -1.6rem;
}
section .slidePage .slide-ttl::before, section .slidePage .slide-ttl::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 3.6rem;
  background: url("../../img/listttl-deco.svg") center/contain no-repeat;
  position: absolute;
  bottom: 0;
}
section .slidePage .slide-ttl::before {
  left: -4rem;
}
section .slidePage .slide-ttl::after {
  right: -4rem;
  transform: scaleX(-1);
}
section .slidePage .slide .slideList-a {
  padding: 0 2.5%;
}
section .slidePage .slide .slideList-a li {
  background: #fff;
  margin-bottom: 1.8rem;
  padding: 1.8rem 3.2rem;
  position: relative;
  border-radius: 5px;
}
section .slidePage .slide .slideList-a li.ng-icon::before {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.6rem;
  content: "NG";
  width: 7rem;
  height: 7rem;
  position: absolute;
  left: -4rem;
  top: -1.6rem;
  color: #fff;
  background-color: #454545;
  font-size: 3rem;
  font-weight: 900;
  border-radius: 100vmax;
  transform: rotate(-20deg);
  box-sizing: border-box;
}
section .slidePage .slide .slideList-a .maintxt {
  font-size: 2.1rem;
  color: #77C899;
  line-height: 1.4;
  font-weight: 900;
}
section .slidePage .slide .slideList-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.4rem;
  padding: 0 2.5% 1.5%;
}
section .slidePage .slide .slideList-b li {
  background-color: #fff;
  display: flex;
  padding: 2.4rem;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 5px;
  gap: 2.4rem;
}
section .slidePage .slide .slideList-b li .number {
  position: absolute;
  left: -1.2rem;
  top: -1.2rem;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.6rem;
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  background-color: #7AB7FF;
  border-radius: 100vmax;
  border: 2.5px solid #fff;
}
section .slidePage .slide .slideList-b .kotsuIllust {
  max-width: 7rem;
}
section .slidePage .slide .slideList-b .kotsuTxt-main {
  font-size: 2.1rem;
  color: #7AB7FF;
  display: inline;
  background: linear-gradient(transparent 65%, rgba(255, 241, 118, 0.7) 65%);
}
section .slidePage .slide .slideList-b .kotsuTxt-main span {
  font-size: 3rem;
  font-weight: 900;
}
section .slidePage .slide .slideList-b .kotsuTxt-sub {
  font-size: 2rem;
  line-height: 1.4;
  margin: 1.2rem 0 !important;
}
section .slidePage .slide .slideList-b .kotsuTxt-example {
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
section .slidePage .slide .slideList-b .kotsuTxt-example span {
  width: 1.4rem;
  height: auto;
}
section .slidePage .slide .slideList-b .kotsuTxt-example p {
  line-height: 1.5;
}
section .slidePage .slide .slideList-c {
  background-color: #fff;
  padding: 1% 4%;
  border-radius: 5px;
  margin-top: 3rem;
}
section .slidePage .slide .slideList-c table {
  width: 100%;
  border-collapse: collapse;
}
section .slidePage .slide .slideList-c table tr {
  border-bottom: 1px solid #7AB7FF;
}
section .slidePage .slide .slideList-c table tr:nth-last-of-type(1) {
  border-bottom: none;
}
section .slidePage .slide .slideList-c table th {
  padding: 0.8rem;
}
section .slidePage .slide .slideList-c table th .th-label {
  font-weight: 900;
  background-color: #7AB7FF;
  color: #fff;
  padding: 0.2rem 2.4rem;
  border-radius: 100vmax;
  min-width: 10rem;
  display: inline-block;
  text-align: center;
}
section .slidePage .slide .slideList-c table td {
  padding: 2.1rem 4.2rem 2.1rem 0.8rem;
  text-align: left;
  font-weight: 500;
}
section .slidePage .slide .slideList-c table td.ai-name {
  color: #7AB7FF;
  font-size: 2.1rem;
  font-weight: 900;
}
section .slidePage .slide-pchan {
  position: absolute;
  right: -6.4rem;
  bottom: -6.4rem;
  height: 13rem;
  width: 17rem;
}
section .slidePage .slide .table-note {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 400;
  padding-top: 0.8rem;
}
section .practicePage {
  height: 100vh;
  display: flex;
  align-items: center;
}
section .practicePage .practice {
  padding: 5%;
  width: 100%;
  position: relative;
  text-align: center;
}
section .practicePage .practice-ttl {
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 900;
  color: #7AB7FF;
  margin-bottom: 1.6rem;
}
section .practicePage .practice-body {
  width: 100%;
  padding: 7%;
  background: linear-gradient(to bottom, rgba(227, 248, 236, 0.7), rgba(225, 239, 255, 0.7));
  text-align: center;
}
section .practicePage .practice-body-img {
  width: 68rem;
  height: auto;
  display: inline-block;
}

#index_fixed {
  width: 30rem;
  height: auto;
  border-radius: 3.6rem;
  background-color: #fff;
  box-shadow: 4px 4px 20px rgba(122, 183, 255, 0.1);
  padding: 3.6rem 2.4rem;
  position: fixed;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  font-weight: bold;
}
#index_fixed.is-show {
  opacity: 1;
  visibility: visible;
}
#index_fixed .index_ttl {
  background-color: #7AB7FF;
  color: #fff;
  text-align: center;
  padding: 0.4rem 0;
  border-radius: 100vmax;
  font-size: 2.1rem;
}
#index_fixed .index_list {
  margin: 1.6rem 0 4.8rem;
}
#index_fixed .index_list li {
  font-weight: bold;
}
#index_fixed .index_list li a {
  text-decoration: none;
  display: block;
  height: 8rem;
  display: flex;
  align-items: flex-end;
}
#index_fixed .index_list li a:hover p {
  color: #7AB7FF;
  transition: 0.4s;
}
#index_fixed .index_list li a p {
  line-height: 1.4;
  position: relative;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 0.4rem;
  width: 100%;
  transition: 0.4s;
}
#index_fixed .index_list li a p.is-current {
  color: #7AB7FF;
  border-bottom-color: #7AB7FF;
  margin-left: 1.2rem;
  transition: 0.4s;
}
#index_fixed .index_list li a p.is-current::before {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100vmax;
  background-color: #7AB7FF;
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%) translateX(0);
  left: -1.2rem;
  opacity: 1;
}
#index_fixed .other_link {
  color: #7AB7FF;
  border: 1px solid #7AB7FF;
  padding: 2.4rem 0;
  text-align: center;
  border-radius: 1.6rem;
  width: 100%;
  display: block;
  text-decoration: none;
}
#index_fixed .other_link::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  top: 0.2rem;
  right: 0.8rem;
  background: url("../../img/other-arw-before.svg") center/contain no-repeat;
}
#index_fixed .other_link:hover {
  background-color: #7AB7FF;
  color: #fff;
  transition: 0.4s;
}
#index_fixed .other_link:hover::before {
  transition: 0.4s;
  background: url("../../img/other-arw-after.svg") center/contain no-repeat;
}

.footer .footer-navigation ul {
  margin: 0;
}

/* ========================================
    SP
    ページレイアウト
======================================== */
@media (max-width: 767px) {
  html body {
    padding-bottom: 16rem;
  }
  html body .wrapper .pc-only {
    display: none;
  }
  html body .wrapper .sp-only {
    display: block;
  }
  section .page-conte {
    margin-left: auto;
    padding: 5%;
  }
  section .page-conte .next-page,
  section .page-conte .prev-page {
    display: none;
  }
  section .logo {
    width: 8rem;
    margin: 5% 5% 2.5% 5%;
  }
  section .mv {
    width: 90%;
  }
  section .intro {
    padding: 0 2%;
    display: block;
  }
  section .intro_illust {
    width: 16rem;
    margin: 2.4rem auto 0;
  }
  section .intro_message {
    font-size: 1.7rem;
  }
  section .intro_message p {
    text-align: center;
  }
  section .chatPage {
    padding: 10% 5%;
  }
  section .chatPage_bubble {
    max-width: 95%;
    min-height: 10rem;
    margin: 1.8rem auto;
  }
  section .chatPage_bubble.girlIllust {
    padding: 1.6rem 1.8rem 1.6rem 4.8rem;
    left: 3%;
  }
  section .chatPage_bubble.pchanIllust {
    padding: 1.6rem 6rem 1.6rem 1.8rem;
    right: 3%;
  }
  section .chatPage .girlIllust::before {
    left: -4rem;
    bottom: -0.8rem;
    width: 8rem;
    height: 12rem;
  }
  section .chatPage .pchanIllust::before {
    right: -4rem;
    bottom: -0.8rem;
    width: 10rem;
    height: 8rem;
  }
  section .chatPage_message {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  section .chatPage_message .line-spacing {
    margin-bottom: 0.8rem;
  }
  section .slidePage {
    display: block;
    padding: 15% 5%;
  }
  section .slidePage .slide {
    padding: 9% 5%;
  }
  section .slidePage .slide-ttl {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
  }
  section .slidePage .slide-ttl span {
    font-size: 1.4rem;
    margin: 0 -0.8rem 0 -1.2rem;
  }
  section .slidePage .slide-ttl::before, section .slidePage .slide-ttl::after {
    width: 2.1rem;
    height: 2.7rem;
  }
  section .slidePage .slide-ttl::before {
    left: -2.7rem;
  }
  section .slidePage .slide-ttl::after {
    right: -2.7rem;
  }
  section .slidePage .slide .slideList-a {
    padding: 0;
  }
  section .slidePage .slide .slideList-a li {
    margin-bottom: 1.6rem;
    padding: 1.8rem 2.4rem;
  }
  section .slidePage .slide .slideList-a li p {
    line-height: 1.4;
  }
  section .slidePage .slide .slideList-a li.ng-icon::before {
    width: 4.8rem;
    height: 4.8rem;
    left: -1.6rem;
    top: -0.8rem;
    font-size: 2.1rem;
  }
  section .slidePage .slide .slideList-a .maintxt {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }
  section .slidePage .slide .slideList-b {
    display: block;
    padding: 0;
  }
  section .slidePage .slide .slideList-b li {
    padding: 1.6rem 2.4rem;
    margin-bottom: 1.6rem;
  }
  section .slidePage .slide .slideList-b li .number {
    left: -1.6rem;
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2.7rem;
  }
  section .slidePage .slide .slideList-b .kotsuIllust {
    display: none;
  }
  section .slidePage .slide .slideList-b .kotsuTxt-main {
    font-size: 1.8rem;
  }
  section .slidePage .slide .slideList-b .kotsuTxt-main span {
    font-size: 2.4rem;
  }
  section .slidePage .slide .slideList-b .kotsuTxt-sub {
    font-size: 1.7rem;
    margin: 0.8rem 0 !important;
  }
  section .slidePage .slide .slideList-b .kotsuTxt-example {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  section .slidePage .slide .slideList-b .kotsuTxt-example span {
    min-width: 1.4rem;
  }
  section .slidePage .slide .slideList-b .kotsuTxt-example p {
    line-height: 1.3;
  }
  section .slidePage .slide .slideList-c {
    padding: 3% 5%;
    margin-top: 3rem;
  }
  section .slidePage .slide .slideList-c table {
    margin-top: 0;
  }
  section .slidePage .slide .slideList-c table tr {
    padding: 1.2rem 0;
  }
  section .slidePage .slide .slideList-c table thead {
    display: none;
  }
  section .slidePage .slide .slideList-c table tbody,
  section .slidePage .slide .slideList-c table tr,
  section .slidePage .slide .slideList-c table td {
    display: block;
  }
  section .slidePage .slide .slideList-c table td {
    padding: 0.4rem 0;
    line-height: 1.2;
    font-weight: 400;
    font-size: 1.45rem;
  }
  section .slidePage .slide .slideList-c table td.ai-name {
    font-size: 2.3rem;
  }
  section .slidePage .slide .slideList-c table td.ai-point {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }
  section .slidePage .slide-pchan {
    right: -1.6rem;
    height: 10rem;
    width: 12rem;
  }
  section .slidePage .slide .table-note {
    font-size: 1.25rem;
    padding-top: 0.4rem;
    text-align: left;
  }
  section .practicePage {
    height: auto;
  }
  section .practicePage .practice {
    padding: 10% 0;
  }
  section .practicePage .practice-ttl {
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
  }
  section .practicePage .practice-body-img {
    width: 100%;
  }
  #index_fixed {
    width: 100%;
    border-radius: 0;
    padding: 0;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-sizing: border-box;
  }
  #index_fixed .index_ttl {
    background-color: #77C899;
    padding: 0 0 0.2rem;
    border-radius: 0;
    font-size: 1.8rem;
  }
  #index_fixed .index_list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  #index_fixed .index_list li {
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  #index_fixed .index_list li a {
    display: flex;
    width: 100%;
    height: 6.4rem;
    margin: 0;
    padding: 0;
    align-items: stretch;
    box-sizing: border-box;
  }
  #index_fixed .index_list li a p {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #7AB7FF;
    font-size: 1.4rem;
    border-bottom: 1px solid #7AB7FF;
    border-right: 1px solid #7AB7FF;
    transition: 0.3s;
  }
  #index_fixed .index_list li a p.is-current {
    color: #fff;
    background-color: #7AB7FF;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #7AB7FF;
  }
  #index_fixed .index_list li a p.is-current::before {
    display: none;
    content: none;
  }
  #index_fixed .index_list li:nth-child(3) p, #index_fixed .index_list li:nth-child(6) p {
    border-right: none;
  }
  #index_fixed .other_link {
    display: none;
  }
  .footer .footer-navigation ul {
    margin: 0;
  }
}
/* ========================================
   ページ切り替え
======================================== */
html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.page {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
  background-color: #fff;
  z-index: 0;
}

.page.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

/* ========================================
   SP
   ページ切り替え完全無効
======================================== */
@media (max-width: 767px) {
  html,
  body {
    overflow: auto;
  }
  .page,
  .page.is-active {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transition: none;
    z-index: auto;
  }
}/*# sourceMappingURL=style.css.map */