@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-400-vertical.woff2") format("woff2"), url("fonts/NS-400-vertical.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);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}

@media screen and (max-width: 1100px) {
  :root {
    font-size: 0.9090909091vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #2c2c2c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

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: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

a:active {
  color: #2c2c2c;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: #2c2c2c;
    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 tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/*
---------------------------------------------

    layout center

*/
.l-center {
  max-width: 110rem;
  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(--s4);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

    layout cluster

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

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

    layout grid

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

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

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

@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 column

*/
.l-column {
  display: flex;
  gap: var(--s5);
}
.l-column__side {
  width: 27rem;
}
.l-column__side02 {
  width: 58rem;
}
.l-column__side03 {
  width: 10rem;
}
.l-column__side04 {
  width: 60rem;
}
.l-column__side05 {
  width: 14.5rem;
}
.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: 66rem 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 66rem;
}
.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 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;
}

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

    header 

*/
.header-area {
  width: 9rem;
  height: 100vh;
  padding: 9rem 0 var(--s2);
  background: #fff;
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  border-left: solid 1px #2c2c2c;
  z-index: 99;
}
.header-area__name {
  margin: 0 auto;
  max-height: 22rem;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP vertical";
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-orientation: upright;
}
.header-area__name a {
  text-decoration: none;
}
.header-area__logo {
  margin: var(--s2) auto;
  width: 7.4rem;
  height: 20.7rem;
}

@media (hover: hover) {
  .header-area__logo a:hover,
.header-area__name a:hover {
    opacity: 0.6;
  }
}
.title-area {
  position: relative;
  border-bottom: solid 1px #2c2c2c;
}
.title-area:before {
  content: "";
  width: 50%;
  height: 100%;
  background: url(img/bg-h1.jpg) no-repeat center left/cover;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.title-area .l-center {
  padding-bottom: var(--s4);
  position: relative;
}
.title-area .l-center:after {
  content: "";
  width: 100%;
  height: 1.1rem;
  background: #2c2c2c;
  position: absolute;
  right: calc(100% - 8.6rem);
  bottom: 0;
}

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

    main-area

*/
.main-area {
  margin-right: 9rem;
  overflow: clip;
}
.main-area--low {
  padding-bottom: var(--s5);
}

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

    main visual

*/
.mainvisual {
  overflow: clip;
  margin-right: 9rem;
}
.mainvisual-column {
  display: flex;
}
.mainvisual-column__main {
  width: 56rem;
  border-left: solid 0.2rem #2c2c2c;
}
.mainvisual-column__pic {
  width: calc(100% - 56rem);
  padding: var(--s5);
  background: url(img/mv-pic.jpg) no-repeat center/cover;
}
.mainvisual-column__pic__inner {
  height: 100%;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.mainvisual-column__pic__inner:before {
  content: "";
  width: calc(100% - 41rem);
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.mainvisual-column__pic__inner:after {
  content: "";
  height: calc(100% - 12rem);
  width: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.mainvisual-logo {
  width: 38.3rem;
  filter: drop-shadow(0px 0px 5px #aaa);
}
.mainvisual-title {
  padding: 0 0 var(--s4) var(--s4);
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  filter: drop-shadow(0px 0px 4px #555);
}
.mainvisual-title span {
  display: block;
  font-size: 8rem;
}
.mainvisual-btns {
  display: flex;
  align-items: flex-end;
}
.mainvisual-btns__left {
  flex: 1;
}
.mainvisual-btns__right {
  width: 29rem;
  border-left: solid 0.2rem #2c2c2c;
}
.mainvisual-btn {
  display: block;
  overflow: hidden;
}
.mainvisual-btn img {
  transition: transform 0.4s;
}
.mainvisual-btn:hover img {
  transform: scale(1.08);
}
.mainvisual-btn--01:hover img {
  transform: scale(1.06);
}
.mainvisual-btn--02 {
  border-bottom: solid 0.2rem #2c2c2c;
}
.mainvisual-bg {
  padding: var(--s3);
  background: #2c2c2c;
  color: #fff;
}
.mainvisual-bg .pr-text {
  font-size: 1.2rem;
}
.mainvisual-bg p {
  line-height: 1.5;
}

.upper-text {
  padding: var(--s2) var(--s4);
  background: #ef7e00;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}

.upper-text2 {
  padding: 1rem;
  border-bottom: solid 0.2rem #2c2c2c;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #ea5d1e;
}
.upper-text2 span {
  display: inline-block;
  position: relative;
}
.upper-text2 span:before {
  content: "";
  width: 7.7rem;
  height: 1.3rem;
  background: url(img/mv-arrow.png) no-repeat center/contain;
  position: absolute;
  left: calc(100% + var(--s2));
  top: 50%;
  transform: translateY(-50%);
}
.upper-text2 span:after {
  content: "";
  width: 7.7rem;
  height: 1.3rem;
  background: url(img/mv-arrow.png) no-repeat center/contain;
  position: absolute;
  right: calc(100% + var(--s2));
  top: 50%;
  transform: translateY(-50%);
}

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

    lower parts

*/
.box-relation {
  margin: var(--s10) 0;
}
.box-relation__title {
  width: fit-content;
  padding: 2rem var(--s2) var(--s1) var(--s4);
  background: #f3efec;
  border-radius: var(--s1) 0 0 0;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.box-relation .relations-box__pic{
  display:none;
}

.box-relation .catch-01{
  color:#000;
  font-size:1.6rem;
  font-weight:normal;
}

.box-relation__title:before {
  content: "";
  width: 4rem;
  height: 105%;
  background: url(img/relation-title-side.png) no-repeat left top/100% 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
.box-relation__title span {
  display: block;
  padding: 0.5rem var(--s2);
  position: relative;
}
.box-relation__title span:before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #2c2c2c;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.box-relation__list {
  padding: var(--s3) var(--s7);
  background: #f3efec;
  border-radius: 0 var(--s1) var(--s1) var(--s1);
}
.box-relation__item {
  padding: 0 0 0 1.4em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.box-relation__item::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(img/arrow-01-orange-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.box-relation__item + li {
  margin-top: 1em;
}
.box-relation__link {
  text-decoration: none;
}

@media (hover: hover) {
  .box-relation__link:hover {
    opacity: 0.7;
  }
}
.box-summary {
  margin: 14rem 0;
  padding: 0 var(--s8) var(--s5);
  position: relative;
  gap: var(--s3);
}
.box-summary:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  border: solid 1px #2c2c2c;
  background: #fff;
  box-sizing: border-box;
  position: absolute;
  top: var(--s3);
  left: 0;
  z-index: -1;
}
.box-summary:after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #f3a320;
  position: absolute;
  right: var(--s9);
  bottom: -6rem;
  z-index: -2;
}
.box-summary__title {
  width: fit-content;
  margin: -6rem 0 var(--s2) 0;
  padding: 0 var(--s2);
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
}
.box-summary__title span.en {
  display: inline-block;
  margin-right: var(--s2);
  height: 4.7rem;
}
.box-summary__catch {
  margin-bottom: var(--s3);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
.box-summary__catch span {
  background: #2c2c2c;
}

.box-sponsored {
  margin: 12rem 0;
  padding-left: 13rem;
  padding-bottom: var(--s3);
  position: relative;
}
.box-sponsored:before {
  content: "";
  width: 100vw;
  height: calc(100% - 9rem);
  background: #f3a320 url(img/txt-sponsored-vertical.png) no-repeat right var(--s6) center/auto 90%;
  position: absolute;
  right: calc(100% - 6rem);
  top: 9rem;
}
.box-sponsored__upper {
  margin-bottom: var(--s8);
  position: relative;
}
.box-sponsored__upper:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s2));
  border: solid 1px #2c2c2c;
  border-left: none;
  position: absolute;
  right: 0;
  top: var(--s4);
  z-index: -1;
}
.box-sponsored__upper.l-column {
  align-items: flex-start;
}
.box-sponsored__upper--low {
  margin-bottom: var(--s4);
}
.box-sponsored__title {
  padding: 9rem 0 4rem;
  font-size: 3.6rem;
  font-weight: 700;
}
.box-sponsored__title span {
  display: inline-block;
  margin-top: var(--s2);
  padding: var(--s1);
  background: #ef7e00;
  color: #fff;
}
.box-sponsored__pic {
  position: relative;
  margin: 0 -3rem 0 0;
}
.box-sponsored__name {
  width: fit-content;
  padding: var(--s2);
  background: #fff;
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: 0;
}
.box-sponsored__catch {
  margin-left: calc(var(--s4) * -1);
  padding: 2rem var(--s4);
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #ef7e00;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.box-sponsored__body {
  grid-template-columns: 38rem 1fr;
  grid-gap: var(--s3) var(--s5);
}
.box-sponsored .btn-web,
.box-sponsored .btn-internal {
  margin: 0;
}
.box-sponsored .btn-web a,
.box-sponsored .btn-internal a {
  width: 100%;
}
.box-sponsored .catch-02 {
  margin-bottom: var(--s3);
}
.box-sponsored__btns {
  margin: var(--s4) 0;
  display: flex;
  gap: 10px;
  justify-content: space-around;
}
.box-sponsored--low {
  padding-bottom: 0;
}

.name-comp {
  display: flex;
  gap: var(--s3);
}
.name-comp__tag {
  width: 9rem;
  background: #2c2c2c;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.name-comp__txt {
  flex: 1;
}
.name-comp__txt span {
  font-size: 2.8rem;
  font-weight: 700;
}
.name-comp--low {
  margin: 9rem 0 var(--s4);
  padding-bottom: var(--s4);
  border-bottom: dashed 1px #2c2c2c;
}

.box-interview {
  padding: var(--s4) 0;
  border-top: solid 0.2rem #2c2c2c;
  border-bottom: solid 1px #2c2c2c;
  position: relative;
}
.box-interview:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #2c2c2c;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.box-interview__pic {
  width: 14rem;
  margin-bottom: var(--s1);
  border-radius: 50%;
}
.box-interview__name {
  text-align: center;
  font-size: 1.4rem;
}
.box-interview__catch {
  margin-bottom: var(--s3);
  padding-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  color: #ea5d1e;
  border-bottom: dashed 1px #ea5d1e;
}

.tag-list {
  gap: var(--s1);
}

.tag-01 {
  padding: var(--s-2) var(--s2);
  background: #fff;
  border: solid 0.1rem #2c2c2c;
  border-radius: var(--s5);
  font-size: 1.5rem;
  text-decoration: none;
}

@media (hover: hover) {
  a.tag-01:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    toc

*/
.toc-wrap {
  max-width: 84rem;
  margin: var(--s5) auto var(--s6);
  background: #fff;
  border-radius: var(--s1);
  position: relative;
}
.toc-wrap__title {
  display: block;
  padding: 1rem 0;
  border-bottom: solid 0.2rem #2c2c2c;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1;
  display: flex;
  align-items: center;
}
.toc-wrap__title.is-open {
  border-radius: var(--s2) var(--s2) 0 0;
}
.toc-wrap__title span.en {
  display: flex;
  width: 11rem;
  margin-right: var(--s3);
}
.toc-wrap__main {
  padding: var(--s3) var(--s5);
  border-bottom: solid 0.2rem #2c2c2c;
}
.toc-wrap__main.toc-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) 4%;
}
.toc-wrap__main.toc-top li {
  width: 48%;
}
.toc-wrap .toc-wrap__main.toc-top ul li.chapter-h-two + li {
  margin-top: 0;
}
.toc-wrap ul {
  margin: 0;
  padding: 0;
  counter-reset: numb;
}
.toc-wrap ul li.chapter-h-two {
  padding-left: 1.8em;
  font-size: 1.8rem;
  font-weight: 700;
  counter-increment: numb;
  position: relative;
}
.toc-wrap ul li.chapter-h-two::before {
  content: counter(numb, decimal-leading-zero);
  width: 1.6em;
  height: 1.6em;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ef7e00;
  position: absolute;
  /* top: 0.25em; */
  left: 0;
}
.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;
}

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s4) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #1ac247;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area ol:not([class]) {
  counter-reset: number;
  margin: var(--s3) auto;
}
.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 {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 40rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s8);
  background: #ef7e00 url("img/arrow-01-white-right.svg") no-repeat center right var(--s4)/2.5rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}
.btn-internal--back a {
  max-width: 35rem;
  background-color: #fff;
  background-image: url("img/arrow-01-black-up.svg");
  border: solid 0.2rem #2c2c2c;
  color: #2c2c2c;
}

@media (hover: hover) {
  .btn-internal a:hover {
    opacity: 0.7;
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 40rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s9);
  background: #1ac247 url("img/icon-window.png") no-repeat center right var(--s4)/2rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}
.btn-web--header {
  margin: auto auto 0;
}
.btn-web--header a {
  width: 7rem;
  height: fit-content;
  padding: var(--s4) 0 var(--s9);
  background-position: center bottom 2rem;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP vertical";
  font-size: 1.6rem;
  font-weight: 700;
  text-align: start;
  justify-content: flex-start;
}
.btn-web--header a span.sm {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}

@media (hover: hover) {
  .btn-web a:hover {
    opacity: 0.7;
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s1) 3.4rem var(--s1) 0;
  background: url("img/arrow-02-yellow-right.svg") no-repeat center right/2.5rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.btn-link--white a {
  color: #fff;
}

@media (hover: hover) {
  .btn-link a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.btn-tel {
  display: none;
}

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

    table

*/
table {
  width: 100%;
  margin: var(--s3) 0;
  border-collapse: collapse;
  border-top: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
}

th,
td {
  padding: var(--s2);
  border-right: solid 1px #c7c7c7;
  border-bottom: solid 1px #c7c7c7;
  line-height: 1.5;
  word-break: break-all;
}

th {
  background: #f3efec;
}

td {
  background: #fff;
}

tbody th {
  background: #f3efec;
}

.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: 1.2rem;
  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.6rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

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

  catch

*/
.catch {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ea5d1e;
}

.catch-01 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ea5d1e;
}

.catch-02 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1ac247;
}

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

  text

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

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

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

  subgrid card

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

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

    float wrap

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

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

  pankuzu

*/
#pankuzu {
  width: 100%;
  margin: var(--s3) auto var(--s3);
  padding: var(--s1) 0;
  color: #2c2c2c;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

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

    footer

*/
.footer-area {
  margin-right: 9rem;
  padding: var(--s9) 0 0;
  background: #2c2c2c;
}

.footer-about {
  margin-bottom: var(--s8);
}
.footer-about__side {
  width: 31.6rem;
}
.footer-about__main {
  padding: var(--s3) var(--s5);
  border: solid 1px #fff;
  border-radius: 1rem;
}
.footer-about-title {
  margin-bottom: var(--s2);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}
.footer-about-p {
  color: #fff;
  font-size: 1.3rem;
}
.footer-about .btn-link {
  margin: var(--s1) 0 0 auto;
}

.footer-main {
  max-width: 100rem;
  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: #f3efec;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 31.6rem;
  margin: 0;
}
.footer-logo__link {
  display: block;
}

@media (hover: hover) {
  .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.5rem;
  color: #fff;
  line-height: 1.5;
  border-bottom: 1px solid #909090;
}
.footer-menu-title__link {
  padding: var(--s1) 0;
  display: block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .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) / 4);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  color: #fff;
  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;
  color: #fff;
  position: relative;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

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

.footer-copyright {
  font-size: 1.2rem;
}
.footer-copyright__link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer-copyright__link:hover {
    text-decoration: underline;
  }
}
.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
}
.footer-sitemap__link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: underline;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 7rem;
  height: 7rem;
  background: #2c2c2c;
  border-radius: 50%;
  display: block;
  position: fixed;
  top: 0.6rem;
  right: var(--s1);
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 3.2rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.9rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.3rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.5rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1.1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  display: none;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.1rem) rotate(45deg);
}

.gnavi-area {
  width: 38rem;
  height: 100vh;
  margin-right: 9rem;
  padding: 7rem 0;
  background: #f3efec;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.gnavi-area__logo {
  width: 18rem;
  margin: 0 auto var(--s2);
}

.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.4rem;
  height: 1.4rem;
  background: url("img/arrow-03-black-down.svg") no-repeat center/contain;
  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.4);
}
.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);
}

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

    page

*/
.page-top {
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 9rem;
  bottom: 4rem;
  z-index: 9;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  background: url(img/toggle-bg.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
  display: none;
}

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

    more

*/
.more-btn {
  max-width: 37rem;
  margin: var(--s5) auto;
  padding: var(--s3) var(--s7);
  background: #000;
  border: 0.2rem solid #000;
  border-radius: 10rem;
  color: #fff;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: 2.6rem;
  height: 0.4rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.4rem;
  height: 2.6rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

@media (hover: hover) {
  .more-btn:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.more-content {
  display: none;
}

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

    tag page

*/
.box-taglist__title {
  margin-top: var(--s2);
  color: #ef7e00;
  font-weight: 700;
  font-size: 2.4rem;
}
.box-taglist__title a {
  color: #ef7e00;
  text-decoration: none;
}
.box-taglist .tag-list {
  margin: var(--s2) 0;
}

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

    titles

*/
.pr-text {
  font-size: 1.4rem;
  color: #919191;
}

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  font-weight: 700;
  word-wrap: break-word;
}
.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;
}

@media (hover: hover) {
  .main-area h2 a:hover,
.main-area h3 a:hover,
.main-area h4 a:hover,
.main-area h5 a:hover,
.main-area h6 a:hover {
    opacity: 0.6;
  }
}
h1:not([class]) {
  max-width: 75rem;
  min-height: 18.8rem;
  margin: 0 auto 0 0;
  padding: var(--s5) 0;
  font-size: 3.6rem;
  display: flex;
  align-items: center;
  position: relative;
}
h1:not([class]):before {
  content: "";
  width: 70rem;
  height: 18rem;
  background: url(img/deco-h1.png) no-repeat center/contain;
  position: absolute;
  left: -16rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.main-area--low h2:not([class]) {
  margin: var(--s9) auto var(--s3);
  padding: var(--s2) var(--s4) var(--s2) var(--s6);
  border-radius: var(--s1);
  font-size: 3rem;
  background: #f3efec;
  position: relative;
}
.main-area--low h2:not([class]):before {
  content: "";
  width: 3.4rem;
  height: 0.4rem;
  background: #ea5d1e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
}
.main-area--low h3:not([class]) {
  margin: var(--s7) auto var(--s3);
  padding: 0 0 var(--s1) var(--s3);
  border-bottom: solid 1px #2c2c2c;
  border-left: solid 0.2rem #2c2c2c;
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  width: 1px;
  height: 100%;
  background: #2c2c2c;
  position: absolute;
  left: 0.4rem;
  top: 0;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
}
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s6) auto var(--s3);
  padding: 0.2rem 0 0.2rem var(--s3);
  font-size: 2rem;
  position: relative;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 0.8rem;
  height: 100%;
  background: #1ac247;
  border-radius: 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
}
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}
.main-area--low .icon-title {
  margin: var(--s10) 0 var(--s5);
  padding: var(--s2);
  background: #2c2c2c;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.main-area--low .icon-title:after {
  content: "";
  width: 100%;
  height: 100%;
  border-right: solid 1px #2c2c2c;
  border-bottom: solid 1px #2c2c2c;
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
}
.main-area--low .icon-title--check:before {
  content: "";
  width: 18.9rem;
  height: 4.7rem;
  background: url(img/icon-check-title.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -4.4rem;
}
.main-area--low .icon-title--point:before {
  content: "";
  width: 16.8rem;
  height: 4.7rem;
  background: url(img/icon-point.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -4.4rem;
}

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

    TOP common

*/
.common-title {
  padding-top: 8rem;
  font-size: 4.4rem;
  font-weight: 700;
  position: relative;
}
.common-title a {
  padding-right: var(--s6);
  text-decoration: none;
  display: inline-block;
  background: url(img/arrow-02-black-right.svg) no-repeat right center/3.8rem auto;
}
.common-title span.bg-bk {
  display: block;
  width: fit-content;
  padding: var(--s1) var(--s2);
  background: #2c2c2c;
  color: #fff;
  font-size: 3.4rem;
}
.common-title--01 {
  min-width: 56.5rem;
}
.common-title--01:before {
  content: "";
  width: 62.5rem;
  height: 38.1rem;
  background: url(img/txt-casestudy.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: 0;
  z-index: -1;
}
.common-title--02 {
  text-align: right;
}
.common-title--02:before {
  content: "";
  width: 53.9rem;
  height: 19.1rem;
  background: url(img/txt-flow.png) no-repeat center/contain;
  position: absolute;
  right: -10rem;
  top: 0;
  z-index: -1;
}
.common-title--02 span.bg-bk {
  margin-left: auto;
  margin-right: 0;
}
.common-title--03:before {
  content: "";
  width: 66.2rem;
  height: 19.1rem;
  background: url(img/txt-check.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: 0;
  z-index: -1;
}
.common-title--03 span.bg-bk {
  margin-left: auto;
  margin-right: auto;
}
.common-title--05 {
  text-align: right;
}
.common-title--05:before {
  content: "";
  width: 37.8rem;
  height: 19.1rem;
  background: url(img/txt-faq.png) no-repeat center/contain;
  position: absolute;
  right: -10rem;
  top: 0;
  z-index: -1;
}
.common-title--06:before {
  content: "";
  width: 82.2rem;
  height: 19.1rem;
  background: url(img/txt-column.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: 0;
  z-index: -1;
}

.common-lead {
  max-width: 58rem;
  margin: var(--s5) 0;
}
.common-lead--right {
  margin-left: auto;
  margin-right: 0;
}

.common-subtitle {
  margin-bottom: var(--s6);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.common-subtitle span {
  margin: 0 var(--s-2) var(--s1) 0;
  padding: 0 var(--s-2);
  display: inline-block;
  background: #2c2c2c;
  color: #fff;
}

.txt-center {
  margin-bottom: var(--s-2);
  text-align: center;
}

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

    TOP section

*/
.section-pic {
  margin-right: calc((100vw - 9rem - 110rem) / 2 * -1);
}

.section-pic2 {
  width: 58rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.section-pic3 {
  width: 45%;
  max-width: 61.5rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.sec-01__menu {
  margin: var(--s8) auto var(--s8);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s7) var(--s5);
}

.btn-menu {
  width: calc((100% - var(--s5) * 2) / 3);
  padding: var(--s3) var(--s7) var(--s3) var(--s6);
  border: solid 0.2rem #2c2c2c;
  border-radius: var(--s8);
  background: #fff url(img/arrow-01-black-down.svg) no-repeat right var(--s4) center/1.9rem auto;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.btn-menu:before {
  content: "";
  width: 12.8rem;
  height: 4.2rem;
  background: #fff url(img/txt-case01.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
}
.btn-menu:nth-of-type(2):before {
  background-image: url(img/txt-case02.png);
}
.btn-menu:nth-of-type(3):before {
  background-image: url(img/txt-case03.png);
}
.btn-menu:nth-of-type(4):before {
  background-image: url(img/txt-case04.png);
}
.btn-menu:nth-of-type(5):before {
  background-image: url(img/txt-case05.png);
}

@media (hover: hover) {
  .btn-menu:hover {
    opacity: 0.6;
  }
}
.sec-01__subarea {
  border-top: solid 1px #2c2c2c;
}
.sec-01__subarea .l-center {
  padding-top: var(--s8);
  position: relative;
}
.sec-01__subarea .l-center:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #2c2c2c;
  position: absolute;
  left: -2rem;
  top: 0;
}
.sec-01__subarea__deco {
  position: absolute;
  top: var(--s8);
  left: -10rem;
  width: 7.2rem;
  height: 30rem;
}
.sec-01__subarea .btn-internal {
  margin: 0;
}
.sec-01__subarea .btn-internal a {
  max-width: 37rem;
  margin: 0;
}
.sec-01__subarea--even {
  background: #f3efec;
}
.sec-01__subarea--even .l-center:before {
  right: -2rem;
  left: auto;
}
.sec-01__subarea--even .sec-01__subarea__deco {
  right: -10rem;
  left: auto;
}
.sec-01__subarea--even .tag-column:before {
  right: calc((var(--s3) + 2rem) * -1);
  left: auto;
}
.sec-01__subarea:last-of-type {
  border-bottom: solid 1px #2c2c2c;
}
.sec-01__subarea--low {
  margin-bottom: 5rem;
}

.sec-slider {
  position: relative;
}

.swiper-slide {
  display: grid;
  place-self: center;
  place-items: center;
} 
.swiper-slide img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.swiper-pagination {
  margin-top: var(--s1);
  position: static;
  text-align: right;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  opacity: 1;
  border: solid 1px #2c2c2c;
}
.swiper-pagination-bullet-active {
  background-color: #2c2c2c;
}

.swiper-button-next,
.swiper-button-prev {
  width: 5.6rem;
  height: 5.6rem;
  margin-left: auto;
  position: absolute;
  display: block;
  top: calc(50% - var(--s4));
  transition: opacity 0.3s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.swiper-button-next {
  right: -2.5rem;
}

.swiper-button-prev {
  left: -2.5rem;
}

@media (hover: hover) {
  .swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.6;
  }
}
.swiper-button-next {
  background: url(img/arrow-next.png) no-repeat center/contain;
}

.swiper-button-prev {
  margin-right: var(--s1);
  background: url(img/arrow-prev.png) no-repeat center/contain;
}

.company-prof {
  width: 48rem;
  margin-top: -8.5rem;
  z-index: 1;
  position: relative;
}
.company-prof__title {
  width: 13rem;
  margin: 0 0 var(--s1) var(--s1);
}
.company-prof__body {
  padding: var(--s2) var(--s3);
  border: solid 1px #2c2c2c;
  background: #fff;
}
.company-prof__item {
  padding: 0 0 0 1em;
  font-size: 1.3rem;
  position: relative;
}
.company-prof__item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #ea5d1e;
  border-radius: 10rem;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.block-change {
  margin: var(--s10) 0 var(--s6);
  --minmum: calc((100% - 14rem) / 2);
  grid-gap: 0 14rem;
  position: relative;
}
.block-change:before {
  content: "";
  width: 5.6rem;
  height: 6rem;
  background: url(img/arrow-after.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card-change__title {
  margin-bottom: var(--s2);
  display: flex;
  gap: var(--s2);
}
.card-change__icon {
  width: fit-content;
  padding: var(--s2);
  background: #2c2c2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.card-change__icon--after {
  background: #1ac247;
}
.card-change__txt {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
}

.tag-column {
  padding: var(--s2) 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
}
.tag-column:before {
  content: "";
  width: 100vw;
  height: 1px;
  border-top: dashed 1px #2c2c2c;
  position: absolute;
  left: calc((var(--s3) + 2rem) * -1);
  top: 0;
}

.tag-item {
  font-weight: 700;
}
.tag-item__link {
  text-decoration: none;
}

@media (hover: hover) {
  .tag-item__link:hover {
    text-decoration: underline;
  }
}
.sec-flow {
  position: relative;
}

.box-flow {
  margin-top: 9rem;
  padding: var(--s3);
  border: solid 1px #2c2c2c;
  background: #fff;
  position: relative;
}
.box-flow__number {
  position: absolute;
  top: var(--s4);
  left: 4.4rem;
  width: 9rem;
  height: 9rem;
}
.box-flow__number:before {
  content: "";
  width: 3.4rem;
  height: 1px;
  background: #2c2c2c;
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
}
.box-flow__column {
  display: flex;
}
.box-flow__time {
  width: 10rem;
  padding: var(--s4) var(--s2);
  background: #fdedd2;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP vertical";
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.box-flow__time--02 {
  background: #fadaa5;
}
.box-flow__time--02:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 5rem 0 5rem;
  border-color: #fdedd2 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.box-flow__time--03 {
  background: #f8c879;
}
.box-flow__time--03:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 5rem 0 5rem;
  border-color: #fadaa5 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.box-flow__time--04 {
  background: #f5b54c;
}
.box-flow__time--04:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 5rem 0 5rem;
  border-color: #f8c879 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.box-flow__time--05 {
  background: #f3a320;
}
.box-flow__time--05:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 5rem 0 5rem;
  border-color: #f5b54c transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}
.box-flow__body {
  flex: 1;
  padding: var(--s4) 0 var(--s4) 15.5rem;
  position: relative;
}
.box-flow__body:before {
  content: "";
  width: calc(100% - var(--s1));
  height: 0.1rem;
  border-top: dashed 1px #2c2c2c;
  position: absolute;
  left: var(--s1);
  bottom: 0;
}
.box-flow__body--last:before {
  display: none;
}
.box-flow__title {
  margin-bottom: var(--s5);
  font-size: 3.2rem;
  font-weight: 700;
  color: #ea5d1e;
  position: relative;
}
.box-flow__title span.bg-bk {
  display: block;
  width: fit-content;
  padding: var(--s-2) var(--s1);
  background: #2c2c2c;
  color: #fff;
  font-size: 1.8rem;
}

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

.box-point__tag {
  width: 13.7rem;
}
.box-point__body {
  padding: var(--s3) var(--s5);
  background: #f3efec;
}
.box-point__pic {
  display: block;
  width: 10rem;
  height: 10rem;
  margin: 0 auto var(--s1);
  border-radius: 50%;
}
.box-point__catch {
  margin-bottom: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: dashed 1px #2c2c2c;
  font-size: 2rem;
  font-weight: 700;
  color: #ea5d1e;
}
.box-point__name {
  text-align: center;
  font-size: 1.3rem;
}
.box-point--low {
  margin: var(--s10) 0;
}

.sec-check {
  position: relative;
}
.sec-check__subtitle {
  margin: var(--s5) 0;
  padding: 3.5rem var(--s2) 3.5rem 16rem;
  border-right: solid 1rem #2c2c2c;
  font-size: 3.4rem;
  font-weight: 700;
  position: relative;
}
.sec-check__subtitle:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border: solid 1px #2c2c2c;
  position: absolute;
  right: 0;
  top: 0;
  box-sizing: border-box;
  z-index: -1;
}
.sec-check__subtitle:after {
  content: "";
  width: 1px;
  height: calc(100% - var(--s2));
  background: #2c2c2c;
  position: absolute;
  left: 12rem;
  top: var(--s1);
}
.sec-check__subtitle--01 {
  background: url(img/txt-point01.png) no-repeat left center/8.2rem auto;
}
.sec-check__subtitle--02 {
  margin-top: 10rem;
  background: url(img/txt-point02.png) no-repeat left center/8.2rem auto;
}
.sec-check__subtitle--03 {
  margin-top: 10rem;
  background: url(img/txt-point03.png) no-repeat left center/8.2rem auto;
}
.sec-check__icontitle {
  margin: var(--s7) 0 var(--s4);
  padding: var(--s2) var(--s9);
  border-top: dashed 1px #2c2c2c;
  border-bottom: dashed 1px #2c2c2c;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
}
.sec-check__icontitle:before {
  content: "";
  width: 6rem;
  height: 6rem;
  background: url(img/icon-row.png) no-repeat center/contain;
  border-radius: 10rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec-check__icontitle--02:before {
  background-image: url(img/icon-wear.png);
}
.sec-check__h5 {
  margin: var(--s5) 0 var(--s2);
  padding-left: var(--s2);
  border-left: solid 0.6rem #ea5d1e;
  font-size: 2.4rem;
  font-weight: 700;
}

.card-hot {
  padding: var(--s3) 0;
  grid-row: span 6;
  background: #fef6e9;
}
.card-hot:nth-of-type(2) {
  background: #fdedd3;
}
.card-hot:nth-of-type(3) {
  background: #fadba5;
}
.card-hot:nth-of-type(4) {
  background: #f7c878;
}
.l-scroll-x-sp .caption{
  text-align:left;
}
.l-scroll-x-sp{
   margin-bottom: var(--s8);
}
.card-hot__temp {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.card-hot__level {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s-2) var(--s3);
  background: #2c2c2c;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.card-hot__pic {
  width: 10.4rem;
  margin: 0 auto;
}
.card-hot__center {
  text-align: center;
}
.card-hot__subtitle {
  border-bottom: solid 1px #2c2c2c;
  font-size: 1.8rem;
  font-weight: 700;
}
.card-hot__subtitle span {
  display: inline-block;
  padding: var(--s-2) var(--s2);
  background: #2c2c2c;
  color: #fff;
  position: relative;
}
.card-hot__subtitle span:before {
  content: "";
  width: 1.4rem;
  height: 100%;
  background: linear-gradient(-110deg, transparent 50%, #2c2c2c 52%);
  position: absolute;
  left: 100%;
  top: 0;
}
.card-hot p {
  padding: 0 var(--s2);
  line-height: 1.5;
}

.card-real {
  grid-row: span 3;
}
.card-real .sec-check__icontitle {
  margin: 0;
}
.card-real-wrap {
  margin-bottom: var(--s8);
  --minmum: calc((100% - var(--s8)) / 2);
  grid-gap: 0 var(--s8);
  position: relative;
}
.card-real-wrap:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #2c2c2c;
  position: absolute;
  left: 50%;
  top: 0;
}

.card-wear-wrap {
  margin-top: var(--s5);
  --minmum: calc((100% - var(--s5) * 2) / 3);
  grid-gap: 0 var(--s5);
}
.card-wear__tag {
  height: 3.6rem;
  border-bottom: solid 0.4rem #2c2c2c;
}
.card-wear__body {
  border: solid 0.2rem #2c2c2c;
}
.card-wear__title {
  padding: var(--s2);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
}
.card-wear__title--01 {
  background: url(img/icon-summer.png) no-repeat var(--s2) var(--s2)/4.4rem auto;
}
.card-wear__title--02 {
  background: url(img/icon-winter.png) no-repeat var(--s2) var(--s2)/4.4rem auto;
}
.card-wear__title--03 {
  background: url(img/icon-spring.png) no-repeat var(--s2) var(--s2)/4.4rem auto;
}
.card-wear__subtitle {
  padding: 0.5rem var(--s2) 0.5rem var(--s6);
  border-top: solid 1px #2c2c2c;
  border-bottom: solid 1px #2c2c2c;
  background: #f3efec url(img/icon-check.png) no-repeat var(--s2) center/2.3rem auto;
  font-size: 2rem;
  font-weight: 700;
}
.card-wear__text {
  padding: 2rem;
}
.card-wear p {
  line-height: 1.5;
}

.table-check th {
  font-size: 1.8rem;
  color: #4d4d4d;
}
.table-check td {
  font-size: 1.4rem;
  color: #4d4d4d;
}

.sec-faq {
  position: relative;
  padding-bottom: 16rem;
}

.card-faq {
  width: calc((100% - 2px) / 3);
  background: #fff;
  padding: var(--s3) var(--s4);
  flex: auto;
}
.card-faq-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: #2c2c2c;
  border: solid 1px #2c2c2c;
}
.card-faq__title {
  margin-bottom: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: solid 1px #ea5d1e;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.card-faq__title:before {
  content: "";
  width: 5.6rem;
  height: 0.6rem;
  background: #ea5d1e;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card-faq .btn-link {
  margin-bottom: 0;
}

.sec-column {
  position: relative;
}

.card-column {
  width: 50%;
  padding: var(--s3) var(--s4);
  border-top: solid 1px #2c2c2c;
  border-right: solid 1px #2c2c2c;
  background: #fff url(img/arrow-01-orange-right.svg) no-repeat right var(--s4) center/2.4rem auto;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  transition: background-color 0.3s;
}
.card-column-wrap {
  padding-bottom: 12rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.card-column-wrap:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s7));
  background: #f3a320;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translateX(-50%);
}

@media (hover: hover) {
  .card-column:hover {
    background-color: #f3efec;
  }
}
@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: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }

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

      sp layout stack

  */
  .l-stack {
    gap: var(--s2);
  }

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

      sp layout cluster

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

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

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }

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

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

      sp layout sidebar

  */
  .l-sidebar {
    margin-top: var(--s4);
    flex-wrap: wrap;
  }
  .l-sidebar__side {
    width: 100%;
    position: static;
  }
  .l-sidebar__main {
    width: 100%;
  }

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

      sp layout column

  */
  .l-column {
    gap: var(--s2);
    flex-wrap: wrap;
  }
  .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04, .l-column__side05 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }

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

      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);
  }
  .l-grid-areas .l-grid-areas__cell-03 {
    place-self: auto;
  }

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

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin-bottom: var(--s5);
    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) {
  /*
  ---------------------------------------------

      header area

  */
  .header-area {
    width: 100%;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    position: static;
  }
  .header-area__name {
    margin: 0;
    padding: var(--s1);
    padding-right: 7rem;
    text-align: left;
    writing-mode: initial;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-weight: 400;
  }
  .header-area__logo {
    display: none;
  }
  .header-area .btn-web {
    margin: 0;
  }

  .lower-logo {
    width: 16rem;
    margin: 0 auto;
  }

  .js-header-appear {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .js-header-appear.is-fixed {
    opacity: 1;
    visibility: visible;
  }

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

      mainvisual

  */
  .mainvisual {
    margin: 0;
  }
  .mainvisual-column {
    flex-wrap: wrap;
  }
  .mainvisual-column__pic {
    width: 100%;
    padding: var(--s2);
    background-position: top -4rem center;
  }
  .mainvisual-column__pic__inner:before {
    width: calc(100% - 20rem);
  }
  .mainvisual-column__pic__inner:after {
    height: calc(100% - 5.5rem);
  }
  .mainvisual-column__main {
    width: 100%;
    border-left: none;
  }
  .mainvisual-logo {
    width: 18rem;
  }
  .mainvisual-title {
    margin-top: var(--s8);
    padding: 0 var(--s1) var(--s1) var(--s1);
    line-height: 1.4;
    font-size: 1.8rem;
    text-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.8);
  }
  .mainvisual-title span {
    font-size: 2.7rem;
  }
  .mainvisual-btns__right {
    width: 53%;
  }
  .mainvisual-bg {
    padding: var(--s1) var(--s2);
  }

  .upper-text {
    padding: 1.2rem;
    font-size: 1.7rem;
    text-align: center;
  }

  .upper-text2 {
    padding: 1.2rem;
    font-size: 1.5rem;
  }

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

      main-area

  */
  .main-area {
    margin-right: 0;
  }

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

      toc

  */
  .toc-wrap {
    margin: var(--s4) 0;
  }
  .toc-wrap:before {
    width: 3.2rem;
    height: 2.6rem;
    left: var(--s1);
    top: -0.5rem;
  }
  .toc-wrap__title {
    font-size: 1.8rem;
  }
  .toc-wrap__title span.en {
    margin-right: var(--s2);
    width: 8rem;
  }
  .toc-wrap__main {
    padding: var(--s2) var(--s1);
  }

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

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 94%;
    min-height: 6rem;
    padding-right: 6rem;
    padding-left: 5rem;
    background-position: right 1.8rem center;
    background-size: 2.2rem auto;
    font-size: 1.5rem;
  }

  .btn-internal--pic1:before, .btn-internal--pic2:before {
    width: 9.6rem;
    height: 8rem;
  }

  .btn-web--header a {
    min-height: 5rem;
    height: auto;
    width: calc(100% - var(--s9));
    padding: var(--s1) var(--s6) var(--s1) var(--s4);
    border-radius: 0 var(--s2) 0 0;
    background-size: 2.4rem auto;
    background-position: right var(--s2) center;
    writing-mode: initial;
    font-family: "Noto Sans JP";
    font-size: 1.3rem;
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    z-index: 99;
  }
  .btn-web--header a:before {
    width: 6.2rem;
    height: 5.3rem;
    left: var(--s1);
    top: -0.5rem;
    transform: none;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding-right: 2.8rem;
    background-size: 2rem auto;
    font-size: 1.5rem;
  }

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 94%;
    min-height: var(--s7);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #1a8ec2 url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

  .btn-column {
    margin-top: var(--s2);
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
    margin: 0;
  }
  .btn-column .btn-web--pic1, .btn-column .btn-web--pic2,
.btn-column .btn-internal--pic1,
.btn-column .btn-internal--pic2,
.btn-column .btn-tel--pic1,
.btn-column .btn-tel--pic2 {
    margin-top: 7rem;
  }
  .btn-column--top {
    margin: var(--s2) auto 0;
    gap: var(--s1);
  }
  .btn-column--top .box-btns {
    margin: 0 auto var(--s4);
  }

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

      sp table

  */
  table th,
table td {
    padding: 1.2rem;
  }

  .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: #f3efec;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #f3efec;
    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;
  }

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

    sp catch

  */
  .catch,
.catch-01,
.catch-02 {
    font-size: 1.6rem;
  }

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

      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 {
    margin: var(--s1) 0 var(--s3);
  }

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

      sp footer

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

  .footer-about {
    margin-bottom: var(--s4);
  }
  .footer-about__main {
    max-width: calc(100% - var(--s6));
    margin: 0 auto;
    padding: var(--s3);
  }
  .footer-about-title {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .footer-about-p {
    font-size: 1.3rem;
  }

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

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

  .footer-logo {
    margin: var(--s1) auto;
    width: 16rem;
  }

  .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.4rem;
    height: 1.4rem;
    background: url("img/arrow-01-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.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-01-right.svg") no-repeat center/auto 1.4rem;
  }

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

  */
  .swiper-slide img {
    max-height: 230px;
  }
  /*
  ---------------------------------------------

    sp gnavi

  */
  .gnavi-btn {
    right: 0.6rem;
    top: 0.6rem;
    width: 5.2rem;
    height: 5.2rem;
    background-size: 2.8rem auto;
    background-position: center bottom var(--s1);
    border-width: 0.2rem;
  }
  .gnavi-btn span {
    left: 1.4rem;
    width: 2.4rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.8rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.5rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.2rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    top: 1.4rem;
  }
  .gnavi-btn.is-active span:nth-of-type(2) {
    display: none;
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    top: 3.6rem;
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s4) 0;
    margin-right: 0;
  }
  .gnavi-area__logo {
    display: block;
    width: 15rem;
    margin: 0 auto var(--s2);
  }

  .gnavi-logo {
    width: 22rem;
    margin: 0 auto var(--s2);
    padding-right: var(--s3);
  }

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

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    right: var(--s1);
    bottom: var(--s1);
  }

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

       sp toggle sp

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

  .toggle-btn:after {
    height: 1.6rem;
    width: 0.2rem;
    right: 1.1rem;
  }
  .toggle-btn:before {
    width: var(--s3);
    height: var(--s3);
  }

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

      more

  */
  .more-btn {
    width: 88%;
    padding: 1.8rem var(--s7);
  }
  .more-btn:before {
    width: 2rem;
    height: 0.3rem;
  }
  .more-btn:after {
    height: 2rem;
    width: 0.3rem;
    right: 3.3rem;
  }

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

      lower parts

  */
  .box-summary {
    margin: var(--s10) 0 var(--s12);
    padding: var(--s1) var(--s3) var(--s5);
  }
  .box-summary:after {
    height: 90%;
    bottom: -3rem;
  }
  .box-summary__title {
    margin-top: -2.4rem;
  }
  .box-summary__title span.en {
    height: 2.7rem;
  }
  .box-summary__catch {
    font-size: 1.6rem;
  }
  .box-summary .btn-internal {
    margin: 0;
  }

  .box-sponsored {
    margin: 8rem 0;
    padding-left: var(--s2);
    padding-bottom: 0;
  }
  .box-sponsored:before {
    width: 4rem;
    height: calc(100% - var(--s3));
    left: calc(var(--s3) * -1);
    right: auto;
    top: var(--s3);
    background-size: 2rem auto;
    background-position: right var(--s1) top var(--s1);
  }
  .box-sponsored__upper {
    margin-bottom: var(--s2);
    padding-bottom: var(--s2);
    flex-wrap: wrap;
  }
  .box-sponsored__upper .l-column__main {
    flex: initial;
  }
  .box-sponsored__upper:before {
    height: 100%;
    top: 0;
  }
  .box-sponsored__upper--low {
    padding-top: var(--s3);
    flex-direction: column-reverse;
  }
  .box-sponsored__upper--low .l-column__main {
    padding: 0 var(--s2);
  }
  .box-sponsored__pic {
    width: 50%;
    margin: 0 auto;
  }
  .box-sponsored__title {
    padding: var(--s3) var(--s2) 0;
    font-size: 2rem;
  }
  .box-sponsored__title span {
    margin-top: var(--s1);
  }
  .box-sponsored__name {
    padding: var(--s1);
    font-size: 1.3rem;
  }
  .box-sponsored__body {
    padding-left: var(--s2);
  }
  .box-sponsored .btn-web,
.box-sponsored .btn-internal {
    margin: 0 auto;
    width: 90%;
  }
  .box-sponsored__btns {
    margin: var(--s1) 0;
    flex-direction: column;
    gap: var(--s2);
  }
  .box-sponsored .catch-02 {
    margin-bottom: var(--s1);
  }

  .name-comp {
    gap: var(--s2);
  }
  .name-comp__tag {
    width: fit-content;
    padding: var(--s1) var(--s2);
    font-size: 1.4rem;
  }
  .name-comp__txt span {
    font-size: 1.8rem;
  }
  .name-comp--low {
    margin: 0 auto var(--s2);
    padding-bottom: var(--s2);
  }

  .box-relation__title {
    padding: var(--s2) 0 0 var(--s2);
    font-size: 1.8rem;
  }
  .box-relation__title span {
    padding: 0 0 0 var(--s2);
  }
  .box-relation__list {
    padding: var(--s3);
  }
  .box-relation__item {
    max-width: initial;
  }

  .box-taglist__title {
    font-size: 1.8rem;
  }

  .box-interview {
    padding: 0 0 var(--s2);
  }
  .box-interview .l-column {
    flex-direction: column-reverse;
  }
  .box-interview__pic {
    display: block;
    width: 10rem;
    height: 10rem;
    margin: -3rem auto var(--s1);
    position: relative;
    z-index: 1;
  }

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

      SP titles

  */
  .pr-text {
    font-size: 1.2rem;
  }

  .title-area:before {
    height: 6rem;
    left: auto;
    right: -3rem;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s7) auto var(--s2);
  }
  .main-area--low h1:not([class]) {
    min-height: initial;
    margin: 0 auto var(--s2);
    padding-bottom: 0;
    font-size: 2.6rem;
  }
  .main-area--low h1:not([class]):before {
    height: 6rem;
    width: 100%;
    left: -1rem;
    top: 0;
    transform: none;
    background-position: left top;
  }

  .main-area--low h2:first-child{
    margin-top:var(--s3);
  }
  .main-area--low h2:not([class]) {
    padding: var(--s2) var(--s2) var(--s2) var(--s5);
    font-size: 2.3rem;
  }
  .main-area--low h2:not([class]):before {
    width: 2.4rem;
    height: 0.3rem;
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-left: var(--s2);
    font-size: 2.2rem;
    margin-top: var(--s5);
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    padding-left: var(--s2);
    font-size: 2rem;
    margin-top: var(--s4);
  }
  .main-area--low h4:not([class]):before {
    width: 0.5rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low .icon-title {
    margin: var(--s8) 0 var(--s4);
    font-size: 1.8rem;
  }
  .main-area--low .icon-title:before {
    width: 11rem;
    top: -3.5rem;
  }
  .main-area--low .icon-title--point:before {
    width: 10rem;
  }

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

      SP end

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

      TOP common

  */
  .common-title {
    padding-top: var(--s5);
    font-size: 2.4rem;
  }
  .common-title--01:before {
    width: 25rem;
    height: 20rem;
    left: 0;
  }
  .common-title--02:before {
    width: 23rem;
    height: 8.5rem;
    left: auto;
    right: -1rem;
    top: 0;
  }
  .common-title--03:before, .common-title--06:before {
    width: 26rem;
    height: 8.5rem;
    right: auto;
    left: -1rem;
    top: 0;
  }
  .common-title--05 {
    text-shadow: 0 -4px 0.4rem #fff;
  }
  .common-title--05:before {
    width: 17rem;
    height: 8.5rem;
    left: auto;
    right: -1rem;
    top: 0;
  }
  .common-title a {
    padding-right: var(--s4);
    background-size: 2.4rem auto;
  }
  .common-title span.bg-bk {
    font-size: 1.8rem;
  }

  .common-subtitle {
    margin-bottom: var(--s1);
    font-size: 2.2rem;
  }

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

      TOP section

  */
  .sec-01 {
    padding-top: 25rem;
    position: relative;
  }
  .sec-01__subarea .l-center {
    padding-top: var(--s4);
  }
  .sec-01__subarea__deco {
    left: auto;
    right: var(--s1);
    top: var(--s3);
    width: 3.4rem;
  }
  .sec-01__subarea .btn-internal {
    margin: var(--s3) auto;
  }
  .sec-01__subarea .btn-internal a {
    margin: 0 auto;
  }
  .sec-01__subarea--even .tag-column:before {
    left: calc(var(--s2) * -1);
    right: auto;
  }

  .section-pic {
    margin-right: 0;
    width: 80%;
    position: absolute;
    right: 0;
    top: -33px;
    /* opacity: 0.5; */
    z-index: -2;
  }

  .section-pic2 {
    width: 50%;
    opacity: 0.5;
    z-index: -2;
  }

  .section-pic3 {
    width: 50%;
    opacity: 0.6;
    z-index: -2;
    /* top: -1rem; */
  }

  .sec-01__menu {
    margin: var(--s6) 0;
    gap: var(--s3) var(--s1);
  }

  .btn-menu {
    width: calc((100% - var(--s1)) / 2);
    padding: var(--s2) var(--s3) var(--s2) var(--s1);
    padding-right: var(--s3);
    border-radius: var(--s3);
    background-position: right var(--s1) center;
    background-size: 1.4rem auto;
    font-size: 1.3rem;
  }
  .btn-menu:before {
    width: 7.5rem;
    height: 2.2rem;
    padding: 0 var(--s1);
    top: -1.2rem;
  }

  .company-prof {
    margin-top: 0;
    width: 100%;
  }
  .company-prof__body {
    padding: var(--s2);
  }

  .swiper-button-next,
.swiper-button-prev {
    width: 2.8rem;
    height: 2.8rem;
    top: 45%;
  }

  .swiper-button-next {
    right: -1.4rem;
  }

  .swiper-button-prev {
    left: -1.4rem;
  }

  .block-change {
    margin-top: var(--s4);
    gap: var(--s7);
  }
  .block-change:before {
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
  }

  .card-change__txt {
    font-size: 1.6rem;
  }
  .card-change__icon--after {
    min-width: 8.4rem;
  }

  .tag-column {
    display: block;
  }
  .tag-column:before {
    left: calc(var(--s2) * -1);
  }

  .sec-flow,
.sec-check,
.sec-faq,
.sec-column {
    padding-top: 13rem;
  }

  .sec-faq {
    padding-bottom: var(--s2);
  }

  .box-flow {
    margin-top: var(--s4);
    padding: var(--s1);
  }
  .box-flow__time {
    width: 5rem;
    font-size: 1.5rem;
  }
  .box-flow__time--01:before, .box-flow__time--02:before, .box-flow__time--03:before, .box-flow__time--04:before, .box-flow__time--05:before {
    border-width: 1.4rem 2.5rem 0 2.5rem;
  }
  .box-flow__number {
    width: 3.8rem;
    height: 3.8rem;
    position: relative;
    top: 0;
    left: 1.4rem;
  }
  .box-flow__number:before {
    width: 2rem;
  }
  .box-flow__body {
    padding: var(--s1) 0 var(--s4) var(--s2);
  }
  .box-flow__title {
    margin-bottom: var(--s3);
    font-size: 1.9rem;
  }
  .box-flow__title span.bg-bk {
    margin-top: var(--s1);
    font-size: 1.5rem;
  }
  .box-flow__title.toggle-btn {
    padding-right: var(--s5);
  }

  .box-point__tag {
    width: 10rem;
  }
  .box-point__body {
    padding: var(--s2);
    flex-direction: column-reverse;
  }
  .box-point__pic {
    width: 8rem;
    height: 8rem;
  }
  .box-point__name {
    font-size: 1.2rem;
  }
  .box-point__catch {
    font-size: 1.6rem;
  }

  .sec-check__subtitle {
    margin-bottom: var(--s2);
    padding: var(--s2) var(--s2) var(--s2) 7rem;
    font-size: 1.8rem;
  }
  .sec-check__subtitle--01, .sec-check__subtitle--02, .sec-check__subtitle--03 {
    margin-top: var(--s6);
    background-size: 4rem auto;
  }
  .sec-check__subtitle:after {
    left: 5.5rem;
  }

  .sec-check__icontitle {
    margin: var(--s5) 0 var(--s2);
    padding: var(--s2) 0 var(--s2) var(--s7);
    font-size: 1.7rem;
  }
  .sec-check__icontitle:before {
    width: 4rem;
    height: 4rem;
  }

  .sec-check__h5 {
    font-size: 1.6rem;
  }

  .card-hot {
    padding: var(--s2) 0;
    grid-gap: var(--s1);
  }
  .card-hot-wrap {
    width: 90rem;
    margin-bottom: var(--s1);
  }
  .card-hot__temp {
    font-size: 2.2rem;
  }
  .card-hot__level {
    font-size: 1.6rem;
  }
  .card-hot__pic {
    width: 7rem;
  }
  .card-hot__subtitle {
    font-size: 1.4rem;
  }

  .card-real-wrap {
    margin-bottom: var(--s5);
    grid-gap: var(--s4);
  }
  .card-real-wrap:before {
    content: none;
  }

  .card-wear-wrap {
    margin-top: var(--s3);
  }
  .card-wear__title {
    font-size: 2.8rem;
  }
  .card-wear__subtitle {
    font-size: 1.6rem;
  }
  .card-wear__text {
    padding: 1rem 2rem;
  }

  .table-check {
    margin-top: var(--s2);
  }
  .table-check th {
    font-size: 1.4rem;
  }

  .card-faq {
    width: 100%;
    padding: var(--s2);
  }

  .card-column {
    width: 100%;
    padding: var(--s2) var(--s5) var(--s2) var(--s2);
    font-size: 1.6rem;
    background-position: right 1.2rem center;
    background-size: 1.6rem auto;
  }
  .card-column-wrap {
    padding-bottom: var(--s8);
  }

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

      SP end

  */
}
