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

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

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

li {
  list-style: none;
}

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

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

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

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

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

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

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

    animation

*/
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*  inView */
.blurIn {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
  transition: all 0.8s ease;
}

.blurIn.animated {
  opacity: 1;
  -ms-filter: blur(0);
  filter: blur(0);
}

.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, 3rem);
  transition: transform 0.8s ease, opacity 0.8s ease, background 0.8s 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);
}

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

    layout center

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

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

    layout stack

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

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

    layout cluster

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

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

    layout grid

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

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

@supports (width: min(var(--minmum), 100%)) {
  .l-grid,
.l-grid-three {
    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: 18rem;
}
.l-column__side02 {
  width: 44rem;
}
.l-column__side03 {
  width: 28rem;
}
.l-column__side04 {
  width: 21.5rem;
}
.l-column__side05 {
  width: 70rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}
.l-column--align-end {
  align-items: flex-end;
}
.l-column--wide {
  gap: var(--s8);
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 37.5rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s4) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
  width: 100%;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas:
    "catch img"
    "text img";
  grid-template-columns: 1fr 54.5rem;
}
.l-grid-areas--row-reverse--02 {
  grid-template-columns: 1fr 40rem;
  grid-gap: var(--s2) var(--s8);
}
.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;
}
.l-grid-areas--02 {
  grid-template-columns: 40rem 1fr;
  grid-gap: var(--s2) var(--s8);
}

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

    layout float

*/
.l-float {
  display: flow-root;
}
.l-float__left-pc {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right-pc {
  width: 40rem;
  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: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right {
  width: 40rem;
  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 li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.4em;
  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: #E87B5A;
  border-radius: 10rem;
  position: absolute;
  top: 0.45em;
  left: 0.2em;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area .subList li a,
.main-area ul:not([class]) li a {
  text-decoration: none;
}
.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 {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  max-width: 45rem;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s2) var(--s7);
  background: #756C67 url("img/arrow-01-white-right.svg") no-repeat center right 2rem/auto 2.7rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s;
}
.btn-internal a:hover {
  background-position: center right var(--s2);
  opacity: 0.7;
}
.btn-internal--long a {
  width: auto;
  max-width: 52rem;
  min-width: 45rem;
}

.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  max-width: 45rem;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s2) var(--s7);
  background: #37a4c7 url(img/arrow-btn-web.svg) no-repeat center right 2rem / auto 2.7rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s;
}
.btn-web a:hover {
  background-position: center right var(--s2);
  opacity: 0.7;
}
.btn-web--check:before {
  content: "";
  width: 11rem;
  height: 3.8rem;
  background: url(img/icon-check.png) no-repeat center bottom/contain;
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
  z-index: 1;
}

.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s1) var(--s3) var(--s1) 0;
  background: url("img/arrow-02-pink-right.svg") no-repeat center right/auto var(--s2);
  display: inline-block;
  font-weight: 700;
  color: #483B35;
  line-height: 1.5;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.btn-tel {
  display: none;
}

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

    table

*/
table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #888;
  border-left: 1px solid #888;
}

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

th {
  background: #FBF8EE;
}

tbody th {
  background: #FBF8EE;
}

.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: 1.2rem;
  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-01 {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  line-height: 1.5;
  color: #E87B5A;
}

.catch-02 {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  line-height: 1.5;
  color: #483B35;
}

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

	text

*/
.marker {
  /* border-bottom: solid 0.4rem #E9C571; */
  font-weight: 700;
  color: #e96f4c;
}

.txt_bold {
  font-weight: 700;
}

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

	subgrid card

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

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

    float wrap

*/
.float-wrap {
  display: flow-root;
}
.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: 50rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

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

	pankuzu

*/
#pankuzu {
  width: 100%;
  margin: 0 auto var(--s4);
  padding: var(--s1) 0;
  color: #000;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 0;
}
#pankuzu > span {
  color: #000;
}

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

    footer

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

.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(--s2) 0;
  background: #483B35;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  padding: var(--s2) var(--s4);
  background: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

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

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

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

.footer-banner {
  width: 29.5rem;
  display: block;
  position: fixed;
  right: -1rem;
  bottom: var(--s10);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  text-decoration: none;
}
.footer-banner.is-show {
  opacity: 1;
  visibility: visible;
}
.footer-banner.for-sp {
  display: none;
}

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

    gnavi

*/
.gnavi-btn {
  display: none;
}

.gnavi-area {
  display: none;
}

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

    page

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

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  margin: var(--s3) auto;
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: #000;
  border: 0.2rem solid #000;
  color: #FFF;
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  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 {
  width: fit-content;
  min-width: 22rem;
  display: block;
  margin: var(--s1) auto 0;
  padding: 1.2rem var(--s4);
  border-radius: 5rem;
  border: solid 1px #483B35;
  cursor: pointer;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #483B35;
  position: relative;
}
.more-btn::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: #483B35;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: #483B35;
  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: 12rem;
  overflow: hidden;
  transition: max-height 1s;
}

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

.more__content.open {
  height: auto;
}

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

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

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

.more__btn {
  width: fit-content;
  min-width: 22rem;
  display: block;
  margin: var(--s1) auto 0;
  padding: var(--s1) var(--s4);
  border-radius: 5rem;
  border: solid 1px #483B35;
  cursor: pointer;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
}
.more__btn::before {
  content: "";
  width: 1.3rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.3rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

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

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

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

    TOC Parts

*/
.toc-wrap {
  max-width: 68.5rem;
  margin: var(--s5) auto;
}
.toc-wrap--top {
  margin-top: 0;
}
.toc-wrap ul {
  margin-top: 0;
  margin-bottom: 0;
}
.toc-wrap ul li + li {
  margin-top: 1.2em;
}
.toc-wrap ul li.chapter-h-two {
  padding: 0 0 0 2.5em;
  font-size: 1.3rem;
  position: relative;
  counter-increment: count;
}
.toc-wrap ul li.chapter-h-two::before {
  content: counter(count, decimal-leading-zero);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  color: #483B35;
  line-height: 1;
  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-ttl {
  padding: 1.2rem var(--s3);
  border-radius: var(--s2) var(--s2) 0 0;
  background: #F2DCAA;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
}

.toc-body {
  padding: var(--s4) var(--s5);
  border: solid 0.2rem #F2DCAA;
  border-radius: 0 0 var(--s2) var(--s2);
  background: #fff;
}

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

    titles

*/
.main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
  font-family: "Zen Maru Gothic";
  font-weight: 700;
}

h1:not([class]) {
  margin: 0 auto var(--s4) 0;
  font-family: "Zen Maru Gothic";
  font-size: 4.8rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
  z-index: 0;
}
h1:not([class]):before {
  content: "";
  width: 8.9rem;
  height: 8.9rem;
  background: url(img/deco-h1.png) no-repeat center/contain;
  position: absolute;
  left: -6rem;
  top: -1rem;
  z-index: -1;
}

.pr-lower {
  font-size: 1.2rem;
  color: #483B35;
  line-height: 1.5;
}

.main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s7) auto var(--s3);
  font-weight: 700;
}
.main-area--low h2:not([class]) a,
.main-area--low h3:not([class]) a,
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
}
.main-area--low h2:not([class]) a:hover,
.main-area--low h3:not([class]) a:hover,
.main-area--low h4:not([class]) a:hover,
.main-area--low h5:not([class]) a:hover {
  opacity: 0.6;
}
.main-area--low h2:not([class]) {
  padding: var(--s2) var(--s4);
  background: #E19F8B;
  border-radius: var(--s2);
  font-size: 3.8rem;
  color: #fff;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.6rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  padding: 0 var(--s3) var(--s2) var(--s3);
  font-size: 2.4rem;
  border-bottom: solid 0.3rem #FCE9AF;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  width: 5.7rem;
  height: 5.7rem;
  border-radius: 50%;
  background: #FCE9AF;
  position: absolute;
  left: -1rem;
  top: -1.4rem;
  z-index: -1;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 3rem auto;
}
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  padding: 0 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;
  border-radius: var(--s1);
  height: 100%;
  background: #483B35;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 3rem auto;
}

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

    TOP

*/
.header-area {
  width: 100%;
  padding: var(--s1);
  display: flex;
  justify-content: space-between;
}
.header-area__logo {
  display: block;
  width: 37rem;
}
.header-area__wrap {
	justify-content: center;
	margin: 0 auto 0 0;
	width: 42rem;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.header-area__name {
  margin-right: auto;
  margin-left: 0;
  font-size: 1.1rem;
  align-items: center;
  display: block;
}
.header-area--low {
	align-items: center;
}

.header-area__sponsored {
  margin-right: auto;
  margin-left: 0;
  font-size: 1.1rem;
  align-items: center;
  display: -webkit-box;
}
.header-area__name__link {
  display: block;
  padding-left: 20.5rem;
  background: url(img/logo.png) no-repeat left top/auto 100%;
  text-decoration: none;
}
.header-area__name__link:hover {
  opacity: 0.6;
}
.header-area__sponsered {
  text-align: right;
  font-size: 1.1rem;
}
.header-area-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-area-nav__item {
  text-align: center;
  border-right: solid 1px #000;
}
.header-area-nav__item:last-child {
  border: none;
}
.header-area-nav__item a {
  display: block;
  padding: 0 var(--s3);
  text-decoration: none;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  color: #483B35;
}
.header-area-nav__item a:hover {
  opacity: 0.6;
}
.header-area .btn-web {
  margin: 0;
}
.header-area .btn-web a {
  min-height: initial;
  font-size: 1.4rem;
  line-height: 1.5;
}

.header-menu {
  width: 100%;
  padding: var(--s1);
  background: #F9F8F3;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.4s;
  z-index: 9;
}
.header-menu.js-header-appear {
  opacity: 0;
  visibility: hidden;
}
.header-menu.js-header-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}
.header-menu .btn-web {
  margin: 0;
}
.header-menu .btn-web a {
  min-height: initial;
  font-size: 1.4rem;
  line-height: 1.5;
}
.header-menu__logo {
  margin: 0 auto 0 0;
  width: 24rem;
  /* margin: auto; */
  display: flex;
  align-items: center;
  justify-content: start;
}
.header-menu__logo a:hover {
  opacity: 0.6;
}

.mainvisual {
  padding-bottom: 10rem;
  background: url(img/mv-bg.png);
  background-size: 150rem auto;
  overflow: hidden;
}
.mainvisual-inner {
  max-width: 128rem;
  min-height: 63.7rem;
  margin: 0 auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
  position: relative;
}
.mainvisual-title {
  width: 50%;
  margin-bottom: var(--s4);
  padding: 0 var(--s2) var(--s1) 0;
  font-family: "Zen Maru Gothic";
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #483B35;
  position: relative;
  z-index: 0;
}
.mainvisual-title:before {
  content: "";
  width: 100vw;
  height: calc(100% + 5rem);
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.mainvisual-title span.sm {
  font-size: 3rem;
  color: #E87B5A;
}
.mainvisual-title span.dot {
  background-image: linear-gradient(to right, #483B35 3px, transparent 3px);
  background-size: 1.2rem 0.3rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.mainvisual-logo {
  display: block;
  margin-bottom: var(--s4);
  width: 24rem;
  position: relative;
  z-index: 1;
}
.mainvisual-text {
  max-width: 50%;
}
.mainvisual-low {
  margin-bottom: var(--s3);
  padding: var(--s3) 0;
  background: url(img/mv-bg-low.png) repeat left top/150rem auto, #F9F8F3;
}
.mainvisual-sponsored {
  max-width: 64rem;
  margin-top: var(--s5);
  font-size: 1.1rem;
}
.mainvisual-pic {
  width: calc(50vw - var(--s5));
  height: 63.7rem;
  position: absolute;
  left: calc(50% + var(--s5));
  top: var(--s3);
  transition-delay: 0.4s;
  max-width: 77rem;
}

.main-area {
  overflow: clip;
}
.main-area--low {
  overflow: initial;
  padding-top: 0;
  padding-bottom: 8rem;
}

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

    lower Parts

*/
.relations {
  margin: var(--s6) auto;
  padding: var(--s3) var(--s6) var(--s4);
  background: #F9F8F3;
  border-radius: var(--s3);
}
.relations-title {
  margin-bottom: var(--s3);
  padding-bottom: var(--s2);
  border-bottom: solid 1px #999;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 700;
  color: #483B35;
  display: flex;
  align-items: center;
}
.relations-title:before {
  content: "LINKS";
  margin-right: var(--s3);
  font-size: 2.8rem;
  font-weight: 700;
  color: #E87B5A;
}

.box-sv {
  max-width: 92rem;
  margin: var(--s10) auto;
  padding: 0 var(--s6) var(--s5);
  border-radius: var(--s2) var(--s10) var(--s2) var(--s2);
  border: solid 0.4rem #F2DCAA;
  background: #fff;
}
.box-sv__title {
  width: fit-content;
  margin: -3rem auto var(--s4) 0;
  background: #FFF4CE;
  border-radius: var(--s2);
  border: solid 0.4rem #F2DCAA;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
  display: flex;
}
.box-sv__title__tag {
  padding: var(--s2) var(--s4);
  background: #F2DCAA;
}
.box-sv__title span {
  padding: var(--s3) var(--s4) var(--s1);
  position: relative;
}
.box-sv__name {
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
  line-height: 1;
}
.box-sv__name span {
  font-size: 1.6rem;
}
.box-sv__btns {
  margin: var(--s4) auto 0;
  display: flex;
}
.box-sv__btns .btn-internal,
.box-sv__btns .btn-web {
  margin: 0 auto;
}
.box-sv__btns .btn-internal a,
.box-sv__btns .btn-web a {
  width: 38rem;
}
.box-sv .btn-link {
  margin-bottom: 0;
}

.box-day {
  margin: 10rem auto;
  padding: var(--s6);
  background: rgba(250, 242, 232, 0.5);
  border-radius: var(--s4);
  position: relative;
}
.box-day__title {
  padding: 2.2rem var(--s10) 2.2rem var(--s4);
  background: #E87B5A;
  border-radius: var(--s2);
  font-size: 3rem;
  font-family: "Zen Maru Gothic";
  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: 13.5rem;
  height: 13.5rem;
  position: absolute;
  right: var(--s8);
  top: -2rem;
}
.box-day__wrap {
  margin-left: var(--s7);
  padding-top: var(--s2);
  position: relative;
}
.box-day__wrap:before {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: #E87B5A;
  position: absolute;
  left: -3rem;
  top: 0;
}
.box-day__time {
  display: flex;
  padding: 2rem 0;
  gap: var(--s5);
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  font-size: 1.8rem;
  color: #483B35;
  position: relative;
}
.box-day__time:before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: #E87B5A;
  border-radius: 50%;
  position: absolute;
  left: -4rem;
  top: 2.2rem;
}
.box-day__time__catch {
  display: block;
  margin-bottom: var(--s1);
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 700;
  color: #483B35;
}
.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-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #000;
}

.lower-voice {
  max-width: 93rem;
  margin: var(--s10) 0 var(--s10) auto;
  padding: var(--s6) var(--s7) var(--s6) 22rem;
  border-radius: var(--s2) var(--s2) 10rem var(--s2);
  background: #F9F8F3;
  position: relative;
}
.lower-voice__pic {
  position: absolute;
  left: -7rem;
  top: -1rem;
}
.lower-voice .card-voice__name {
  text-align: left;
}

.interview-list {
  margin: var(--s10) auto;
}
.interview-list__title {
  margin-bottom: var(--s5);
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
}
.interview-list__title:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #483B35;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.interview-list__title span {
  padding-right: var(--s2);
  background: #fff;
}

.box-mark {
  padding-top: var(--s3);
  padding-left: var(--s2);
  position: relative;
}
.box-mark__inner {
  height: 100%;
  border-radius: var(--s1);
  padding: var(--s2) var(--s2) var(--s1) 10rem;
  background: #F9F8F3;
}
.box-mark__pic {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  left: 0;
}
.box-mark__txt {
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  color: #E87B5A;
}
.box-mark .btn-link {
  margin: 0 0 0 auto;
}
.box-mark .btn-link a {
  text-decoration: none;
}

.lower-common {
  margin-top: 12rem;
}

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

    TOP common

*/
.common-title {
  font-family: "Zen Maru Gothic";
  font-size: 4.6rem;
  font-weight: 700;
  text-align: center;
  color: #483B35;
}
.common-title-en {
  margin-bottom: var(--s2);
  text-align: center;
  color: #E87B5A;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.common-title-en--left {
  text-align: left;
}
.common-title a {
  padding: 0 var(--s8) 0 0;
  background: url(img/arrow-01-pink-right.svg) no-repeat right bottom 0.2em/4rem auto;
  text-decoration: none;
}
.common-title a:hover {
  opacity: 0.7;
}
.common-title--left {
  text-align: left;
}
.common-title span.sm {
  font-size: 3rem;
}
.common-title span.cl {
  color: #E87B5A;
}
.common-title__wrap {
  margin-bottom: var(--s7);
}

.common-lead {
  max-width: 98rem;
  margin: 0 auto var(--s5);
}
.common-lead--center {
  text-align: center;
}

section {
  padding: 12rem 0;
}

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

    TOP Parts

*/
.bg-beige {
  background: url(img/bg-sec01-top.png) no-repeat left top/100% auto, url(img/bg-beige.png) repeat left top/150rem auto;
}

.box-circle {
  width: 48rem;
  height: 48rem;
  margin: 0 auto;
  padding-top: var(--s5);
  position: relative;
  z-index: 0;
}
.box-circle:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-circle--real {
  transition-delay: 0.3s;
}
.box-circle--real:before {
  background: #F9F8F3;
}
.box-circle__title {
  width: 13.5rem;
  height: 13.5rem;
  border-radius: 50%;
  background: #E88F75;
  font-family: "Zen Maru Gothic";
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: var(--s4);
  top: var(--s2);
}
.box-circle__title--reverse {
  right: auto;
  left: var(--s2);
  background: #483B35;
}
.box-circle__illust {
  width: 14.6rem;
  height: 23rem;
  position: absolute;
  right: var(--s5);
  bottom: var(--s8);
}
.box-circle__illust--reverse {
  right: auto;
  left: var(--s5);
  width: 13.4rem;
}

.card-fkds {
  width: fit-content;
  margin-top: var(--s4);
  padding: var(--s2) var(--s4);
  border-radius: var(--s2);
  border: solid 1px #483B35;
  background: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
}
.card-fkds:before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background: url(img/fkds-arrow.png) no-repeat center/contain;
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
}
.card-fkds--01 {
  margin-left: -3rem;
}
.card-fkds--02 {
  margin-left: -5rem;
}
.card-fkds--03 {
  margin-left: -3rem;
}
.card-fkds--04 {
  margin-right: -2rem;
  margin-left: auto;
}
.card-fkds--04:before {
  transform: scale(-1, 1);
  right: auto;
  left: -0.8rem;
}
.card-fkds--05 {
  margin-right: -5rem;
  margin-left: auto;
}
.card-fkds--05:before {
  transform: scale(-1, 1);
  right: auto;
  left: -0.8rem;
}
.card-fkds--06 {
  margin-right: -1rem;
  margin-left: auto;
}
.card-fkds--06:before {
  transform: scale(-1, 1);
  right: auto;
  left: -0.8rem;
}

.sec01-txt {
  margin-top: var(--s4);
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.sec-between {
  padding-top: var(--s1);
  position: relative;
}
.sec-between:before {
  content: "";
  width: 29.6rem;
  height: 11.2rem;
  background: url(img/arrow-beige.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1.4rem;
  transform: translateX(-50%);
  color: #483B35;
  z-index: -1;
}
.sec-between__title {
  margin-top: var(--s10);
  margin-bottom: var(--s5);
  font-family: "Zen Maru Gothic";
  font-size: 4rem;
  font-weight: 700;
  color: #483B35;
  text-align: center;
}
.sec-between__title span.st {
  font-size: 6rem;
  color: #E87B5A;
  position: relative;
}
.sec-between__title span.st:before {
  content: "";
  width: 100%;
  height: 1.6rem;
  background: url(img/dot.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -1.2rem;
}
.sec-between .common-lead {
  text-align: center;
}

.title-betwen {
  font-family: "Zen Maru Gothic";
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
}

.sec-bg {
  background: url(img/bg-section.png);
  background-size: 153rem auto;
  z-index: 0;
  position: relative;
}
.sec-bg__btm {
  margin-bottom: -40rem;
}
.sec-bg__btm img {
  width: 100%;
}

.box-sponsored {
  padding: 0 0 var(--s8) 0;
  position: relative;
  z-index: 0;
}
.box-sponsored:before {
  content: "";
  width: calc(100% + 16rem);
  height: calc(100% - var(--s3));
  background: #fff;
  border-radius: var(--s2) 12rem var(--s2) var(--s2);
  position: absolute;
  left: -8rem;
  top: var(--s3);
  z-index: -1;
}
.box-sponsored--second:before {
  border-radius: var(--s2) 12rem 0 0;
}
.box-sponsored__title {
  width: fit-content;
  margin: 0 auto var(--s6);
  padding: var(--s1) var(--s7);
  border-radius: var(--s1);
  background: #F5D3C8;
  color: #483B35;
  font-family: "Zen Maru Gothic";
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.box-sponsored__title span.sm {
  margin-left: var(--s2);
  font-size: 1.6rem;
  font-weight: 400;
}
.box-sponsored__vertical {
  margin-left: -2rem;
  writing-mode: vertical-rl;
  font-family: "Zen Maru Gothic vertical";
  font-size: 3.6rem;
  font-weight: 700;
  color: #483B35;
  letter-spacing: 0.3rem;
  line-height: 1.8;
}
.box-sponsored__vertical span.line {
  position: relative;
}
.box-sponsored__vertical span.line:before {
  content: "";
  width: 1.1rem;
  height: 100%;
  border-radius: 0.5rem;
  background: #F5D3C8;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.box-sponsored__name {
  margin-bottom: var(--s4);
  font-family: "Zen Maru Gothic";
  font-size: 3.4rem;
  font-weight: 700;
  color: #483B35;
  text-align: center;
}
.box-sponsored__name span.sm {
  margin-right: var(--s5);
  font-size: 1.8rem;
}
.box-sponsored__btns {
  margin: var(--s5) auto 0;
  display: flex;
  justify-content: space-around;
}
.box-sponsored__btns .btn-web,
.box-sponsored__btns .btn-internal {
  margin: 0 auto;
}
.box-sponsored__btns .btn-web a,
.box-sponsored__btns .btn-internal a {
  width: 38rem;
}

p.attention {
  font-size: 1rem;
  color: #999;
}

.box-question {
  margin-top: 10rem;
  padding: var(--s9) 0 var(--s6);
  position: relative;
}
.box-question:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #F5D3C8;
  border-radius: 15rem 0 0 0;
  position: absolute;
  left: -8rem;
  top: 0;
  z-index: -1;
}
.box-question:after {
  content: "";
  width: 17.2rem;
  height: 6rem;
  background: url(img/arrow-pink.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 96%;
  transform: translateX(-50%);
}
.box-question--reverse:before {
  border-radius: 0 15rem 0 0;
  left: auto;
  right: -8rem;
}
.box-question__title {
  width: fit-content;
  margin: 0 auto var(--s9);
  padding-left: 15rem;
  font-family: "Zen Maru Gothic";
  font-size: 4rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
}
.box-question__title:before {
  content: "Q";
  font-family: "Zen Maru Gothic";
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: 0;
  top: -5rem;
}
.box-question__catch {
  padding: var(--s2) var(--s3) var(--s2) 0;
  border-radius: 0 var(--s2) var(--s2) 0;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
  background: #fff;
  position: relative;
}
.box-question__catch .marker {
	font-size: 3.2rem;
}
.box-question__catch:before {
  content: "";
  width: 8rem;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 100%;
  top: 0;
}
.box-question__catch--reverse:before {
  width: 100vw;
}

.box-white {
  padding: var(--s10) 0;
  position: relative;
}
.box-white:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  left: -8rem;
  top: 0;
  z-index: -1;
}
.box-white--reverse:before {
  left: auto;
  right: -8rem;
}
.box-white--second:before {
  width: calc(100% + 16rem);
}
.box-white__title {
  margin: var(--s5) auto var(--s10);
  font-family: "Zen Maru Gothic";
  font-size: 4rem;
  font-weight: 700;
  color: #483B35;
  text-align: center;
}
.box-white__title span.sm {
  display: block;
  color: #E87B5A;
  font-size: 3rem;
}

.card-voice {
  position: relative;
  padding: 0 var(--s5) var(--s5);
}
.card-voice:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  border-radius: 0 var(--s2) 8rem var(--s2);
  background: #F9F8F3;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.card-voice__title {
  margin: 0 auto var(--s3) -4rem;
  padding: var(--s2) var(--s5);
  background: #e98f75;
  border-radius: 0 var(--s2) var(--s2) 0;
  font-family: "Zen Maru Gothic";
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}
.card-voice__title--long {
  border-top-left-radius: var(--s2);
}
.card-voice__title--reverse {
  margin: 0 -4rem var(--s3) 0;
  border-radius: var(--s2) var(--s2) 0 var(--s2);
}
.card-voice__catch {
  font-family: "Zen Maru Gothic";
  font-size: 2.6rem;
  font-weight: 700;
  color: #E87B5A;
}
.card-voice__pic {
  display: block;
  margin: 0 auto;
  width: 15.6rem;
  height: 15.6rem;
  border-radius: 50%;
  position: relative;
}
.card-voice__name {
  margin-top: var(--s1);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  color: #483B35;
}
.card-voice__picwrap {
  margin-bottom: var(--s3);
}

.deco1 {
  position: relative;
}
.deco1:before {
  content: "";
  width: 28.1rem;
  height: 11.2rem;
  background: url(img/deco-photo-1.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco2 {
  position: relative;
}
.deco2:before {
  content: "";
  width: 28.1rem;
  height: 11.2rem;
  background: url(img/deco-photo-2.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco3 {
  position: relative;
}
.deco3:before {
  content: "";
  width: 28.1rem;
  height: 11.2rem;
  background: url(img/deco-photo-3.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco4 {
  position: relative;
}
.deco4:before {
  content: "";
  width: 28.1rem;
  height: 11.2rem;
  background: url(img/deco-photo-4.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco5 {
  position: relative;
}
.deco5:before {
  content: "";
  width: 28.1rem;
  height: 11.2rem;
  background: url(img/deco-photo-5.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco6 {
  position: relative;
}
.deco6:before {
  content: "";
  width: 21.4rem;
  height: 8.4rem;
  background: url(img/deco-photo-1.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco7 {
  position: relative;
}
.deco7:before {
  content: "";
  width: 21.4rem;
  height: 8.4rem;
  background: url(img/deco-photo-2.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco8 {
  position: relative;
}
.deco8:before {
  content: "";
  width: 31.8rem;
  height: 12.5rem;
  background: url(img/deco-photo-1.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: 1;
}

.deco9 {
  position: relative;
}
.deco9:before {
  content: "";
  width: 31.8rem;
  height: 12.5rem;
  background: url(img/deco-photo-2.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%) scale(-1, 1);
  z-index: 1;
}

.deco10 {
  position: relative;
}
.deco10:before {
  content: "";
  width: 31.8rem;
  height: 12.5rem;
  background: url(img/deco-photo-3.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%) scale(-1, 1);
  z-index: 1;
}

.box-summary {
  margin: var(--s10) auto;
  padding: var(--s5);
  padding-left: 28rem;
  background: #FAF2E8;
  border-radius: var(--s2);
  border: solid 0.6rem #F5D3C9;
  position: relative;
}
.box-summary__tag {
  width: fit-content;
  padding: var(--s-2) var(--s4);
  background: #ECB8A9;
  border-radius: var(--s5);
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
.box-summary__title {
  font-family: "Zen Maru Gothic";
  font-size: 3.6rem;
  font-weight: 700;
  color: #483B35;
}
.box-summary__title span.sm {
  font-size: 3rem;
}
.box-summary__catch {
  font-family: "Zen Maru Gothic";
  font-size: 3rem;
  font-weight: 700;
  color: #483B35;
}
.box-summary__logo {
  width: 20rem;
  height: 20rem;
  position: absolute;
  left: var(--s5);
  top: var(--s5);
}
.box-summary--lower {
  padding-left: var(--s5);
}
.box-summary--lower .box-summary__tag,
.box-summary--lower .box-summary__catch {
  margin-left: 24rem;
}
.box-summary--lower .box-summary__catch {
  min-height: 13rem;
}

.bg-white {
  padding-top: 40rem;
  padding-bottom: 0px;
}

.card-story {
  max-width: 100rem;
  margin-top: var(--s5);
  margin-left: 10rem;
}
.card-story__upper {
  padding: var(--s2) var(--s4) var(--s2) 12.4rem;
  border-radius: var(--s2) var(--s2) 0 0;
  background: #F2DCAA;
  position: relative;
}
.card-story__body {
  border-radius: 0 0 var(--s10) var(--s2);
  border: solid 0.6rem #F2DCAA;
  padding: var(--s4) var(--s6);
}
.card-story__pic {
  width: 20rem;
  height: 20rem;
  position: absolute;
  left: -10rem;
  top: -4rem;
}
.card-story__pic img {
  border-radius: 50%;
}
.card-story__fkds {
  width: fit-content;
  margin: -4rem auto var(--s3) 0;
  padding: var(--s2) var(--s5);
  border-radius: var(--s5);
  border: solid 1px #F2DCAA;
  background: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 2.6rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
}
.card-story__fkds:before {
  content: "";
  width: 1.8rem;
  height: 1.9rem;
  background: url(img/fkds-arrow-white.png) no-repeat center/contain;
  position: absolute;
  left: var(--s-2);
  bottom: -0.8rem;
}
.card-story__title {
  margin-bottom: var(--s2);
  font-family: "Zen Maru Gothic";
  font-size: 3rem;
  font-weight: 700;
  color: #483B35;
}
.card-story__title a {
  display: inline-block;
  padding-right: var(--s6);
  background: url(img/arrow-01-black-right.svg) no-repeat right center/2.8rem auto;
  text-decoration: none;
  color: #483B35;
}
.card-story__title a:hover {
  opacity: 0.6;
}
.card-story__name {
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  color: #483B35;
}
.card-story + .card-story {
  margin-top: 10rem;
}
.card-story--02 {
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 6rem;
}

.title-block {
  margin-bottom: 10rem;
}

.card-story02 {
  max-width: 100rem;
  margin-top: var(--s10);
}
.card-story02__upper {
  padding: var(--s2) 22rem var(--s3) var(--s4);
  border-radius: var(--s2) var(--s2) 0 0;
  background: #F2DCAA;
  position: relative;
  transition: opacity 0.3s;
}
.card-story02__upper.js-toggle-btn::before {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url(img/toggle-more.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
.card-story02__upper.js-toggle-btn.is-open::before {
  background-image: url(img/toggle-more-close.png);
}
.card-story02__upper:hover {
  opacity: 0.6;
  cursor: pointer;
}
.card-story02__body {
  border-radius: 0 0 var(--s2) var(--s2);
  padding: var(--s4) var(--s6);
  box-shadow: 0 0 4rem rgba(153, 153, 153, 0.15);
}
.card-story02__pic {
  width: 14.5rem;
  height: 14.5rem;
  position: absolute;
  right: 0;
  top: -4rem;
}
.card-story02__pic img {
  border-radius: var(--s6) 0 0 0;
}
.card-story02__fkds {
  width: fit-content;
  margin: -4rem auto var(--s3) 0;
  padding: var(--s2) var(--s5);
  border-radius: var(--s2);
  border: solid 1px #F2DCAA;
  background: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
  position: relative;
}
.card-story02__fkds:before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: url(img/fkds-arrow-white.png) no-repeat center/contain;
  position: absolute;
  right: -1.8rem;
  bottom: 2rem;
  transform: scale(-1, 1) rotate(75deg);
}
.card-story02__title {
  font-family: "Zen Maru Gothic";
  font-size: 3rem;
  font-weight: 700;
  color: #483B35;
}
.card-story02__title a {
  display: inline-block;
  padding-right: var(--s6);
  background: url(img/arrow-01-black-right.svg) no-repeat right center/2.8rem auto;
  text-decoration: none;
  color: #483B35;
}
.card-story02__title a:hover {
  opacity: 0.6;
}
.card-story02__name {
  width: 17.5rem;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 700;
  color: #483B35;
  text-align: right;
  position: absolute;
  right: var(--s1);
  top: 11.6rem;
}

.loop-animation {
  margin: 12rem auto 0;
  position: relative;
  display: -webkit-flex;
  display: flex;
  width: 100vw;
  overflow: hidden;
}
.loop-animation img {
  display: block;
  width: auto;
  height: 100%;
  will-change: transform;
}
.loop-animation img:first-child {
  animation: loop 75s -38s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
.loop-animation img + img {
  animation: loop2 75s linear infinite;
}

.bg-cream {
  padding-top: 36rem;
  background: url(img/bg-cream-top.png) no-repeat center top/100% auto, #F9F8F3;
}

.card-faq {
  margin: var(--s9) auto;
  padding: var(--s7) var(--s10);
  padding-left: 44rem;
  border-radius: 0 12rem var(--s2) 0;
  background: #fff;
  position: relative;
}
.card-faq:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 99%;
  top: 0;
}
.card-faq__pic {
  position: absolute;
  left: var(--s10);
  top: var(--s6);
}
.card-faq__pic img {
  display: block;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
}
.card-faq__title {
  margin-bottom: var(--s3);
  padding-left: 9.5rem;
  font-family: "Zen Maru Gothic";
  font-size: 3rem;
  font-weight: 700;
  color: #E87B5A;
  position: relative;
}
.card-faq__title:before {
  content: "";
  width: 6.3rem;
  height: 6.6rem;
  background: url(img/icon-q.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.card-faq__name {
  margin-top: var(--s1);
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  color: #483B35;
  text-align: center;
}
.card-faq--reverse {
  padding-left: var(--s10);
  padding-right: 44rem;
}
.card-faq--reverse .card-faq__pic {
  left: auto;
  right: var(--s10);
}

.box-question--second {
  margin-top: 0;
}
.box-question--second:before {
  border-radius: 0;
}

.map-area {
  padding: var(--s8) var(--s6);
  min-height: 47.5rem;
  background: url(/wp/wp-content/uploads/map.png) no-repeat center top/50.9rem auto;
}

.btn-area {
  display: block;
  padding: 1rem var(--s8);
  background: #675C58;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}
.btn-area:hover {
  color: #fff;
  opacity: 0.6;
}
.btn-area + .btn-area {
  margin-top: 1px;
}
.btn-area.js-toggle-btn {
  background: #675C58 url(img/toggle-more-02.png) no-repeat right center/auto 100%;
  position: relative;
}
.btn-area.js-toggle-btn::before {
  content: "";
  width: 2.8rem;
  height: 0.3rem;
  background: #675C58;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translate(0, -50%);
}
.btn-area.js-toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.8rem;
  background: #675C58;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.btn-area.js-toggle-btn.is-open {
  border-bottom-left-radius: 0;
}
.btn-area.js-toggle-btn.is-open::after {
  /* transform: translate(0, -50%) rotate(270deg); */
}
.btn-area--01 {
  border-radius: var(--s1) 0 0 var(--s1);
}
.btn-area--02 {
  border-radius: 0 var(--s1) 0 0;
}
.btn-area--03 {
  border-radius: 0 0 var(--s1) 0;
}
.btn-area__spot {
  display: block;
  padding: 1rem var(--s8);
  background: #FAF2E8 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/3.2rem auto;
  border: solid 1px #675C58;
  border-top: none;
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: none;
}
.btn-area__spot:last-child {
  border-bottom-left-radius: var(--s2);
}

a.btn-area {
  background: #675C58 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/3.2rem auto;
}

.basic-wrap {
  margin: 0 -4rem;
}

.card-basic {
  position: relative;
  padding: var(--s4) var(--s3);
  border-radius: var(--s1) 8rem var(--s1) var(--s1);
  background: #F9F8F3;
}
.card-basic__pic {
  margin: -3.2rem -2.4rem 0;
  position: relative;
}
.card-basic__pic img {
  display: block;
  border-radius: var(--s1) 8rem 0 0;
}
.card-basic__body {
  padding: var(--s4) var(--s3);
  background: #F9F8F3;
}
.card-basic__tag {
  width: fit-content;
  padding: var(--s-2) var(--s2);
  border-radius: var(--s5);
  background: #E87B5A;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: var(--s2);
  bottom: -1.6rem;
}
.card-basic__title {
  padding-top: var(--s2);
  font-family: "Zen Maru Gothic";
  font-size: 2.4rem;
  font-weight: 700;
  color: #483B35;
  display: flex;
  align-items: center;
}
.card-basic__title a {
  display: block;
  padding-right: var(--s4);
  background: url(img/arrow-01-pink-right.svg) no-repeat center right/3rem auto;
  text-decoration: none;
  color: #483B35;
}
.card-basic__title a:hover {
  opacity: 0.6;
  color: #483B35;
}
.card-basic .btn-link {
  margin: 0 0 0 auto;
}
.card-basic--last {
  margin: var(--s5) auto var(--s10);
  max-width: 100rem;
  padding-left: 34rem;
  border-radius: 8rem var(--s1) var(--s1) var(--s1);
}
.card-basic--last .card-basic__pic {
  width: 30rem;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.card-basic--last .card-basic__pic img {
  border-radius: 8rem 0 0 var(--s1);
  object-fit: cover;
  height: 100%;
}
.card-basic--last .card-basic__tag {
  position: static;
}

.more-content {
  padding-top: var(--s3);
}

html {
	padding-top: 0 !important;
}


.box-sv__title span::before {
	content: "sponsored by";
	position: absolute;
	top: 6px;
	left: 33px;
	font-size: 1.5rem;
}
.interview-list .box-mark a {
	text-decoration: none;
	width: 600;
}
.interview-list .box-mark a:hover {
	opacity: 0.6;
}
.interview-list .box-mark a .btn-link {
	padding: var(--s1) var(--s3) var(--s1) 0;
	background: url(img/arrow-02-pink-right.svg) no-repeat center right / auto var(--s2);
	color: #483B35;
}

iframe {
	margin: 0 auto 20px;
	display: block;
}

.box-day .box-day__pic img {
	border-radius: 50%;
}

.interview-list .box-mark__pic img {
	border-radius: 50%;
}

.box-sponsored__name .img-area {
	position: relative;
	padding-left: 3rem;
}
.box-sponsored__name .img-area::before {
	content: "";
	background: url(img/star-q.png) no-repeat;
	background-size: 45px auto;
	position: absolute;
	width: 45px;
	height: 60px;
	top: 0px;
	left: -15px;
}
.box-sponsored__name .img-area::after {
	content: "sponsored by";
	position: absolute;
	width: 120px;
	top: -25px;
	font-weight: 400;
	font-size: 2rem;
	left: 35px;
}





@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: 1.2rem;
    padding-left: 1.2rem;
    box-sizing: border-box;
  }

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

      sp layout stack

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

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

      sp layout cluster

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

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

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s3);
    grid-template-columns: 100%;
  }
  .l-grid--narrow {
    gap: 1px;
  }

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

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

      sp layout sidebar

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

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

      sp layout column

  */
  .l-column {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02, .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);
  }

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

      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 {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 94%;
    min-height: var(--s7);
    padding: 1.8rem var(--s5);
    font-size: 1.5rem;
    background-size: 2.2rem auto;
    background-position: center right 1.2rem;
  }
  .btn-internal a:hover,
.btn-web a:hover {
    background-position: center right var(--s2);
    opacity: 1;
  }
  .btn-internal--long a,
.btn-web--long a {
    min-width: initial;
  }

  .btn-web--check {
    margin-top: var(--s6);
  }
  .btn-web--check:before {
    width: 8rem;
    height: 3.2rem;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 94%;
    min-height: var(--s7);
    margin: 0 auto;
    padding: 1.8rem var(--s6);
    background: #FEDF75 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-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

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

      sp table

  */
  thead, tbody, tr {
    display: block;
  }

  th, td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #FBF8EE;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #FBF8EE;
    border-right: solid 1px #888;
    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,
.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 {
    margin-top: 0;
    margin-bottom: var(--s3);
  }

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

      sp footer

  */
  .footer-area {
    padding: var(--s3) 0 0;
  }
  .footer-area__logo {
    margin: var(--s1) auto var(--s3);
    width: 16rem;
  }
  .footer-area__logo:hover {
    opacity: 1;
  }

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

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

  .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-02-black-down.svg") no-repeat center/contain;
    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-02-black-right.svg") no-repeat center/contain;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.8);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
  }
  .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(--s4));
    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 {
    width: calc(100% - 8rem);
    display: block;
    padding: 0.8rem var(--s4);
    border-radius: 0 var(--s2) 0 0;
    background: #37a4c7 url(img/arrow-btn-web.svg) no-repeat center right var(--s2) / 1.8rem auto;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    position: fixed;
    left: 0;
    right: auto;
    bottom: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    text-decoration: none;
  }
  .footer-banner.is-show {
    opacity: 1;
    visibility: visible;
  }
  .footer-banner.for-pc {
    display: none;
  }
  .footer-banner.for-sp {
    display: block;
  }

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

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
    background: #483B35;
    display: block;
    position: fixed;
    top: var(--s1);
    right: var(--s1);
    z-index: 200;
    cursor: pointer;
  }
  .gnavi-btn span {
    width: var(--s3);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    transition: transform 0.4s, opacity 0.4s;
  }
  .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(2) {
    opacity: 0;
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }

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

  .gnavi-box__title {
    padding: 1.2rem var(--s6) 1.2rem var(--s2);
    border-bottom: 1px solid #999;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    cursor: pointer;
    transition: opacity 0.5s;
    position: relative;
  }
  .gnavi-box__title::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: url("img/arrow-02-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);
  }

  .gnavi-logo {
    width: 20rem;
    margin: 0 auto var(--s3);
  }

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

      sp page

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

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

       sp toggle sp

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

  .toc-wrap ul li.chapter-h-two::before {
    font-size: 1.6rem;
  }

  .toc-ttl {
    font-size: 1.8rem;
  }

  .toc-body {
    padding: var(--s2);
  }

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

      more

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

      titles

  */
  h1:not([class]) {
    font-size: 2.6rem;
  }
  h1:not([class]):before {
    width: 4rem;
    height: 4rem;
    left: -1rem;
    top: -1rem;
  }

  .main-area h2:not([class]) {
    font-size: 2.2rem;
  }
  .main-area h3:not([class]) {
    font-size: 2rem;
  }
  .main-area h4:not([class]) {
    font-size: 1.8rem;
  }

  .main-area--low h1:not([class]),
.main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1:not([class]) a,
.main-area--low h2:not([class]) a,
.main-area--low h3:not([class]) a,
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
    padding-right: var(--s3);
  }
  .main-area--low h2:not([class]) {
    padding: var(--s1) var(--s2);
    border-radius: var(--s1);
  }
  .main-area--low h2:not([class]):before {
    left: 0.6rem;
  }
  .main-area--low h2:not([class]) a {
    background-size: 1.8rem auto;
  }
  .main-area--low h3:not([class]) {
    padding: 0 0 var(--s1) var(--s2);
  }
  .main-area--low h3:not([class]):before {
    width: 3.2rem;
    height: 3.2rem;
    left: 0;
    top: -0.2em;
  }
  .main-area--low h3:not([class]) a {
    background-size: 1.8rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]).icon-title {
    padding-left: 9rem;
  }
  .main-area--low h3:not([class]).icon-title .icon-title__tag {
    width: 8rem;
    height: 8rem;
    font-size: 1.4rem;
  }
  .main-area--low h3:not([class]).icon-title .icon-title__tag span.st {
    font-size: 2rem;
  }
  .main-area--low h3:not([class]).icon-title span.small {
    font-size: 1.5rem;
  }
  .main-area--low h4:not([class]) {
    padding-left: var(--s2);
    padding-right: 0;
  }
  .main-area--low h4:not([class]):before {
    width: 0.6rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 1.8rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.6rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 1.8rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp Header

  */
  .header-area {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
  .header-area__name {
    padding: 0;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
  }
  .header-area__name__link {
    padding-top: 2.4rem;
    padding-left: 0;
    background-size: auto 2rem;
  }
  .header-area__logo {
    margin: var(--s2) 0 0;
    width: 20rem;
  }
  .header-area__sponsered {
    text-align: left;
    line-height: 1.3;
  }
.header-area__wrap {
	width: 100%;
}
  .header-area .l-center {
    padding-left: 0;
    padding-right: 0;
  }
  .header-area-nav {
    display: none;
  }
  .header-area .btn-web {
    display: none;
  }

  .header-menu {
    display: none;
  }

  .mainvisual {
    padding-bottom: 0;
  }
  .mainvisual-inner {
    margin-top: var(--s2);
    padding: 0 var(--s2);
  }
  .mainvisual-logo {
    width: 19rem;
    margin-bottom: var(--s2);
  }
  .mainvisual-title {
    width: 100%;
    margin-bottom: var(--s2);
    font-size: 2.3rem;
  }
  .mainvisual-title:before {
    height: calc(100% + 3rem);
  }
  .mainvisual-title span.dot {
    background-image: linear-gradient(to right, #483B35 2px, transparent 2px);
    background-size: 0.8rem 0.2rem;
  }
  .mainvisual-title span.sm {
    font-size: 2rem;
  }
  .mainvisual-pic {
    position: static;
    width: 80%;
    margin: 0 auto;
    margin-bottom: var(--s2);
    height: auto;
  }
  .mainvisual-text {
    max-width: 100%;
  }
  .mainvisual-sponsored {
    margin-top: var(--s2);
  }
  .mainvisual-low {
    padding-top: var(--s2);
    background-size: 91rem auto;
  }

  .mainvisual .slide-media {
    height: 32rem;
  }

  .main-area--low {
    padding-bottom: var(--s5);
  }

  .relations {
    padding: var(--s3);
    border-radius: var(--s2);
  }
  .relations-title {
    font-size: 1.6rem;
  }
  .relations-title:before {
    font-size: 1.7rem;
  }

  .box-sv {
    padding: 0 var(--s2) var(--s4);
  }
  .box-sv__title {
    font-size: 1.6rem;
  }
  .box-sv__title__tag {
    padding: var(--s1) var(--s2);
    display: flex;
    align-items: center;
  }
  .box-sv__title span {
    padding: var(--s3) var(--s2) var(--s1);
  }
  .box-sv__name {
    font-size: 1.8rem;
  }
  .box-sv__btns {
    flex-direction: column;
    gap: var(--s3);
  }
  .box-sv .btn-internal,
.box-sv .btn-web {
    margin: 0 auto;
    width: 100%;
  }
  .box-sv .btn-internal a,
.box-sv .btn-web a {
    width: 100%;
  }

  .box-day {
    padding: var(--s2);
    border-radius: var(--s2);
  }
  .box-day__title {
    padding: var(--s3);
    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;
  }
  .box-day__wrap:before {
    left: -1.5rem;
  }
  .box-day__pic {
    right: var(--s2);
    top: -2.5rem;
    width: 7.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: 10.5rem;
  }
  .box-day__time div:nth-of-type(1) {
    width: 5rem;
  }
  .box-day__time div:nth-of-type(3) {
    width: 100%;
    flex: none;
    font-size: 1.4rem;
  }

  .lower-voice {
    padding: var(--s3);
    border-bottom-right-radius: 5rem;
    position: relative;
  }
  .lower-voice__pic {
    left: 0rem;
    top: 1rem;
  }
  .lower-voice .card-voice__pic {
    width: 10rem;
    height: 10rem;
  }
  .lower-voice .card-voice__name {
    padding-left: 10rem;
    min-height: 85px;
    display: flex;
    align-items: center;
  }
  .lower-voice .deco5:before {
    width: 11.5rem;
  }

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

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

      TOP common

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

  .common-title {
    margin-bottom: var(--s2);
    font-size: 2.6rem;
  }
  .common-title-en {
    margin-bottom: var(--s1);
    font-size: 1.5rem;
  }
  .common-title-en--left {
    text-align: center;
  }
  .common-title a {
    display: inline-block;
    padding: 0 var(--s2);
    background-size: 2rem auto;
    background-position: center right;
  }
  .common-title span.sm {
    font-size: 1.6rem;
  }
  .common-title--left {
    text-align: center;
  }

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

      TOP Parts

  */
  .bg-beige {
    background-size: 120% auto, 150rem auto;
  }

  .box-circle {
    width: 32rem;
    height: 32rem;
    padding-top: var(--s1);
  }
  .box-circle__title {
    width: 8rem;
    height: 8rem;
    font-size: 2rem;
    right: 0;
    top: -2rem;
  }
  .box-circle__title--reverse {
    left: 0;
    top: -1rem;
  }
  .box-circle__illust {
    width: 9.5rem;
    height: 18rem;
    right: 0;
    bottom: var(--s5);
  }
  .box-circle__illust--reverse {
    left: 0;
    right: auto;
  }

  .card-fkds {
    margin-top: var(--s2);
    padding: var(--s2) var(--s3);
    font-size: 1.4rem;
  }
  .card-fkds--01 {
    margin-left: 0;
  }
  .card-fkds--02 {
    margin-left: -2rem;
  }
  .card-fkds--03 {
    margin-left: 0;
  }
  .card-fkds--05 {
    margin-right: -2rem;
  }
  .card-fkds--06 {
    margin-right: var(--s2);
  }

  .title-betwen {
    font-size: 2.2rem;
  }

  .sec-between:before {
    width: 22rem;
    height: 8rem;
  }
  .sec-between__title {
    margin-top: var(--s7);
    font-size: 2.4rem;
  }
  .sec-between__title span.st {
    font-size: 3.4rem;
  }
  .sec-between__title span.st:before {
    height: 1.1rem;
  }
  .sec-between .common-lead {
    text-align: left;
  }
.sec01-txt {
margin-bottom: var(--s4);
}
  .box-sponsored {
    position: relative;
    padding: 0 0 var(--s3) 0;
  }
  .box-sponsored:before {
    right: -2rem;
    left: auto;
  }
  .box-sponsored__title {
    margin: 0 auto 0 auto;
    font-size: 1.9rem;
    padding: var(--s1) var(--s3);
  }
  .box-sponsored__title span.sm {
    font-size: 1.3rem;
  }
  .box-sponsored__vertical {
    margin: -3rem auto var(--s2) 0;
    font-size: 2.1rem;
  }
  .box-sponsored__vertical span.line:before {
    width: 0.7rem;
    right: 3px;
  }
  .box-sponsored__name {
    position: absolute;
    right: 0;
    top: 9rem;
    font-size: 2.6rem;
    text-align: left;
  }
  .box-sponsored__name span.sm {
    margin: 0;
    font-size: 1.5rem;
    line-height: 3.5;
  }
  .box-sponsored__btns {
    flex-wrap: wrap;
    gap: var(--s5);
  }
  .box-sponsored__btns .btn-web, .box-sponsored__btns .btn-internal {
    width: 90%;
  }
  .box-sponsored__btns .btn-web a, .box-sponsored__btns .btn-internal a {
    width: 100%;
  }
  .box-sponsored--second .box-sponsored__vertical {
    letter-spacing: -0.2px;
  }

  .box-question {
	margin-top: 6rem;
	padding: var(--s4) 0 var(--s6) var(--s2);
	}
  .box-question:before {
    left: 0;
    right: auto;
    border-top-left-radius: 4.5rem;
  }
  .box-question__title {
    margin-bottom: var(--s3);
    padding-left: 7rem;
    font-size: 2rem;
  }
  .box-question__title:before {
    left: 0;
    top: -2.5rem;
    font-size: 7.2rem;
  }
  .box-question__catch {
    padding-right: var(--s2);
    font-size: 1.8rem;
  }
	.box-question__catch .marker {
		font-size: 2.2rem;
}
  .box-question__catch:before {
    width: var(--s2);
  }
  .box-question--reverse {
    padding: var(--s4) var(--s2) var(--s6) 0;
  }
  .box-question--reverse:before {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 4.5rem;
  }
  .box-question--second:before {
    border-top-right-radius: 0;
    right: -1.2rem;
  }

  .box-white {
    padding-top: var(--s4);
    padding-left: var(--s2);
	padding-bottom: var(--s4);
  }
  .box-white:before {
    left: 0;
  }
  .box-white__title {
    margin: var(--s4) auto;
    font-size: 2.2rem;
  }
  .box-white__title span.sm {
    margin-bottom: var(--s1);
    font-size: 1.8rem;
  }
  .box-white--reverse {
    padding-right: var(--s2);
    padding-left: 0;
  }
  .box-white--reverse:before {
    left: auto;
    right: 0;
  }
  .box-white--second {
    padding-left: 0;
  }
  .box-white--second:before {
    left: -1.2rem;
  }

  .card-voice {
    padding: 0 var(--s2) var(--s4);
  }
  .card-voice__pic {
    width: 10rem;
    height: 10rem;
  }
  .card-voice__title {
    margin-bottom: var(--s2);
    margin-left: -1.6rem;
    padding: var(--s1) var(--s2) var(--s1) var(--s4);
    border-radius: 0 var(--s2) var(--s2) 0;
    font-size: 1.8rem;
  }
  .card-voice__catch {
    font-size: 1.7rem;
  }
  .card-voice__name {
    font-size: 1.4rem;
  }

  .deco1:before,
.deco2:before,
.deco3:before,
.deco4:before,
.deco5:before {
    width: 18rem;
    height: 7rem;
  }

  .deco6:before,
.deco7:before {
    width: 10rem;
    height: 4rem;
  }

  .deco8:before,
.deco9:before, .deco10:before {
    width: 10rem;
    height: 4.5rem;
  }

  .card-voice__picwrap {
    gap: 0;
    margin-bottom: var(--s2);
  }

  .box-summary {
    margin: var(--s7) auto 12rem;
    padding: var(--s2);
    border-width: 0.4rem;
  }
  .box-summary__tag {
    font-size: 1.4rem;
  }
  .box-summary__logo {
    position: static;
    width: 6rem;
    height: 6rem;
    float: left;
    margin: 0 var(--s1) var(--s1) 0;
  }
  .box-summary__title {
    font-size: 2.4rem;
  }
  .box-summary__title span.sm {
    font-size: 1.6rem;
  }
  .box-summary__catch {
    font-size: 1.8rem;
  }

  .sec-bg__btm {
    margin-bottom: -13rem;
  }

  .bg-white {
    padding-top: 14rem;
    padding-bottom: 3rem;
  }

  .card-story {
    margin-top: var(--s9);
    margin-left: 0;
  }
  .card-story__pic {
    width: 8rem;
    height: 8rem;
    left: 1rem;
    top: -2.5rem;
  }
  .card-story__upper {
    padding: var(--s2);
  }
  .card-story__fkds {
    margin-left: 9rem;
    padding: var(--s1) var(--s3);
    font-size: 1.5rem;
  }
  .card-story__title {
    font-size: 1.8rem;
  }
  .card-story__body {
    padding: var(--s2) var(--s3);
    border-width: 0.3rem;
  }
	.card-story + .card-story {
		margin-top: 8rem;
}

  .card-story02 {
    margin-top: var(--s5);
  }
  .card-story02__upper {
    padding: var(--s2);
  }
  .card-story02__upper:hover {
    opacity: 1;
  }
  .card-story02__fkds {
    margin-right: 10rem;
    padding: var(--s1) var(--s3);
    font-size: 1.5rem;
  }
  .card-story02__title {
    margin-bottom: var(--s1);
    font-size: 2rem;
  }
  .card-story02__pic {
    width: 9rem;
    height: 9rem;
  }
  .card-story02__pic img {
    border-top-left-radius: 3rem;
  }
  .card-story02__name {
    position: static;
    text-align: left;
  }
  .card-story02__body {
    padding: var(--s2) var(--s3);
  }

  .loop-animation {
    margin: 5rem auto 0;
    width: 220vw;
  }

  .bg-cream {
    padding-top: 12rem;
  }

  .title-block {
    margin-bottom: var(--s4);
  }

  .card-faq {
    margin: var(--s5) auto;
    padding: var(--s3) var(--s3) var(--s3) var(--s1);
    border-top-right-radius: 4.5rem;
  }
  .card-faq__pic {
    width: 12rem;
    margin-left: var(--s1);
    margin-bottom: var(--s1);
    position: static;
    float: right;
  }
  .card-faq__pic img {
    width: 12rem;
    height: 12rem;
  }
  .card-faq__name {
    font-size: 1.2rem;
  }
  .card-faq__title {
    padding-left: 4rem;
    font-size: 2rem;
  }
  .card-faq__title:before {
    width: 3rem;
    height: 3rem;
  }

  .lower-common {
    margin-top: 8rem;
  }

  .common-title__wrap {
    margin-bottom: var(--s3);
  }

  .map-area {
    padding: var(--s4) 0;
    background-size: 110% auto;
    min-height: 34.5rem;
  }

  .btn-area {
    padding-left: var(--s4);
    border-radius: var(--s-2);
    font-size: 1.6rem;
  }
  .btn-area:hover {
    opacity: 1;
  }
  .btn-area__spot {
    padding-left: var(--s4);
    background-size: 2.2rem auto;
    font-size: 1.6rem;
  }
  .btn-area__spot:last-child {
    border-bottom-left-radius: 0;
  }
  .btn-area.js-toggle-btn::before {
    right: 0.7rem;
  }
  .btn-area.js-toggle-btn::after {
    right: 2rem;
  }

  a.btn-area {
    background-size: 2.2rem auto;
  }

  .basic-wrap {
    margin: 0;
    padding: 0;
  }

  .card-basic__title {
    font-size: 2rem;
  }
  .card-basic__title a {
    background-size: auto 2rem;
  }

  .card-basic--last {
    padding: var(--s2) var(--s2) var(--s4);
  }
  .card-basic--last .card-basic__pic {
    position: static;
    margin: -1.6rem -1.6rem 0 -1.6rem;
    width: calc(100% + var(--s4));
    height: 21.5rem;
  }
  .card-basic--last .card-basic__pic img {
    height: auto;
  }
  .card-basic--last .card-basic__tag {
    margin-top: -10.5rem;
    bottom: auto;
    top: 30rem;
    position: absolute;
  }

	.box-sv__title span::before {
		top: 3px;
		left: 15px;
		font-size: 1.3rem;
	}
	iframe {
		width: -webkit-fill-available;
		height: 300px;
	}
	.lower-voice__pic.lower-voice__pic_new {
		left: 1rem;
		top: 13rem;
	} 
	.low-table table tbody tr {
		display: flex;
	}
	.lower-voice.l-stack .btn-internal {
		margin: 0;
	}

	.box-summary--lower .box-summary__tag,
	.box-summary--lower .box-summary__catch {
		margin-left: 0;
		min-height: unset;
	}
	.box-summary--lower .box-sv__btns .btn-internal a,
	.box-summary--lower .box-sv__btns .btn-web a {
		width: 100%;
	}
	.box-summary--lower .box-summary__catch {
	display: flex;
	align-items: center;
	}
	.box-summary--lower .box-summary__catch .box-summary__logo {
		position: relative;
		float: unset;
		width: 15rem;
		height: auto;
		margin: 0 1.5rem 0 0;
		left: unset;
		top: unset;
	}

	.box-sponsored__vertical span.line {
		position: relative;
		white-space: pre;
		writing-mode: vertical-rl;
		display: inline-block;
	}
	.common-title span.sm.sm01 {
	margin: 0 0 5px;
	}
	.common-title span.sm02 {
	line-height: 1.5;
	}
	.common-title.sm00 a {
		line-height: 1;
	}
	.lower-voice__pic01 .lower-voice__pic {
		top: 2rem;
		left: 1rem;
	}
	.lower-voice__pic01 .card-voice__name {
		min-height: 95px;
		display: flex;
		align-items: center;
	}
	.lower-voice__pic02 .lower-voice__pic {
	left: 1rem;
	top: 12rem;
	}
	.lower-voice__pic02 .card-voice__name {
		min-height: 115px;
		display: flex;
		align-items: center;
	}
	.lower-voice__pic03 .lower-voice__pic {
	left: 1rem;
	top: 8.5rem;
	}
	.lower-voice.l-stack01 .card-voice__name {
		padding-left: 0;
		min-height: unset;
		display: block;
	}
	.lower-voice.l-stack01 .card-voice__name01 {
		padding-left: 10rem;
		min-height: 90px;
	}
	.lower-voice.l-stack01 .lower-voice__pic.voice__pic01 {
		top: 18rem;
		left: 1rem;
	}
	.lower-voice.l-stack01 .lower-voice__pic.voice__pic02 {
		top: 14rem;
		left: 1rem;
	}
	.lower-voice.l-stack01 .lower-voice__pic.voice__pic03 {
		top: 15rem;
		left: 1rem;
	}
	.lower-voice.l-stack01 .lower-voice__pic.voice__pic04 {
		top: 17rem;
		left: 1rem;
	}
	.lower-voice.l-stack01 .lower-voice__pic.voice__pic05 {
		top: 12rem;
		left: 1rem;
	}
	.box-sponsored__name .img-area {
	padding-left: 0rem;
	}
	.box-sponsored__name .img-area::before {
		top: -120%;
		left: 0%;
		background-size: 40px auto;
	}
	.box-sponsored__name .img-area::after {
		top: -14px;
		font-size: 1.2rem;
		left: 2px;
	}
}
