@charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Serif JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Serif+JP
*/
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NSerif-400.woff2") format("woff2"), url("fonts/NSerif-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NSerif-700.woff2") format("woff2"), url("fonts/NSerif-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NSerif-700-vertical.woff2") format("woff2"), url("fonts/NSerif-700-vertical.woff") format("woff");
  font-display: swap;
}
/*
---------------------------------------------

    base settings

*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
}

@media screen and (max-width: 1148px) {
  :root {
    font-size: 0.8710801394vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}

ul, ol, dl, p, img, form, dt, dd, figure {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

a {
  color: #000;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active,
a:hover {
  color: #000;
  text-decoration: none;
}

p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

    animation

*/
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/*
---------------------------------------------

    layout center

*/
.l-center {
  max-width: 114.8rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center--narrow {
  max-width: 100rem;
}

/*
---------------------------------------------

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s8);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.l-stack--narrow {
  gap: var(--s4);
}
.l-stack--wide {
  gap: 10rem;
}

/*
---------------------------------------------

    layout cluster

*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/*
---------------------------------------------

    layout grid

*/
.l-grid {
  --minmum: calc((100% - var(--s8)) / 2);
  display: grid;
  grid-gap: var(--s7) var(--s8);
}

.l-grid-three {
  --minmum: calc((100% - var(--s4) * 2) / 3);
  display: grid;
  grid-gap: var(--s4);
}

.bg-blue .l-grid-three {
  margin-top:5rem;
}

.l-grid-four {
  --minmum: calc((100% - var(--s3) * 3) / 4);
  display: grid;
  grid-gap: var(--s3);
}

@supports (width: min(var(--minmum), 100%)) {
  .l-grid,
.l-grid-three,
.l-grid-four {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: var(--s5);
}
.l-sidebar__side {
  width: 24rem;
}
.l-sidebar__main {
  flex: 1;
}

/*
---------------------------------------------

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column__side {
  width: 22rem;
}
.l-column__side02 {
  width: 17rem;
}
.l-column__side03 {
  width: 46rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

/*
---------------------------------------------

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 40rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 40rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

/*
---------------------------------------------

    layout float

*/
.l-float {
  display: flow-root;
}
.l-float__left-pc {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
  text-align:center;
}
.l-float__left-pc img{
  text-align:center;
  margin:auto;
}
.l-float__right-pc {
  width: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.l-float__center {
  width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
  text-align:center;
}
.l-float__left {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right {
  width: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
  text-align:center;
}

/*
---------------------------------------------

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

    list

*/
.main-area .subList li,
.main-area ul:not([class]) li,
.remodal-wrapper .subList li,
.remodal-wrapper ul:not([class]) li {
  padding: 0 0 0 1.6em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before,
.remodal-wrapper .subList li::before,
.remodal-wrapper ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #CF0000;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0.3em;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li,
.remodal-wrapper .subList li + li,
.remodal-wrapper ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area ol:not([class]),
.remodal-wrapper ol:not([class]) {
  counter-reset: number;
}
.main-area ol:not([class]) li,
.remodal-wrapper ol:not([class]) li {
  padding: 0 0 0 2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before,
.remodal-wrapper ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.main-area ol:not([class]) li + li,
.remodal-wrapper ol:not([class]) li + li {
  margin-top: 1em;
}

/*
---------------------------------------------

    btn

*/
.btn-internal {
  width: 47rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 5.2rem;
  background: #CF0000 url(img/arrow-01-white-right.svg) no-repeat center right 2.2rem/2.7rem auto;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-internal a span.cl {
  color: #F2B75A;
}
.btn-internal--down a {
  background-image: url(img/arrow-01-white-down.svg);
  background-size: 1.2rem auto;
  background-position: center right var(--s3);
}
.btn-internal:hover a {
  transform: translate(0.4rem, 0.4rem);
  box-shadow: none;
}

.btn-web {
  width: 47rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 5.2rem;
  background: #28A2FC;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-web a:before {
  content: "";
  width: 2.8rem;
  height: 3.2rem;
  background: url(img/icon-btn-web.svg) no-repeat center/contain;
  position: absolute;
  right: var(--s3);
  top: 50%;
  transform: translateY(-50%);
}
.btn-web:hover a {
  transform: translate(0.4rem, 0.4rem);
}

.btn-link {
  margin: var(--s2) 0 var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0 var(--s4) 0 0;
  background: url("img/arrow-02-red-right.svg") no-repeat center right/1.7rem auto;
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.btn-tel {
  display: none;
}

/*
---------------------------------------------

    table

*/
table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.main-area--low table {
  margin-top:3rem;
  margin-bottom:3rem;
}
.main-area--low .l-float {
  margin-top:3rem;
  margin-bottom:3rem;
}
.main-area--low ol,
.main-area--low ul{
  margin-top:3rem;
  margin-bottom:3rem;
}

th, td {
  padding: 1.1rem;
  border-right: solid 1px #C7C7C7;
  border-bottom: solid 1px #C7C7C7;
  line-height: 1.5;
  word-break: break-all;
}

th {
  background: #F5F8FD;
}

tbody th {
  background: #F5F8FD;
}
.main-area--low tbody th {
  width:250px;
}

.l-scroll-x table {
  width: inherit;
}
.l-scroll-x table th, .l-scroll-x table td {
  min-width: 20rem;
}

/*
---------------------------------------------

    caption

*/
.caption {
  margin-top: 0.8em;
  display: block;
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: #999;
}

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.4rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

	catch

*/
.catch-01 {
  font-size: 2.2rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 1.5;
  color: #CF0000;
}

/*
---------------------------------------------

	text

*/
.txt_marker {
  border-bottom: solid 0.3rem #FD7272;
  font-weight: 700;
}

.txt_bold {
  font-weight: 700;
  color: #CF0000;
}

/*
---------------------------------------------

	subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: 0;
}

.subgrid-card02 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  grid-gap: 0;
}

/*
---------------------------------------------

	pankuzu

*/
#pankuzu {
  width: fit-content;
  margin: var(--s1) auto var(--s3) 0;
  padding: var(--s-2) var(--s2);
  color: #000;
  background: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#pankuzu > span {
  color: #000;
}

/*
---------------------------------------------

    footer

*/
.footer-area {
  padding: var(--s5) 0 0;
  background: #F2F2F2;
}
.footer-area__logo {
	width: 253px;
	margin: var(--s4) auto;
}
.footer-area__logo a:hover {
  opacity: 0.7;
}

.footer-main {
  max-width: 114.8rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.footer-bottom {
  padding: var(--s1) 0;
  background: #000;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s2);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #000;
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.footer-menu-title__link:hover {
  opacity: 0.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer-menu__link {
  padding: var(--s1);
  text-decoration: none;
}
.footer-menu__link:hover {
  opacity: 0.6;
}

.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  position: relative;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}
.footer-menu-sub__link:hover {
  opacity: 0.6;
}

.footer-disclaimer {
  width: 75rem;
  margin: var(--s7) auto var(--s5);
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s5) 0;
  font-size: 1.2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 1.2rem;
  color: #fff;
}
.footer-copyright__link {
  color: #fff;
  text-decoration: none;
}
.footer-copyright__link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
}
.footer-sitemap__link {
  color: #fff;
  text-decoration: none;
}
.footer-sitemap__link:hover {
  color: #fff;
  text-decoration: underline;
}

/*
---------------------------------------------

    page

*/
.page-top {
  width: 7rem;
  height: 7rem;
  position: fixed;
  right: 0;
  bottom: var(--s5);
  z-index: 10;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
}
.page-top__link:hover {
  opacity: 0.6;
}

/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 8rem;
  height: 8rem;
  background: #000;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: var(--s5);
  height: 0.3rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.9rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.4rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.9rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 5.4rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1.4rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.5rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 10rem 0;
  background: #F5F8FD;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url("img/arrow-04-black-down.svg") no-repeat center/100%;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title:hover {
  opacity: 1;
}
.gnavi-box__title.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.2);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
  content: "└";
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 1.2rem var(--s2) 1.2rem var(--s5);
  display: block;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
  opacity: 0.6;
}

.gnavi-menu__item {
  border-bottom: 1px solid #999;
}

.gnavi-menu-sub__item {
  border-top: 1px solid #999;
}

.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

/*
---------------------------------------------

    toc

*/
.toc-wrap {
  margin: var(--s10) auto;
  max-width: 90rem;
  background: #F2F2F2;
  position: relative;
}
.toc-wrap__title {
  display: block;
  padding: var(--s3) var(--s5);
  background: #F2F2F2;
  font-size: 2.2rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #000;
  line-height: 1;
  position: relative;
}
.toc-wrap__title.is-open {
  border-radius: var(--s2) var(--s2) 0 0;
}
.toc-wrap__title.toggle-btn:before, .toc-wrap__title.toggle-btn:after {
  background-color: #000;
}
.toc-wrap__title span.en {
  margin-left: var(--s5);
  font-size: 1.8rem;
  color: #3E3A39;
}
.toc-wrap--relations .toc-wrap__title {
  border-radius: var(--s2) var(--s2) 0 0;
}
.toc-wrap__main {
  padding: var(--s3) var(--s4) var(--s4);
  position: relative;
}
.toc-wrap__main:before {
  content: "";
  width: calc(100% - var(--s8));
  height: 0.1rem;
  background-image: linear-gradient(to right, #000 0.3rem, transparent 0.3rem);
  background-size: 0.8rem 0.1rem;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  left: var(--s4);
  top: 0;
}
.toc-wrap__main.toc-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) 4%;
}
.toc-wrap__main.toc-top li {
  width: 100%;
}
.toc-wrap .toc-wrap__main.toc-top ul li.chapter-h-two + li {
  margin-top: 0;
}
.toc-wrap ul {
  margin: 0;
  padding: 0;
}
.toc-wrap ul li {
  padding-left: 1.6em;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
.toc-wrap ul li + li {
  margin-top: 1em;
}
.toc-wrap ul li.chapter-h-two {
  padding-left: 2.6em;
}
.toc-wrap ul li.chapter-h-two:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(img/arrow-02-red-right.svg);
  position: absolute;
  top: 0.3em;
  left: var(--s1);
}
.toc-wrap ul li.chapter-h-two + li {
  margin-top: 0.8em;
}
.toc-wrap ul li.chapter-h-three {
  margin: var(--s1) 0 var(--s1) var(--s5);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.toc-wrap ul li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.toc-wrap ul li.chapter-h-three a {
  background: none;
}
.toc-wrap a {
  display: block;
  text-decoration: none;
}
.toc-wrap a:hover {
  text-decoration: underline;
}
.toc-wrap .relations-links {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}
.toc-wrap .relations-links li {
  width: 100%;
  padding-left: 2em;
  position: relative;
}
.toc-wrap .relations-links li:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(img/arrow-02-red-right.svg);
  position: absolute;
  top: 0.3em;
  left: var(--s1);
}
.toc-wrap .relations-links li + li {
  margin-top: 0;
}

/*
---------------------------------------------

    toggle sp

*/
.toggle-sp-content {
  display: block;
}

/*
---------------------------------------------

    toggle

*/
.toggle-btn {
  position: relative;
  transition: opacity 0.3s;
}
.toggle-btn::before {
  content: "";
  width: 2.5rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s4);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: 2.5rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 4.4rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}
.toggle-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

.toggle-content {
  display: none;
}

/*
---------------------------------------------

    more

*/
.more-btn {
  max-width: 24rem;
  margin: var(--s10) auto;
  padding: var(--s2) var(--s7);
  background: #fff;
  border: 1px solid #000;
  border-radius: 10rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: #000;
  position: absolute;
  top: 50%;
  right: 3.1rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn:hover {
  opacity: 0.6;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more-content {
  display: none;
}

/*
---------------------------------------------

    グラデーション  more-content

*/
.more__content {
  position: relative;
  height: auto;
  max-height: 25rem;
  overflow: hidden;
  transition: max-height 1s;
}

.more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

.more__content.open {
  height: auto;
}

.more__content.open:after {
  z-index: -1;
  opacity: 0;
}

.more__content.sp-only {
  overflow: initial;
  max-height: initial;
}

.more__content.sp-only:after {
  content: none;
}

.more__btn {
  width: fit-content;
  min-width: 15rem;
  display: block;
  margin: var(--s1) auto 0;
  padding: var(--s1) var(--s4);
  border-radius: 5rem;
  border: solid 1px #000;
  cursor: pointer;
  font-size: 1.3rem;
  position: relative;
}

.more__btn::before {
  content: "";
  width: 1.3rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}

.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.3rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

.more__btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more__btn.for-sp {
  display: none;
}

/*
---------------------------------------------

    modal

*/
.remodal-overlay {
  background: rgba(87, 87, 87, 0.8);
}

.remodal-inner {
  text-align: left;
}
.remodal-inner ul:not([class]) li + li {
  margin-top: 0.4em;
}

.remodal {
  border-radius: var(--s2);
  box-shadow: -1rem 1rem #C8D7E2, -1rem -1rem #C8D7E2, 1rem 1rem #C8D7E2, 1rem -1rem #C8D7E2;
}
.remodal-cancel {
  right: var(--s2);
  top: var(--s2);
}

.modal-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.6rem var(--s6) 0.6rem var(--s2);
  border-radius: var(--s4);
  border: solid 1px #CF0000;
  background: #fff url(img/icon-modal.png) no-repeat right var(--s2) center/2rem auto;
  font-family: "Noto Serif JP";
  font-weight: 700;
}
.modal-btn:hover {
  opacity: 0.7;
}

/*
---------------------------------------------

    titles

*/
.pr-text {
  margin-bottom: var(--s5);
  text-align: center;
  font-size: 1.2rem;
}

.main-area h1, .main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
  font-family: "Noto Serif JP";
  font-weight: 700;
}

.main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
  margin: var(--s5) auto var(--s3);
  font-weight: 700;
}
.main-area--low h1 a, .main-area--low h2 a, .main-area--low h3 a, .main-area--low h4 a, .main-area--low h5 a, .main-area--low h6 a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
}
.main-area--low h1 a:hover, .main-area--low h2 a:hover, .main-area--low h3 a:hover, .main-area--low h4 a:hover, .main-area--low h5 a:hover, .main-area--low h6 a:hover {
  opacity: 0.6;
}
.main-area--low h1 {
  margin: 0 auto var(--s3) 0;
  padding: var(--s3) var(--s3) var(--s2);
  min-height: 14.1rem;
  border-radius: var(--s1) var(--s1) var(--s8) var(--s1);
  font-size: 4.8rem;
  color: #fff;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.2rem;
  position: relative;
}
.main-area--low h1:before {
  content: "Contents";
  width: fit-content;
  font-family: "Noto Serif JP";
  font-size: 6rem;
  font-weight: 400;
  color: #fff;
  position: absolute;
  right: var(--s2);
  top: -2.5rem;
  opacity: 0.15;
}
.main-area--low h2 {
  padding: 1.2rem var(--s3) 1.2rem var(--s4);
  font-size: 3rem;
  color: #fff;
  background: #000;
  letter-spacing: 0.2rem;
  position: relative;
}
.main-area--low h2:before {
  content: "";
  width: 0.2rem;
  height: 80%;
  background: #FD7272;
  position: absolute;
  left: var(--s1);
  top: 10%;
}
.main-area--low h2 a {
  background: url(img/arrow-02-red-right.svg) no-repeat right center;
  background-size: 2rem auto;
  color: #fff;
}
.main-area--low h3 {
  padding: 0 0 0.4rem var(--s2);
  background: linear-gradient(transparent 45%, rgba(67, 121, 169, 0.1) 45%);
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}
.main-area--low h3 a {
  background: url(img/arrow-02-red-right.svg) no-repeat right var(--s2) center;
  background-size: 2rem auto;
}
.main-area--low h4, .main-area--low h5 {
  padding: 0 var(--s2) var(--s1);
  background-image: linear-gradient(to right, #000 0.3rem, transparent 0.3rem);
  background-size: 0.8rem 0.1rem;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 2.2rem;
}
.main-area--low h4 a, .main-area--low h5 a {
  background: url(img/arrow-02-red-right.svg) no-repeat right center;
  background-size: 2rem auto;
}

/*
---------------------------------------------

    TOP

*/
.header-area {
  width: 100%;
  min-height: 7.6rem;
  padding: 0 10rem 0 0;
  background: #fff;
  display: flex;
  justify-content: flex-end;
  gap: var(--s3);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
.header-area__left {
  margin: var(--s-2) auto 0 var(--s-2);
  font-size: 1.4rem;
}
.header-area__name {
  font-family: "Noto Serif JP";
  font-size: 1.2rem;
  font-weight: 700;
}
.header-area__name img {
  display: block;
  width: 16.1rem;
}
.header-area a.header-area__name {
  text-decoration: none;
}
.header-area a.header-area__name:hover {
  opacity: 0.6;
}
.header-area .sponsered {
  font-size: 1.1rem;
  line-height: 1;
}
.header-area .btn-web {
  margin: var(--s-2) 0;
  width:auto;
}
.header-area .btn-web a {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  font-size:1.6rem;
  font-weight:bold;
}

.mainvisual-lower {
  margin-top: 8rem;
  padding-bottom: var(--s9);
  background: url(img/mv-bg-low.png) no-repeat center top/192rem auto, rgba(0, 0, 0, 0.5);
}
.mainvisual-lower__logo {
  margin: 0 auto;
  padding-bottom: var(--s3);
  width: 25.3rem;
  text-align: center;
  padding-top: var(--s8);
}
.mainvisual-lower__logo a:hover{
  opacity:0.7;
}
.mainvisual-lower__logo span {
  margin-top: var(--s-2);
  display: inline-block;
  padding: 0.2rem var(--s1);
  background: #000;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 1.3rem;
  font-weight: 700;
}
.mainvisual-top {
  margin-bottom: var(--s8);
  padding-top: 14rem;
  background: url(img/mv-bg.jpg) no-repeat center bottom/192rem auto, rgba(0, 0, 0, 0.5);
}
.mainvisual-top .btn-internal {
  margin-top: auto;
  margin-bottom: -4rem;
}
.mainvisual-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.mainvisual-logo {
  width: 25.3rem;
  margin: 0 auto var(--s4);
}
.mainvisual-title {
  width: fit-content;
  margin: 0 auto var(--s4);
  padding: 0 var(--s2);
  font-family: "Noto Serif JP";
  font-size: 4rem;
  font-weight: 700;
  background: #000;
  color: #fff;
}
.mainvisual-title span.st {
  font-size: 5rem;
  color: #FD7272;
}
.mainvisual-lead {
  padding-bottom: 38rem;
  font-weight: bold;
}

.sponsored-p {
  text-align: center;
  font-size: 1.2rem;
  line-height:1.3;
}

.main-area {
  overflow: clip;
}
.main-area--low {
  margin-top: -8rem;
}
.main-area--low .l-center {
  padding-bottom: 5rem;
}

/*
---------------------------------------------

    lower Parts

*/
/*
---------------------------------------------

    comment

*/
.parts-comment--lower {
  margin: 6rem auto;
}
.parts-comment__catch {
  margin-bottom: var(--s5);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
}
.parts-comment-wrap {
  display: flex;
  gap: var(--s4);
}
.parts-comment-wrap--reverse {
  flex-direction: row-reverse;
}
.parts-comment-wrap__side {
  width: 16rem;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
}
.parts-comment-wrap__side img{
	border-radius: 100%;
    width: 160px;
    height: 160px;
    object-fit: cover;
}
.parts-comment-wrap__side p {
  margin-top: var(--s1);
  line-height: 1.5;
}
.parts-comment-wrap__main {
  flex: 1;
}
.parts-comment-wrap + .parts-comment-wrap {
  margin-top: var(--s5);
}

.card-comment {
  padding: var(--s4);
  border-radius: var(--s2) var(--s2) var(--s2) var(--s8);
  border: solid 1px #000;
  position: relative;
}
.card-comment--reverse {
  border-radius: var(--s2) var(--s2) var(--s8) var(--s2);
}
.card-comment--reverse:before {
  right: auto;
  left: 99%;
  transform: rotate(180deg);
}

/*
---------------------------------------------

    interview

*/
.interview-section {
  margin: 10rem 0;
}

.interview-box__q {
  min-height: var(--s9);
  margin-bottom: var(--s3);
  padding: 0 0 0 8.8rem;
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP";
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.interview-box__q::before {
  content: "Q";
  width: var(--s9);
  height: var(--s9);
  background: #CF0000;
  border-radius: 50%;
  position: absolute;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 4.2rem;
  font-weight: 700;
  text-align: center;
  top: 0;
  left: 0;
}
.interview-box__content .l-float {
  margin: var(--s3) 0 0;
}
.interview-box__catch {
  padding: var(--s2) var(--s3);
  background: #000;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.interview-box + .interview-box {
  margin-top: var(--s8);
}

.lower-common {
  padding-bottom: 0;
  margin-top: 0rem;
  background: #575757;
  z-index: 0;
  position: relative;
}
.lower-common .box-sponsored:before {
  content: none;
}
.lower-common .box-comment {
  color: #fff;
}
.lower-common .box-comment:before {
  color: #fff;
}
.lower-common .box-comment__btns .btn-link a{
	color:#fff;
}
.lower-common .box-comment .btn-web {
  margin-left: 0;
  margin-bottom: 0;
}
.lower-common .box-comment .btn-link a {
  color: #fff;
  background-image: url(img/arrow-02-white-right.svg);
}

.lower-summary {
  margin: 6rem auto;
  padding: var(--s5);
  border-radius: var(--s2);
  border: dashed 1px #707070;
  position: relative;
}
.lower-summary:before {
  content: "Summary";
  width: fit-content;
  font-family: "Noto Serif JP";
  font-size: 6rem;
  color: #C4C4C4;
  position: absolute;
  right: 0;
  top: -7.5rem;
}

/*
---------------------------------------------

    TOP common

*/
section {
  padding: 12rem 0;
}
section.no-padding {
  padding: 0;
}
.top-none{
  padding-top: 0rem;
}
.title-en {
  margin-bottom: var(--s5);
  padding-left: var(--s1);
  font-family: "Noto Serif JP";
  font-size: 2.4rem;
  font-weight: 700;
  color: #CF0000;
  position: relative;
}
.title-en:before {
  content: "";
  width: 3rem;
  height: 3.5rem;
  background: #E2E2E2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.title-en--lite {
  color: #FD7272;
}
.title-en--lite2 {
  margin-bottom: var(--s2);
  padding-left: 0;
  color: #FD7272;
}
.title-en--lite2:before {
  content: none;
}

.common-title {
  font-family: "Noto Serif JP";
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}
.common-title span.st {
  color: #FD7272;
  font-size: 4.6rem;
}
.common-title span.st2 {
  color: #FD7272;
  font-size: 5.4rem;
}
.common-title span.bg-bk {
  display: inline-block;
  padding: 0.4rem var(--s2);
  background: #000;
  color: #fff;
}
.common-title span.sm {
  font-size: 2.8rem;
}
.common-title span.cl {
  color: #FD7272;
}
.common-title span.st--red {
  margin-top: -1rem;
  padding: var(--s2) 0.2rem;
  background: #CF0000;
  color: #fff;
}
.common-title a {
  text-decoration: none;
}
.common-title a:hover {
  opacity: 0.7;
}
.common-title--vertical {
  font-size: 3.2rem;
  font-family: "Noto Serif JP vertical";
  writing-mode: vertical-rl;
  color: #fff;
}
.common-title--vertical span.bg-bk {
  padding: var(--s2) 0.4rem;
  letter-spacing: 0.1em;
}
.common-title--vertical span.bg-bk--link {
  padding-bottom: var(--s8);
  background: url(img/arrow-03-white-right.svg) no-repeat center bottom var(--s2)/3rem auto, #000;
  text-decoration: none;
}
.common-title--vertical a {
  color: #fff;
}
.common-title--sponsored {
  color: #fff;
}
.common-title--center {
  margin-bottom: var(--s6);
  text-align: center;
}

h2.common-title--vertical {
  font-family: "Noto Serif JP vertical";
}

@-moz-document url-prefix(){
    h2.common-title--vertical {
    	text-orientation: upright;
	}
}

.common-lead--small {
  padding-left: var(--s6);
}
.common-lead.txt-bold {
}

/*
---------------------------------------------

    TOP parts

*/
.sec01-column {
  grid-template-columns: 1fr 58rem;
}

.sec01-lead {
  margin: var(--s4) 0 var(--s3);
  padding-top: var(--s4);
  font-family: "Noto Serif JP";
  font-size: 2.8rem;
  font-weight: 700;
  background-image: linear-gradient(to right, #000 0.3rem, transparent 0.3rem);
  background-size: 0.8rem 0.1rem;
  background-repeat: repeat-x;
  background-position: left top;
}

.sec01-summary {
  max-width: 98rem;
  margin: 10rem auto;
  padding: var(--s5) 9rem;
  background: #F2F2F2;
}
.sec01-summary .arrow-summary{
	margin-bottom:0;
	color: #fff;
    margin-top: -8rem;
    background: url(img/arrow-next-r.png) no-repeat center / contain;
}
.sec01-summary .common-title {
  text-align: center;
}

.sec-illust {
  padding: 3rem;
  position: relative;
  z-index: 0;
}
.sec-illust:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #F5F8FD;
  border-radius: var(--s1) var(--s1) var(--s1) 16rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-illust img {
  margin-bottom: var(--s4);
}
.sec-illust--02 {
  margin-bottom: var(--s5);
}
.sec-illust--02 img {
  display: block;
  margin: 0 auto;
}

.list-check li {
  padding: 0 0 0 var(--s4);
  font-size: 1.8rem;
  position: relative;
}
.list-check li:before {
  content: "";
  width: 2.6rem;
  height: 2.7rem;
  background: url(img/icon-check.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -0.1em;
}
.list-check li + li {
  margin-top: var(--s2);
}

.bg-round {
  position: relative;
  z-index: 0;
  background: #e9f6ff;
}
.bg-round--black {
  background: #fff;
}
.bg-round:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #575757;
  border-radius: 15rem 15rem 0 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.bg-round--black:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 15rem 15rem 0 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.bg-round .common-title {
  color: #fff;
}
.bg-round .common-lead {
  color: #fff;
  padding-left:0;
}
.bg-round--blue {
  background: rgba(40, 162, 252, 0.1);
}
.loops {
  position: absolute;
  left: 0;
  top: -18rem;
}
.loops-item {
  width: 475.5rem;
  height: 18.7rem;
  background: url(img/animation-txt.png) repeat-x left top/auto 100%;
  animation: loop01 100s linear infinite;
}

.sec02-column {
  grid-template-columns: 52rem 1fr;
}

.pic-sec02 {
  margin-left: -42rem;
  width: 93.8rem;
  height: 50rem;
  border-radius: var(--s1) var(--s1) 15rem var(--s1);
  overflow: hidden;
}

.inner-title {
  margin-bottom: var(--s4);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.inner-title span.st {
  font-size: 4.2rem;
  color: #fd7272;
}

.card-exam {
  padding: var(--s4) 0;
  border-top: dashed 1px #C1C1C1;
}
.card-exam__upper {
  margin-bottom: var(--s3);
  display: flex;
  gap: var(--s2);
  font-family: "Noto Serif JP";
}
.card-exam .caption{
  text-align:left;
}
.card-exam__no {
  width: 8.4rem;
  height: 8.4rem;
  min-width: 8.4rem;
  min-height: 8.4rem;
  border-radius: 50%;
  background: rgba(242, 242, 242, 0.9);
  display: flex;
  justify-content: center;
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  align-items: center;
  flex-direction: column;
}
.card-exam__no span.st {
  font-size: 3rem;
}
.card-exam__catch {
  font-size: 2.3rem;
  color: #FD7272;
  font-weight: 700;
  margin-top:1rem;
}
.card-exam__company {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
.card-exam p {
  color: #fff;
}

.arrow-summary {
  width: 14rem;
  height: 7.3rem;
  margin: 0 auto 17rem;
  padding: var(--s1) 0 0;
  background: url(img/arrow-next.svg) no-repeat center/contain;
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.box-summary {
  margin-top: 14rem;
  position: relative;
  padding: var(--s6) var(--s5) 0 50%;
}
.box-summary:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s6));
  background: #fff;
  border-radius: var(--s2);
  position: absolute;
  left: 5rem;
  top: 0;
  z-index: -1;
}
.box-summary:after {
  content: "Summary";
  font-family: "Noto Serif JP";
  font-size: 10rem;
  color: #fff;
  position: absolute;
  right: 0;
  top: -15rem;
  opacity: 0.1;
}
.box-summary__title {
  margin-bottom: var(--s4);
  font-family: "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 700;
}
.box-summary__title span.st {
  font-size: 4.4rem;
  color: #CF0000;
}
.box-summary__title span.cl {
  color: #CF0000;
}
.box-summary__title--red {
  color: #CF0000;
}
.box-summary__pic {
  width: 81.6rem;
  height: 58rem;
  border-radius: var(--s2) var(--s2) 15rem var(--s2) var(--s2);
  position: absolute;
  top: -14rem;
  right: calc(100% - 55rem);
}
.box-summary__pic02 {
  width: 20rem;
  position: absolute;
  border-radius: var(--s2) var(--s2) 15rem var(--s2);
  right: calc(100% - 19rem);
  top: -5rem;
  overflow: hidden;
}
.box-summary__pic02 img {
    margin-bottom: var(--s1);
    display: block;
    border-radius: 100%;
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.box-summary .btn-internal,
.box-summary .btn-web {
  margin-bottom: 0;
  margin-right: 0;
}
.box-summary--sv {
  padding-left: 20rem;
}
.box-summary--reverse {
  padding: var(--s6) 50% var(--s6) var(--s5);
  padding-bottom: var(--s10);
}
.box-summary--reverse:before {
  height: 100%;
  left: auto;
  right: 5rem;
}
.box-summary--reverse:after {
  left: -5rem;
  right: auto;
  opacity: 1;
}
.box-summary--reverse .box-summary__pic {
  left: calc(100% - 55rem);
  right: auto;
}

.box-sponsored {
  margin-top: 4rem;
  padding: 5rem 0 10rem;
  position: relative;
}
.box-sponsored:before {
  content: "";
  width: calc(100% + 12rem);
  height: 100%;
  background: #444444;
  border-radius: var(--s2) var(--s2) 15rem var(--s2);
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.box-sponsored__tag {
  margin-bottom: var(--s3);
  font-family: "Noto Serif JP";
  font-size: 2.4rem;
  font-weight: 700;
  color: #FD7272;
}
.box-sponsored__tag span.sm {
  margin-left: var(--s4);
  color: #fff;
  font-size: 1.5rem;
}
.box-sponsored__inner {
  margin-top: var(--s4);
  padding: var(--s5) var(--s10);
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: var(--s2);
  color: #fff;
}
.box-sponsored__subtitle {
  margin-bottom: var(--s3);
  font-family: "Noto Serif JP";
  font-size: 2.8rem;
  font-weight: 700;
}
.box-sponsored p {
}

.common-subtitle {
  margin: var(--s10) auto var(--s4);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 700;
}

.box-table {
  max-width: 100rem;
  margin: 0 auto;
}
.box-table td{
  background:#fff;
}

.box-comment {
  max-width: 99rem;
  margin: 10rem 0 var(--s8) auto;
  padding: var(--s8) var(--s6) var(--s6) 10rem;
  border-radius: var(--s2);
  border: dashed 1px rgba(157, 157, 157, 0.8);
  position: relative;
}
.bg-blue .box-comment {
  background:#fff;
}
.box-comment:before {
  content: "Comment";
  font-family: "Noto Serif JP";
  font-size: 10rem;
  color: #28A2FC;
  position: absolute;
  right: var(--s6);
  top: -2rem;
  opacity: 0.1;
}
.box-comment__pic {
  width: 20rem;
  position: absolute;
  right: calc(100% - 11rem);
  top: -5rem;
  font-weight: bold;
}
.box-comment__pic p{
  background: #e9e9e9;
  padding: 12px;
  display: inline-block;
  border-radius:5px;
  line-height:1.6;
  text-align:center;
}

.box-comment__pic img {
  margin-bottom: var(--s1);
  display: block;
  border-radius: 100%;
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.box-comment__title {
  margin-bottom: var(--s3);
  font-family: "Noto Serif JP";
  font-size: 3rem;
  font-weight: 700;
}
.box-comment__title span{
  font-size: 2rem;
}

.box-case__tag {
  font-family: "Noto Serif JP";
  font-size: 2rem;
  font-weight: 700;
  color: #d1d1d1;
  position: relative;
  z-index: 0;
}
.box-case__tag:before {
  content: "";
  width: 100%;
  height: 0.1rem;
  border-top: dashed 1px #C1C1C1;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.box-case__tag span {
  width: fit-content;
  padding-right: var(--s2);
  background: #575757;
}
.box-case__catch {
  margin-bottom: var(--s2);
  font-family: "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 700;
  color: #FD7272;
}
.box-case__company {
  margin-bottom: var(--s1);
  padding: var(--s2) 0 var(--s2) var(--s3);
  font-family: "Noto Serif JP";
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.box-case__company:before {
  content: "";
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  border: solid 1px #FD7272;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.box-case__pic {
  width: 34rem;
}
.box-case__pic img {
  border-radius: var(--s2);
}
.box-case__title {
  margin-bottom: var(--s3);
  font-family: "Noto Serif JP";
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.box-case__line {
  padding-bottom: var(--s4);
  border-bottom: dashed 1px #C1C1C1;
}
.box-case__line:last-child {
  border: none;
}
.box-case p {
  color: #fff;
}
.box-case .btn-link a {
  color: #fff;
  background-image: url(img/arrow-02-white-right.svg);
}
.box-case .btn-link a:hover {
  color: #fff;
}
.box-case .toggle-btn {
  padding-right: var(--s8);
}
.box-case .toggle-btn:hover {
  opacity:1.0;
}

.bg-blue {
  background: rgba(40, 162, 252, 0.1);
  position: relative;
  z-index: 0;
}
.bg-blue .arrow-summary{
  margin-top:var(--s4);
}

.card-qa {
  padding: var(--s3);
  border-radius: var(--s2) var(--s2) 11rem var(--s2);
  background: #fff;
}
.card-qa:nth-child(1), .card-qa:nth-child(3) {
  transform: translateY(4rem);
}
.card-qa:nth-of-type(3n-1) {
  background: #e1e1e1;
}
.card-qa__q {
  margin-bottom: var(--s3);
  padding-left: 5rem;
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}
.card-qa__q:before {
  content: "Q";
  width: 4.6rem;
  height: 4.6rem;
  padding-top: var(--s-2);
  box-sizing: border-box;
  background: #CF0000;
  color: #fff;
  border-radius: 50%;
  font-family: "Noto Serif JP";
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: -1rem;
  top: 0;
}
.card-qa__a {
  margin-bottom: var(--s3);
  padding: var(--s2);
  padding-left: var(--s6);
  background: #F2F2F2;
  font-family: "Noto Serif JP";
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-qa__a:before {
  content: "A";
  width: 4.6rem;
  height: 4.6rem;
  padding-top: var(--s-2);
  box-sizing: border-box;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-family: "Noto Serif JP";
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: -1rem;
  top: -1rem;
}
.card-qa__catch {
  margin-bottom: var(--s2);
  font-family: "Noto Serif JP";
  font-size: 1.8rem;
  font-weight: 700;
  color: #CF0000;
}
.card-qa__pic {
  margin-top: var(--s2);
}
.card-qa__pic img {
  border-radius: var(--s1) var(--s1) 10rem var(--s1);
}

.box-school {
  padding: var(--s5) var(--s5) var(--s7);
  border-radius: var(--s2);
  border: dashed 1px #ddd;
  position: relative;
}
.box-school__pic {
  width: 40rem;
  position: absolute;
  right: -2rem;
  top: -4rem;
}
.box-school__title {
  width: fit-content;
  margin-bottom: var(--s4);
  padding: var(--s1) var(--s4);
  background: #000;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 3rem;
  font-weight: 700;
}
.box-school__p {
  max-width: 68.5rem;
  min-height: 14rem;
}
.box-school .l-grid-three {
  margin-top: var(--s6);
}
.box-school p {
  color: #fff;
}

.card-inner {
  padding: 0 2rem;
  position: relative;
}
.card-inner:before {
  content: "";
  width: 0.1rem;
  height: 100%;
  border-right: dashed 1px #fff;
  position: absolute;
  right: -1.5rem;
  top: 0;
}
.card-inner:nth-child(3n):before {
  content: none;
}
.card-inner__title {
  margin-bottom: var(--s2);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 2.2rem;
  font-weight: 700;
  color: #FD7272;
}

table.table-line {
  color: #fff;
}
table.table-line th {
  background: #777;
}

.sec07-column {
  grid-template-columns: 57rem 1fr;
}

.swiper-container {
  margin: var(--s8) auto;
  position: relative;
}

.swiper {
  width: 100%;
}
.swiper-slide {
  width: 34rem;
  height: auto;
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-container .swiper-pagination-bullet {
  /*サイズを変更*/
  width: 12rem;
  height: 0.4rem;
  border-radius: 0;
  background-color: #ADADAD;
  /*ドットの間隔を変更*/
  margin: 0 !important;
}

.card-slider {
  height: 100%;
  padding: var(--s3);
  border-radius: var(--s2);
  background: #F2F2F2;
  position: relative;
}
.card-slider__title a {
  width: 100%;
  display: block;
  margin-bottom: var(--s3);
  padding-right: var(--s5);
  background: url(img/arrow-03-red-right.svg) no-repeat right center/3rem auto;
  font-size: 2.4rem;
  font-weight: 900;
  color: #CF0000;
  text-decoration: none;
}
.card-slider__title a:hover {
  opacity: 0.6;
}
.card-slider__title--left a {
  padding-left: var(--s4);
  text-align: left;
  background-position: right var(--s4) center;
}
.card-slider--step {
  transform: translateY(8rem);
}
.card-slider__en {
  width: 100%;
  height: fit-content;
  font-size: 3.8rem;
  font-weight: 900;
  color: #000000;
  position: absolute;
  left: -2rem;
  top: -13rem;
  transform: rotate(90deg);
  transform-origin: left bottom;
}

.box-host {
  max-width: 98rem;
  margin: 12rem auto 0;
  padding: var(--s5);
  padding-left: 23rem;
  border: dashed 1px #D6D6D6;
  border-radius: var(--s2);
  position: relative;
}
.box-host__logo {
  width: 15.5rem;
  height: 15.5rem;
  padding: 3.5rem;
  background: #F2F2F2;
  border-radius: 50%;
  position: absolute;
  left: var(--s5);
  top: var(--s5);
}
.box-host__title {
  margin-bottom: var(--s3);
  font-family: "Noto Serif JP";
  font-size: 2.8rem;
  font-weight: 700;
}
  .more tbody th{
    min-width:160px;
  }

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  body {
    font-size: 1.5rem;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: 1rem;
    padding-left: 1rem;
    box-sizing: border-box;
  }

  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack {
    gap: var(--s4);
  }
  .l-stack--wide {
    gap: var(--s6);
  }
  .l-stack--narrow {
    gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster {
    gap: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s3);
    grid-template-columns: 100%;
  }
  .l-grid--sptoo {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }

  .l-grid-three {
    grid-gap: var(--s3);
    grid-template-columns: 100%;
  }
  .l-grid-three--narrow {
    grid-gap: 0;
  }

  .l-grid-four {
    --minmum: calc((100% - var(--s2)) / 2);
    grid-gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout sidebar

  */
  .l-sidebar__side {
    display: none;
  }
  .l-sidebar__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }
  .l-column--sp-reverse {
    flex-direction: column-reverse;
  }

  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout float

  */
  .l-float__left-pc {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .l-float__right-pc {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .l-float__left {
    width: 45%;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }
  .l-float__right {
    width: 45%;
    margin-left: var(--s2);
    margin-bottom: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal,
.btn-web {
    width: 94%;
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    padding: 1.8rem 4rem;
    min-height: initial;
    background-size: 2.2rem auto;
    background-position: right 1.6rem center;
    font-size: 1.4rem;
  }
  .btn-internal:hover a,
.btn-web:hover a {
    transform: translate(0, 0);
  }
  .btn-internal--down a,
.btn-web--down a {
    background-size: 1.4rem auto;
  }

  .btn-web a:before {
    width: 3rem;
    height: 2.6rem;
    right: 1.2rem;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding: 0.5rem 3.2rem 0.5rem 0;
    background-position: right var(--s1) center;
    background-size: 1.8rem auto;
    line-height: 1.4;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  .btn-tel {
    width: 94%;
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 4.5rem;
    background: #69D9A1 url("img/icon-tel.png") no-repeat center left 1.5rem/2.4rem auto;
    border-radius: 5rem;
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  /*
  ---------------------------------------------

      sp table

  */
  .sp-table thead, .sp-table tbody, .sp-table tr {
    display: block;
  }
  .sp-table th, .sp-table td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #F5F8FD;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #F5F8FD;
    border-right: solid 1px #C7C7C7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

  .l-scroll-x table thead,
.l-scroll-x-sp table thead {
    display: table-header-group;
  }
  .l-scroll-x table tbody,
.l-scroll-x-sp table tbody {
    display: table-row-group;
  }
  .l-scroll-x table tr,
.l-scroll-x-sp table tr {
    display: table-row;
  }
  .l-scroll-x table th, .l-scroll-x table td,
.l-scroll-x-sp table th,
.l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }

  /*
  ---------------------------------------------

      sp caption

  */
  .caption {
    font-size: 0.9rem;
  }

  .caption-scroll {
    font-size: 0.9rem;
  }
  .caption-scroll::-webkit-scrollbar {
    height: 0.4rem;
  }
  .caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
  }
  .caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
  }

  /*
  ---------------------------------------------

  	catch

  */
  .catch-01 {
    font-size: 1.8rem;
  }

  .catch-02 {
    font-size: 1.8rem;
  }

  /*
  ---------------------------------------------

  	sp pankuzu

  */
  #pankuzu {
    width: 100%;
    margin-bottom: var(--s2);
  }

  /*
  ---------------------------------------------

      sp footer

  */
  .footer-area {
    padding: var(--s3) 0 0;
  }

  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }

  .footer-bottom {
    padding: var(--s1) 0 7rem;
  }

  .footer-area__logo {
    margin: var(--s1) auto var(--s3);
    width: 18rem;
  }
  .footer-area__logo__link:hover {
    opacity: 1;
  }

  .footer-box + .footer-box {
    margin-top: var(--s2);
  }

  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: url("img/arrow-04-black-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link:hover {
    opacity: 1;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-04-black-right.svg") no-repeat center/contain;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.8);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
	display:block;
  }
  .footer-menu__link:hover {
    opacity: 1;
  }

  .footer-menu-sub {
    margin-left: var(--s2);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }
  .footer-menu-sub__link:hover {
    opacity: 1;
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .footer-sitemap {
    display: none;
  }

  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
    right: 0;
    top: 0;
  }
  .gnavi-btn span {
    width: var(--s3);
    height: 0.2rem;
    left: 1.2rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.6rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.4rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.2rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.8rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s8) 0 var(--s3);
  }
  .gnavi-area-logo {
    width: 18rem;
    margin: 0 auto var(--s3) auto;
  }

  .gnavi-box__title {
    font-size: 1.5rem;
  }

  .gnavi-menu__link,
.gnavi-menu-sub__link {
    font-size: 1.4rem;
  }

  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    right: 0;
    bottom: var(--s7);
	border:#999;
  }
  .page-top__link:hover {
    opacity: 1;
  }

  /*
  ---------------------------------------------

      toc

  */
  .toc-wrap {
    margin: var(--s4) auto;
    border-width: 0.2rem;
  }
  .toc-wrap__title {
    padding: var(--s2) var(--s3);
    font-size: 1.8rem;
    background-size: 6rem auto;
  }
  .toc-wrap__title span.en {
    margin-left: var(--s2);
    font-size: 1.3rem;
  }
  .toc-wrap__main {
    border-width: 0.2rem;
    padding: var(--s2) var(--s2) var(--s3);
  }
  .toc-wrap__main:before {
    width: calc(100% - var(--s4));
    left: var(--s2);
  }
  .toc-wrap ul li {
    font-size: 1.5rem;
  }
  .toc-wrap .relations-links li {
    width: 100%;
    padding-left: 3.2rem;
  }
  .toc-wrap .relations-links li a:before {
    width: 2rem;
  }

  .toc-wrap__main.toc-top li {
    width: 100%;
  }

  /*
  ---------------------------------------------

       sp toggle sp

  */
  .toggle-sp-content {
    display: none;
  }

  .toggle-btn::before {
    content: "";
    width: 2.1rem;
  }
  .toggle-btn::after {
    content: "";
    height: 2.1rem;
    right: 4.2rem;
  }

  /*
  ---------------------------------------------

      more

  */
  .more-btn {
    width: 92%;
    margin: var(--s6) auto;
    padding: 2rem 4.6rem;
  }
  .more-btn:hover {
    opacity: 1;
  }

  /*
  ---------------------------------------------

      グラデーション  more-content

  */
  .more {
    margin-bottom: var(--s2);
  }
  .more tbody th{
    min-width:120px;
  }
  .more__content.sp-only {
    overflow: hidden;
    max-height: 12rem;
  }

  .more__content.sp-only:after {
    content: "";
  }

  .more__btn.for-sp {
    display: block;
  }

  /*
  ---------------------------------------------

      modal

  */
  .modal-btn {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2.8rem;
    padding-left: 1rem;
    background-position: right var(--s1) center;
    background-size: 1.8rem auto;
    font-size: 1.25rem;
  }

  /*
  ---------------------------------------------

      titles

  */
  .pr-text {
    margin-bottom: var(--s3);
    font-size: 1.2rem;
  }

  .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h2 a, .main-area--low h3 a, .main-area--low h4 a, .main-area--low h5 a, .main-area--low h6 a {
    padding-right: var(--s3);
  }
  .main-area--low h1 {
    margin-bottom: var(--s1);
    min-height: initial;
    border-bottom-right-radius: var(--s4);
    font-size: 2.6rem;
    text-align: left;
  }
  .main-area--low h1:before {
    top: -1rem;
    font-size: 3.2rem;
  }
  .main-area--low h2 {
    padding: var(--s1) 0 var(--s1) var(--s3);
    font-size: 2.2rem;
  }
  .main-area--low h2 a {
    background-size: 1.2rem auto;
  }
  .main-area--low h3 {
    font-size: 1.9rem;
    background: linear-gradient(transparent 0%, rgba(67, 121, 169, 0.1) 50%);
  }
  .main-area--low h3 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h3.icon-title {
    padding-left: 9rem;
  }
  .main-area--low h3.icon-title .icon-title__tag {
    width: 8rem;
    height: 8rem;
    font-size: 1.4rem;
  }
  .main-area--low h3.icon-title .icon-title__tag span.st {
    font-size: 2rem;
  }
  .main-area--low h3.icon-title span.small {
    font-size: 1.5rem;
  }
  .main-area--low h4 {
    padding-left: var(--s1);
    border-width: 0.6rem;
    font-size: 1.8rem;
  }
  .main-area--low h4 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h5 {
    font-size: 1.6rem;
  }
  .main-area--low h5 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp Header

  */
  .header-area {
    min-height: 4.8rem;
    padding-right: 7.2rem;
    position: static;
    gap: 0;
  }
  .header-area__name img {
    display: none;
  }
  .header-area__left {
    flex: 1;
	margin-top:0.6rem;
  }
  .header-area .btn-web {
    width: auto;
  }
  .header-area .btn-web a {
    width: 60%;
    height: 5rem;
    padding: var(--s1) var(--s2);
    border-radius: 0;
    position: fixed;
    justify-content: flex-start;
    font-size: 1.2rem;
    text-align: left;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 9;
  }
  .header-area .btn-web a:before {
    width: 2.4rem;
    height: 2.8rem;
    right: var(--s1);
  }

  .mainvisual-top {
    margin-bottom: var(--s4);
    padding-top: var(--s3);
    background-image: url(img/mv-bg-sp.jpg);
    background-size: auto 100%;
  }
  .mainvisual-top .btn-internal {
    margin-bottom: -2rem;
  }
  .mainvisual-logo {
    margin-bottom: var(--s2);
    width: 16rem;
  }
  .mainvisual-title {
    margin-bottom: var(--s2);
    padding-right: var(--s-2);
    padding-left: var(--s-2);
    font-size: 1.9rem;
  }
  .mainvisual-title span.st {
    font-size: 2.4rem;
  }
  .mainvisual-lead {
    padding: 0 var(--s2) 10rem;
  }
  .mainvisual-lower {
    margin-top: 0;
    padding: 3rem 0 var(--s4);
    background: url(img/mv-bg-low-sp.png) no-repeat center bottom/100% auto;
  }
  .mainvisual-lower__logo {
    padding-bottom: var(--s2);
	max-width:50%;
	padding-top: var(--s1);
  }

  .main-area--low {
    margin-top: -3.4rem;
    padding-top: 0;
  }

  .parts-comment__catch {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }

  .parts-comment-wrap {
    gap: var(--s2);
	display:block;
  }
  .parts-comment-wrap__side {
    width: 100%;
	margin:0 auto 1rem;
  }
  .parts-comment-wrap__side p {
    margin-top: var(--s-2);
    line-height: 1.5;
  }

  .card-comment {
    padding: var(--s3);
  }

  .interview-box__q::before {
    width: var(--s7);
    height: var(--s7);
    font-size: 3.2rem;
  }

  .interview-box__q {
    min-height: var(--s7);
    margin-bottom: var(--s2);
    padding-left: var(--s8);
    font-size: 2rem;
  }

  .interview-box__catch {
    padding: var(--s1) var(--s2);
    font-size: 1.8rem;
  }

  .title-en {
    margin-bottom: var(--s2);
    font-size: 1.3rem;
  }
  .title-en:before {
    width: 2rem;
    height: 2rem;
  }

  .common-title {
    font-size: 2.1rem;
  }
  .common-title span.st,
.common-title span.st2 {
    font-size: 2.5rem;
  }
  .common-title span.st--nar,
.common-title span.st2--nar {
    letter-spacing: -0.2rem;
  }
  .common-title span.sm {
    font-size: 1.9rem;
  }
  .common-title--vertical {
    font-family: "Noto Serif JP";
    writing-mode: initial;
  }
  .common-title span.bg-bk {
    padding-right: var(--s1);
    padding-left: var(--s1);
  }
  .common-title span.st--red {
    padding: 0.2rem var(--s-2);
  }

  h2.common-title--vertical {
    font-family: "Noto Serif JP";
	text-align:center;
  }

  .common-title--vertical span.bg-bk--link {
    padding-right: var(--s6);
    padding-bottom: var(--s1);
    background-position: right var(--s2) top 55%;
    background-size: 2rem auto;
  }

  .common-title--vertical span.bg-bk {
    padding-top: var(--s1);
    padding-bottom: var(--s1);
  }

  .lower-summary {
    padding: var(--s2);
	margin:4rem auto;
  }
  .lower-summary:before {
    top: -5.2rem;
    font-size: 4rem;
  }

  .lower-common .box-comment {
    margin-bottom: 0;
  }

  section {
    padding: var(--s6) 0;
  }

  .sec-illust {
    padding: 1.5rem 0;
  }
  .sec-illust:before {
    border-radius: var(--s1) var(--s1) var(--s1) 6rem;
  }

  .sec01-lead {
    margin-top: 0;
    padding-bottom: var(--s1);
    font-size: 1.9rem;
    background-position: left bottom;
  }

  .list-check li {
    font-size: 1.6rem;
  }
  .list-check li:before {
    width: 2.3rem;
    height: 2.1rem;
    top: 0;
  }

  .sec01-summary {
    margin: var(--s6) auto;
    padding: var(--s2);
  }

  .bg-round:before {
    border-radius: var(--s6) var(--s6) 0 0;
  }
  .loops {
    top: -8rem;
  }

  .loops-item {
    height: 9rem;
    animation: loop01 150s linear infinite;
  }

  .sec-illust--02 img {
    width: 100%;
	padding:0 0 0 0.5rem;
  }

  .common-lead--small {
    padding-left: 0;
  }

  .pic-sec02 {
    width: 100%;
    margin: 0 auto;
    height: auto;
    border-radius: var(--s1) var(--s1) var(--s8) var(--s1);
  }

  .inner-title {
    font-size: 1.9rem;
  }
  .inner-title span.st {
    font-size: 2.4rem;
  }

  .card-exam {
    padding: var(--s2) 0;
  }
  .card-exam__no {
    width: 5.6rem;
    height: 5.6rem;
    min-width: 5.6rem;
    min-height: 5.6rem;
    font-size: 1.2rem;
  }
  .card-exam__no span.st {
    font-size: 2rem;
  }
  .card-exam__catch {
    font-size: 1.7rem;
	margin-top:0.25rem;
  }
  .card-exam__company {
    font-size: 1.5rem;
  }

  .arrow-summary {
    padding-top: var(--s2);
    width: 11rem;
    font-size: 1.7rem;
  }

  .swiper-slide {
    width: 80%;
  }

  .swiper-container .swiper-pagination-bullet {
    width: 8%;
  }

  .arrow-summary {
    margin-top: var(--s4);
    margin-bottom: var(--s8);
  }
  .l-stack--wide .arrow-summary {
    margin-top: 0;
    margin-bottom: 0;
  }
  .box-summary {
    margin-top: var(--s8);
    padding: var(--s4) 0 var(--s2) var(--s2);
  }
  .box-summary:before {
    left: 0;
  }
  .box-summary:after {
    top: -6.5rem;
    font-size: 5rem;
  }
  .box-summary__pic {
    margin-bottom: var(--s2);
    position: static;
    width: 100%;
    height: auto;
  }
  .box-summary__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .box-summary__title span.st {
    font-size: 2.4rem;
  }
  .box-summary .btn-internal,
.box-summary .btn-web {
    margin-right: auto;
    margin-left: auto;
  }
  .box-summary__pic02 {
    width: 12rem;
    right: calc(100% - 10rem);
    top: -6rem;
    border-radius: 0;
  }
  .box-summary__pic02 img {
    margin-bottom: var(--s1);
    display: block;
    border-radius: 100%;
    width: 95px;
    height: 95px;
    object-fit: cover;
  }
  .box-summary--sv {
    padding-top: var(--s5);
  }
  .box-summary--reverse:after {
    left: 0;
  }

  .box-sponsored {
    padding: var(--s2);
    padding-bottom: var(--s5);
  }
  .box-sponsored:before {
    width: 100%;
    left: 0;
    border-bottom-right-radius: var(--s8);
  }
  .box-sponsored__tag {
    font-size: 1.9rem;
  }
  .box-sponsored__tag span.sm {
    margin-left: var(--s2);
    font-size: 1.4rem;
  }
  .box-sponsored__inner {
    padding: var(--s2);
  }
  .box-sponsored__subtitle {
    margin-bottom: var(--s2);
    font-size: 1.9rem;
  }

  .common-subtitle {
    margin: var(--s6) auto var(--s2);
    font-size: 1.9rem;
  }

  .box-comment {
    padding: var(--s8) var(--s2) var(--s3) var(--s2);
  }
  .box-comment:before {
    font-size: 4.4rem;
    right: var(--s2);
    top: var(--s-2);
  }
  .box-comment__pic {
    width: 10rem;
    right: calc(100% - 11rem);
  }
  .box-comment__pic img {
    border-radius: 100%;
	width:100px;
	height:100px;
  }
  .box-comment__pic p {
    position: absolute;
    left: 11.5rem;
    top: var(--s-2);
    width: 60vw;
    font-size: 1.3rem;
    line-height: 1.4;
	text-align: left;
    background: none;
    padding: 0;
  }
  .box-comment__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
.box-comment__title span{
  font-size: 1.6rem;
}
  .box-comment__btn {
    display: block;
  }

  .lower-common .box-comment__btns {
    display: block;
  }
  .lower-common .box-comment__btns .btn-web {
    margin: var(--s2) auto;
  }

  .box-case__tag {
    font-size: 1.6rem;
  }
  .box-case__catch {
    font-size: 2rem;
  }
  .box-case__company {
    padding: var(--s1) 0 var(--s1) var(--s1);
    font-size: 1.6rem;
  }
  .box-case__company:before {
    width: 3rem;
    height: 3rem;
  }
  .box-case .toggle-btn {
    padding-right: var(--s4);
  }
  .box-case .toggle-btn:before {
    right: 0;
  }
  .box-case .toggle-btn:after {
    right: 1rem;
  }
  .box-case__line .toggle-btn::before {
    right: 0;
  }
  .box-case__line .toggle-btn::after {
    right: 1rem;
  }

  .card-qa {
    border-bottom-right-radius: var(--s8);
  }
  .card-qa__q {
    font-size: 1.8rem;
  }
  .card-qa__a {
    font-size: 1.7rem;
  }

  .card-qa:nth-child(1),
.card-qa:nth-child(3) {
    transform: none;
  }

  .box-case__title {
    font-size: 2rem;
  }
  .box-case__line {
    padding-top: var(--s3);
    padding-bottom: 0;
    border-bottom: none;
    border-top: dashed 1px #C1C1C1;
  }
  .box-case__line:last-child {
    border-top: dashed 1px #C1C1C1;
  }

  .box-school {
    padding: var(--s2) var(--s2) var(--s3);
  }
  .box-school__pic {
    margin-bottom: var(--s2);
    position: static;
    width: 75%;
    height: auto;
    margin-left: auto;
	margin-right: auto;
  }
  .box-school__title {
    margin-bottom: var(--s2);
    padding: var(--s1) var(--s2);
    font-size: 2rem;
  }

  .card-inner {
    padding:2rem 0 0 0;
  }
  .card-inner:before {
    width: 100%;
    height: 1px;
    border-top: dashed 1px #fff;
    position: absolute;
    left: 0;
    top: 0;
  }
  .card-inner:last-child:before {
    content: "";
    width: 100%;
    height: 1px;
    border-top: dashed 1px #fff;
    position: absolute;
    left: 0;
    top: 0;
  }

  .swiper-container {
    margin-top: var(--s5);
  }

  .box-host {
    margin-top: var(--s8);
    padding: var(--s2);
    width: 90%;
  }
  .box-host__logo {
    position: static;
    width: 12rem;
    height: 12rem;
    margin: var(--s2) auto;
  }
  .box-host__title {
    font-size: 2rem;
    text-align: center;
  }

  .footer-tel {
    display: block;
    width: 40%;
    height: 5rem;
    padding: var(--s1) var(--s2);
    border-radius: 0;
    position: fixed;
    background: #69D9A1 url("img/icon-tel.png") no-repeat center right 1.2rem/1.8rem auto;
    justify-content: flex-start;
    font-size: 1.2rem;
    text-align: left;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 9;
    text-decoration: none;
    font-weight: bold;
  }
.sec01-summary .arrow-summary{
    margin-top: -4rem;
  }
.parts-comment-wrap__side img{
	border-radius: 100%;
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
.bg-blue .l-grid-three {
  margin-top:3rem;
  }
.parts-comment--lower {
  margin: var(--s3) auto var(--s6);
  }
.main-area--low tbody th {
  width:auto;
  }
table.table-line th {
  min-width: 100px;
  }
}
