@charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-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: 1000px) {
  :root {
    font-size: 1vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #313131;
}

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.4rem;
  font-family: "Noto Sans JP";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

a:active,
a:hover {
  color: #313131;
  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;
  }


	.card-photo:hover {
  color: #313131 !important;
  text-shadow: none  !important;
}
.card-photo:hover:before {
  opacity: 1  !important;
}
.card-photo:hover .card-photo__title {
  color: #fff  !important;
}
	.card-column__title a:hover {
  opacity: 1  !important;
}
	
}
/*
---------------------------------------------

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes kiran {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0.5;
  }
  81% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    background-position: 100% 50%;
    opacity: 0;
  }
  30% {
    background-position: 100% 50%;
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0;
  }
}
@keyframes firstAnime {
  0% {
    transform: scale(0, 1);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 100);
  }
}
/*  inView */
.slideLeft {
  opacity: 0;
  transform: translate(-3rem, 0);
  transition: all 0.8s ease;
}

.slideLeft.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.slideRight {
  opacity: 0;
  transform: translate(3rem, 0);
  transition: all 0.8s ease;
}

.slideRight.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInUp {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: transform 0.5s ease, opacity 0.5s ease, background 0.3s ease;
}

.fadeInUp.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInDown {
  opacity: 0;
  transform: translate(0, -2rem);
  transition: all 0.5s ease;
}

.fadeInDown.animated {
  opacity: 1;
  transform: translate(0, 0);
}
.animate-on-scroll {
    opacity: 0;
    margin-left: -20px; /* 左から少しずらす */
    transition: opacity 0.8s ease, margin-left 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    margin-left: 0; /* 元の位置に戻す */
}

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

    layout center

*/
.l-center {
  max-width: 100rem;
  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(--s1);
}

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

    layout grid

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

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

.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: 35rem;
}
.l-column__side02 {
  width: 45rem;
}
.l-column__side03 {
  width: 56rem;
}
.l-column__side04 {
  width: 30rem;
}
.l-column__side05 {
  width: 50rem;
}
.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;
}
.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);
}
.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;
}

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

    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,
.main-area ul:not([class]) {
  margin: var(--s8) auto;
}
.main-area ul:not([class]) {
  margin: var(--s4) auto;
}
.main-area .subList li,
.main-area 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 {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #094AAC;
  border: solid 0.3rem #9CAFCB;
  border-radius: 10rem;
  position: absolute;
  top: 0.3em;
  left: 0;
  box-sizing: border-box;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.8em;
}

.main-area ol:not([class]) {
  counter-reset: number;
}
.main-area 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 {
  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 {
  margin-top: 1em;
}

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

    btn

*/
.btn-internal {
  width: 38rem;
  margin: var(--s6) auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 4.2rem;
  background: #fff;
  border: solid 1px #094AAC;
  box-shadow: 0.6rem 0.6rem 1.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #094AAC;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-internal a:before {
  content: "";
  width: var(--s5);
  height: 0.2rem;
  background: #094AAC;
  position: absolute;
  left: -2.4rem;
  top: 50%;
  transition: transform 0.3s;
}
.btn-internal:hover a {
  background-color: #094AAC;
  color: #fff;
}
.btn-internal:hover a:before {
  transform: translateX(2.4rem);
  background: #fff;
}
.btn-internal--sm {
  width: fit-content;
}
.btn-internal--sm a {
      min-height: initial;
    padding: 1rem var(--s5);
    border: solid 0.2rem #094AAC;
    line-height: 1.2;
    font-size: 1.4rem;
}
.btn-internal--sm a:before {
  width: 2.8rem;
  height: 0.2rem;
  background: #094AAC;
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transition: transform 0.3s;
}
.btn-internal--sm:hover a:before {
  transform: translateX(1.4rem);
}

.btn-web {
  width: 38rem;
  margin: var(--s6) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 4.2rem;
  background: #FFFF00;
  box-shadow: 0.6rem 0.6rem 1.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #313131;
  font-size: 1.6rem;
  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: var(--s5);
  height: 0.2rem;
  background: #313131;
  position: absolute;
  left: -2.4rem;
  top: 50%;
  transition: transform 0.3s;
}
.btn-web:hover a {
  background-color: #313131;
  color: #fff;
}
.btn-web:hover a:before {
  transform: translateX(2.4rem);
  background: #fff;
}

.btn-link {
  margin: var(--s2) 0 var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0 var(--s3) 0 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/1.5rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.btn-link--white a {
  color: #fff;
  background-image: url(img/arrow-01-white-right.svg);
}

.btn-tel {
  display: none;
}

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

    table

*/
table {
  margin: var(--s8) auto;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}

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: #F6F6F7;
}

tbody th {
  background: #F6F6F7;
}

.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: 1.8rem;
  font-weight: 700;
  color: #094AAC;
  line-height: 1.5;
}

.catch-02 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}

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

	text

*/
.marker {
  background: linear-gradient(to bottom, transparent 70%, #FFFF00 70%);
  font-weight: 700;
}

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

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

	subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  grid-gap: var(--s4);
}

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

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

    float wrap

*/
.float-wrap {
  margin: var(--s8) auto;
  display: flow-root;
}
.float-wrap .float-img.fr {
  width: 38rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 38rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 50rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

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

	pankuzu

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

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

    footer

*/
.footer-area {
  padding: var(--s10) 0 0;
  background: #313131;
}

.footer-column {
  max-width: 100rem;
  margin: 0 auto;
  padding-bottom: var(--s3);
  display: flex;
}
.footer-column__side {
  width: 25%;
}
.footer-column--upper {
  margin-bottom: var(--s6);
  padding: var(--s5) 0;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 400;
}
.footer-column .upper-title {
  font-size: 2rem;
  font-weight: 700;
}

.footer-main {
  flex: 1;
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 8rem;
  box-sizing: content-box;
}

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

.footer-logo {
 max-width: 27.8rem;
    margin: var(--s1) 0 var(--s3);
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}
.footer-logo__link:hover {
  opacity: 0.6;
}

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

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
  color: #fff;
}
.footer-menu-title__link:hover {
  opacity: 0.6;
  color: #fff;
}

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

.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;
  color: #fff;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}
.footer-menu-sub__link:hover {
  opacity: 0.6;
  color: #fff;
}

.footer-disclaimer {
  max-width: 70rem;
  margin: var(--s3) auto;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s3) 0;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

.footer-copyright {
  font-size: 1.2rem;
}
.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;
}

.footer-banner {
  width: 8rem;
  height: 25rem;
  display: block;
  background: #FFFF00;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Sans JP vertical";
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  bottom: 11rem;
  z-index: 5;
  opacity: 0;
  transition: all 0.4s;
  text-decoration: none;
}
.footer-banner:before {
  content: "";
  width: 8rem;
  height: 4rem;
  background: url(img/txt-sponsored-by.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: -2rem;
}
.footer-banner:hover {
  background-color: #000;
  color: #fff;
}
.footer-banner.is-show {
  opacity: 1;
  visibility: visible;
}
.footer-banner.for-sp {
  display: none;
}

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

    page

*/
.page-top {
  width: 7rem;
  height: 7rem;
  position: fixed;
  right: 0;
  bottom: var(--s3);
  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: #313131;
  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: 100%;
  height: 100vh;
  padding: 14rem var(--s3) 5rem 0;
  background: linear-gradient(to right, #EFF2F6 30rem, #fff 30rem);
  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-area:before {
  content: "";
  width: 26rem;
  height: calc(100vh - 28rem);
  background: url(img/bg-pattern02.png) repeat left top/20rem auto;
  position: absolute;
  left: 2rem;
  bottom: 0;
}

.gnavi-column {
  padding-left: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.gnavi-column__item {
  width: calc((100% - var(--s4)) / 2);
}
.gnavi-column__item:first-child {
  width: 100%;
}
.gnavi-column__item img {
  height: 6.4rem;
  width: auto;
}
.gnavi-column__item span {
  display: block;
  padding-left: 3.6rem;
}
.gnavi-column__item a {
  text-decoration: none;
}
.gnavi-column__item a:hover {
  opacity: 0.6;
}

.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 Parts

*/
.toc-wrap {
  max-width: 90rem;
	margin: var(--s8) auto 10rem;
  border-bottom: solid 1px #313131;
  position: relative;
}
.main-area .toc-wrap ul:not([class]){
        margin:0 auto;
}

.toc-wrap--top {
  margin-top: 0;
}
.toc-wrap ul {
  margin-top: 0;
  margin-bottom: 0;
  counter-reset: number;
}
.toc-wrap ul li + li {
  margin-top: 1.2em;
}
.toc-wrap ul li.chapter-h-two {
  counter-increment: number;
  padding: 0 0 0 2em;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.toc-wrap ul li.chapter-h-two::before {
  content: counter(number, decimal-leading-zero);
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  color: #BFF047;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.toc-wrap ul li.chapter-h-two a {
  background: none;
}
.toc-wrap ul li.chapter-h-three {
  margin: 0.8rem 0 0.4rem 4.5rem;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.toc-wrap ul li.chapter-h-three:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url(img/list_icon_l.png) no-repeat center/contain;
  border: none;
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 0.3em;
  transform: initial;
}
.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 .more__btn {
  margin-bottom: -2rem;
}

.toc-ttl {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
  z-index: 0;
}
.toc-ttl:before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #313131;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.toc-ttl span {
  padding: var(--s1) var(--s3) var(--s1) 15rem;
  display: inline-block;
  background: url(img/txt-contents.png) no-repeat center left/12rem auto, #fff;
}
.toc-ttl--relations span {
  padding-left: 9rem;
  background-image: url(img/txt-links.png);
  background-size: 7rem auto;
}

.toc-body {
  padding: 0 var(--s3);
}
.toc-body--relations {
  padding: 0 0 var(--s4) var(--s3);
}
.toc-body--top {
  padding-bottom: var(--s5);
  padding-right: var(--s3);
}

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  position: relative;
  transition: opacity 0.3s;
}
.toggle-btn::before {
  content: "";
  width: 2.3rem;
  height: 0.2rem;
  background: #313131;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: 2.3rem;
  background: #313131;
  position: absolute;
  top: 50%;
  right: 1.1rem;
  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;
  padding-top: var(--s3);
}

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

    more

*/
.more-btn {
  max-width: 24rem;
  margin: var(--s10) auto;
  padding: var(--s2) var(--s7);
  background: #fff;
  border: 1px solid #313131;
  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: #313131;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: #313131;
  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: 15rem;
  overflow: hidden;
  transition: max-height 1s;
  padding-bottom: var(--s4);
}

.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: 0 auto;
  padding: var(--s1) var(--s4);
  border: solid 1px #313131;
  background: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  position: relative;
}

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

.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.3rem;
  background: #313131;
  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;
}

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

    tab

*/
.tab-btn {
  padding: 2rem var(--s1) 3rem;
  background: #313131;
  flex: 1;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
}
.tab-btn span.sm {
  font-size: 1.8rem;
}
.tab-btn span.st {
  margin-right: var(--s1);
  padding: 0 var(--s1);
  font-size: 3rem;
  background: #BFF047;
  color: #313131;
}
.tab-btn.is-active {
  margin-bottom: -3rem;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  color: #fff;
}
.tab-btn.is-active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.9rem 1.6rem 0 1.6rem;
  border-color: #313131 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: calc(100% + 0.2rem);
  transform: translateX(-50%);
}
.tab-btn:nth-of-type(2) {
  outline: solid 1px #313131;
  outline-offset: -1px;
  background: #fff;
  color: #313131;
  box-sizing: border-box;
}
.tab-btn:nth-of-type(2) span.st {
  background: #313131;
  color: #fff;
}

.tab-btn-wrapper {
  margin-bottom: -1px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s2);
  position: relative;
}
.tab-btn-wrapper--bottom {
  margin-bottom: 0;
  margin-top: -1px;
  align-items: flex-end;
}
.tab-btn-wrapper--bottom .tab-btn {
  margin-top: 0;
  margin-bottom: var(--s5);
  background-position: left var(--s1) bottom var(--s-2);
}
.tab-btn-wrapper--bottom .tab-btn:before {
  top: 8.2rem;
  bottom: auto;
}
.tab-btn-wrapper--bottom .tab-btn.is-active {
  margin-top: -3rem;
}
.tab-btn-wrapper--bottom .tab-btn.is-active:after {
  transform: translateX(-50%) rotate(180deg);
  top: auto;
  bottom: calc(100% + 0.2rem);
}
.tab-content {
  padding: 10rem 0;
  border-top: 0.3rem solid #313131;
  border-bottom: 0.3rem solid #313131;
  display: none;
  opacity: 0;
  background: #fff;
  position: relative;
  z-index: 0;
}
.tab-content:before {
  content: "";
  width: 100cqw;
  height: 100%;
  background: #fff;
  border-top: solid 0.3rem #313131;
  border-bottom: solid 0.3rem #313131;
  position: absolute;
  left: 50%;
  top: calc(0.3rem * -1);
  transform: translateX(-50%);
  z-index: -1;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

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

    modal

*/
.remodal-overlay {
  background: rgba(226, 230, 236, 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 #BFF047;
  background: #fff url(img/icon-modal.png) no-repeat right var(--s2) center/2rem auto;
  font-weight: 700;
}
.modal-btn:hover {
  opacity: 0.7;
}

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

    titles

*/
.pr-text {
  margin-bottom: var(--s5);
  font-size: 1rem;
	    color: #959595;
}

.main-area h1, .main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
  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(--s2) 0;
  font-size: 5.4rem;
  letter-spacing: 0.2rem;
  position: relative;
}
.main-area--low h1:before {
  content: "";
  width: fit-content;
  font-size: 10rem;
  font-weight: 400;
  color: #fff;
  position: absolute;
  right: var(--s2);
  top: -3.5rem;
  opacity: 0.15;
}
.main-area--low h2 {
  padding: 0.5rem var(--s4) 0.8rem var(--s4);
  font-size: 3.6rem;
  color: #fff;
	    margin: var(--s7) auto var(--s3);
    font-weight: 700;
  background: #313131;
  letter-spacing: 0.2rem;
  position: relative;
}
.main-area--low h2:before {
      content: "";
    width: 2rem;
    height: 2rem;
    background: linear-gradient(-45deg, transparent 50.5%, #BFF047 50%);
    position: absolute;
    left: 0;
    top: 0;
}
.main-area--low h2 a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 1.6rem auto;
  color: #fff;
}
.main-area--low h3 {
  padding: 0 0 0.4rem var(--s2);
  border-bottom: solid 1px #313131;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}
.main-area--low h3 a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right var(--s2) center;
  background-size: 1.6rem auto;
}
.main-area--low h4, .main-area--low h5 {
  padding: 0.2rem 0 0.2rem var(--s2);
  border-left: solid 0.4rem #BFF047;
  font-size: 2rem;
}
.main-area--low h4 a, .main-area--low h5 a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 1.6rem auto;
}

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

    TOP

*/
.header-area {
  width: 100%;
  padding: var(--s1) 10rem 0 0;
  text-align: right;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area__name {
  font-size: 1.1rem;
  color: #fff;
}
.header-area a {
  text-decoration: none;
}
.header-area a:hover {
  opacity: 0.6;
}
.header-area__logo {
  width:25.7rem;
  padding: 2rem var(--s3);
  background: #313131;
}
.header-area .sponsered {
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
}
.header-area--low {
  padding: 0 10rem 0 0;
  position: static;
  display: flex;
  justify-content: space-between;
  min-height: 14rem;
  position: relative;
}
.header-area--low:before {
  content: "";
 width: calc(100vw - 30.7rem - 22%);
  height: 100%;
  background: #EFF2F6 url(img/bg-pattern.png) repeat left top/27rem auto;
  position: absolute;
      left:25.7rem;
  top: 0;
  z-index: -1;
}

.header-area--low .header-area__name,
.header-area--low .sponsered {
  color: #313131;
}

.mainvisual-top {
  padding: 20rem 0 10rem;
  background: url(img/mv-pic.jpg) no-repeat center bottom/cover;
  position: relative;
  z-index: 0;
}


.mainvisual-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.mainvisual-text {
  width: 90rem;
  max-width: 100%;
  margin: 0 auto var(--s4);
}
.mainvisual-title {
  width: fit-content;
  margin: 0 auto var(--s4);
  padding: 0 var(--s2);
  font-size: 5.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.mainvisual-title span.st {
  font-size: 5rem;
  color: #EEF5FE;
}
.mainvisual-lead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.mainvisual-first {
  width: 100%;
  height: 100%;
  background: #BFF047;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transition: opacity 0.6s ease 0.6s;
}
.mainvisual-top.animated .mainvisual-first {
  opacity: 0;
}
.mainvisual-first::before {
  content: "";
  width: 100%;
  height: 0;
 background:#3131318f;
	position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translate(0, -50%);
  transition: height 0.6s ease 0.6s;
}
.mainvisual-top.animated .mainvisual-first::before {
  height: 100vh;
}
.mainvisual-first__text {
  width: 100%;
  background: #313131;
  color: #fff;
  font-size: 5.4rem;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform 0.6s ease, opacity 0.6s ease 0.6s;
	padding: 2rem 0 2.6rem;
}
.mainvisual-top.animated .mainvisual-first__text {
  opacity: 0;
  transform: translate(0, 0);
}
.mainvisual-first__text__line {
  display: block;
  transform: translate(100%, 0);
  transition: transform 0.6s ease;
}
.mainvisual-top.animated .mainvisual-first__text__line {
  transform: translate(0, 0);
}

.sponsored-p {
  margin-top: 8rem;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}

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

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

    lower Parts

*/
.sec01 {
  padding-top:14rem;
}

.box-sv {
  margin: var(--s10) 0;
  padding: var(--s7) var(--s5) var(--s3);
  background: #EFF2F6;
}
.box-sv__tag {
  width: 18.3rem;
  margin: -7.5rem 0 var(--s2) -4rem;
}
.box-sv__catch {
  margin-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 700;
  color: #094AAC;
}
.box-sv__name {
  font-size: 1.8rem;
  font-weight: 700;
}

.box-day {
  margin: 10rem auto;
  border: solid 1px #313131;
  position: relative;
}
.box-day__title {
  padding: 6rem var(--s10) 2.2rem var(--s4);
  background: #313131 url(img/txt-time.png) no-repeat var(--s3) var(--s2)/24rem auto;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  position: relative;
}
.box-day__title span {
  display: block;
  font-size: 1.8rem;
}
.box-day__pic {
  width: 22.4rem;
  height: 16rem;
  position: absolute;
  right: -1px;
  top: -3rem;
}
.box-day__wrap {
  margin-left: 9rem;
  padding: var(--s2) var(--s9) var(--s3) 0;
  position: relative;
}
.box-day__wrap:before {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: #094AAC;
  position: absolute;
  left: -3rem;
  top: 0;
}
.box-day__time {
  display: flex;
  padding: 2rem 0;
  gap: var(--s5);
  font-weight: 700;
  font-size: 1.8rem;
  color: #313131;
  position: relative;
}
.box-day__time:before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: #094AAC;
  border: solid 0.5rem #9CAFCB;
  border-radius: 50%;
  position: absolute;
  left: -4rem;
  top: 2.2rem;
  box-sizing: border-box;
}
.box-day__time__catch {
  display: block;
  margin-bottom: var(--s1);
  font-size: 1.8rem;
  font-weight: 700;
  color: #313131;
}
.box-day__time div:nth-of-type(1) {
  width: 3.5rem;
}
.box-day__time div:nth-of-type(2) {
  min-width: 10rem;
}
.box-day__time div:nth-of-type(3) {
  flex: 1;
  font-weight: 400;
  color: #313131;
}

.post-wrap {
  margin: 10rem 0;
}

.card-post {
  margin-top: 8rem;
  display: block;
  background: #EFF2F6;
  text-decoration: none;
  position: relative;
}
.card-post:hover {
  opacity: 0.6;
}
.card-post__title {
  padding: var(--s-2) var(--s2);
  background: #313131;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.card-post__title span.cl {
  color: #BFF047;
}
.card-post__body {
  display: flex;
}
.card-post__pic {
  width: 21rem;
  overflow: hidden;
}
.card-post__pic img {
  object-fit: cover;
}
.card-post__catch {
  flex: 1;
  padding: var(--s2) var(--s3);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.card-post__catch__link {
  margin-top: var(--s2);
  padding-right: var(--s3);
  background: url(img/arrow-01-blue-right.svg) no-repeat right center/1.5rem auto;
  text-align: right;
  font-weight: 400;
}
.card-post:nth-of-type(1):before {
  content: "";
  width: 100%;
  height: 7.6rem;
  background: url(img/txt-dual.png) no-repeat center left/contain;
  position: absolute;
  left: 0;
  top: -6rem;
}
.card-post:nth-of-type(2):before {
  content: "";
  width: 100%;
  height: 7.6rem;
  background: url(img/txt-second.png) no-repeat center left/contain;
  position: absolute;
  left: 0;
  top: -6rem;
}

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

    TOP common

*/
section {
  padding: 12rem 0;
}
section.no-padding {
  padding: 0;
}

.common-title {
  margin-bottom: var(--s6);
  padding: 6rem 0 var(--s5) 0;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}
.common-title:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #EFF2F6;
  position: absolute;
  left: var(--s10);
  bottom: 0;
  z-index: -1;
}
.common-title span.bg-bk {
  padding: 0 var(--s1);
  background: #313131;
  border: solid 1px #313131;
  color: #fff;
  font-size: 2.6rem;
}
.common-title span.bg-wt {
  padding: 0 var(--s1);
  background: #fff;
  border: solid 1px #313131;
  font-size: 2.6rem;
}
.common-title span.sm {
  margin-left: var(--s1);
  font-size: 2.6rem;
}
.common-title span.cl {
  color: #EEF5FE;
}
.common-title a {
  padding-right: var(--s5);
  background: url(img/arrow-01-black-right.svg) no-repeat right bottom 0.6em/2rem auto;
  text-decoration: none;
}
.common-title a:hover {
  opacity: 0.7;
}
.common-title--01:after {
  content: "";
  width: 60.6rem;
  height: 20.4rem;
  background: url(img/txt-column.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -10rem;
}
.common-title--02 {
  text-align: right;
}
.common-title--02:after {
  content: "";
  width: 83.6rem;
  height: 20.4rem;
  background: url(img/txt-find.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: -10rem;
}
.common-title--02:before {
  left: auto;
  right: var(--s10);
}

.common-subtitle {
  margin-top: 14rem;
  margin-bottom: var(--s5);
  padding-top: 7.2rem;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 0;
}
.common-subtitle span.bg-bk {
  margin-right: var(--s1);
  display: inline-block;
  padding: 0 var(--s2);
  background: #313131;
  color: #fff;
}
.common-subtitle--01:before {
  content: "";
  width: 82.6rem;
  height: 9.4rem;
  background: url(img/txt-dualcareer.png) no-repeat center/contain;
  position: absolute;
  left: -7rem;
  top: 0;
  z-index: -1;
}
.common-subtitle--02:before {
  content: "";
  width: 82.6rem;
  height: 9.4rem;
  background: url(img/txt-secondcarrer.png) no-repeat center/contain;
  position: absolute;
  left: -7rem;
  top: 0;
  z-index: -1;
}

.common-lead {
  max-width: 80rem;
  margin-bottom: var(--s6);
}
.common-lead--small {
  padding-left: var(--s6);
}
.common-lead.txt-bold {
  font-weight: bold;
}

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

    TOP parts

*/
.sec01-box__catch {
  margin-bottom: var(--s5);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
}

.toc-top {
  display: flex;
  gap: var(--s5);
}
.toc-top__list {
  min-width: 24rem;
  padding: 0 0 0 1.6em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.toc-top__list::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #094AAC;
  border: solid 0.3rem #9CAFCB;
  box-sizing: border-box;
  border-radius: 10rem;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.toc-top__list:nth-of-type(1) {
  width: 24rem;
}
.toc-top__list:nth-of-type(2) {
  flex: 1;
}

ul.toc-top li + li {
  margin-top: 0;
}

.top-list-title {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
}

ul.top-list__sub {
  margin: 0 0 0 var(--s1);
  padding-left: var(--s2);
  border-left: solid 1px #313131;
  max-width: 32rem;
}
ul.top-list__sub li {
  min-width: 16rem;
}
ul.top-list__sub li + li {
  margin-top: var(--s1);
}
.top-list__sub02 {
  width: 18rem;
}

.toc-wrap .top-list__sub__item {
  padding-right: var(--s3);
  display: inline-block;
  position: relative;
}
.toc-wrap .top-list__sub__item:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #094AAC transparent transparent transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-list-column {
  display: flex;
  gap: var(--s3);
  justify-content: space-between;
}

.sec-02--bg {
  padding-top: 0;
  padding-bottom: 6rem;
  position: relative;
}
.sec-02--bg:before {
  content: "";
  width: 100vw;
  height: calc(100% - 6rem);
  background: #EFF2F6;
  position: absolute;
  right: calc(50% - 40rem);
  top: 6rem;
  z-index: -1;
}
.sec-02--title {
  max-width: 90rem;
  margin-bottom: var(--s4);
  padding-top: 15rem;
  font-size: 5.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}
.sec-02--title:before {
  content: "";
  width: 54.8rem;
  height: 11.3rem;
  background:linear-gradient(135deg, #094AAC 0%, #094AAC 33%, rgb(255 144 125) 40%, #ffffff 47%, #ffd33c 54%, rgb(255 255 255) 61%, rgb(191 240 71) 68%, #094AAC 75%, #094AAC 100%);
  background-size: 400% 100%;
  background-position: 100% 0%;
  mask-image: url("img/txt-career.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  position: absolute;
 left: -9rem;
  top: 0;
  transition: background-position 1.2s;
}
.sec-02--title.animated:before {
  background-position: 0% 0%;
}

.sec-02__title {
  margin-bottom: var(--s8);
  padding-left: var(--s2);
  border-left: solid 0.4rem #BFF047;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.box-carrer {
  margin: 4rem 0 14rem;
  padding: var(--s5) 0 0;
  position: relative;
  z-index: 0;
}
.box-carrer:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #EFF2F6;
  position: absolute;
  left: var(--s7);
  top: 0;
  z-index: -2;
}
.box-carrer:after {
  content: "";
  width: 30.2rem;
  height: 28.4rem;
  background: url(img/txt-01.png) no-repeat center/contain;
  position: absolute;
  right: -15rem;
  bottom: -5rem;
  z-index: -1;
}
.box-carrer__pic {
  margin-left: -7rem;
}
.box-carrer__pic--reverse {
  margin-left: 0;
  margin-right: -7rem;
}
.box-carrer__pic02 {
  width: 50vw;
  height: calc(100% - var(--s5));
  position: absolute;
  left: calc(50% - 50vw);
  top: var(--s5);
  overflow: hidden;
}
.box-carrer__pic02 img {
  object-fit: cover;
  max-width: initial;
}
.box-carrer__pic02--reverse {
  left: auto;
  right: calc(50% - 50vw);
}
.box-carrer__title {
  width: fit-content;
  margin-bottom: var(--s2);
  padding: 0.4rem var(--s3);
  background: #313131;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
.box-carrer__title span.cl {
  color: #BFF047;
}
.box-carrer__title:before {
  content: "";
  width: 4rem;
  height: 1px;
  background: #313131;
  position: absolute;
  right: 100%;
  top: 50%;
}
.box-carrer__title img {
  max-height: 4.2rem;
  width: auto;
}
.box-carrer__title--pic {
  padding: 0;
  background: none;
}
.box-carrer__title02 {
  margin-bottom: var(--s3);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
}

.box-carrer__title02 a {
    display: block;
    padding-right: var(--s5);
    background: url(img/arrow-01-blue-right.svg) no-repeat right center / 1.5rem auto;
    text-decoration: none;
}
.box-carrer__title02 a:hover {
  opacity: 0.6;
}


.box-carrer__title02 span.sm {
 color: #121212;
    font-size: 2.2rem;
}
.box-carrer__title02 span.bg-wt {
  padding: 0.2rem var(--s1);
  background: #fff;
  border: solid 1px #313131;
}
.box-carrer__subttl {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
.box-carrer__subttl a {
  display: block;
  padding-right: var(--s5);
  background: url(img/arrow-01-blue-right.svg) no-repeat right center/1.5rem auto;
  text-decoration: none;
}
.box-carrer__subttl a:hover {
  opacity: 0.6;
}

.box-carrer__catch {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
  color: #094AAC;
}
.box-carrer__name {
  margin-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 700;
}
.box-carrer__name span {
  margin-right: var(--s4);
  font-size: 1.4rem;
     border-right: 1px solid #313131;
    padding-right: var(--s3);
}
.box-carrer .btn-internal {
  margin: var(--s3) 0 0 auto;
}
.box-carrer--reverse:before {
  left: auto;
  right: var(--s7);
}
.box-carrer--reverse:after {
  right: auto;
  left: -15rem;
  background-image: url(img/txt-02.png);
}
.box-carrer--second {
  margin-bottom: 0;
  padding-bottom: var(--s4);
}
.box-carrer--second:after {
  content: none;
}
.box-carrer--second:before {
  background-color:#eff2f6;
}
.box-carrer--dual {
  margin: 13rem auto 7rem;
}
.box-carrer--dual:after {
  width: 26.5rem;
  height: 15.3rem;
  background: url(img/txt-dual.png) no-repeat center/contain;
  left: var(--s6);
  top: -11.2rem;
  bottom: auto;
  right: auto;
}
.box-carrer--lower02 {
  margin: 13rem auto 7rem;
}
.box-carrer--lower02:after {
  width: 40rem;
  height: 15.3rem;
  background: url(img/txt-second.png) no-repeat center/contain;
  left: 52rem;
  top: -11.2rem;
  bottom: auto;
  right: auto;
}

.box-summary {
  padding: 0 0 var(--s3) 0;
  border-bottom: solid 1px #313131;
  position: relative;
}
.box-summary__title {
  margin-bottom: var(--s4);
  font-size: 1.6rem;
  font-weight: 900;
  position: relative;
}
.box-summary__title:before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #313131;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.box-summary__title span {
  padding: var(--s2) var(--s3) var(--s1) 24rem;
  display: inline-block;
  background: url(img/logo-s.png) no-repeat center left/20rem auto, #fff;
}
.box-summary__inner {
  padding: 0 var(--s7);
}
.box-summary--lower {
  padding: var(--s5);
  border: solid 1px #313131;
	margin: 5rem auto;
}
.box-summary--lower .box-summary__title:before {
  height: 1px;
}
.box-summary .box-btns {
  padding-left: var(--s5);
	padding-top: 2rem;
}

.box-btns {
  display: flex;
}
.box-btns .btn-web,
.box-btns .btn-internal {
  margin: var(--s4) auto var(--s2);
}

.swiper-container {
  margin: var(--s8) auto;
  padding-bottom: var(--s4);
  position: relative;
  background: linear-gradient(to top, #EFF2F6 42rem, transparent 42rem);
}

.swiper {
  width: 100%;
}
.swiper-slide {
  width: 27.5rem;
  height: auto;
  text-decoration: none;
}

.swiper-pagination {
  bottom: -5rem !important;
}

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

.card-slider {
  height: 100%;
  position: relative;
}
.card-slider:hover {
  opacity: 0.6;
}
.card-slider__upper {
  margin-bottom: var(--s2);
  padding: var(--s-2) var(--s3);
  background: #313131;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.card-slider__upper span.second {
  text-align: right;
}
.card-slider__upper span.cl {
  margin-left: auto;
  color: #BFF047;
}
.card-slider__title {
  margin: var(--s2) 0;
  font-size: 1.8rem;
  font-weight: 700;
}
.card-slider__pic {
  margin-bottom: var(--s2);
}

.tag-01 {
  padding: var(--s-2) var(--s1);
  border: solid 1px #313131;
  line-height: 1.2;
}
.sec-company {
      padding: 16rem 0 14rem;
}
.sec-company .l-center {
  position: relative;
}
.sec-company .l-center:before {
  content: "";
  width: 1rem;
  height: calc(100% - 74rem);
  background: rgba(49, 49, 49, 0.1);
  position: absolute;
  top: 74rem;
  left: -5rem;
}

.sec-company__subtitle {
  margin-top: 12rem;
  margin-bottom: var(--s6);
  padding: var(--s4) 0;
  font-size: 4rem;
  text-align: center;
  position: relative;
}
.sec-company__subtitle--01:before {
  content: "";
  width: 10rem;
  height: 0.2rem;
  background: #313131;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.sec-company__subtitle--01 {
  margin-top: 7rem;
  background: none;
}
.sec-company__subtitle--02 {
  background: none;
	    margin-top: 15rem;
    text-align: left;
    margin-bottom: 0;
}
.sec-company__subtitle--02 span.bg-bk {
    margin-right: var(--s1);
    display: inline-block;
    padding: 0 var(--s2);
    background: #313131;
    color: #fff;
}
.sec-company__subtitle--02:before {
       content: "";
    width: 87.6rem;
    height: 11.4rem;
    background: url(img/txt-workstyle.png) no-repeat center / 87.5rem auto;
    position: absolute;
    left: -5rem;
    top: -50px;
    z-index: -1;
}

.company-upper {
  margin-bottom: 8rem;
  padding: var(--s6) var(--s5);
  position: relative;
}
.company-upper:before {
  content: "";
  width: 11.3rem;
  height: 69.5rem;
  background: linear-gradient(45deg, #094AAC 0%, #094AAC 33%, rgb(255 144 125) 40%, #ffffff 47%, #ffd33c 54%, rgb(255 255 255) 61%, rgb(191 240 71) 68%, #094AAC 75%, #094AAC 100%);
  background-size: 100% 400%;
  background-position: 0% 100%;
  mask-image: url("img/txt-company.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  position: absolute;
  top: 0;
  left: -11.5rem;
  transition: background-position 1.2s;
}
.company-upper.animated:before {
  background-position: 0% 0%;
}
.company-upper:after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #EEF5FE;
  position: absolute;
  left: 10rem;
  top: 0;
  z-index: -1;
}
.company-upper__en {
  margin-bottom: var(--s3);
  width: 41rem;
}
.company-upper__title {
  margin-bottom: var(--s7);
  font-size: 3.6rem;
  font-weight: 700;
}
.company-upper span.sm {
    margin-right: var(--s3);
    font-size: 2.6rem;
    border-bottom: 1px solid #313131;
}
.company-upper__name {
  padding: var(--s1);
  font-size: 1.8rem;
  font-weight: 700;
}
.company-upper__name span {
  font-size: 1.6rem;
  color: #094AAC;
}
.company-upper__q {
  margin-bottom: var(--s3);
  padding: 0 0 0 var(--s5);
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.company-upper__q:before {
  content: "";
  width: 3.3rem;
  height: 3rem;
  background: url(img/txt-q.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.company-upper__answer {
  margin-bottom: var(--s2);
  padding: var(--s5) 0 var(--s2) 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #094AAC;
  position: relative;
  z-index: 0;
}
.company-upper__answer:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #094AAC;
  position: absolute;
  left: 0;
  top: 1.2rem;
  z-index: -1;
}
.company-upper__answer:after {
  content: "";
  width: 8rem;
  height: 2.4rem;
  background: url(img/txt-answer.png) no-repeat center left/6.2rem auto, #EEF5FE;
  position: absolute;
  left: 0;
  top: 0;
}
.company-upper__answer span {
  padding: var(--s1) var(--s3) var(--s1) 15rem;
  display: inline-block;
  background: url(img/txt-answer.png) no-repeat center left/12rem auto, #fff;
}
.company-upper__btn {
  padding-left: 2.5rem;
}
.company-upper .btn-web,
.company-upper .btn-internal {
  width: 100%;
}
.company-upper .btn-web a,
.company-upper .btn-internal a {
  width: 100%;
  height: 100%;
}

.white-wrap {
  padding: var(--s2) 0;
  position: relative;
  z-index: 0;
}
.white-wrap:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.white-wrap--02 {
  padding: 0;
}

.card-strong {
  padding: var(--s5) var(--s5) var(--s3) 20rem;
  position: relative;
  z-index: 0;
}
.card-strong--01 {
  background: #EEF5FE url(img/txt-01-a.png) no-repeat left top var(--s3)/auto 9.9rem;
}
.card-strong--02 {
  background: #EEF5FE url(img/txt-02-a.png) no-repeat left top var(--s3)/auto 9.9rem;
}
.card-strong--03 {
  background: #EEF5FE url(img/txt-03-a.png) no-repeat left top var(--s3)/auto 9.9rem;
}
.card-strong:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #EEF5FE;
  position: absolute;
  right: 100%;
  top: 0;
  z-index: -1;
}
.card-strong__title {
  margin-bottom: var(--s2);
  font-size: 2.4rem;
  font-weight: 700;
  color: #094AAC;
}
.card-strong + .card-strong {
  margin-top: var(--s3);
}

.title-wrap {
  margin: 10rem 0 var(--s7);
  align-items: flex-end;
}
.title-wrap__en {
  margin-bottom: var(--s1);
  width: 29rem;
}
.title-wrap__title {
  font-size: 3.6rem;
  font-weight: 700;
}

.card-photo {
  padding: var(--s5);
  text-decoration: none;
  position: relative;
  z-index: 0;
}
.card-photo:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.card-photo:after {
  content: "";
  width: 5.2rem;
  height: 5.2rem;
  background: linear-gradient(-45deg, transparent 50.5%, #313131 50%);
  position: absolute;
  left: 0;
  top: 0;
}
.card-photo:hover {
  color: #fff;
  text-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.5);
}
.card-photo:hover:before {
  opacity: 0;
}
.card-photo:hover .card-photo__title {
  color: #fff;
}
.card-photo__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #094AAC;
  min-height: 5rem;
  display: flex;
  align-items: center;
}
.card-photo__catch {
  font-size: 1.6rem;
  font-weight: 700;
}
.card-photo__more {
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  font-size: 1.4rem;
  position: relative;
}
.card-photo__more:before {
  content: "";
  width: 3.2rem;
  height: 0.2rem;
  background: #094AAC;
  position: absolute;
  left: -4rem;
  top: 50%;
}
.card-photo--01 {
  background: url(img/sec03-pic01.jpg) no-repeat center/cover;
  border-bottom: solid 1px #313131;
  border-right: solid 1px #313131;
}
.card-photo--02 {
  background: url(img/sec03-pic02.jpg) no-repeat center/cover;
  border-bottom: solid 1px #313131;
}
.card-photo--03 {
  background: url(img/sec03-pic03.jpg) no-repeat center/cover;
  border-right: solid 1px #313131;
}
.card-photo--04 {
  background: url(img/sec03-pic04.jpg) no-repeat center/cover;
}

.card-column {
  margin-top: var(--s4);
  padding: var(--s4);
  border: solid 1px #313131;
  border-left-width: 0.3rem;
  position: relative;
}
.card-column:before {
  content: "";
  width: 19.1rem;
  height: 4.8rem;
  background: url(img/txt-helpfulcolumn.png) no-repeat center/contain;
  position: absolute;
  right: var(--s2);
  top: -3.4rem;
}
.card-column__title {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
}
.card-column__title a {
  display: block;
  padding-right: var(--s5);
  text-decoration: none;
  background: url(img/arrow-01-black-right.svg) no-repeat right center/1.5rem auto;
}
.card-column__title a:hover {
  opacity: 0.6;
}

.column-wrap {
  align-items: flex-start;
  position: relative;
}
.column-wrap:before {
  content: "";
  width: 8.7rem;
  height: 50.8rem;
  background: url(img/txt-employment.png) no-repeat center/contain;
  position: absolute;
  left: -9rem;
  top: 0;
}

.card-corner {
  padding: var(--s4);
  border: solid 1px #313131;
  position: relative;
}
.card-corner:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background: linear-gradient(-45deg, transparent 50.5%, #313131 50%);
  position: absolute;
  left: 0;
  top: 0;
}
.card-corner__title {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
}
.card-corner__title.toggle-btn {
  margin-bottom: 0;
  padding-right: 4rem;
  display: flex;
  align-items: center;
}

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

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.4rem;
  }
  .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(--s8);
  }
  .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(--s3);
  }
  .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04, .l-column__side05 {
    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: 85%;
    margin: var(--s5) 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 a:before,
  .btn-web a:before {
    width: 3rem;
    left: -1.5rem;
  }
  .btn-internal:hover a,
  .btn-web:hover a {
    transform: translate(0, 0);
  }
  .btn-internal:hover a:before,
  .btn-web:hover a:before {
    left: -2.5rem;
  }
  .btn-internal--sm,
  .btn-web--sm {
    width: fit-content;
  }
  .btn-internal--sm a,
  .btn-web--sm a {
    padding-top: 1rem;
    padding-bottom: 1.1rem;
  }
  .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;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }
  .btn-tel {
    width: 85%;
    margin: var(--s5) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 4.5rem;
    background: #BFF047 url("img/icon-tel.png") no-repeat center left 1.5rem/2.4rem auto;
    box-shadow: 0.6rem 0.6rem 1.5rem rgba(0, 0, 0, 0.1);
    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: #F6F6F7;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #F6F6F7;
    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 float wrap

  */
  .float-wrap .float-img.fr {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /*
  ---------------------------------------------

  	sp pankuzu

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

      sp footer

  */
  .footer-area {
    padding: var(--s3) 0 0;
  }
  .footer-column {
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .footer-column__side {
    width: 100%;
  }
  .footer-column--upper {
    margin-bottom:0;
    padding: var(--s3);
    flex-direction: initial;
  }
  .footer-column .upper-title {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .footer-main {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }
  .footer-bottom {
    padding: var(--s1) 0 var(--s8);
  }
  .footer-logo {
    width: 19rem;
    margin: var(--s2) auto var(--s3);
  }
  .footer-logo__link:hover {
    opacity: 1;
  }
  .footer-box + .footer-box {
    margin-top: 0;
  }
  .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.4rem;
    height: 1.4rem;
    background: url("img/arrow-01-white-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-01-white-right.svg") no-repeat center/auto 1em;
  }
  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.1);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
  }
  .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;
  }
  .footer-banner {
    padding: var(--s1) var(--s3);
    left: 0;
    bottom: 0;
    right: auto;
	  font-size: 1.3rem;
    height: auto;
    min-height: 3rem;
    width: 80%;
    writing-mode: initial;
    font-family: "Noto Sans JP";
  }
  .footer-banner:before {
    left: 0;
    right: auto;
    top: -1.4rem;
  }
  /*
  ---------------------------------------------

  	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-title {
    width: 20rem;
    margin-bottom: var(--s1);
  }
  .gnavi-area {
    width: 100%;
    padding: var(--s3) 0 var(--s2);
    background: linear-gradient(to right, #EFF2F6 8rem, #fff 6rem);
  }
  .gnavi-area:before {
    width: 8rem;
    height: calc(100vh - 12rem);
    background-size: 9rem auto;
    left: 0.5rem;
  }
  .gnavi-area-logo {
    width: 18rem;
    margin: 0 auto var(--s3) auto;
  }
  .gnavi-column {
    padding-left: 3.4rem;
    gap: var(--s3);
  }
  .gnavi-column__item {
    width: 100%;
  }
  .gnavi-column__item img {
    height: 3.2rem;
  }
  .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: 0;
  }
  .page-top__link:hover {
    opacity: 1;
  }
  /*
  ---------------------------------------------

      toc

  */
  .toc-wrap {
    margin: var(--s4) auto var(--s8);
  }
  .toc-wrap ul li.chapter-h-two {
    font-size: 1.6rem;
  }
  .toc-wrap ul li.chapter-h-two::before {
    font-size: 1.6rem;
  }
  .toc-wrap .more__btn {
    margin-bottom: -3rem;
  }
  .toc-wrap .more__content {
    padding-bottom: var(--s3);
  }
  .toc-ttl {
    margin-bottom: var(--s1);
    font-size: 1.8rem;
  }
  .toc-ttl span {
    padding-left: 9rem;
    background-size: 8rem auto;
  }
  .toc-body {
    padding: 0 var(--s2);
  }
  .toc-body--relations {
    padding-bottom: var(--s3);
  }
  /*
  ---------------------------------------------

       sp toggle sp

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

      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__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;
  }
  /*
  ---------------------------------------------

      tab

  */
  .tab-btn {
    padding-top: 1.2rem;
    padding-bottom: var(--s2);
    font-size: 1.3rem;
    background-size: auto 2rem;
  }
  .tab-btn span.sm {
    font-size: 1.3rem;
  }
  .tab-btn span.st {
    font-size: 1.6rem;
  }
  .tab-btn.is-active {
    padding-top: 1rem;
    padding-bottom: 1.4rem;
  }
	.tab-content:before {
    top: calc(0.4rem* -1);
}
  .tab-btn.is-active:after {
    border-width: 1rem 0.8rem 0 0.8rem;
  }
  .tab-btn-wrapper {
    padding: 0;
    gap: var(--s1);
  }
  .tab-content {
    padding: var(--s5) 1rem  var(--s8);
  }
  .sec-02__title {
    margin-bottom: var(--s3);
    font-size: 1.8rem;
  }
  /*
  ---------------------------------------------

      titles

  */
  .pr-text {
    margin-bottom: var(--s3);
    font-size: 1rem;
  }
  .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-top: var(--s3);
    margin-bottom: var(--s2);
    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 {
	        margin: var(--s6) auto var(--s2);  
    padding: var(--s1) var(--s2) var(--s1) var(--s2);
    font-size: 2.2rem;
  }
  .main-area--low h2:before {
      width: 1.5rem;
    height: 1.5rem;
  }
  .main-area--low h2 a {
    background-size: 1.2rem auto;
  }
  .main-area--low h3 {
    padding-left: var(--s1);
    font-size: 2rem;
  }
  .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;
    gap: var(--s1);
    text-align: left;
  }
  .header-area__name {
    display: block;
    padding-left: var(--s1);
    line-height: 1.4;
    font-size: 1rem;
  }
  .header-area__logo {
    width: 16rem;
    padding: var(--s1);
  }
  .header-area__logo img,
  .header-area__logo a {
    display: block;
  }
  .header-area__left {
    flex: 1;
  }
  .header-area--low {
    min-height: initial;
    margin-bottom: var(--s2);
    padding-right: 4rem;
    position: relative;
  }
  .header-area--low:after {
    content: none;
  }
  .header-area--low:before {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-size: 20rem auto;
  }
  .header-area .sponsered {
    padding-left: var(--s1);
  }
  .mainvisual-top {
    margin-bottom: var(--s2);
    padding: 10rem var(--s2) var(--s4);
    background-image: url(img/mv-pic-sp.jpg);
    background-position: center;
  }
  .mainvisual-title {
    padding: 0;
    font-size: 3.2rem;
  }
  .mainvisual-lead {
    text-align: left;
    font-size: 1.4rem;
  }
  .mainvisual-first__text {
    font-size: 3.8rem;
  }
  .sponsored-p {
    margin-top: var(--s5);
    text-align: left;
    line-height: 1.3;
  }
  .box-btns {
    display: block;
  }
  .box-sv {
    padding: var(--s4) var(--s3);
	      margin: var(--s6) 0;
  }
  .box-sv__tag {
    width: 12rem;
    margin-left: -2.4rem;
    margin-top: -4rem;
  }
  .box-sv__catch, .box-sv__name {
    font-size: 1.6rem;
  }
	.box-sv .btn-internal,.box-sv .btn-web {
        width: 100%;
    }
	.box-summary--lower .btn-internal,.box-summary--lower .btn-web {
        width: 100%;
    }
	
  .box-day__title {
    padding: 6rem var(--s3) var(--s3) var(--s3);
    background-size: 18rem auto;
    font-size: 1.8rem;
  }
  .box-day__title span {
    margin-bottom: var(--s1);
    font-size: 1.4rem;
  }
  .box-day__title:before {
    left: 1rem;
    width: 1.6rem;
    height: 1.6rem;
  }
  .box-day__wrap {
    margin-left: var(--s4);
    padding-top: 0;
    padding-right: var(--s2);
  }
  .box-day__wrap:before {
    left: -1.5rem;
  }
  .box-day__pic {
    right: var(--s2);
    top: -2.5rem;
    width: 11.5rem;
    height: 7.5rem;
  }
  .box-day__time {
    gap: var(--s1);
    flex-wrap: wrap;
    font-size: 1.6rem;
  }
  .box-day__time__catch {
    font-size: 1.6rem;
  }
  .box-day__time:before {
    width: 1.5rem;
    height: 1.5rem;
    left: -2.2rem;
    top: 2.5rem;
  }
  .box-day__time div:nth-of-type(2) {
    min-width: initial;
    width: auto;
  }
  .box-day__time div:nth-of-type(1) {
    width: 5rem;
  }
  .box-day__time div:nth-of-type(3) {
    width: 100%;
    flex: none;
  }
  .card-post__body {
    flex-wrap: wrap;
  }
  .card-post__catch {
    width: 100%;
  }
  .card-post__pic {
    width: 100%;
  }
  .common-title {
    margin-bottom: var(--s2);
    padding: 5rem 0 var(--s3);
    font-size: 2.4rem;
  }
  .common-title:before {
    left: var(--s3);
  }
  .common-title span.bg-wt,
  .common-title span.bg-bk {
    font-size: 2rem;
  }
  .common-title span.sm {
    font-size: 1.6rem;
  }
  .common-title a {
    background-size: 1.4rem auto;
    background-position: right bottom 0.4em;
  }
  .common-title--01:after, .common-title--02:after {
    height: 7.2rem;
    width: 100%;
    background-position: left center;
    left: auto;
    right: 0;
    top: -3.4rem;
  }
  .common-title--02:before {
    left: auto;
    right: var(--s3);
  }
  .common-subtitle {
    margin-top: var(--s6);
    margin-bottom: var(--s3);
    padding-top: 3rem;
    font-size: 2.2rem;
  }
  .common-subtitle--01:before, .common-subtitle--02:before {
    width: 100%;
    height: 3.4rem;
    left: 0;
    background-position: left center;
  }
  section {
    padding: var(--s6) 0;
  }
     .sec01 {
        padding-top: var(--s4);
        padding-bottom: var(--s3); 
  }
  .sec01-box__pic {
    width: 70%;
    margin: 0 auto;
  }
  .sec01-box__catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .toc-top {
    flex-wrap: wrap;
    gap: var(--s3);
  }
  .toc-top__list {
    width: 100%;
  }
  .toc-body--top {
    padding-bottom: var(--s3);
  }
  .top-list-column {
    flex-wrap: wrap;
  }
  .top-list__sub02 {
    margin: var(--s2) 0 0 var(--s1);
    padding-left: var(--s2);
    border-left: solid 1px #313131;
    width: 100%;
  }
  .sec-02--title {
    padding-top: 6rem;
    font-size: 2.6rem;
	  margin-bottom: var(--s2);
  }
  .sec-02--title:before {
    width: 21.8rem;
    height: 4.5rem;
    left: 0;
  }
  .sec-02--bg:before {
    right: var(--s3);
    left: auto;
    top: 2rem;
  }
  .box-carrer {
    margin-bottom: 7rem;
    padding-left: var(--s2);
    padding-bottom: var(--s3);
    flex-direction: column-reverse;
	  margin-top: 7rem;
  }
	.box-carrer__subttl {
    font-size: 1.8rem;
}
	
  .box-carrer:after {
    width: 12rem;
    height: 12rem;
    left: auto;
    right: 0;
    bottom: calc(100% - 6rem);
  }
  .box-carrer:before {
    left:0;
  }
  .box-carrer__pic {
    margin: 0 auto;
  }
  .box-carrer__pic02 {
    margin: 0 auto;
    width: 100%;
    height: auto;
    position: static;
    overflow: initial;
  }
  .box-carrer__pic02 img {
    object-fit: initial;
    max-width: 100%;
  }
  .box-carrer--second {
    margin: 3rem auto;
  }
  .box-carrer__title {
    font-size: 1.6rem;
	  margin-bottom: var(--s2);
  }
  .box-carrer__title img {
    max-height: 3.2rem;
  }
  .box-carrer--dual, .box-carrer--lower02 {
    margin-top: var(--s10);
	  margin-bottom:  var(--s6);
  }
  .box-carrer--dual:after, .box-carrer--lower02:after {
  width: 100%;
        height: 10rem;
        background-position: right center;
        bottom: calc(100% - 1rem);
        top: -55px;
  }
  .box-carrer--dual:before, .box-carrer--lower02:before {
    left: 0;
  }
  .box-carrer--reverse {
    padding-left: 0;
    padding-right: var(--s2);
  }
  .box-carrer--reverse:before {
    left: auto;
    right:0;
  }
  .box-summary__title {
    margin-bottom: var(--s3);
  }
  .box-summary__title span {
    padding-right: var(--s1);
    padding-left: 14rem;
    background-size: 12rem auto;
  }
  .box-summary__inner {
    padding: 0;
  }
  .box-summary--lower {
    padding: var(--s3);
	          margin: var(--s6) 0;
  }
	.box-summary .box-btns {
    padding-left: 0;
}
  .company-upper {
    padding: var(--s3) 0 var(--s4) var(--s2);
	  margin-bottom: 3rem;
  }
  .company-upper:after {
    left: 0;
  }
  .company-upper:before {
            width: 5rem;
        height: 30.6rem;
    top: 0.8rem;
    right:28.9rem;
    left: auto;
    transform-origin: top left;
    transform: rotate(-90deg);
  }
  .company-upper__en {
    width: 26rem;
    margin-bottom: var(--s2);
  }
  .company-upper__title {
    margin-bottom: var(--s2);
    font-size: 2.4rem;
  }
	.company-upper span.sm {
    margin-right: var(--s2);
    font-size: 1.8rem;
}
  .company-upper__q {
    font-size: 1.8rem;
  }
  .company-upper__answer {
    font-size: 1.7rem;
	      margin-bottom: 0;
  }
  .company-upper__btn {
    margin-top: var(--s4);
	  margin-left: -1.6rem;
  }
  .company-upper__pic {
    width: 50%;
    margin: 0 auto;
  }
  .company-upper__name {
    font-size: 1.4rem;
    text-align: center;
  }
  .company-upper .btn-web,
  .company-upper .btn-internal {
    margin: 0 auto;
    width: 94%;
  }
  .swiper-slide {
    width: 65%;
  }
	.card-slider__upper {
    font-size: 1.6rem;
}
	.card-slider__title {
    font-size: 1.6rem;
}
  .swiper-container .swiper-pagination-bullet {
    width: 8%;
  }
  .sp-reverse {
    flex-direction: column-reverse;
  }
  .sec-company__subtitle {
    margin-top: var(--s4);
    margin-bottom: var(--s2);
    font-size: 2.2rem;
  }
  .sec-company__subtitle:before {
    width: 7rem;
  }
  .sec-company__subtitle--01 {
    background-size: 100% auto;
  }
	.sec-company__subtitle--02 {
        margin-bottom: 0;
        margin-top: var(--s10);
        padding: var(--s1) 0;
    }
	.sec-company__subtitle--02:before {
        width: 100%;
        height: 11.4rem;
        left: 0;
        top: -57px;
        background-position: left center;
        background: url(img/txt-workstyle.png) no-repeat center / 34.5rem auto;
    }
  .card-strong {
    padding: var(--s8) var(--s2) var(--s2) var(--s2);
  }
  .card-strong--01, .card-strong--02, .card-strong--03 {
    background-size: 8rem auto;
    background-position: var(--s1) var(--s1);
  }
  .card-strong__title {
    font-size: 1.8rem;
  }
  .title-wrap__en {
    width: 23rem;
  }
  .title-wrap__title {
    font-size: 2.4rem;
  }
	.title-wrap {
    margin: var(--s5) 0 var(--s4);
}
  .card-photo {
    padding: 0;
    padding-bottom: var(--s3);
    border-bottom: solid 1px #313131;
    border-right: 0;
  }
	.subgrid-card {
    grid-gap: var(--s2);
}
  .card-photo--01, .card-photo--02, .card-photo--03, .card-photo--04 {
    background: none;
  }
  .card-photo:after {
    width: 3rem;
    height: 3rem;
  }
  .card-photo__title {
    padding: var(--s3);
    font-size: 2rem;
    background-color: none;
    background-blend-mode: lighten;
    background-size: cover;
	  color: #fff;
    background-position: center;
    background-repeat: no-repeat;
  }
  .card-photo--01 .card-photo__title {
    background-image: url(img/sec03-pic01.jpg);
  }
  .card-photo--02 .card-photo__title {
    background-image: url(img/sec03-pic02.jpg);
  }
  .card-photo--03 .card-photo__title {
    background-image: url(img/sec03-pic03.jpg);
  }
  .card-photo--04 .card-photo__title {
    background-image: url(img/sec03-pic04.jpg);
  }
  .card-column,
  .card-corner {
    padding: var(--s3);
  }
  .card-corner:after {
    width: 2.4rem;
    height: 2.4rem;
  }
	.main-area--low .l-center {
  padding-bottom: 3rem;
}
	.main-area ul:not([class]) {
    margin: var(--s4) auto;
}
	table {
    margin: var(--s4) auto;
}
	.float-wrap {
    margin: var(--s4) auto;
}
	.box-day {
    margin:var(--s6) 0;
}
	.post-wrap {
    margin: var(--s6) 0;
}
	.card-post {
    margin-top: var(--s6);
}
	.sec-company {
    padding: 6rem 0 3rem;
}
	.header-area--low .header-area__sitename {
    padding-top: 10px;
    padding-bottom: 10px;
}
}
