@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --keycolor: #0071BD;
  --keycolor-rgb: 0,113,189;
  --keycolor-dark: #003457;
  --keycolor-dark-rgb: 0,52,87;
  --keycolor-light: #bde4ff;
  --keycolor-light-rgb: 189,228,255;
  --sub01: #BF1E56;
  --sub01-rgb: 191,30,86;
  --sub01-dark: #67102e;
  --sub01-dark-rgb: 103,16,46;
  --sub01-light: #fae2ea;
  --sub01-light-rgb: 250,226,234;
  --sub02: #F6CA06;
  --sub02-rgb: 246,202,6;
  --sub02-dark: #927804;
  --sub02-dark-rgb: 146,120,4;
  --sub02-light: #fffefc;
  --sub02-light-rgb: 255,254,252;
  --sub03: #A4C520;
  --sub03-rgb: 164,197,32;
  --sub03-dark: #5b6d12;
  --sub03-dark-rgb: 91,109,18;
  --sub03-light: #f8fbe9;
  --sub03-light-rgb: 248,251,233;
  --sub04: #45A1CF;
  --sub04-rgb: 69,161,207;
  --sub04-dark: #24688a;
  --sub04-dark-rgb: 36,104,138;
  --sub04-light: #d3e9f4;
  --sub04-light-rgb: 211,233,244;
  --textcolor-dark: #000;
  --textcolor-dark-rgb: 0,0,0;
  --textcolor-light: #FFF;
  --textcolor-light-rgb: 255,255,255;
}

/* 初期設定 */
html {
  overflow-y: scroll;
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Roboto", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: var(--textcolor-dark);
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--sub04-dark);
}
sup {
  vertical-align: super;
  font-size: 60%;
}

strong, b {
  font-weight: bold;
}

/* サイドメニュー */
.aside {
  width: 295px;
  height: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  transition: 0.3s ease all;
  overflow: hidden;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .aside {
    width: 80%;
  }
}
.aside--menu1 {
  left: -250px;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .aside--menu1 {
    left: calc(-80% + 20px);
    padding-right: 20px;
  }
}
.aside--menu2 {
  right: -295px;
}
@media screen and (max-width: 768px) {
  .aside--menu2 {
    right: -80%;
  }
}
.aside--menu2 .aside-menu {
  display: none;
}
.aside__wrap {
  height: inherit;
  background-color: var(--textcolor-light);
  padding: 60px 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--keycolor-rgb), 0.3) #FFF;
  border-right: 1px solid rgba(var(--keycolor-rgb), 0.3);
}
.aside__wrap::-webkit-scrollbar {
  width: 2px;
}
.aside__wrap::-webkit-scrollbar-thumb {
  background-color: rgba(var(--keycolor-rgb), 0.3);
}
.aside__wrap::-webkit-scrollbar-track {
  background-color: var(--textcolor-light);
}
.aside-menu {
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--keycolor);
  display: none;
}
@media screen and (max-width: 768px) {
  .aside-menu {
    display: flex;
    width: 20px;
    min-height: 80px;
    border-radius: 0 4px 4px 0;
    align-items: center;
    justify-content: flex-start;
    bottom: 30%;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
  }
}
.aside-menu__bar {
  width: 10px;
  height: 1px;
  background-color: var(--textcolor-light);
  margin-top: 4px;
  margin-bottom: 4px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .aside-menu__bar {
    position: absolute;
    top: 15px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.aside-menu__bar::before {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--textcolor-light);
  position: absolute;
  top: -4px;
  left: 0;
}
.aside-menu__bar::after {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--textcolor-light);
  position: absolute;
  bottom: -4px;
  left: 0;
}
.aside-menu__text {
  font-size: 1rem;
  color: var(--textcolor-light);
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .aside-menu__text {
    margin-top: 4.5em;
    letter-spacing: 0.2em;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.blockskip {
  position: fixed;
  width: 40%;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  .blockskip {
    width: 60%;
  }
}
.blockskip__jump a {
  display: block;
  background-color: #fff;
  padding: 1rem;
  font-size: 1.6rem;
  text-align: center;
  -webkit-transform: scale(0);
  transform: scale(0);
}
@media screen and (max-width: 960px) {
  .blockskip__jump a {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .blockskip__jump a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .blockskip__jump a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .blockskip__jump a {
    font-size: 1.28rem;
  }
}
.blockskip__jump a:focus {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 改行処理 */
@media screen and (max-width: 960px) {
  br.lg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  br.lg {
    display: none;
  }
}
br.m {
  display: none;
}
@media screen and (max-width: 960px) {
  br.m {
    display: inline;
  }
}
br.lg.m {
  display: inline;
}
@media screen and (max-width: 768px) {
  br.lg.m {
    display: none;
  }
}
br.s {
  display: none;
}
@media screen and (max-width: 768px) {
  br.s {
    display: inline;
  }
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  background-color: var(--textcolor-light);
  color: var(--keycolor-dark);
  margin-top: 0.5em;
  border: 1px solid var(--keycolor-dark);
  text-decoration: none;
  transition: 0.3s ease all;
}
@media screen and (max-width: 960px) {
  .btn {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .btn {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .btn {
    font-size: 1.2rem;
  }
}
.btn:hover, .btn:focus {
  color: #FFF;
  background-color: var(--keycolor-dark);
}
.btn--big {
  font-size: 2rem;
  font-weight: bold;
  padding: 2rem 3rem;
  background-color: var(--keycolor-dark);
  color: var(--textcolor-light);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .btn--big {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .btn--big {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .btn--big {
    font-size: 1.4791666667rem;
  }
}
@media screen and (max-width: 426px) {
  .btn--big {
    font-size: 1.6rem;
  }
}
.btn--big::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn--big:hover, .btn--big:focus {
  color: var(--keycolor-dark);
  border: 2px solid var(--keycolor-dark);
  background-color: transparent;
}
.btn--big:hover::after, .btn--big:focus::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--textcolor-light);
  -webkit-animation: bgcolor 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  animation: bgcolor 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: -1;
}
@-webkit-keyframes bgcolor {
  0% {
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bgcolor {
  0% {
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.btn--middle {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem 2rem;
  background-color: var(--keycolor-dark);
  color: var(--textcolor-light);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .btn--middle {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .btn--middle {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .btn--middle {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .btn--middle {
    font-size: 1.44rem;
  }
}
.btn--middle::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn--middle:hover, .btn--middle:focus {
  color: var(--keycolor-dark);
  border: 1px solid var(--keycolor-dark);
  background-color: transparent;
}
.btn--middle:hover::after, .btn--middle:focus::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--textcolor-light);
  -webkit-animation: bgcolor 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  animation: bgcolor 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: -1;
}
@keyframes bgcolor {
  0% {
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.btn--contact {
  background-color: var(--sub01);
  color: var(--textcolor-light);
}
.btn--contact:hover, .btn--contact:focus {
  color: var(--sub01);
  border: 2px solid var(--sub01);
}
.btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-area--right {
  text-align: right;
}
.btn-area--center {
  text-align: center;
}

.col__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .col__row {
    flex-direction: column-reverse;
  }
}
.col-text {
  flex: 1;
}
.col-text:not(:last-of-type) {
  margin-right: 4%;
}
@media screen and (max-width: 576px) {
  .col-text {
    margin-right: 0 !important;
  }
}
.col-ph {
  width: 100%;
  max-width: 31.3333%;
}
@media screen and (max-width: 576px) {
  .col-ph {
    max-width: initial;
    margin-bottom: 3rem;
    text-align: center;
  }
}
.col-ph--small {
  width: 100%;
  max-width: 20%;
}
@media screen and (max-width: 576px) {
  .col-ph--small {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    text-align: center;
  }
}

.column {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.column__wrap {
  border: 1px solid var(--keycolor);
  border-radius: 0.6rem;
  padding: 2rem;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--textcolor-light);
}
.column__wrap--wide {
  max-width: initial;
}
@media screen and (max-width: 960px) {
  .column__wrap {
    max-width: initial;
  }
}
.column__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 960px) {
  .column__ttl {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .column__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .column__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .column__ttl {
    font-size: 1.28rem;
  }
}
.column__text {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .column__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .column__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .column__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .column__text {
    font-size: 1.2rem;
  }
}
.column__text + .column__text {
  margin-top: 1em;
}

.contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: rgba(var(--sub04-light-rgb), 0.3);
  box-shadow: 0 0 0 100vmax rgba(var(--sub04-light-rgb), 0.3);
  -webkit-clip-path: inset(0 -100vmax);
  clip-path: inset(0 -100vmax);
}
/* フッター */
.footer {
  margin-top: auto;
  padding: 3rem 2rem;
  background-color: var(--keycolor-dark);
}
.footer__copyright {
  font-size: 1.4rem;
  text-align: center;
  color: var(--textcolor-light);
}
@media screen and (max-width: 960px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}

.form {
  margin-bottom: 1.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
* + .form {
  margin-top: 3rem;
}
.form__icon-required {
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.2rem 0.5rem 0.1rem;
  margin-right: 0.5rem;
  color: #fff;
  border-radius: 3px;
  background-color: var(--sub01);
  position: relative;
  top: -0.1rem;
}
.form__icon-any {
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.2rem 0.5rem 0.1rem;
  margin-right: 0.5rem;
  color: #fff;
  border-radius: 3px;
  background-color: var(--keycolor);
  position: relative;
  top: -0.1rem;
}
.form__error-message {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--sub01);
}
@media screen and (max-width: 960px) {
  .form__error-message {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .form__error-message {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .form__error-message {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .form__error-message {
    font-size: 1.28rem;
  }
}
.form__tr {
  margin-bottom: 3rem;
}
.form__th {
  margin-bottom: 1rem;
}
.form__text {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .form__text {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .form__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .form__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .form__text {
    font-size: 1.28rem;
  }
}
.form input[type=text] {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid #CCC;
  background: none;
  background-color: #FFF;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 960px) {
  .form input[type=text] {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .form input[type=text] {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .form input[type=text] {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .form input[type=text] {
    font-size: 1.28rem;
  }
}
.form select {
  width: 100%;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid #CCC;
  background: none;
  background-color: #FFF;
  margin-bottom: 0.5rem;
}
.form label {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 960px) {
  .form label {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .form label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .form label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .form label {
    font-size: 1.28rem;
  }
}
.form textarea {
  font-size: 1.6rem;
  line-height: 1.6;
  width: 100%;
  border-radius: 0.4rem;
  padding: 1rem;
  border: 1px solid #CCC;
  background: none;
  background-color: #FFF;
}
@media screen and (max-width: 960px) {
  .form textarea {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .form textarea {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .form textarea {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .form textarea {
    font-size: 1.28rem;
  }
}
.form__submit {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.form__submit-list {
  text-align: center;
}
.form__submit-item {
  display: inline-block;
  margin: 0 1rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .form__submit-item {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .form__submit-item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .form__submit-item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .form__submit-item {
    font-size: 1.28rem;
  }
}
.form__submit-btn {
  margin-top: 3rem;
  padding: 1.5rem 3rem;
  border-radius: 0.4rem;
  background-color: var(--keycolor-dark);
  color: var(--textcolor-light);
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .form__submit-btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .form__submit-btn {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .form__submit-btn {
    font-size: 1.4791666667rem;
  }
}
@media screen and (max-width: 426px) {
  .form__submit-btn {
    font-size: 1.6rem;
  }
}
.form__submit-btn::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.form__submit-btn:hover, .form__submit-btn:focus {
  color: var(--keycolor-dark);
  border: 2px solid var(--keycolor-dark);
}
.form__submit-btn:hover::after, .form__submit-btn:focus::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--textcolor-light);
  -webkit-animation: bgcolor 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  animation: bgcolor 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: -1;
}
.form__submit-btn--wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes bgcolor {
  0% {
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.form__submit--consent .form__submit-btn {
  display: none;
}

/* グローバルナビゲーション */
.gnavi__section:not(:nth-of-type(1)) {
  margin-top: 3rem;
}
.gnavi__label {
  color: #666;
  padding: 0.5em 0 1em;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .gnavi__label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .gnavi__label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .gnavi__label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .gnavi__label {
    font-size: 1.2rem;
  }
}
.gnavi__label::before {
  content: "［";
  padding-right: 1em;
  font-size: inherit;
  color: inherit;
}
.gnavi__label::after {
  content: "］";
  padding-left: 1em;
  font-size: inherit;
  color: inherit;
}
.gnavi__list {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .gnavi__list {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .gnavi__list {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .gnavi__list {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .gnavi__list {
    font-size: 1.2rem;
  }
}
.gnavi__item {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: #666;
  border-bottom: 1px solid #E5E5E5;
}
.gnavi__item .material-symbols-outlined {
  color: var(--keycolor);
  font-size: 2.2rem;
  margin-right: 0.2em;
}
@media screen and (max-width: 960px) {
  .gnavi__item .material-symbols-outlined {
    font-size: 1.76rem;
  }
}
@media screen and (max-width: 768px) {
  .gnavi__item .material-symbols-outlined {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 576px) {
  .gnavi__item .material-symbols-outlined {
    font-size: 1.6270833333rem;
  }
}
@media screen and (max-width: 426px) {
  .gnavi__item .material-symbols-outlined {
    font-size: 1.76rem;
  }
}
.gnavi__link {
  display: flex;
  align-items: center;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  padding: 0.8em;
  color: inherit;
  transition: 0.3s ease all;
  text-decoration: none;
  z-index: 0;
}
.gnavi__link--current {
  color: var(--textcolor-light);
  background: linear-gradient(90deg, var(--keycolor), var(--keycolor-light));
  padding-left: 0.8rem;
}
.gnavi__link--current .material-symbols-outlined {
  color: var(--textcolor-light);
}
.gnavi__link:hover, .gnavi__link:focus {
  color: var(--textcolor-light);
  position: relative;
}
.gnavi__link:hover .material-symbols-outlined, .gnavi__link:focus .material-symbols-outlined {
  color: var(--textcolor-light);
}
.gnavi__link:hover::before, .gnavi__link:focus::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--keycolor), var(--keycolor-light));
  -webkit-animation: sub-link-bg 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  animation: sub-link-bg 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: -1;
}
.gnavi__link ~ .gnavi__sub-list {
  border-top: 1px solid #CCC;
}
.gnavi__title {
  display: flex;
  align-items: center;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  padding: 0.8em;
  position: relative;
  width: 100%;
  color: var(--textcolor-dark);
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.gnavi__title::before, .gnavi__title::after {
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  background-color: var(--keycolor);
  position: absolute;
  transition: 0.3s ease all;
}
.gnavi__title::before {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(0deg);
  transform: translateY(50%) rotate(0deg);
}
.gnavi__title::after {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(90deg);
  transform: translateY(50%) rotate(90deg);
}
.gnavi__title.active::before {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(180deg);
  transform: translateY(50%) rotate(180deg);
}
.gnavi__title.active::after {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(180deg);
  transform: translateY(50%) rotate(180deg);
  opacity: 0;
}
.gnavi__title.active ~ .gnavi__sub-list {
  opacity: 1;
  display: block;
  height: auto;
  transition: 0.3s ease all;
}
.gnavi__title ~ .gnavi__sub-list > .gnavi__sub-item:not(:last-child) {
  border-bottom: 1px dotted #666;
}
.gnavi__sub-list {
  font-size: 1.1rem;
  line-height: 1.5;
  padding-left: 2em;
  opacity: 0;
  display: none;
  height: 0;
  overflow: hidden;
  transition: 0.3s ease all;
}
@media screen and (max-width: 960px) {
  .gnavi__sub-list {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .gnavi__sub-list {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .gnavi__sub-list {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .gnavi__sub-list {
    font-size: 1.2rem;
  }
}
.gnavi__sub-item {
  font-size: inherit;
  line-height: inherit;
  color: #666;
}
.gnavi__sub-link {
  display: block;
  font-size: inherit;
  padding: 0.8em;
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 0;
  overflow: hidden;
}
.gnavi__sub-link--current {
  color: var(--textcolor-light);
  background: linear-gradient(90deg, var(--keycolor), var(--keycolor-light));
}
.gnavi__sub-link--current .material-symbols-outlined {
  color: var(--textcolor-light);
}
.gnavi__sub-link:hover, .gnavi__sub-link:focus {
  color: var(--textcolor-light);
  position: relative;
}
.gnavi__sub-link:hover::before, .gnavi__sub-link:focus::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--keycolor), var(--keycolor-light));
  -webkit-animation: sub-link-bg 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  animation: sub-link-bg 0.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: -1;
}
@-webkit-keyframes sub-link-bg {
  0% {
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes sub-link-bg {
  0% {
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.gnavi__sub-link ~ .gnavi__sub-list {
  border-top: 1px dotted #666;
}
.gnavi__sub-title {
  display: flex;
  align-items: center;
  font-size: inherit;
  line-height: inherit;
  padding: 0.8em 0;
  position: relative;
  width: 100%;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.gnavi__sub-title::before, .gnavi__sub-title::after {
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  background-color: var(--keycolor);
  position: absolute;
  transition: 0.3s ease all;
}
.gnavi__sub-title::before {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(0deg);
  transform: translateY(50%) rotate(0deg);
}
.gnavi__sub-title::after {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(90deg);
  transform: translateY(50%) rotate(90deg);
}
.gnavi__sub-title.active::before {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(180deg);
  transform: translateY(50%) rotate(180deg);
}
.gnavi__sub-title.active::after {
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(180deg);
  transform: translateY(50%) rotate(180deg);
  opacity: 0;
}
.gnavi__sub-title.active ~ .gnavi__sub-list {
  opacity: 1;
  display: block;
  height: auto;
  transition: 0.3s ease all;
}
.gnavi__sub-title ~ .gnavi__sub-list > .gnavi__sub-item .gnavi__sub-link {
  padding: 0.4em 0.8em;
}

.h--left {
  text-align: left;
}
.h--right {
  text-align: right;
}
.h--center {
  text-align: center;
}
.h__ttl-01 {
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .h__ttl-01 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .h__ttl-01 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 576px) {
  .h__ttl-01 {
    font-size: 2.21875rem;
  }
}
@media screen and (max-width: 426px) {
  .h__ttl-01 {
    font-size: 2.4rem;
  }
}
* + .h__ttl-01 {
  margin-top: 3em;
}
.h__ttl-02 {
  font-size: 2.6rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .h__ttl-02 {
    font-size: 2.08rem;
  }
}
@media screen and (max-width: 768px) {
  .h__ttl-02 {
    font-size: 1.95rem;
  }
}
@media screen and (max-width: 576px) {
  .h__ttl-02 {
    font-size: 1.9229166667rem;
  }
}
@media screen and (max-width: 426px) {
  .h__ttl-02 {
    font-size: 2.08rem;
  }
}
* + .h__ttl-02 {
  margin-top: 3em;
}
.h__ttl-02--text {
  color: var(--keycolor-dark);
  font-size: inherit;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.h__ttl-03 {
  color: var(--sub04-dark);
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 960px) {
  .h__ttl-03 {
    font-size: 1.76rem;
  }
}
@media screen and (max-width: 768px) {
  .h__ttl-03 {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 576px) {
  .h__ttl-03 {
    font-size: 1.6270833333rem;
  }
}
@media screen and (max-width: 426px) {
  .h__ttl-03 {
    font-size: 1.76rem;
  }
}
* + .h__ttl-03 {
  margin-top: 2em;
}
.h__ttl-04 {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 960px) {
  .h__ttl-04 {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .h__ttl-04 {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .h__ttl-04 {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .h__ttl-04 {
    font-size: 1.44rem;
  }
}
* + .h__ttl-04 {
  margin-top: 1.5em;
}
.h__ttl-05 {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--sub04-dark);
}
@media screen and (max-width: 960px) {
  .h__ttl-05 {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .h__ttl-05 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .h__ttl-05 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .h__ttl-05 {
    font-size: 1.28rem;
  }
}
.h__ttl-05::before {
  content: "─";
  margin-right: 0.5em;
}
* + .h__ttl-05 {
  margin-top: 0.8em;
}

/* ヘッダー */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.header__wrap {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  width: 100%;
  max-width: 230px;
  padding: 0.3rem 1rem 0.3rem 2rem;
  position: relative;
  z-index: 0;
}
.header-logo::before {
  display: block;
  content: "";
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1rem;
  background-color: #fff;
  z-index: -1;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.header-logo__link {
  transition: 0.3s ease all;
}
.header-logo__link:hover {
  opacity: 0.6;
}
.header-logo__img {
  width: auto;
  height: auto;
}
.header-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  cursor: pointer;
  padding: 1rem;
  background-color: var(--keycolor);
  transition: 0.3s ease all;
}
.header-menu:hover {
  background-color: var(--keycolor-dark);
}
.header-menu__bar {
  width: 10px;
  height: 1px;
  background-color: var(--textcolor-light);
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.header-menu__bar::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--textcolor-light);
  position: absolute;
  top: -4px;
  left: 0;
}
.header-menu__bar::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--textcolor-light);
  position: absolute;
  bottom: -4px;
  left: 0;
}
.header-menu__text {
  font-size: 1.2rem;
  color: var(--textcolor-light);
  margin-top: 5px;
}

.material-symbols-outlined {
  font-size: inherit;
}

.level-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.level-table caption {
  display: none;
}
.level-table th {
  border: 1px solid #ccc;
  padding: 0.8rem;
  text-align: left;
  font-weight: normal;
  background-color: #FFF;
  line-height: 1.6;
  vertical-align: middle;
}
.level-table td {
  border: 1px solid #ccc;
  padding: 0.8rem;
  background-color: #FFF;
  vertical-align: middle;
}
.level-table td.a {
  background-color: #C8F7FF;
}
.level-table td.aa {
  background-color: #C0F2C5;
}
.level-table td.aaa {
  background-color: #FFE2E5;
}
.level-table td:nth-child(2) {
  text-align: center;
}
.level-table__ttl th {
  background-color: #eee;
  text-align: center;
  font-weight: 500;
}
.level-table__ttl th:nth-child(1) {
  width: 60%;
}
.level-table__ttl th:nth-child(2) {
  width: 15%;
}
.level-table__ttl th:nth-child(3) {
  width: 5%;
}
.level-table__ttl th:nth-child(4) {
  width: 5%;
}
.level-table__ttl th:nth-child(5) {
  width: 15%;
}

.narrow {
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .narrow {
    display: block;
  }
}
.narrow .ttl {
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .narrow .ttl {
    text-align: center;
    margin: 0 0 1rem 0;
  }
}
.narrow form {
  width: 26rem;
  margin-left: 1rem;
  display: flex;
  gap: 0 1rem;
}
@media screen and (max-width: 768px) {
  .narrow form {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
}
.narrow input {
  cursor: pointer;
  margin-right: 0.5rem;
}
.narrow label {
  width: calc((100% - 2rem) / 3);
  text-align: center;
  cursor: pointer;
  font-size: 1.8rem;
  border: 1px solid #ccc;
  padding: 0.2rem 0.5rem;
}
.narrow label[for=narrow_a] {
  white-space: nowrap;
  background-color: #C8F7FF;
}
.narrow label[for=narrow_aa] {
  white-space: nowrap;
  background-color: #C0F2C5;
}
.narrow label[for=narrow_aaa] {
  white-space: nowrap;
  background-color: #FFE2E5;
}

.seekBarWrapper {
  position: relative;
}
.seekBarWrapper .txt {
  font-size: 1rem;
  line-height: 100%;
  position: absolute;
  top: -0.2rem;
  left: 0rem;
  width: 33.333%;
  text-align: center;
}
.seekBarWrapper .txt.aa {
  left: 33.333%;
}
.seekBarWrapper .txt.aaa {
  left: 66.666%;
}

.seekBarParent {
  position: relative;
  width: 250px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .seekBarParent {
    width: 100%;
  }
}
.seekBarParent::after {
  content: "";
  position: absolute;
  top: calc((100% - 8px) / 2);
  width: 100%;
  height: 8px;
  left: 0rem;
  background: linear-gradient(to right, #C8F7FF 0%, #C8F7FF 33.333%, #C0F2C5 33.333%, #C0F2C5 66.6666%, #FFE2E5 66.6666%, #FFE2E5 100%);
  border: 1px solid #aaa;
  border-radius: 100px;
}

.seekToggle {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 9.5px;
  left: calc(66.66% + (33.333% - 25px) / 2);
  cursor: -webkit-grab;
  cursor: grab;
  z-index: 2;
  background-color: #2f20ac;
  border-radius: 100px;
}
.seekToggle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

a[data-blank=true]::after {
  display: inline-block;
  content: "関連サイト";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  color: #666;
  padding: 0.3em 0.6em 0.2em;
  background-color: #E5E5E5;
  border-radius: 0.4rem;
  text-indent: initial;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
@media screen and (max-width: 960px) {
  a[data-blank=true]::after {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  a[data-blank=true]::after {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  a[data-blank=true]::after {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  a[data-blank=true]::after {
    font-size: 1.2rem;
  }
}

.link__text {
  font-weight: bold;
}
.link__other::after {
  display: inline-block;
  content: "外部サイト" !important;
}

* + .list--disc {
  margin-top: 1.5rem;
}
.list--disc .list__item {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 960px) {
  .list--disc .list__item {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .list--disc .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list--disc .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list--disc .list__item {
    font-size: 1.28rem;
  }
}
.list--disc .list__item::before {
  content: "●";
  font-size: initial;
  color: var(--sub04-dark);
}
.list--disc .list__item > .list--disc .list__item::before {
  content: "◯";
}
.list--number {
  counter-reset: num;
}
* + .list--number {
  margin-top: 1.5rem;
}
.list--number .list__item {
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  padding-left: 1.4em;
}
@media screen and (max-width: 960px) {
  .list--number .list__item {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .list--number .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list--number .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list--number .list__item {
    font-size: 1.28rem;
  }
}
.list--number .list__item::before {
  display: block;
  counter-increment: num;
  content: counter(num);
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  width: 1.2em;
  height: 1.2em;
  border-radius: 100%;
  color: var(--textcolor-light);
  background-color: var(--sub04-dark);
  position: absolute;
  top: 0.6em;
  left: 0;
}
.list--number .list__item > .list--number .list__item::before {
  color: var(--sub04-dark);
  background-color: transparent;
  border: 1px solid var(--sub04-dark);
}
.list--number .list__item--color02::before {
  color: var(--textcolor-dark);
  background-color: var(--sub02);
}
.list--alphabet {
  counter-reset: num;
}
* + .list--alphabet {
  margin-top: 1.5rem;
}
.list--alphabet .list__item {
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  padding-left: 1.4em;
}
@media screen and (max-width: 960px) {
  .list--alphabet .list__item {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .list--alphabet .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list--alphabet .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list--alphabet .list__item {
    font-size: 1.28rem;
  }
}
.list--alphabet .list__item::before {
  display: block;
  counter-increment: num;
  content: counter(num, lower-alpha);
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  width: 1.2em;
  height: 1.2em;
  border-radius: 100%;
  color: var(--textcolor-light);
  background-color: var(--sub04-dark);
  position: absolute;
  top: 0.6em;
  left: 0;
}
.list--alphabet .list__item > .list--alphabet .list__item::before {
  color: var(--sub04-dark);
  background-color: transparent;
  border: 1px solid var(--sub04-dark);
}
.list--inline {
  display: flex;
  flex-wrap: wrap;
}
.list--inline .list__item {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .list--inline .list__item {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .list--inline .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list--inline .list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list--inline .list__item {
    font-size: 1.28rem;
  }
}
.list--inline .list__item:not(:last-child)::after {
  content: "／";
}
.list-video-service {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.list-video-service__item {
  width: calc((100% - 6rem) / 3);
  padding: 3rem;
  border-radius: 2rem;
  background-color: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 0;
}
.list-video-service__item:not(:last-child) {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .list-video-service__item {
    width: 100%;
  }
  .list-video-service__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
.list-video-service__ttl {
  display: block;
  width: 18rem;
  height: 18rem;
  text-decoration: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100%;
  background-color: var(--sub03);
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .list-video-service__ttl {
    width: 10rem;
    height: 10rem;
  }
}
.list-video-service__ttl::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(var(--sub03-dark-rgb), 0.3);
  border-radius: 100%;
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: -1;
}
.list-video-service__ttl--text {
  width: 100%;
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: var(--textcolor-light);
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
@media screen and (max-width: 960px) {
  .list-video-service__ttl--text {
    font-size: 2.08rem;
  }
}
@media screen and (max-width: 768px) {
  .list-video-service__ttl--text {
    font-size: 1.95rem;
  }
}
@media screen and (max-width: 576px) {
  .list-video-service__ttl--text {
    font-size: 1.9229166667rem;
  }
}
@media screen and (max-width: 426px) {
  .list-video-service__ttl--text {
    font-size: 2.08rem;
  }
}
@media screen and (max-width: 960px) {
  .list-video-service__ttl--text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .list-video-service__ttl--text {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 768px) {
  .list-video-service__ttl--text {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 576px) {
  .list-video-service__ttl--text {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 426px) {
  .list-video-service__ttl--text {
    font-size: 1.44rem;
  }
}
.list-video-service__text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .list-video-service__text {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .list-video-service__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list-video-service__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list-video-service__text {
    font-size: 1.28rem;
  }
}
.list-video-service__text--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .list-video-service__text {
    text-align: center;
  }
}
.list-video-service__link {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .list-video-service__link {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .list-video-service__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list-video-service__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list-video-service__link {
    font-size: 1.28rem;
  }
}
.list-video-service__link::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  background-color: transparent;
}
.list-service {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1rem;
  width: 100%;
  max-width: 80%;
  margin-top: 4rem;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .list-service {
    justify-content: flex-start;
    max-width: initial;
  }
}
.list-service__item {
  padding: 0.5rem 3rem;
  border-radius: 0.5rem;
  background-color: #FFF;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  color: var(--sub04-dark);
  border: 2px solid var(--sub04-dark);
}
@media screen and (max-width: 960px) {
  .list-service__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .list-service__item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .list-service__item {
    font-size: 1.4791666667rem;
  }
}
@media screen and (max-width: 426px) {
  .list-service__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .list-service__item {
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .list-service__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .list-service__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .list-service__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .list-service__item {
    font-size: 1.2rem;
  }
}
.list-service-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .list-service-child {
    justify-content: flex-start;
    max-width: initial;
  }
}
.list-service-child__item {
  padding: 1rem 3rem 0.8rem;
  border-radius: 0.5rem;
  background-color: var(--keycolor-dark);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--textcolor-light);
}
@media screen and (max-width: 960px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .list-service-child__item {
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .list-service-child__item {
    font-size: 1.2rem;
  }
}

.low-vision__blur {
  -webkit-filter: blur(2px);
  filter: blur(2px); /* ぼかし効果 */
}
.low-vision__contrast {
  -webkit-filter: contrast(50%);
  filter: contrast(50%); /* コントラストの低下 */
}
.low-vision__brightness {
  -webkit-filter: brightness(140%);
  filter: brightness(140%); /* 明るさの調整 */
}
.low-vision-list {
  display: flex;
  justify-content: center;
  gap: 1rem 2rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.low-vision-list + .low-vision-list {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .low-vision-list {
    flex-direction: column;
  }
}
.low-vision-list__item {
  flex: calc((100% - 4rem) / 3);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .low-vision-list__item {
    flex: 1;
  }
}
.low-vision-list__btn {
  width: 100%;
  max-width: initial;
  cursor: pointer;
}
.low-vision-list__reset {
  cursor: pointer;
}

.main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}
.main__wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.main__body {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

#menu1 {
  display: none;
}
#menu1:checked ~ .aside--menu1 {
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s ease all;
}
#menu1:checked ~ .aside--menu1 .aside-menu__bar {
  background-color: transparent;
}
#menu1:checked ~ .aside--menu1 .aside-menu__bar::before {
  position: absolute;
  top: auto;
  left: auto;
  right: 50%;
  bottom: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(50%, 50%) rotate(-45deg);
  transform: translate(50%, 50%) rotate(-45deg);
}
#menu1:checked ~ .aside--menu1 .aside-menu__bar::after {
  position: absolute;
  top: auto;
  left: auto;
  right: 50%;
  bottom: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(50%, 50%) rotate(45deg);
  transform: translate(50%, 50%) rotate(45deg);
}

#menu2 {
  display: none;
}
#menu2:checked ~ .header .header-menu__bar {
  background-color: transparent;
}
#menu2:checked ~ .header .header-menu__bar::before {
  position: absolute;
  top: auto;
  left: auto;
  right: 50%;
  bottom: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(50%, 50%) rotate(-45deg);
  transform: translate(50%, 50%) rotate(-45deg);
}
#menu2:checked ~ .header .header-menu__bar::after {
  position: absolute;
  top: auto;
  left: auto;
  right: 50%;
  bottom: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(50%, 50%) rotate(45deg);
  transform: translate(50%, 50%) rotate(45deg);
}
#menu2:checked ~ .aside--menu2 {
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.3s ease all;
}

.mfp-hide {
  display: none;
}
.mfp-close {
  width: 4.8rem;
  height: 4.8rem;
  top: -4.8rem;
  right: 0;
  opacity: 1;
}
.mfp-close:active {
  top: -4.8rem;
}
.mfp-close::before {
  display: block;
  content: "";
  width: 3rem;
  height: 0.4rem;
  background-color: var(--keycolor-dark);
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%) rotate(45deg);
  transform: translate(50%, 50%) rotate(45deg);
}
.mfp-close::after {
  display: block;
  content: "";
  width: 3rem;
  height: 0.4rem;
  background-color: var(--keycolor-dark);
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%) rotate(-45deg);
  transform: translate(50%, 50%) rotate(-45deg);
}

#modal-focus {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.modal-sample-focus__wrap {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #FFF;
  text-align: center;
}
.modal-sample-focus__wrap .text {
  text-align: center;
}
.modal-sample-focus__ttl {
  font-size: 2rem;
  font-weight: bold;
}

.note-list {
  margin-top: 3rem;
}
.note-list__item {
  font-size: 1.2rem;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 960px) {
  .note-list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .note-list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .note-list__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .note-list__item {
    font-size: 1.2rem;
  }
}
.note-list__item:not(:first-child) {
  margin-top: 1rem;
}
.note-list__item::before {
  content: "※";
}
.note-list--number {
  counter-reset: num;
}
.note-list--number .note-list {
  margin-top: 1rem;
}
.note-list--number .note-list__item::before {
  counter-increment: num;
  content: "※" counter(num) "：";
}

.pagetop {
  display: none;
  position: sticky;
  bottom: 0;
  text-align: center;
}
.pagetop__link {
  font-size: 1.2rem;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.6rem 0.6rem 0 0;
  background-color: var(--keycolor-dark);
  color: var(--textcolor-light);
  text-decoration: none;
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
@media screen and (max-width: 960px) {
  .pagetop__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pagetop__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .pagetop__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .pagetop__link {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .ph {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .ph__img {
    width: 100%;
  }
}

.sec-hero {
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .sec-hero {
    height: 61vh;
  }
}
.sec-hero__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: inherit;
  height: inherit;
  padding-left: 3rem;
  padding-right: 3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-hero__wrap::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.sec-hero__ttl {
  text-align: center;
  line-height: 1.4;
}
.sec-hero__ttl--main {
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: var(--textcolor-light);
}
@media screen and (max-width: 960px) {
  .sec-hero__ttl--main {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero__ttl--main {
    font-size: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .sec-hero__ttl--main {
    font-size: 2.9583333333rem;
  }
}
@media screen and (max-width: 426px) {
  .sec-hero__ttl--main {
    font-size: 3.2rem;
  }
}
.sec-hero__ttl--sub {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  color: var(--keycolor-dark);
  letter-spacing: 0.2em;
  padding: 0.1em 0.8em 0.1em 1em;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .sec-hero__ttl--sub {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-hero__ttl--sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .sec-hero__ttl--sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .sec-hero__ttl--sub {
    font-size: 1.28rem;
  }
}
.sec-hero__ttl--sub::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: -1;
}

.section-banner {
  margin-top: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
}
.section-banner a {
  transition: 0.3s ease all;
}
.section-banner a:hover {
  opacity: 0.6;
}

.section {
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}
.section__wrap {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media screen and (max-width: 768px) {
  .section__wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.section__title--text {
  font-size: 3.2rem;
  display: inline-block;
  padding-bottom: 0.3em;
  line-height: 1.8;
  color: var(--keycolor-dark);
  position: relative;
}
@media screen and (max-width: 960px) {
  .section__title--text {
    font-size: 2.56rem;
  }
}
@media screen and (max-width: 768px) {
  .section__title--text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .section__title--text {
    font-size: 2.3666666667rem;
  }
}
@media screen and (max-width: 426px) {
  .section__title--text {
    font-size: 2.56rem;
  }
}
.section__title--text::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--keycolor-light);
}
.section__title--center {
  text-align: center;
}
.section__lead {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 3rem;
  letter-spacing: 0.05em;
  color: var(--keycolor-dark);
}
@media screen and (max-width: 960px) {
  .section__lead {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .section__lead {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .section__lead {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .section__lead {
    font-size: 1.44rem;
  }
}
.section__lead--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__lead--center {
    text-align: justify;
  }
}
.section__body {
  padding-top: 3rem;
}
.section__row {
  padding-bottom: 6rem;
}
.section__row + .section__row {
  padding-top: 6rem;
}
@media screen and (max-width: 960px) {
  .section__row + .section__row {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .section__row {
    padding-bottom: 4rem;
  }
}
.section__row:nth-of-type(even) {
  position: relative;
  z-index: 0;
}
.section__row:nth-of-type(even)::after {
  display: block;
  content: "";
  width: calc(100% + 6rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translateX(50%) skewY(-2deg);
  transform: translateX(50%) skewY(-2deg);
  background-color: rgba(var(--sub04-light-rgb), 0.3);
  box-shadow: 0 0 0 100vmax rgba(var(--sub04-light-rgb), 0.3);
  -webkit-clip-path: inset(0 -100vmax);
  clip-path: inset(0 -100vmax);
  z-index: -1;
}
.section__fig {
  margin-bottom: 3rem;
}
* + .section__fig {
  margin-top: 3rem;
}
.section__fig--center {
  text-align: center;
}
.section__fig--nomb {
  margin-bottom: 0 !important;
}
.section__fig-title {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 960px) {
  .section__fig-title {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .section__fig-title {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .section__fig-title {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .section__fig-title {
    font-size: 1.44rem;
  }
}
.section__fig-caption {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 0.5em;
}
@media screen and (max-width: 960px) {
  .section__fig-caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .section__fig-caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .section__fig-caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .section__fig-caption {
    font-size: 1.2rem;
  }
}

.signature {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

.signature .mark {
  width: 100px;
  margin-right: 2rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  top: -0.7rem;
}
@media screen and (max-width: 768px) {
  .signature .mark {
    width: 80px;
  }
}
.signature .mark img {
  width: 100%;
}

.slick-slider {
  visibility: hidden;
}

.slick-sample {
  width: 100%;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}
.slick-sample__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--sub04-dark);
}
.slick-sample__img--text {
  font-size: 1.8rem;
  color: #FFF;
}
.slick-sample__arrow-com {
  width: 3rem;
  height: 3rem;
  z-index: 10;
  position: absolute;
  bottom: 50%;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  cursor: pointer;
}
.slick-sample__arrow-com:hover::before, .slick-sample__arrow-com:focus::before {
  background-color: var(--sub04-light);
}
.slick-sample__arrow-com:hover::after, .slick-sample__arrow-com:focus::after {
  border-color: var(--sub04-dark);
}
.slick-sample__arrow-prev {
  left: -4rem;
}
.slick-sample__arrow-prev::before {
  display: block;
  content: "";
  width: 3rem;
  height: 3rem;
  background-color: var(--sub04-dark);
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  right: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  transition: 0.3s ease all;
}
.slick-sample__arrow-prev::after {
  display: block;
  content: "";
  display: block;
  content: "";
  width: 1.1180339887rem;
  height: 1.1180339887rem;
  border-top: 0.2rem solid #FFF;
  border-right: 0.2rem solid #FFF;
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%) rotate(-135deg);
  transform: translate(50%, 50%) rotate(-135deg);
  transition: 0.3s ease all;
}
.slick-sample__arrow-next {
  right: -4rem;
}
.slick-sample__arrow-next::before {
  display: block;
  content: "";
  width: 3rem;
  height: 3rem;
  background-color: var(--sub04-dark);
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  right: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  transition: 0.3s ease all;
}
.slick-sample__arrow-next::after {
  display: block;
  content: "";
  display: block;
  content: "";
  width: 1.1180339887rem;
  height: 1.1180339887rem;
  border-top: 0.2rem solid #FFF;
  border-right: 0.2rem solid #FFF;
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%) rotate(45deg);
  transform: translate(50%, 50%) rotate(45deg);
  transition: 0.3s ease all;
}
.slick-sample .slick-dots {
  padding-top: 2.4rem;
}
.slick-sample .slick-dots li {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}
.slick-sample .slick-dots li button {
  width: inherit;
  height: inherit;
}
.slick-sample .slick-dots li button:before {
  font-size: 2rem;
  color: var(--sub04-light);
  opacity: 1;
  width: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-sample .slick-dots li.slick-active button:before {
  color: var(--sub04-dark);
  opacity: 1;
}
.slick-sample.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-sample-controls {
  display: flex;
  justify-content: center;
  gap: 0 2rem;
  margin-top: 3rem;
}
.slick-sample-controls-button {
  cursor: pointer;
}

.spec {
  margin-top: 3rem;
}
.spec__wrap {
  border: 1px solid var(--keycolor);
  padding: 1rem;
}
.spec__ttl {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 960px) {
  .spec__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .spec__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .spec__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .spec__ttl {
    font-size: 1.2rem;
  }
}
.spec__list {
  margin-left: 2.5em;
}
.spec__item {
  list-style-type: disc;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .spec__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .spec__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .spec__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .spec__item {
    font-size: 1.2rem;
  }
}
.spec__text {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .spec__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .spec__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .spec__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .spec__text {
    font-size: 1.2rem;
  }
}

.table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
* + .table {
  margin-top: 3rem;
}
.table--center {
  text-align: center;
}
.table__th {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--textcolor-dark);
}
@media screen and (max-width: 960px) {
  .table__th {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .table__th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .table__th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .table__th {
    font-size: 1.28rem;
  }
}
.table__td {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--textcolor-dark);
}
@media screen and (max-width: 960px) {
  .table__td {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .table__td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .table__td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .table__td {
    font-size: 1.28rem;
  }
}
.table--outline {
  border-top: 1px solid var(--keycolor-light);
  max-width: 960px;
}
.table--outline .table__th {
  width: 25%;
  padding: 1.5rem 1.5rem 1.5rem 0;
  text-align: left;
  color: var(--keycolor);
  vertical-align: middle;
  border-bottom: 1px solid var(--keycolor-light);
}
@media screen and (max-width: 768px) {
  .table--outline .table__th {
    width: 30%;
  }
}
.table--outline .table__td {
  width: 75%;
  padding: 1.5rem;
  color: var(--textcolor-dark);
  border-bottom: 1px solid var(--keycolor-light);
}
@media screen and (max-width: 768px) {
  .table--outline .table__td {
    width: 70%;
  }
}
.table--history {
  border-top: 1px solid var(--keycolor-light);
  max-width: 960px;
}
.table--history .table__th {
  width: 30%;
  padding: 1.5rem 1.5rem 1.5rem 0;
  text-align: left;
  color: var(--keycolor);
  vertical-align: middle;
  border-bottom: 1px solid var(--keycolor-light);
}
.table--history .table__td {
  width: 70%;
  padding: 1.5rem;
  color: var(--textcolor-dark);
  border-bottom: 1px solid var(--keycolor-light);
}
.table--spec {
  border-top: 1px solid var(--keycolor-light);
}
.table--spec .table__th {
  width: 20%;
  padding: 1.5rem 1.5rem 1.5rem 0;
  color: var(--keycolor);
  vertical-align: middle;
  border-bottom: 1px solid var(--keycolor-light);
}
.table--spec .table__td {
  width: 80%;
  padding: 1.5rem;
  color: var(--textcolor-dark);
  border-bottom: 1px solid var(--keycolor-light);
}
.table--accessibility {
  border-top: 1px solid var(--keycolor-light);
}
.table--accessibility .table__caption {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 960px) {
  .table--accessibility .table__caption {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .table--accessibility .table__caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .table--accessibility .table__caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .table--accessibility .table__caption {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .table--accessibility .table__caption {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .table--accessibility .table__caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .table--accessibility .table__caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .table--accessibility .table__caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .table--accessibility .table__caption {
    font-size: 1.2rem;
  }
}
.table--accessibility .table__th {
  padding: 1rem;
  color: var(--keycolor);
  vertical-align: middle;
  border-top: 1px solid var(--keycolor);
  border-bottom: 1px solid var(--keycolor);
  background-color: var(--keycolor-light);
  text-align: center;
}
.table--accessibility .table__th:not(:nth-last-of-type(1)) {
  border-right: 1px solid var(--keycolor);
}
@media screen and (max-width: 768px) {
  .table--accessibility .table__th {
    font-size: 1rem;
    padding: 0.5rem 0.3rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .table--accessibility .table__th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .table--accessibility .table__th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .table--accessibility .table__th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .table--accessibility .table__th {
    font-size: 1.2rem;
  }
}
.table--accessibility .table__td {
  padding: 1rem;
  color: var(--textcolor-dark);
  border-bottom: 1px solid var(--keycolor-light);
  background-color: #FFF;
  vertical-align: middle;
}
.table--accessibility .table__td:not(:nth-last-of-type(1)) {
  border-right: 1px solid var(--keycolor-light);
}
@media screen and (max-width: 768px) {
  .table--accessibility .table__td {
    font-size: 1rem;
    padding: 0.5rem 0.3rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .table--accessibility .table__td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .table--accessibility .table__td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .table--accessibility .table__td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .table--accessibility .table__td {
    font-size: 1.2rem;
  }
}

.text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--textcolor-dark);
}
* + .text {
  margin-top: 1.5em;
}
@media screen and (max-width: 960px) {
  .text {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .text {
    font-size: 1.28rem;
  }
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--err {
  color: #E00;
}
.text--small-mt {
  margin-top: 0.5em !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.youtube {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.consent {
  border: 1px solid #CCC;
  border-radius: 1rem;
  padding: 3rem;
  height: 30rem;
  height: 50vh;
  overflow-y: auto;
}
@media screen and (max-width: 960px) {
  .consent {
    padding: 1.5rem;
  }
}
.consent__row {
  padding-bottom: 3rem;
}
.consent__row + .consent__row {
  padding-top: 3rem;
}
@media screen and (max-width: 960px) {
  .consent__row + .consent__row {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .consent__row {
    padding-bottom: 2rem;
  }
}

.f-hero {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .f-hero {
    height: 48rem;
    flex-direction: column-reverse;
  }
}
.f-hero__bg {
  width: 80%;
  height: inherit;
  background: url("/img/top_main_area_bg.jpg") center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .f-hero__bg {
    top: 0;
    right: 0;
    width: 100%;
    height: 60%;
  }
}
.f-hero__ttl-group {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  padding-left: 4rem;
  padding-right: 4rem;
}
.f-hero__ttl {
  display: inline-block;
  position: relative;
  text-align: left;
}
.f-hero__ttl--text {
  color: var(--keycolor-dark);
  font-size: 7rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.6), -2px 2px 2px rgba(255, 255, 255, 0.6), 2px -2px 2px rgba(255, 255, 255, 0.6), -2px -2px 2px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 960px) {
  .f-hero__ttl--text {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .f-hero__ttl--text {
    font-size: 5.25rem;
  }
}
@media screen and (max-width: 576px) {
  .f-hero__ttl--text {
    font-size: 5.1770833333rem;
  }
}
@media screen and (max-width: 426px) {
  .f-hero__ttl--text {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 960px) {
  .f-hero__ttl--text {
    font-size: 6rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .f-hero__ttl--text {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 768px) {
  .f-hero__ttl--text {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 576px) {
  .f-hero__ttl--text {
    font-size: 4.4375rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 426px) {
  .f-hero__ttl--text {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .f-hero__ttl--text {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .f-hero__ttl--text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .f-hero__ttl--text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .f-hero__ttl--text {
    font-size: 2.9583333333rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .f-hero__ttl--text {
    font-size: 3.2rem;
  }
}
.f-hero__catch {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--keycolor-dark);
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .f-hero__catch {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .f-hero__catch {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .f-hero__catch {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .f-hero__catch {
    font-size: 1.44rem;
  }
}
.f-hero__catch u {
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, var(--sub02) 50%, var(--sub02) 100%);
}
@media screen and (max-width: 768px) {
  .f-hero__catch {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 960px) {
  .f-hero__catch {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .f-hero__catch {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .f-hero__catch {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 426px) {
  .f-hero__catch {
    font-size: 1.28rem;
  }
}
.f-news {
  width: 46vw;
  padding: 2rem;
  border-radius: 0.4rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  transition: 0.3s ease all;
  z-index: 100;
  overflow: hidden;
}
.f-news::after {
  display: block;
  content: "";
  width: 110%;
  height: 110%;
  background: rgba(var(--keycolor-dark-rgb), 0.9);
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .f-news {
    width: calc(61vw - 4rem);
  }
}
@media screen and (max-width: 768px) {
  .f-news {
    width: calc(100% - 6rem);
    right: 3rem;
  }
}
.f-news__ttl {
  font-size: 1.4rem;
  color: #FFF;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #FFF;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 960px) {
  .f-news__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-news__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-news__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-news__ttl {
    font-size: 1.2rem;
  }
}
.f-news__ttl .material-symbols-outlined {
  font-size: inherit;
  color: inherit;
  margin-right: 0.5rem;
}
.f-news__ttl--text {
  font-size: inherit;
  color: inherit;
}
.f-news__list {
  padding-left: 1.5rem;
  list-style-type: disc;
}
.f-news__item {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #FFF;
}
@media screen and (max-width: 960px) {
  .f-news__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-news__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-news__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-news__item {
    font-size: 1.2rem;
  }
}
.f-news__link {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.f-news__link:hover {
  text-decoration: none;
}
.f-news__text {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.f-news__date {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #FFF;
}
@media screen and (max-width: 960px) {
  .f-news__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-news__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-news__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-news__date {
    font-size: 1.2rem;
  }
}
* + .f-news__date {
  margin-top: 1rem;
}
.f-news__title {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #FFF;
}
@media screen and (max-width: 960px) {
  .f-news__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-news__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-news__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-news__title {
    font-size: 1.2rem;
  }
}
.f-service__category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .f-service__category-list {
    gap: 1rem;
  }
}
.f-service__category-item button {
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #E5E5E5;
  border: transparent;
  color: var(--keycolor-dark);
  min-width: 10em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .f-service__category-item button {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .f-service__category-item button {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-service__category-item button {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-service__category-item button {
    font-size: 1.28rem;
  }
}
.f-service__category-item button .material-symbols-outlined {
  color: inherit;
  font-size: inherit;
  margin-right: 0.5rem;
}
.f-service__category-item button.active, .f-service__category-item button:hover, .f-service__category-item button:focus {
  background-color: var(--sub02);
  color: var(--textcolor-dark);
}
.f-service__category-item button.active .material-symbols-outlined, .f-service__category-item button:hover .material-symbols-outlined, .f-service__category-item button:focus .material-symbols-outlined {
  color: var(--keycolor-dark);
}
.f-service__category-item--text {
  color: inherit;
  font-size: inherit;
}
@media screen and (max-width: 960px) {
  .f-service__category-item {
    min-width: initial;
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .f-service__category-item {
    min-width: initial;
    width: calc((100% - 2rem) / 2);
  }
}
.f-service__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 3rem;
  gap: 6rem 3rem;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .f-service__list {
    gap: 4rem 2rem;
  }
}
.f-service__item {
  display: none;
  flex-direction: column;
  width: calc((100% - 6rem) / 3);
  border-left: 1px solid var(--keycolor-dark);
  padding-left: 1.8rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 0;
  padding-right: 3rem;
  opacity: 1;
  transition: 0.3s ease opacity;
}
@media screen and (max-width: 960px) {
  .f-service__item {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 768px) {
  .f-service__item {
    width: 100%;
  }
}
.f-service__item:hover, .f-service__item:focus {
  opacity: 0.6;
}
.f-service__item.active {
  display: flex;
  -webkit-animation: 0.6s zoom-in;
  animation: 0.6s zoom-in;
}
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.f-service__arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.4rem;
  height: 100%;
  background-color: #C9CFE5;
  mix-blend-mode: multiply;
}
.f-service__arrow::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 0.7rem solid #FFF;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  position: absolute;
  bottom: 50%;
  right: 35%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.f-service__name {
  display: flex;
  align-items: flex-start;
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .f-service__name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .f-service__name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .f-service__name {
    font-size: 1.4791666667rem;
  }
}
@media screen and (max-width: 426px) {
  .f-service__name {
    font-size: 1.6rem;
  }
}
.f-service__ttl-icon {
  width: 1em;
  margin-top: 0.3rem;
  margin-right: 0.5em;
}
.f-service__subname {
  display: flex;
  align-items: center;
}
.f-service__subname--catch {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--textcolor-light);
  background-color: var(--keycolor);
  padding: 0.5rem 0.7rem 0.3rem;
}
@media screen and (max-width: 960px) {
  .f-service__subname--catch {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-service__subname--catch {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-service__subname--catch {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-service__subname--catch {
    font-size: 1.2rem;
  }
}
.f-service__subname--text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--keycolor-dark);
  line-height: 1;
  background-color: var(--keycolor-light);
  padding: 0.5rem 0.7rem 0.3rem;
}
@media screen and (max-width: 960px) {
  .f-service__subname--text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-service__subname--text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-service__subname--text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-service__subname--text {
    font-size: 1.2rem;
  }
}
.f-service__link {
  font-size: inherit;
  color: var(--keycolor-dark);
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
}
.f-service__link::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  background-color: transparent;
}
.f-service__body {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.f-service__text-area {
  flex: 1;
}
.f-service__icon-area {
  width: 12rem;
  margin-left: 0.5rem;
}
.f-service__text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--textcolor-dark);
}
@media screen and (max-width: 960px) {
  .f-service__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .f-service__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-service__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-service__text {
    font-size: 1.2rem;
  }
}
.f-voice-list {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 6rem;
  gap: 3rem 3rem;
}
@media screen and (max-width: 1280px) {
  .f-voice-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .f-voice-list {
    flex-direction: column;
    align-items: center;
  }
}
.f-voice-list__item {
  width: 30rem;
  padding: 2rem;
  border: 1px solid #CCC;
  border-radius: 1rem;
}
@media screen and (max-width: 1280px) {
  .f-voice-list__item {
    width: 25rem;
  }
}
.f-voice-list__title {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: var(--sub01);
}
@media screen and (max-width: 960px) {
  .f-voice-list__title {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .f-voice-list__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-voice-list__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-voice-list__title {
    font-size: 1.28rem;
  }
}
.f-voice-list__link {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .f-voice-list__link {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .f-voice-list__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .f-voice-list__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .f-voice-list__link {
    font-size: 1.28rem;
  }
}

.inquiry-list {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.inquiry-list__item {
  width: calc((100% - 4rem) / 2);
  padding: 1rem;
  border-radius: 0.4rem;
  border: 1px solid #CCC;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .inquiry-list__item {
    width: 100%;
  }
}
.inquiry-list__title {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media screen and (max-width: 960px) {
  .inquiry-list__title {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .inquiry-list__title {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .inquiry-list__title {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .inquiry-list__title {
    font-size: 1.44rem;
  }
}
.inquiry-list__subtitle {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  background-color: var(--keycolor);
  color: var(--textcolor-light);
  padding: 0.3rem 2rem;
  border-radius: 0.4rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 960px) {
  .inquiry-list__subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .inquiry-list__subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .inquiry-list__subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .inquiry-list__subtitle {
    font-size: 1.2rem;
  }
}
.inquiry-list__tel {
  display: block;
  padding: 0.5rem;
  background-color: var(--sub04);
  color: var(--textcolor-dark);
  border-radius: 0.4rem;
  font-size: 1.4rem;
  margin-top: auto;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .inquiry-list__tel {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .inquiry-list__tel {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .inquiry-list__tel {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .inquiry-list__tel {
    font-size: 1.2rem;
  }
}
.inquiry-list__tel a {
  color: inherit;
}

.news-list {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}
.news-list__item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.4rem;
  border: 1px solid #CCC;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-list__item {
    flex-direction: column;
  }
}
.news-list__item + .news-list__item {
  margin-top: 3rem;
}
.news-list__ph {
  width: 17rem;
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .news-list__ph {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.news-list__text {
  flex: 1;
}
.news-list__text--date {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--sub01);
}
@media screen and (max-width: 960px) {
  .news-list__text--date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list__text--date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .news-list__text--date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .news-list__text--date {
    font-size: 1.2rem;
  }
}
.news-list__text--title {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .news-list__text--title {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list__text--title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .news-list__text--title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .news-list__text--title {
    font-size: 1.28rem;
  }
}
.news-list__text--link::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  background-color: transparent;
}
.news-entry {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.news-entry__row {
  padding-bottom: 6rem;
}
.news-entry__row + .news-entry__row {
  padding-top: 6rem;
}
@media screen and (max-width: 960px) {
  .news-entry__row + .news-entry__row {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .news-entry__row {
    padding-bottom: 4rem;
  }
}
.news-entry__row:nth-of-type(even) {
  position: relative;
  z-index: 0;
}
.news-entry__row:nth-of-type(even)::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: skewY(-2deg);
  transform: skewY(-2deg);
  background-color: rgba(var(--sub04-light-rgb), 0.3);
  box-shadow: 0 0 0 100vmax rgba(var(--sub04-light-rgb), 0.3);
  -webkit-clip-path: inset(0 -100vmax);
  clip-path: inset(0 -100vmax);
  z-index: -1;
}
.news__date {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .news__date {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .news__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .news__date {
    font-size: 1.28rem;
  }
}
.news-col {
  margin-top: 3rem;
}
.news-alert {
  border: 1px solid #F00;
  margin-top: 3rem;
}
.news-alert__wrap {
  padding: 3rem;
  text-align: center;
}
.news-alert__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #E00;
}
@media screen and (max-width: 960px) {
  .news-alert__text {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .news-alert__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .news-alert__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .news-alert__text {
    font-size: 1.28rem;
  }
}
.news-column {
  border: 1px solid #CCC;
}
* + .news-column {
  margin-top: 4rem;
}
.news-column__wrap {
  padding: 3rem;
}
.news-table__outline {
  width: 100%;
}
* + .news-table__outline {
  margin-top: 4rem;
  border-top: 1px solid #CCC;
}
.news-table__outline--caption {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 1rem;
}
@media screen and (max-width: 960px) {
  .news-table__outline--caption {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .news-table__outline--caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .news-table__outline--caption {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .news-table__outline--caption {
    font-size: 1.28rem;
  }
}
.news-table__outline th, .news-table__outline td {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 1rem;
  border-bottom: 1px solid #CCC;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  .news-table__outline th, .news-table__outline td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .news-table__outline th, .news-table__outline td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .news-table__outline th, .news-table__outline td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .news-table__outline th, .news-table__outline td {
    font-size: 1.2rem;
  }
}
.news-table__outline th {
  width: 20%;
}
.news-table__outline td {
  width: 70%;
}
.news__fig--center {
  text-align: center;
}

.original-diary-list {
  display: flex;
  flex-wrap: wrap;
}
* + .original-diary-list {
  margin-top: 6rem;
}
.original-diary-list__item {
  width: calc((100% - 6rem) / 3);
  text-align: center;
}
.original-diary-list__item:not(:nth-child(3)) {
  margin-right: 3rem;
}
@media screen and (max-width: 960px) {
  .original-diary-list__item {
    width: calc((100% - 2rem) / 2);
    margin-bottom: 2rem;
  }
  .original-diary-list__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .original-diary-list__item:not(:nth-child(2n)) {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .original-diary-list__item {
    width: 100%;
  }
  .original-diary-list__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .original-diary-list__item:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.original-diary-list__title {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--keycolor);
}
@media screen and (max-width: 960px) {
  .original-diary-list__title {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .original-diary-list__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .original-diary-list__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .original-diary-list__title {
    font-size: 1.28rem;
  }
}
.original-diary-list__text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 0.5em;
}
@media screen and (max-width: 960px) {
  .original-diary-list__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .original-diary-list__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .original-diary-list__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .original-diary-list__text {
    font-size: 1.2rem;
  }
}

.sitemap__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
}
* + .sitemap__list {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px dotted var(--keycolor);
}
.sitemap__item {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .sitemap__item {
    font-size: 1.28rem;
  }
}
@media screen and (max-width: 768px) {
  .sitemap__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .sitemap__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .sitemap__item {
    font-size: 1.28rem;
  }
}
.sitemap__link {
  display: inline-block;
  text-decoration: none;
}

.sec-hero__wrap.video-hero {
  background-image: url("/img/kv__ph13.jpg");
  background-color: #098374;
}
@media screen and (max-width: 960px) {
  .sec-hero__wrap.video-hero {
    background-image: url("/img/kv__ph13_sp.jpg");
  }
}

.section__body {
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .section__body {
    margin-bottom: 60px;
  }
}
.section__lead {
  margin-top: 6rem;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section__lead {
    margin-top: 4rem;
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.section__bg {
  background-color: rgba(var(--sub04-light-rgb), 0.3);
}
.section__video-features .list-video-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 52px;
  padding: 40px 0 54px;
}
@media screen and (max-width: 960px) {
  .section__video-features .list-video-features {
    gap: 30px 4.06vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-features .list-video-features {
    gap: 22px 3vw;
    padding: 20px 7px 28px;
  }
}
.section__video-features .list-video-features__item {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #098374;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .section__video-features .list-video-features__item {
    width: 21.09vw;
    height: 21.09vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-features .list-video-features__item {
    width: 38.5vw;
    height: 38.5vw;
  }
}
.section__video-features .list-video-features__item::after {
  content: "";
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(206, 240, 236, 0.25);
  border: 2px solid #CEF0EC;
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .section__video-features .list-video-features__item::after {
    width: 21.09vw;
    height: 21.09vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-features .list-video-features__item::after {
    width: 38.5vw;
    height: 38.5vw;
    right: -5px;
    bottom: -5px;
  }
}
.section__video-features .list-video-features__item > div {
  width: 80%;
}
.section__video-features .list-video-features__text--sub {
  text-align: center;
  display: block;
  border-bottom: 1px solid #098374;
  font-size: 2rem;
  line-height: 1.4;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .section__video-features .list-video-features__text--sub {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-features .list-video-features__text--sub {
    font-size: 1.2rem;
  }
}
.section__video-features .list-video-features__text--main {
  text-align: center;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #098374;
}
@media screen and (max-width: 960px) {
  .section__video-features .list-video-features__text--main {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-features .list-video-features__text--main {
    font-size: 1.8rem;
  }
}
.section__video-flow .section__bg {
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
  align-items: center;
  justify-content: center;
  padding: 40px 50px;
}
@media screen and (max-width: 960px) {
  .section__video-flow .section__bg {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media screen and (max-width: 576px) {
  .section__video-flow .section__bg {
    display: block;
    padding: 20px 15px;
  }
}
.section__video-flow__img {
  text-align: center;
  width: 42.86%;
}
@media screen and (max-width: 576px) {
  .section__video-flow__img {
    margin-bottom: 30px;
    width: auto;
  }
}
.section__video-flow__text {
  width: 48.78%;
}
@media screen and (max-width: 576px) {
  .section__video-flow__text {
    width: auto;
  }
}
.section__video-flow__text .list-video-flow li {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .section__video-flow__text .list-video-flow li {
    margin-bottom: 30px;
  }
}
.section__video-flow__text .list-video-flow li:last-of-type {
  margin-bottom: 0;
}
.section__video-flow__text .list-video-flow li .num {
  font-size: 10rem;
  color: #098374;
  margin-right: 17px;
}
@media screen and (max-width: 960px) {
  .section__video-flow__text .list-video-flow li .num {
    font-size: 10.42vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-flow__text .list-video-flow li .num {
    font-size: 8rem;
  }
}
.section__video-flow__text .list-video-flow li .txt {
  font-size: 2.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .section__video-flow__text .list-video-flow li .txt {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 576px) {
  .section__video-flow__text .list-video-flow li .txt {
    font-size: 1.8rem;
  }
}
.section__video-flow__text .list-video-flow li .txt strong {
  color: #098374;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .section__video-flow__text .list-video-flow li .pc {
    display: none;
  }
}
.section__partner ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 30px;
}
.section__partner ul li {
  width: 13.7%;
  margin: 0 1.11% 24px;
}
@media screen and (max-width: 768px) {
  .section__partner ul li {
    width: 29%;
    margin: 0 2% 24px;
  }
}
.section__achievements .items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .section__achievements .items {
    display: block;
  }
}
.section__achievements .items .item {
  width: 30.74%;
  margin-right: 3.89%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .section__achievements .items .item {
    width: auto;
    max-width: 332px;
    margin: 0 auto 42px;
  }
}
.section__achievements .items .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .section__achievements .items .item:nth-child(3n) {
    margin-right: auto;
  }
}
.section__achievements .items .item .corp__thum {
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.section__achievements .items .item .corp__thum img {
  vertical-align: top;
}
.section__achievements .items .item .corp__name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #003457;
  line-height: 1.4;
}
.section__achievements .items .item .corp__detail {
  margin-bottom: 12px;
}
.section__achievements .items .item .corp__detail p {
  color: #098374;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.section__achievements .items .item .corp__tag {
  margin-bottom: 12px;
}
.section__achievements .items .item .corp__tag span {
  display: inline-block;
  color: #003457;
  background-color: #F2F8FC;
  border: 1px solid #DFEDF7;
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  margin-right: 8px;
  margin-bottom: 8px;
  line-height: 1;
}
.section__achievements .items .item .corp__btn a {
  display: flex;
  align-items: center;
  color: #098374;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s;
}
.section__achievements .items .item .corp__btn a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background: url(../img/video/corp__btn.svg);
}
.section__achievements .items .item .corp__btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.section__video-service-main {
  background-color: #F2F8FC;
  padding: 40px 90px;
  border-radius: 10px;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .section__video-service-main {
    padding: 20px;
    margin-bottom: 40px;
  }
}
.section__video-service-main .section__title {
  margin-bottom: 46px;
}
.section__video-service-main .video-service__title {
  color: #003457;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 12px;
}
.section__video-service-main .video-service__betobe {
  margin-bottom: 50px;
}
.section__video-service-main .video-service__betobe .video-service__title {
  border-bottom: 2px solid #ABD048;
}
.section__video-service-main .video-service__education .video-service__title {
  border-bottom: 2px solid #E8C140;
}
.section__video-service-main .list-video-service {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 426px) {
  .section__video-service-main .list-video-service {
    justify-content: flex-start;
  }
}
.section__video-service-main .list-video-service li {
  text-align: center;
  margin-bottom: 36px;
}
.section__video-service-main .list-video-service p {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .section__video-service-main .list-video-service p {
    font-size: 1.2rem;
  }
}
.section__video-service-main .list-video-service.__betobe {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 426px) {
  .section__video-service-main .list-video-service.__betobe {
    -webkit-column-gap: 5%;
    -moz-column-gap: 5%;
    column-gap: 5%;
  }
}
.section__video-service-main .list-video-service.__betobe li {
  width: 100px;
}
@media screen and (max-width: 426px) {
  .section__video-service-main .list-video-service.__betobe li {
    width: 30%;
  }
}
.section__video-service-main .list-video-service.__education {
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media screen and (max-width: 576px) {
  .section__video-service-main .list-video-service.__education {
    -webkit-column-gap: 5%;
    -moz-column-gap: 5%;
    column-gap: 5%;
  }
}
.section__video-service-main .list-video-service.__education li {
  width: 160px;
}
@media screen and (max-width: 576px) {
  .section__video-service-main .list-video-service.__education li {
    width: 30%;
  }
}
.section__video-service-main .list-video-service__pack {
  display: flex;
  justify-content: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media screen and (max-width: 960px) {
  .section__video-service-main .list-video-service__pack {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .section__video-service-main .list-video-service__pack {
    display: block;
  }
}
.section__video-service-main .list-video-service__pack dl {
  background-color: #fff;
  border: 2px solid #33BCBE;
  border-radius: 8px;
  padding: 56px 30px 20px;
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .section__video-service-main .list-video-service__pack dl {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .section__video-service-main .list-video-service__pack dl {
    padding: 56px 15px 15px;
  }
}
@media screen and (max-width: 576px) {
  .section__video-service-main .list-video-service__pack dl {
    margin-bottom: 60px;
    width: auto;
  }
}
.section__video-service-main .list-video-service__pack dl dt {
  text-align: center;
  color: #003457;
  margin-bottom: 16px;
}
.section__video-service-main .list-video-service__pack dl dt span {
  display: block;
}
.section__video-service-main .list-video-service__pack dl dt .icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section__video-service-main .list-video-service__pack dl dt .txt_sub {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .section__video-service-main .list-video-service__pack dl dt .txt_sub {
    font-size: 1.2rem;
  }
}
.section__video-service-main .list-video-service__pack dl dt .txt_main {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .section__video-service-main .list-video-service__pack dl dt .txt_main {
    font-size: 1.6rem;
  }
}
.section__video-service-main .list-video-service__pack dl dd {
  margin-top: auto;
}
.section__video-service-main .list-video-service__pack dl dd a {
  display: block;
  font-size: 1.6rem;
  width: 200px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #BF1E56;
}
@media screen and (max-width: 768px) {
  .section__video-service-main .list-video-service__pack dl dd a {
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .section__video-service-main .list-video-service__pack dl dd a {
    width: 80%;
  }
}
@media screen and (max-width: 426px) {
  .section__video-service-main .list-video-service__pack dl dd a {
    width: auto;
    font-size: 1.2rem;
  }
}
.section__video-service-main .list-video-service__pack dl dd a span {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.section__video-service-main .list-video-service__pack dl dd a span::before {
  content: "";
  display: block;
  background: url(/img/service__video_btn_arrow.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.section__video-service-main .list-video-service__pack dl dd a:hover, .section__video-service-main .list-video-service__pack dl dd a:focus {
  color: #BF1E56;
  border: 2px solid #BF1E56;
}
.section__video-service-main .list-video-service__pack dl dd a:hover span::before, .section__video-service-main .list-video-service__pack dl dd a:focus span::before {
  background: url(/img/service__video_btn_arrow_on.svg) no-repeat;
}
.section__video-service-main .list-video-service__pack dl dd .sub {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
}
.section__video-service-sub {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .section__video-service-sub {
    display: block;
  }
}
.section__video-service-sub__item {
  background-color: #F2F8FC;
  padding: 40px 30px;
  width: 48.15%;
}
@media screen and (max-width: 576px) {
  .section__video-service-sub__item {
    width: auto;
    margin-bottom: 20px;
  }
}
.section__video-service-sub__item p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 40px;
}

/* ----------------------------------------------------------------------------
　動画モーダル
---------------------------------------------------------------------------- */
#movie_modal_bg {
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
}

#movie_modal_bg.active {
  display: block;
  -webkit-animation: movieModalBgAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
  animation: movieModalBgAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

@-webkit-keyframes movieModalBgAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes movieModalBgAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#movie_modal_close {
  position: fixed;
  top: -60px;
  right: 0;
  z-index: 101;
  width: 50px;
  display: none;
}

@media screen and (max-width: 592px) {
  #movie_modal_close {
    width: 30px;
    top: -40px;
    right: 0;
  }
}
#movie_modal_close.active {
  display: block;
  -webkit-animation: movieModalAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
  animation: movieModalAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

#movie_modal_close img {
  width: 100%;
  display: block;
  transition: 0.4s ease-in-out;
}

#movie_modal_close img:hover {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#movie_modal {
  position: fixed;
  top: 0rem;
  left: calc((100% - 800px) / 2);
  width: 800px;
  z-index: 101;
  display: none;
}

@media screen and (max-width: 880px) {
  #movie_modal {
    width: 90%;
    left: 5%;
  }
}
#movie_modal.active {
  display: block;
  -webkit-animation: movieModalAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
  animation: movieModalAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

@-webkit-keyframes movieModalAnime {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes movieModalAnime {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
#movie_modal .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#movie_modal .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#movie_modal iframe {
  width: 100%;
}

.voice-list {
  margin-top: 6rem;
}
.voice-list__item {
  display: flex;
  justify-content: space-between;
}
.voice-list__item + .voice-list__item {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--sub01);
}
@media screen and (max-width: 768px) {
  .voice-list__item {
    flex-direction: column;
  }
}
.voice-list__ph {
  width: 25rem;
}
@media screen and (max-width: 768px) {
  .voice-list__ph {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
}
.voice-list__data {
  flex: 1;
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .voice-list__data {
    margin-left: 0;
  }
}
.voice-list__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--sub01);
}
@media screen and (max-width: 960px) {
  .voice-list__title {
    font-size: 1.76rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-list__title {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 576px) {
  .voice-list__title {
    font-size: 1.6270833333rem;
  }
}
@media screen and (max-width: 426px) {
  .voice-list__title {
    font-size: 1.76rem;
  }
}
.voice-list__title::before {
  content: "「";
}
.voice-list__title::after {
  content: "」";
}
.voice-list__name {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--keycolor);
  margin-top: 0.5em;
}
@media screen and (max-width: 960px) {
  .voice-list__name {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-list__name {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 576px) {
  .voice-list__name {
    font-size: 1.33125rem;
  }
}
@media screen and (max-width: 426px) {
  .voice-list__name {
    font-size: 1.44rem;
  }
}
.voice-list__text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 0.5em;
}
@media screen and (max-width: 960px) {
  .voice-list__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-list__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .voice-list__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .voice-list__text {
    font-size: 1.2rem;
  }
}
.voice-list__link {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 1.5em;
}
@media screen and (max-width: 960px) {
  .voice-list__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-list__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .voice-list__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .voice-list__link {
    font-size: 1.2rem;
  }
}
.voice-tag {
  margin-top: 2rem;
  border: 1px solid #CCC;
  padding: 1.5rem;
}
.voice-tag__title {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .voice-tag__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-tag__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .voice-tag__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .voice-tag__title {
    font-size: 1.2rem;
  }
}
.voice-tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
  margin-top: 1rem;
}
.voice-tag__item {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: #FFF;
  border-radius: 2em;
}
@media screen and (max-width: 960px) {
  .voice-tag__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-tag__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .voice-tag__item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 426px) {
  .voice-tag__item {
    font-size: 1.2rem;
  }
}
.voice-tag__item--pamphlet {
  background-color: #482277;
}
.voice-tag__item--web {
  background-color: var(--keycolor-dark);
}
.voice-tag__item--ppt {
  background-color: var(--sub01);
}
.voice-tag__item--case {
  background-color: #007D3B;
}
.voice-tag__item--video {
  background-color: #005867;
}