@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;
}

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

    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: 1000px) {
  :root {
    font-size: 1vw;
  }
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #181818;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  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.5rem;
  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: #181818;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

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

@media (hover: hover) {
  a:hover {
    color: #181818;
    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;
  }
}

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

    inview

*/
.fadeInUp {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: transform 1.2s ease, opacity 0.8s ease, background 0.8s ease;
}

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

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

    layout center

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

.l-center--narrow {
  max-width: 90rem;
  padding-right: var(--s6);
  padding-left: var(--s6);
}

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

    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--narrow {
  gap: var(--s2);
}

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

    layout cluster

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

.l-cluster--end {
  justify-content: flex-start;
}

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

    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);
}

@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: 23rem;
}

.l-column__side02 {
  width: 20rem;
}

.l-column__side03 {
  width: 31.5rem;
}

.l-column__side04 {
  width: 44.5rem;
}

.l-column__side05 {
  width: 14rem;
}

.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: 24rem 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 24rem;
}

.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: 100%;
  color: #063180;
  padding: 1rem 1rem 0;
}

.header-area__name,
.header-area .sitename {
  display: inline;
  font-size: 1.1rem;
  line-height: 1.4;
}

.header-area__name span.sm,
.header-area .sitename span.sm {
  display: block;
  font-size: 1rem;
  color: #063180;
}

.header-area__name a,
.header-area .sitename a {
  text-decoration: none;
  color: #063180;
}

.header-area__logo {
      width: 22rem;
    margin: var(--s2) 0 var(--s5) auto;
	border-radius: var(--s1);
    padding: 1rem 1.5rem;
	background: #ffffff82;
}

.header-area__logo__link {
  display: block;
}

.header-area__logo__link:hover {
  opacity: 0.6;
}

.header-area__inner {
  width: 100%;
  height: 6.8rem;
  padding: var(--s1);
  padding-right: 38rem;
  background: #fff;
  display: flex;
  gap: var(--s2);
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}

.remodal-is-locked .header-area__inner {
  padding-right: 395px;
}

.header-area--low {
  position: relative;
}

@media (hover: hover) {
  .header-area__name a:hover {
    opacity: 0.6;
  }
}

.js-header-appear,
.js-btn-appear {
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.js-header-appear.is-fixed,
.js-btn-appear.is-fixed {
  opacity: 1;
  visibility: visible;
	z-index: 100;
}

.header-menu {
  padding: 0 var(--s2);
  display: flex;
  gap: var(--s8);
  align-items: center;
}

.header-menu__item {
  position: relative;
}

.header-menu__item:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #d0d0d0;
  position: absolute;
  right: calc(var(--s4) * -1);
  top: 0;
}

.header-menu__item a {
  display: block;
  font-size: 1.3rem;
  text-align: center;
  text-decoration: none;
}

.header-menu__item a:hover {
  opacity: 0.6;
}

.header-menu__item:last-child:before {
  content: none;
}

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

    body

*/
body.low {
  position: relative;
}

body.low:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("img/bg-deco.png") no-repeat var(--s4) var(--s4)/90.6rem auto, #e4e7eb;
  border: solid var(--s4) #fff;
  border-bottom: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  box-sizing: border-box;
}

.main-area {
  overflow: clip;
}

.main-area--low .l-center {
  margin-bottom: var(--s7);
  padding-top: var(--s3);
  padding-bottom: var(--s8);
  background: #fff;
  border-radius: var(--s2);
  z-index: 0;
  position: relative;
}

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

    MV

*/
.mainvisual {
  width: calc(100% - var(--s6) * 2);
  padding: 10rem 0;
  margin: var(--s2) auto 0;
  background: url(img/txt-mv-en.png) no-repeat var(--s4) var(--s3)/60rem auto, url(img/mv-bg.jpg) no-repeat top/cover;
  border-radius: var(--s2);
  overflow: clip;
}

@media screen and (min-width: 1366px) {
  .mainvisual {
    padding: 15rem 0 8rem;
  }
}

.mainvisual-stickyarea {
  min-height: 140rem;
}

.mainvisual-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: var(--s9);
  position: sticky;
  top: 10rem;
}

.mainvisual-inner__side {
  width: calc(100% - var(--s9) * 2 - 30rem);
}

.mainvisual-inner__side:last-child {
  display: flex;
  align-items:center;
  justify-content: flex-end;
	margin-top: 5rem;
}

.mainvisual-inner__center {
  padding: var(--s10) 0 var(--s8);
}

.mainvisual-pic {
  width: 30rem;
    padding: 1rem;
    /* border: solid 1rem #ffffffcc; */
    border-radius: 1rem;
    background: #ffffffcc;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mainvisual-pic img {
  border-radius: 0.5rem;
}

.mainvisual-pic img.js-image {
  z-index: 1;
}

.mainvisual-pic img.swap-pic {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
	 padding: 1rem;
  opacity: 0;
}

.mainvisual-title {
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size:3.8vw;
  font-weight: bold;
  text-shadow: #9ae0f9 1px 0 10px;
  font-weight: 700;
  writing-mode: vertical-rl;
  color: #063180;
  position: relative;
}

.mainvisual-title::before {
  content: "";
  width: 62.3rem;
  height: 62.3rem;
  background: url("img/mv-deco-right.png") no-repeat center/contain;
  position: absolute;
  top: -7.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.mainvisual-subtitle {
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
	font-size: 2.8vw;
  font-weight: bold;
  font-weight: 700;
  text-shadow: #9ae0f9 1px 0 10px;
  color: #063180;
  writing-mode: vertical-rl;
  position: relative;
}

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

.mainvisual-lead {
  text-align: center;
	font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
    font-weight: 700;
    font-size: 1.8rem;
}

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s6) 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: #008ad5;
  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]) {
  margin: var(--s6) 0;
  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 {
  width: 40rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s8);
  background: #063180 url("img/arrow-01-blue-right.svg") no-repeat center right var(--s3)/2.6rem 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;
}

@media (hover: hover) {
  .btn-internal a:hover {
    background-position: center right var(--s2);
    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(--s8);
  background: #00825b url("img/icon-window.svg") no-repeat center right var(--s3)/2.6rem 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: 0;
}


.btn-web--header a {
  width: 27rem;
  height: 5rem;
  min-height: initial;
  /* padding-left: var(--s4); */
  background-position: right 2.2rem center;
  text-align: left;
  font-size: 1.3rem;
  position: fixed;
  padding: 1.4rem var(--s4) 1.4rem var(--s1);
  /* right: 7rem; */
  /*   left: 81vw; */
  top: 1rem;
  z-index: 100;
}

.low .btn-web--header a {
right: 11rem;
}
.btn-web--header a span.sm {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}

@media (hover: hover) {
  .btn-web a:hover {
    background-position: center right var(--s2);
    opacity: 0.7;
  }
}

.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}

.btn-link a {
  margin: 0;
  padding: var(--s1) var(--s4) var(--s1) 0;
  background: url("img/arrow-01-white-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.btn-link--white a {
  color: #fff;
  background-image: url(img/arrow-01-blue-right.svg);
}

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

.btn-tel {
  display: none;
}

.btn-column {
  margin: var(--s5) 0;
  display: flex;
  justify-content: center;
  gap: var(--s8);
}

.btn-column .btn-web,
.btn-column .btn-internal {
  margin: 0;
}

.btn-column--top {
  margin: 0 auto;
  padding: var(--s2) 0 var(--s7);
}

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

    table

*/
table {
  margin: var(--s3) auto;
  width: 100%;
  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: #f5f5f5;
}

tbody th {
  background: #f5f5f5;
}

.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;
}

@media screen and (min-width: 768px) {
  .caption_for-sp {
    display: none;
  }

  .caption_for-pc {
    margin-top: 0.8em;
    display: block;
    color: #999;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
  }

}

@media screen and (max-width: 767px) {
  .caption_for-pc {
    display: none;
  }

  .caption_for-sp {
    margin-top: 0.8em;
    display: block;
    color: #999;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    word-break: break-all;
  }
}


.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,
.catch-01 {
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: 600;
  color: #063180;
  line-height: 1.5;
}

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

	text

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

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

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

	subgrid card

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

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

    float wrap

*/
.float-wrap {
  margin: var(--s6) auto;
  display: flow-root;
}

.float-wrap .float-img.fr {
  width: 27rem;
  margin-left: var(--s3);
  margin-bottom: var(--s2);
  float: right;
}

.float-wrap .float-img.fl {
  width: 27rem;
  margin-right: var(--s3);
  margin-bottom: var(--s2);
  float: left;
}

.float-wrap .float-img.ct {
  width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

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

	pankuzu

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

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

    footer

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

.about-this {
  margin-bottom: var(--s5);
  padding: var(--s6);
  border-radius: var(--s1);
  background: rgba(255, 255, 255, 0.2);
}

.about-this__en {
  width: 17.6rem;
  margin-bottom: var(--s2);
}

.about-this p {
  color: #fff;
}

.about-this .btn-link {
  margin: 0;
}

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

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  margin-bottom: var(--s1);
}

.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.4rem;
  line-height: 1.5;
  border-bottom: 1px solid #909090;
}

.footer-menu-title__link {
  padding: var(--s1);
  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: 0.5rem;
}

.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;
  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;
  line-height: 1.5;
}

.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  position: relative;
  color: #fff;
}

.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}

.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  color: #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;
  color: #fff;
}

.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: 5rem;
  height: 5rem;
  background: #40ade8;
  border-radius: 50%;
  display: block;
  position: fixed;
  top: 1rem;
  left: 94vw;
  z-index: 200;
  cursor: pointer;
}

.gnavi-btn span {
  width: 2.4rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.3rem;
  transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn span:nth-of-type(1) {
  top: 1.7rem;
}

.gnavi-btn span:nth-of-type(2) {
  top: 2.4rem;
}

.gnavi-btn span:nth-of-type(3) {
  top: 3.1rem;
}

.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.7rem) rotate(-45deg);
}

.gnavi-btn.is-active span:nth-of-type(2) {
  display: none;
}

.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.7rem) rotate(45deg);
}

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

.gnavi-area__logo {
 width: 21rem;
    margin: 0 var(--s7) var(--s2);
    border-radius: var(--s1);
    background: #ffffff82;
    padding: 1rem 1.5rem;
}

.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-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;
}

.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: 400;
    font-size: 1.4rem;
    line-height: 1.5;
    text-decoration: none;
}

.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
  opacity: 0.6;
}

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

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

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

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: var(--s4) var(--s6) var(--s3);
  border-top: solid 1px #008ad5;
  border-bottom: solid 1px #008ad5;
  position: relative;
}

.toc-lower-wrap--relations ul:not([class]) li {
  padding-left: var(--s4);
}

.toc-lower-wrap--relations ul:not([class]) li:before {
  width: 2.4rem;
  height: 2.4rem;
  background: url("img/arrow-01-white-right.svg") no-repeat left center/contain;
  top: 0;
}

.toc-lower-wrap ul,
.toc-lower-wrap ul:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
}

.toc-lower-wrap ul li+li,
.toc-lower-wrap ul:not([class]) li+li {
  margin-top: 1.2em;
}

.toc-lower-wrap ul li.chapter-h-two,
.toc-lower-wrap ul:not([class]) li.chapter-h-two {
  padding: 0 0 0 2em;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  counter-increment: number;
}

.toc-lower-wrap ul:not([class]) li.chapter-h-two {
  font-size: 1.4rem;
}

.toc-lower-wrap ul li.chapter-h-two::before,
.toc-lower-wrap ul:not([class]) li.chapter-h-two::before {
  content: counter(number, decimal-leading-zero);
  color: #008ad5;
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  top: 0.2em;
  left: 0;
}

.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
}

.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: 1rem 0 1rem var(--s5);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  line-height: 1.3;
  position: relative;
}

.toc-lower-wrap ul li.chapter-h-three:before,
.toc-lower-wrap ul:not([class]) li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}

.toc-lower-wrap ul li.chapter-h-three a,
.toc-lower-wrap ul:not([class]) li.chapter-h-three a {
  background: none;
}

.toc-lower-wrap a {
  display: block;
  text-decoration: none;
}

.toc-lower-wrap br {
  display: none;
}

.toc-lower-wrap a:hover {
  text-decoration: underline;
}

.toc-lower__title {
  margin-bottom: var(--s3);
  font-size: 2.2rem;
  font-weight: bold;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.toc-lower__title span.txt {
  margin-left: var(--s4);
  width: 5.6rem;
}

.toc-lower__title span.txt img {
  display: block;
}

.toc-lower__body {
  padding-bottom: var(--s1);
}

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

    page

*/
.page-top {
  width: var(--s9);
  height: var(--s9);
  position: fixed;
  right: 0;
  bottom: var(--s7);
  z-index: 10;
  overflow: hidden;
	 transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.remodal-is-locked .page-top {
  right: 15px;
}

.page-top__link {
  width: 100%;
  height: 100%;
}

.page-top.is-fixed {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}

.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #008ad5;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}

.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #008ad5;
  position: absolute;
  top: 50%;
  right: 2.7rem;
  transform: translate(0, -50%);
  transition: transform 0.5s;
}

.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

.toggle-content {
  display: none;
}

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

    more

*/
.more-btn {
  max-width: 38rem;
  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: var(--s3);
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}

.more-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;
}

.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

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

.more-content {
  display: none;
}

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

    グラデーション  more-content

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

.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%, #fff 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: 12rem;
  min-width: 9rem;
  display: block;
  margin: 0 auto;
  padding: 0.4rem 3rem 0.4rem var(--s1);
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
}

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

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

.more__btn--02:before {
  background-color: #fff;
}

.more__btn--02:after {
  background-color: #fff;
}

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

.more__btn--02.is-open::before {
  background-image: url(img/more-close.png);
}

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

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

    tab

*/
.tab-btn {
  padding: var(--s1);
  background: #fff;
  border: 0.2rem solid #000;
  border-bottom: none;
  flex: 1;
  color: #000;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
}

.tab-btn.is-active {
  margin-bottom: calc(0.2rem * -1);
  padding: var(--s2) var(--s1);
  background-color: #f6f6f6;
}

.tab-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-2);
}

.tab-btn-wrapper--bottom {
  align-items: flex-start;
}

.tab-btn-wrapper--bottom .tab-btn {
  border: 0.2rem solid #000;
  border-top: none;
}

.tab-btn-wrapper--bottom .tab-btn.is-active {
  margin-top: calc(0.2rem * -1);
  margin-bottom: 0;
}

.tab-content {
  padding: var(--s4);
  background: #f6f6f6;
  border: 0.2rem solid #000;
  display: none;
  opacity: 0;
  position: relative;
}

.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

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

    help

*/
.help-btn {
  width: 2.8rem;
  height: 2.8rem;
  margin: var(--s1) auto var(--s2);
  background: #373737 url(img/icon-help.svg) no-repeat center / 1em auto;
  border-radius: 10rem;
  display: block;
  cursor: pointer;
  position: relative;
}

.help-content {
  width: 30rem;
  padding: var(--s2);
  background: #fff;
  border: solid 0.2rem #181818;
  border-radius: var(--s1);
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  z-index: 5;
  font-size: 1.5rem;
  font-weight: 400;
  color: #181818;
  transform: translate(-50%, 100%);
  transition: opacity 0.6s;
  visibility: hidden;
  opacity: 0;
}

.help-content::after {
  content: "";
  width: 1.6rem;
  height: 1.2rem;
  background: url(img/fkds-white.png) no-repeat center top/contain;
  position: absolute;
  top: -2.35rem;
  left: 50%;
  transform: translate(-50%, 100%);
}

.help-content.is-show {
  visibility: visible;
  opacity: 1;
}

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

    titles

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

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  font-weight: 600;
  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]) {
  margin: var(--s3) auto var(--s9);
  font-size: 4.6rem;
  color: #063180;
}

.main-area--low h2:not([class]) {
  margin: var(--s7) auto var(--s3);
  padding: var(--s2) var(--s4);
  border-radius: var(--s2);
  font-size: 3rem;
  color: #fff;
  background: #40ade8;
	border: 4px solid #74c0e9;
}

.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.6rem auto;
  color: #fff;
}

.main-area--low h3:not([class]) {
  margin: var(--s6) auto var(--s3);
  padding: 0 0 var(--s1) 0;
  border-bottom: solid 0.3rem #d6dfea;
  font-size: 2.4rem;
  position: relative;
}

.main-area--low h3:not([class]):before {
  content: "";
  width: 10rem;
  height: 0.3rem;
  background: #063180;
  position: absolute;
  left: 0;
  bottom: calc(0.3rem * -1);
}

.main-area--low h3:not([class]) a {
  padding-right: var(--s3);
  background: url(img/arrow-01-white-right.svg) no-repeat right var(--s3) center;
  background-size: 2.6rem auto;
}

.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: 0.2rem 0 0.2rem var(--s2);
  font-size: 1.8rem;
  position: relative;
}

.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #00825b;
  border-radius: 0.2rem;
  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 var(--s3) center;
  background-size: 2.6rem auto;
}

.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}

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

    TOP common

*/
.common-title {
  font-size: 4.8rem;
  color: #063180;
}

.common-title span.sm {
  font-size: 3rem;
}

.common-title a {
  padding-right: var(--s6);
  background: url(img/arrow-01-white-right.svg) no-repeat right center/3.4rem auto;
  text-decoration: none;
  color: #063180;
}

.common-lead {
  margin-top: var(--s7);
}

.title-vertical {
  width: 100%;
  margin-top: -9rem;
  padding: var(--s6) var(--s9) 0 0;
  background: #fff;
  writing-mode: vertical-rl;
  font-size: 4.6rem;
  font-weight: 700;
  font-weight: bold;
  color: #063180;
  position: relative;
  z-index: 0;
}

.title-vertical:before {
  content: "";
  width: 14rem;
  height: 14rem;
  background: linear-gradient(-135deg, #c7eb7d 0%, transparent 40%);
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.title-vertical--02:after {
  content: "";
  width: calc(100% + (100vw - 100rem) / 2);
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}

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

    TOP parts

*/
.sec-first {
  padding: 12rem 0;
}

.sec-01 {
  padding-bottom: 12rem;
}

.box-about {
  max-width: 80rem;
  margin: 0 auto;
  gap: var(--s7);
}

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

.title-upper {
  height: 35rem;
  padding-top: var(--s7);
  position: relative;
}

.title-upper:before {
  content: "";
  width: calc(100% + (100vw - 100rem) / 2);
  height: 35rem;
  background: url(img/bg-sec01-top.jpg) no-repeat center/cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.title-upper__en {
  height: 4.8rem;
  width: fit-content;
  margin: 0 0 var(--s1) auto;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  display: flex;
}

.title-upper__title {
  width: fit-content;
  margin-left: auto;
  padding: var(--s-2) var(--s2);
  background: #008ad5;
  font-size: 1.8rem;
  color: #fff;
}

.title-upper--02 {
  height: auto;
  padding-bottom: 10rem;
}

.title-upper--02:before {
  width: 100%;
  background: url(img/bg-sec02-top.jpg) no-repeat center/cover;
}

.title-upper--02 .title-upper__en {
  margin-left: 0;
  margin-right: auto;
}

.title-upper--02 .title-upper__title {
  margin-left: 0;
  margin-right: auto;
}

.title-upper--03:before {
  width: 100%;
  background: url(img/bg-sec05-top.jpg) no-repeat center/cover;
}

.side-column {
  flex-wrap: nowrap;
  gap: var(--s3);
}

.side-column__main {
  width: calc(100% - var(--s3) - 20rem);
}

.swiper-container {
  margin: 10rem auto var(--s6);
  position: relative;
}

.swiper-container:before {
  content: "";
  width: 100vw;
  height: 38rem;
  background: linear-gradient(to right, #f0f4f7 0%, #d7dbe1 100%);
  border-radius: 20rem 0 0 20rem;
  position: absolute;
  left: -24rem;
  top: 25rem;
  z-index: -1;
}

.swiper {
  width: calc(100% + (100vw - 100rem) / 2);
  overflow: hidden;
  z-index: 2;
}

.swiper-slide {
  width: fit-content;
}

.card-slider {
  width: fit-content;
  height: 35.3rem;
  position: relative;
}

.card-slider img {
  border-radius: var(--s1);
}

.card-slider__text {
  display: inline;
  position: absolute;
  left: var(--s2);
  bottom: var(--s2);
  font-size: 1.9rem;
}

.card-slider__text span {
  padding: 0.2rem var(--s1) 0.5rem;
  background: #fff;
}

.card-slider__text--up {
  bottom: auto;
  top: var(--s2);
}

.flow-text {
  width: fit-content;
  padding: 7rem 0;
  background: url(img/arrow-flow.png) no-repeat center top / 4.7rem auto;
  font-size: 3rem;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: 700;
  text-align: center;
  color: #063180;
}

.sec02-inner {
  padding: var(--s5) 0 0 var(--s7);
  position: relative;
  z-index: 0;
}

.sec02-inner:before {
  content: "";
  width: 100vw;
  height: 40rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.sec02-inner:after {
  content: "";
  width: 14rem;
  height: 14rem;
  background: linear-gradient(135deg, #c7eb7d 0%, transparent 40%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.card-reason {
  background: #e4e7eb;
  border-radius: 1rem;
}

.card-reason__title {
  padding: var(--s1) var(--s2) var(--s1) 16rem;
  min-height: 10rem;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: url(img/icon-01.png) no-repeat left 7.4rem center/6rem auto, url(img/txt-01.png) no-repeat var(--s2) var(--s2)/auto 4.5rem;
}

.card-reason__title--02 {
  background-image: url(img/icon-02.png), url(img/txt-02.png);
}

.card-reason__title--03 {
  background-image: url(img/icon-03.png), url(img/txt-03.png);
}

.card-reason__title--04 {
  background-image: url(img/icon-04.png), url(img/txt-04.png);
}

.card-reason__title--05 {
  background-image: url(img/icon-05.png), url(img/txt-05.png);
}

.card-reason h3 {
  font-family: "Noto Sans JP", sans-serif;
}

.card-reason__catch {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
  color: #063180;
  text-align: center;
}

.card-reason .toggle-content {
  padding: var(--s3) var(--s4);
  position: relative;
}

.card-reason .toggle-content:before {
  content: "";
  width: calc(100% - var(--s8));
  height: 1px;
  background: #fff;
  position: absolute;
  left: var(--s4);
  top: 0;
}

.box-summary {
  margin-top: 14rem;
  padding: var(--s10) var(--s11) var(--s9);
  color: #fff;
  position: relative;
}

.box-summary:before {
  content: "";
  width: calc(100% + (100vw - 100rem) / 2);
  height: 100%;
  border-radius: 12rem 0 0 0;
  background: url(img/txt-summary.png) no-repeat right var(--s3) top var(--s1)/auto 13.2rem, linear-gradient(to right, #54aede 0%, #008ad5 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.box-summary:after {
  content: "";
  width: 122.5rem;
  height: 82.4rem;
  background: url(img/deco-w-circle.png) no-repeat center/contain;
  position: absolute;
  left: -26.5rem;
  top: -31rem;
  z-index: -2;
}

.box-summary__title {
  margin-bottom: var(--s4);
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 600;
}

.box-summary--lower {
  margin: var(--s12) auto;
  padding: var(--s9) var(--s11) var(--s7);
}

.box-summary--lower:before {
  width: calc(100% + var(--s6));
  background: url(img/txt-summary.png) no-repeat right var(--s3) top var(--s1) / auto 12rem, linear-gradient(to right, #54aede 0%, #008ad5 100%);
}

.box-summary--lower:after {
  content: none;
}

.box-summary--lower .box-summary__title {
  font-size: 2.4rem;
}

.bg-gray {
  padding: 2rem 0 12rem;
  background: url(img/deco-green-circle-l.png) no-repeat calc(50% - 38rem) bottom/78.4rem auto, #e4e7eb;
}

.loops {
  width: 601.6rem;
  height: 30rem;
  margin-bottom: var(--s10);
  background: url(img/loop-slider.png) repeat-x left top/auto 100%;
  animation: loop01 200s linear infinite;
}

.sec03-inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: var(--s8) 0 0;
  background: #fff;
}

.sec03-inner__lead {
  max-width: 90%;
  margin: 0 auto var(--s4);
}

.title-interview {
  width: fit-content;
  margin: -20rem 0 var(--s6) -2rem;
  border: solid 0.8rem #063180;
  border-radius: var(--s3);
  background: #fff;
  font-size: 4.6rem;
  font-weight: bold;
  font-weight: 700;
  color: #063180;
  position: relative;
}

.title-interview:before {
  content: "";
  width: 4.2rem;
  height: 2.2rem;
  background: url(img/icon-quote-left.png) no-repeat center/contain;
  position: absolute;
  left: var(--s4);
  top: -2rem;
}

.title-interview:after {
  content: "";
  width: 4.2rem;
  height: 2.2rem;
  background: url(img/icon-quote-right.png) no-repeat center/contain;
  position: absolute;
  right: var(--s4);
  bottom: -1.8rem;
}

.title-interview span.sm {
  font-size: 3rem;
}

.title-interview__inner {
  display: block;
  width: fit-content;
  padding: var(--s5) var(--s6) 10rem;
  background: url(img/txt-pickup.png) no-repeat left var(--s7) bottom var(--s5)/auto 4rem;
}

.title-interview__inner:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5rem 1.9rem 0 1.9rem;
  border-color: #063180 transparent transparent transparent;
  position: absolute;
  left: var(--s12);
  top: 100%;
}

.title-interview--02 {
  margin-top: 0;
}

.title-interview--02 .title-interview__inner {
  padding: var(--s4) var(--s6) var(--s5);
  background-image: none;
}

.title-interview a {
  padding-right: var(--s7);
  background: url(img/arrow-01-navy-right.svg) no-repeat right center/3.4rem auto;
  color: #063180;
  text-decoration: none;
}

h2.title-interview {
  font-weight: 700;
  line-height: 1.4;
}

.box-sponsored {
  max-width: 100rem;
  margin: 0 auto;
  padding: var(--s6);
  padding-bottom: var(--s4);
  background: url(img/deco-green-circle.png) no-repeat left top/32.3rem auto, #f0f4f7;
}

.box-sponsored--white {
  background-color: #fff;
  border: solid 0.8rem #eaeaea;
}

.box-sponsored__cap {
  border-radius: var(--s1);
  border: solid 1rem #063180;
}

.box-sponsored__column {
  margin-bottom: var(--s4);
}

.box-sponsored__title {
  margin: var(--s1) 0 var(--s3);
  padding-top: 4.5rem;
  background: url(img/txt-sponsored-by.png) no-repeat left top/auto 2.1rem;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}

.box-sponsored__title:before {
  content: "";
  width: calc(100% - 13rem);
  height: 0.1rem;
  background: #181818;
  position: absolute;
  right: 0;
  top: 1rem;
}

.box-sponsored__name {
  display: flex;
  align-items: center;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 600;
}

.box-sponsored__name span.bg-bk {
  margin-right: var(--s3);
  padding: var(--s1) var(--s2);
  background: #373737;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.box-sponsored--lower {
  margin: var(--s9) calc(var(--s6) * -1);
}

.box-sponsored--common {
  margin: var(--s10) auto;
}
.box-sponsored--common .btn-column{
  margin: var(--s5) 0 var(--s3);
}

.box-sponsored--common .btn-internal a,
.box-sponsored--common .btn-web a {
  width: 36rem;
}

.title-deco-interview {
  width: 47rem;
}

.box-interview {
  padding: var(--s4) var(--s6) var(--s6);
}

.box-interview__title {
  margin: var(--s6) 0 var(--s5);
  padding: var(--s1) var(--s7) var(--s1) 8.6rem;
  border-bottom: solid 1px #b4b4b4;
  background: url(img/txt-01.png) no-repeat left center/5.6rem auto;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}

.box-interview__title span.st {
  font-size: 3rem;
}

.box-interview__title span.green {
  color: #c7eb7d;
}

.box-interview__title--02 {
  background-image: url(img/txt-02.png);
}

.box-interview__title--03 {
  background-image: url(img/txt-03.png);
}

.box-answer {
  padding: var(--s5) var(--s6);
  border-radius: var(--s2);
  background: #e2f3fc;
  position: relative;
}
.box-answer .btn-internal{
 margin: var(--s5) auto 0;
}


.box-answer__title {
  margin: var(--s1) 0 var(--s3);
  padding-top: 4.5rem;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}

.box-answer__title:before {
  content: "";
  width: 33rem;
  height: 0.2rem;
  background: url(img/txt-answer.png) no-repeat left top/auto 2.1rem;
  position: absolute;
  left: 15rem;
  top: 1rem;
}

.box-answer__pic {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  border: solid 0.7rem #fff;
}

.box-answer__tag {
  width: fit-content;
  padding: var(--s-2) var(--s3);
  background: #008ad5;
  color: #fff;
  position: absolute;
  left: -1.3rem;
  top: -1.6rem;
}

.box-answer__tag:before {
  content: "";
  width: 1.3rem;
  height: 1.2rem;
  background: url(img/ribbon-blue.svg) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 100%;
}

.box-answer+.box-answer {
  margin-top: var(--s6);
}

.tag-01 {
  padding: 0.2rem var(--s2);
  background: #fff;
  border-radius: var(--s5);
  font-size: 1.3rem;
  margin: 0 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
}

.sec-05 {
  margin-top: var(--s3);
}

.sec-05__titleblock {
  padding-top: 22rem;
  position: relative;
}

.sec-05__titleblock:before {
  content: "";
  width: calc(100% + (100vw - 100rem) / 2);
  height: 35rem;
  background: url(img/bg-sec04-top.jpg) no-repeat center/cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.sec-05__title {
  width: 50%;
  padding: var(--s4) 0 0 0;
  position: relative;
}

.sec-05__title:before {
  content: "";
  width: calc(100% + (100vw - 100rem) / 2);
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.sec-05__title:after {
  content: "";
  width: 14rem;
  height: 14rem;
  background: linear-gradient(-135deg, #c7eb7d 0%, transparent 40%);
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.remodal-inner {
  padding: var(--s7) var(--s7) var(--s6);
  border-radius: var(--s1);
  background: #fff;
  max-height: 78vh;
  overflow-y: auto;
  text-align: initial;
}

.remodal-inner--blue {
  background-color: #f0f4f7;
}

.remodal-inner .box-answer {
  margin-top: var(--s7);
  padding-top: var(--s3);
}

.remodal-inner .btn-link {
  margin-bottom: 0;
}

.modal-btn {
  padding: var(--s3) var(--s3) var(--s3) 11.5rem;
  background: url(img/icon-06.png) no-repeat var(--s2) 50%/7rem auto, #e4e7eb;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: var(--s1);
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.modal-btn--02 {
  background: url(img/icon-07.png) no-repeat var(--s2) 50% / 7rem auto, #e4e7eb;
}

.modal-btn--03 {
  background: url(img/icon-08.png) no-repeat var(--s2) 50% / 7rem auto, #e4e7eb;
}

.modal-btn--04 {
  background: url(img/icon-09.png) no-repeat var(--s2) 50% / 7rem auto, #e4e7eb;
}

.modal-btn--05 {
  background: url(img/icon-10.png) no-repeat var(--s2) 50% / 7rem auto, #e4e7eb;
}

.modal-btn--06 {
  background: url(img/icon-11.png) no-repeat var(--s2) 50% / 7rem auto, #e4e7eb;
}

.modal-btn img {
  display: block;
  margin: var(--s2) 0 0 auto;
  width: 7.5rem;
}

.modal-btn-wrap {
  margin-top: var(--s10);
}

@media (hover: hover) {
  .modal-btn:hover {
    opacity: 0.6;
  }
}

.modal-title {
  width: fit-content;
  padding-left: 3rem;
  margin: 0 auto var(--s4);
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.modal-title:before {
  content: "";
  width: 8rem;
  height: 8rem;
  background: url(img/icon-06-gray.png) no-repeat left center/contain;
  position: absolute;
  left: -7rem;
  top: 46%;
  transform: translateY(-50%);
}

.modal-title--02:before {
  background: url(img/icon-07-gray.png) no-repeat left center/contain;
}

.modal-title--03:before {
  background: url(img/icon-08-gray.png) no-repeat left center/contain;
}

.modal-title--04:before {
  background: url(img/icon-09-gray.png) no-repeat left center/contain;
}

.modal-title--05:before {
  background: url(img/icon-10-gray.png) no-repeat left center/contain;
}

.modal-title--06:before {
  background: url(img/icon-11-gray.png) no-repeat left center/contain;
}

.modal-lead {
  max-width: 78rem;
  margin: 0 auto;
}

.feature-catch {
  margin: var(--s6) 0 var(--s4);
  font-size: 2.2rem;
  font-weight: 700;
  color: #063180;
}

.box-flow {
  position: relative;
}

.box-flow:before {
  content: "";
  width: 1px;
  height: calc(100% + var(--s5));
  border-left: dashed 0.3rem #739fe3;
  position: absolute;
  left: 5.5rem;
  top: 0;
  z-index: -1;
}

.box-flow:last-child:before {
  content: none;
}

.box-flow-wrap {
  margin: var(--s9) 0 var(--s7);
  padding: var(--s10) 0 0;
  position: relative;
  gap: var(--s7);
}

.box-flow-wrap:before {
  content: "";
  width: 100vw;
  height: calc(100% - 10rem);
  background: #f0f4f7;
  position: absolute;
  right: -8rem;
  top: 0;
  z-index: -1;
}

.box-flow__inner {
  max-width: 85rem;
  margin: 0 0 0 auto;
}

.box-flow__column {
  margin-top: var(--s4);
  display: flex;
  gap: 2rem;
}

.box-flow__pic {
  padding: var(--s3) var(--s5);
  background: #fff;
}

.box-flow__title {
  margin-bottom: var(--s6);
  padding-left: 15rem;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: bold;
  font-weight: 600;
  position: relative;
}

.box-flow__title:before {
  content: "";
  width: 11rem;
  height: 11rem;
  background: url(img/icon-num-01.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.box-flow__title--02:before {
  background-image: url(img/icon-num-02.png);
}

.box-flow__title--03:before {
  background-image: url(img/icon-num-03.png);
}

.box-flow__end {
  padding-top: 7rem;
  background: url(img/arrow-back.png) no-repeat center top/auto 6.2rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #063180;
}

.box-flow__end .help-btn {
  margin: 0;
  display: inline-block;
  vertical-align: bottom;
}

.box-flow__end h4 {
  display: inline;
  font-family: "Noto Sans JP", sans-serif;
}

.box-flow__summary {
  margin-top: var(--s4);
  padding: var(--s7) 0 var(--s7) 9.6rem;
  color: #fff;
  position: relative;
}

.box-flow__summary:before {
  content: "";
  width: calc(100% + (100vw - 100rem) / 2);
  height: 100%;
  border-radius: 15rem 0 0 15rem;
  background: linear-gradient(to right, #54aede 0%, #008ad5 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.box-flow__summary__catch {
  margin-bottom: var(--s3);
	    font-size: 2.2rem;
    font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.card-flow {
  border-radius: var(--s1);
  background: #fff;
  text-align: center;
  flex: 1;
  position: relative;
}

.card-flow:before {
  content: "";
  width: 1.5rem;
  height: 2.4rem;
  background: url(img/arrow-flow-s.png) no-repeat center/contain;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.card-flow__column {
  margin-bottom: var(--s2);
  padding: 0 var(--s2);
  display: flex;
  gap: 1.2rem;
}

.card-flow__title {
  margin-bottom: var(--s3);
  padding: 0.3rem var(--s-2) 0.5rem;
  border-radius: var(--s1) var(--s1) 0 0;
  background: #063180;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.card-flow__title span {
  display: block;
  font-size: 1.3rem;
}

.card-flow h4 {
  font-family: "Noto Sans JP", sans-serif;
}

.card-flow__pic {
  margin-bottom: var(--s2);
}

.card-flow__pic img {
  height: 5.5rem;
}

.card-flow__pic--last {
  margin-bottom: var(--s1);
}

.card-flow__text {
  padding: 0 var(--s2);
  line-height: 1.5;
  white-space: nowrap;
}

.card-flow:last-child:before {
  content: none;
}

.card-flow:last-child .card-flow__title {
  margin-bottom: var(--s1);
}

.card-flow:last-child .card-flow__pic {
  margin-bottom: var(--s1);
}

.inner-icon {
  font-weight: 700;
  color: #063180;
  text-align: center;
}

.inner-icon img {
  height: 5.5rem;
}

.inner-icon span {
  padding-right: var(--s2);
  background: url(img/arrow-flow-s.png) no-repeat right center/1rem auto;
  display: block;
  text-align: center;
  white-space: nowrap;
}

.inner-icon span.no-arrow {
  padding-right: 0;
  background: none;
}

.box-step3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
}

.icon-number {
  width: 20rem;
  height: 20rem;
  padding-top: 4.5rem;
  background: #063180 url(img/txt-01-blue.png) no-repeat center top 1.8rem/5.6rem auto;
  border-radius: 50%;
  border: solid 1.7rem #f0f4f7;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-number span {
  font-size: 1.5rem;
}

.icon-number--02 {
  background-image: url(img/txt-02-blue.png);
}

.icon-number--03 {
  background-image: url(img/txt-03-blue.png);
}

.circle-subtitle {
  margin: var(--s7) auto var(--s9);
  text-align: center;
  font-size: 4.6rem;
  font-weight: 600;
  position: relative;
}

.circle-subtitle:before {
  content: "";
  width: 65rem;
  height: 65rem;
  background: url(img/deco-circle-green-full.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -17rem;
  transform: translateX(-50%);
  z-index: -1;
}

.circle-subtitle span {
  font-size: 3rem;
}

.card-point {
  padding: var(--s3);
  padding-top: var(--s9);
  border-radius: var(--s1);
  background: url(img/txt-point.png) no-repeat center var(--s3)/auto 3.1rem, #0c50b9;
  color: #fff;
}

.card-point-wrap {
  padding-bottom: 18rem;
  align-items: flex-start;
  position: relative;
}

.card-point-wrap:before {
  content: "";
  width: 100vw;
  height: 40rem;
  background: url(img/bg-3column.jpg) no-repeat center/cover;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -2;
}

.card-point__title {
  margin-bottom: var(--s3);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.card-point h4 {
  font-family: "Noto Sans JP", sans-serif;
}

.card-point .more__content:after {
  background: linear-gradient(to bottom, transparent 0%, #0c50b9 100%);
}

.card-point .more__btn {
  font-weight: 400;
}

.sec-interview {
  margin-top: -9rem;
  padding: 0 0 12rem;
  position: relative;
}

.sec-interview:before {
  content: "";
  width: 100%;
  height: calc(100% - 12rem);
  background: url(img/deco-circle-white-top.png) no-repeat right top/52rem auto, url(img/deco-circle-white-btm.png) no-repeat left calc(50% - 60rem) bottom/78rem auto, #f0f4f7;
  border: solid var(--s4) #fff;
  border-top: none;
  position: absolute;
  left: 0;
  top: 12rem;
  z-index: -1;
  box-sizing: border-box;
}

.sec-interview__inner {
  padding: 0 var(--s6);
}

.card-interview {
  width: calc((100% - var(--s4) * 2) / 3);
  border-radius: var(--s1);
  position: relative;
  transition: opacity 0.3s ease;
}

.card-interview:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #063180 0%, transparent 50%);
  border-radius: 0 0 var(--s1) var(--s1);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.card-interview-wrap {
  margin: var(--s6) auto var(--s11);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
}

.card-interview__text {
  padding: 0 var(--s3) var(--s3);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.card-interview__title {
  margin-bottom: var(--s3);
  padding-top: 4.5rem;
  font-weight: 700;
  color: #fff;
}

.card-interview__pic {
  transition: filter 0.3s ease;
}

.card-interview__pic img {
  border-radius: var(--s1);
}

.card-interview__column {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.card-interview__btn {
  width: 7.5rem;
  height: 2.5rem;
}

@media (hover: hover) {
  .card-interview:hover {
    cursor: pointer;
  }

  .card-interview:hover .card-interview__pic {
    filter: brightness(70%);
  }
}

.int-title {
  margin-bottom: var(--s2);
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.6rem;
  font-weight: bold;
  font-weight: 700;
  color: #063180;
}

.int-name {
margin-bottom: var(--s2);
    padding-top: var(--s5);
    background: url(img/txt-profile.png) no-repeat left top / auto 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
}

.int-name:before {
  content: "";
  width: calc(100% - 8rem);
  height: 1px;
  background: #181818;
  position: absolute;
  right: 0;
  top: var(--s1);
}

.int-inner {
  margin-top: var(--s2);
  padding: var(--s3) var(--s4);
  border-radius: var(--s1);
  background: #fff;
}

.int-tags {
  margin-bottom: var(--s3);
}

.int-pic img {
  border-radius: var(--s1);
}

.int-subtitle {
  margin-bottom: var(--s2);
  padding-bottom: var(--s1);
  border-bottom: solid 1px #063180;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #063180;
  text-align: center;
}

.int-answer-name {
  margin: var(--s1) 0;
  padding-left: 5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #40ade8;
  position: relative;
}

.int-answer-name:before {
  content: "";
  width: 4rem;
  height: 1px;
  background: #40ade8;
  position: absolute;
  left: 0;
  top: 50%;
}

.lower-interview {
  margin: var(--s10) auto;
  padding: var(--s5);
  background: #f0f4f7;
  border-radius: var(--s2);
}
.lower-interview p{
  margin: var(--s3) auto 0;
}

.lower-interview .btn-internal {
    margin: var(--s5) auto var(--s2);
}

.title-q {
  margin: var(--s3) 0;
  padding: 0 0 var(--s1) 5rem;
  border-bottom: solid 1px #181818;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}

.title-q:before {
  content: "";
  width: 3.8rem;
  height: 4rem;
  background: url(img/txt-q.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}

.box-qa {
  display: flex;
  gap: var(--s2);
}

.box-qa__name {
 width: 9rem;
    font-size: 1.2rem;
  font-weight: 700;
  color: #40ade8;
}

.box-qa__text {
  flex: 1;
}

.box-qa__catch {
  margin-bottom: var(--s2);
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0891db;
}

.box-qa-wrap {
  margin: var(--s5) auto var(--s10);
}

.box-qa+.box-qa {
  margin-top: var(--s6);
}

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

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

      sp base settings

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

  body {
    font-size: 1.5rem;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}

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

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

      sp layout center

  */
  .l-center {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    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__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 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) {

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

      header

  */
  .header-area {
    padding: var(--s1) var(--s1) 0 var(--s1);
  }

  .header-area__name {
    padding-right: var(--s8);
  }
.header-area__name, .header-area .sitename {
	      display: block;
}
  .header-area__logo {
    width: 16.5rem;
    margin: 2rem auto var(--s1);
    border-radius: var(--s1);
    background: #ffffffe6;
    padding: 1rem 1rem 0.7rem;
  }

  .header-area__inner {
    height: auto;
    padding: var(--s-2);
    gap: var(--s1);
    background: transparent;
  }

  .remodal-is-locked .header-area__inner {
    padding-right: 0;
  }

  .header-menu {
    display: none;
  }

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

      body

  */
  body.low:before {
    height: 50rem;
    border-width: 0;
    background-size: 28rem auto;
    background-position: right -6rem top var(--s8);
  }

  .main-area--low .l-center {
    padding-bottom: var(--s3);
  }

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

      MV

  */
  .mainvisual {
           width: calc(100% - var(--s1) * 2);
        margin-top: var(--s-2);
        padding: 10rem 0 var(--s4);
        background-size: 17rem auto, cover;
        background: url(img/txt-mv-en.png) no-repeat var(--s2) var(--s2) / 17rem auto, url(img/mv-bg.jpg) no-repeat top / cover;
  }

  .mainvisual-pic {
    width: 13rem;
    border-width: 0.5rem;
	        padding: 0.5rem;
  }
.mainvisual-pic img.swap-pic {
    padding: 0.5rem;
}
  .mainvisual-inner {
    gap: var(--s2);
  }

  .mainvisual-inner__side {
    width: calc(100% - var(--s2) * 2 - 13rem);
  }

  .mainvisual-inner__center {
    padding: var(--s10) 0 var(--s7);
  }

  .mainvisual-title {
    font-size: 2.6rem;
  }

  .mainvisual-title:before {
    width: 20rem;
    height: 20rem;
    top: -1.5rem;
  }

  .mainvisual-subtitle {
    font-size: 2.2rem;
  }

  .mainvisual-subtitle:before {
    width: 16rem;
    height: 16rem;
    top: var(--s3);
  }

  .mainvisual-stickyarea {
    min-height: 76rem;
  }

  .mainvisual-lead {
    padding: 6rem var(--s2) 0;
    background: linear-gradient(to top, #f0f4f7 85%, transparent 100%);
    text-align: left;
	  font-size: 1.5rem;
  }

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

      sp btn

  */
  .btn-internal,
  .btn-web {
    margin: var(--s3) auto;
  }

  .btn-internal a,
  .btn-web a {
    width: 94%;
    min-height: 6rem;
    padding-right: 4.4rem;
    padding-left: 4.4rem;
    background-position: right 1.8rem center;
    font-size: 1.5rem;
  }

  .btn-web--header a {
    min-height: initial;
    width: fit-content;
    padding: var(--s1) var(--s5) var(--s1) var(--s3);
    border-radius: 0 var(--s2) 0 0;
    background-size: 2rem auto;
    background-position: right var(--s1) center;
    font-size: 1.3rem;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
	.low .btn-web--header a {
        right: auto;
}

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

  .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: #c7eb7d url("img/icon-tel.png") no-repeat center left var(--s3)/2rem auto;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    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--top {
    margin: 0 auto;
  }

  .btn-column--top .box-btns {
    margin: 0 auto var(--s4);
  }

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

      sp table

  */
  .sp-table thead,
  .sp-table tbody,
  .sp-table tr {
    display: block;
  }

  .sp-table th,
  .sp-table td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }

  .table-label tbody th {
    background: #f7f7f5;
  }

  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }

  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #f7f7f5;
    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;
  }

  .l-scroll-x-sp img {
    display: block;
    width: 60rem;
    max-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 {
    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-bottom: var(--s1);
    padding-top: 0;
  }

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

      sp footer

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

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

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

  .footer-logo {
    width: 18rem;
    margin: 0;
    position: absolute;
    left: 50%;
    top: var(--s3);
    transform: translateX(-50%);
  }

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

  .footer-menu-title {
    margin-bottom: 0;
  }

  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }

  .footer-menu-title__link::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: url("img/arrow-01-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.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/contain;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.2);
    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 gnavi

  */
  .gnavi-btn {
    right: 0.6rem;
    top: 0.6rem;
    left: unset;
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s4) 0;
    border-left: none;
  }

  .gnavi-area__logo {
    display: block;
    width: 21rem;
    margin: 0 auto var(--s2);
  }

  .gnavi-logo {
    width: 22rem;
    margin: 0 auto var(--s2);
    padding-right: var(--s3);
  }
	.gnavi-menu__link, .gnavi-menu-sub__link {
    font-weight: 400;
		font-size: 1.3rem;
}

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

      TOC lower

  */
  .toc-lower-wrap {
    margin: var(--s4) auto;
    padding: var(--s2) var(--s2) var(--s1);
  }

  .toc-lower-wrap:before {
    height: 3.5rem;
    top: -1.5rem;
  }

  .toc-lower-wrap ul li+li {
    margin-top: var(--s1);
  }

  .toc-lower-wrap ul li.chapter-h-two,
  .toc-lower-wrap ul li.relation-links {
    font-size: 1.4rem;
  }

	.toc-lower-wrap ul li.chapter-h-two::before, .toc-lower-wrap ul:not([class]) li.chapter-h-two::before {
    content: counter(number, decimal-leading-zero);
    color: #008ad5;
    top: 0;
    left: 0;
}
	
  .toc-lower-wrap ul li.chapter-h-three {
    font-size: 1.4rem;
  }

  .toc-lower__body {
    padding-bottom: var(--s1);
  }

  .toc-lower__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .toc-lower__title span.txt {
    width: 5.6rem;
  }

  .toc-lower-wrap--relations ul:not([class]) li:before {
    width: 2rem;
    height: 2rem;
    top: 0.1em;
  }

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

      sp page

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

  .remodal-is-locked .page-top {
    right: 0;
  }

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

       sp toggle sp

  */
  .toggle-btn:before {
    right: 1.2rem;
  }

  .toggle-btn:after {
    right: 2.3rem;
  }

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

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

      more

  */
  .more-btn {
    width: 82%;
    margin: var(--s5) auto;
    padding: 1.2rem 4.6rem;
    font-size: 1.4rem;
  }

  .more-btn:hover {
    opacity: 1;
  }

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

  グラデーション  more-content

  */
  .more__content.sp-only {
    overflow: hidden;
    max-height: 12rem;
  }

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

  .more__btn {
    width: 82%;
    font-size: 1.4rem;
  }

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

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

      sp help

  */
  .help-content {
    width: 65vw;
    writing-mode: horizontal-tb;
  }

  .help-content--pos-left {
    left: -1.8rem;
    transform: translate(0, -100%);
  }

  .help-content--pos-left::after {
    left: 2.2rem;
    transform: translate(0, 100%);
  }

  .help-content--pos-right {
    right: -1.8rem;
    left: auto;
    transform: translate(0, 100%);
  }

  .help-content--pos-right::after {
    left: auto;
    right: 2.2rem;
    transform: translate(0, 100%);
  }

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

      SP titles

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

  .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(--s4) auto var(--s2);
  }

  .main-area--low h1:not([class]) {
    margin: var(--s2) auto;
    padding: var(--s2);
    font-size: 2.5rem;
  }

  .main-area--low h1:not([class]) br {
    display: none;
  }

  .main-area--low h2:not([class]) {
    border-radius: var(--s1);
    font-size: 2.2rem;
    padding: var(--s1) var(--s2);
  }

  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }

  .main-area--low h3:not([class]) {
    padding-left: var(--s1);
    padding-bottom: var(--s1);
    font-size: 1.9rem;
  }

  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }

  .main-area--low h4:not([class]) {
    font-size: 1.7rem;
  }

  .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;
  }

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

      SP end

  */
}

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

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

      TOP common

  */
  .common-title {
    font-size: 2.4rem;
  }

  .common-title span.sm {
    font-size: 1.8rem;
  }

  .common-title a {
    padding-right: var(--s4);
    background-size: 1.8rem auto;
  }

  .common-lead {
    margin-top: var(--s3);
  }

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

      TOP 

  */
  .sec-first {
    padding: var(--s8) 0;
  }

  .box-about__en {
    height: 2rem;
    width: auto;
  }

  .box-about__logo {
    display: block;
    width: 18rem;
    margin: 3rem auto 0.5rem;
  }

  .sec-01 {
    padding-bottom: var(--s8);
  }

  .title-upper {
    height: auto;
    padding-top: var(--s2);
  }

  .title-upper:before {
    width: 100vw;
    right: -1.2rem;
    left: auto;
    height: 13rem;
  }

  .title-upper__en {
    height: 2.4rem;
    font-size: 1.8rem;
    align-items: center;
  }

  .title-upper__en img {
    display: block;
  }

  .title-upper__title {
    font-size: 1.5rem;
  }

  .title-upper--02 {
    padding-bottom: var(--s3);
  }

  .title-upper--02:before {
    height: 15rem;
    right: 0;
  }

  .title-upper--03:before {
    right: 0;
  }

  .side-column {
    flex-wrap: wrap;
  }

  .title-vertical {
    margin-top: var(--s4);
    margin-left: -1.2rem;
    padding: 0;
    writing-mode: initial;
    font-size: 3.2rem;
    background: transparent;
  }

  .title-vertical:before {
    width: 7rem;
    height: 7rem;
  }

  .title-vertical span.sp-block {
    padding: 1rem var(--s4) 0 var(--s2);
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 0;
    font-size: 2.2rem;
  }

  .title-vertical span.sp-block:before {
    content: "";
    width: 7rem;
    height: 7rem;
    background: linear-gradient(-135deg, #c7eb7d 0%, transparent 40%);
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
  }

  .title-vertical span.sp-bg {
    padding: 0 0 0 var(--s2);
    font-size: 3rem;
  }

  .title-vertical--01:before {
    content: none;
  }

  .title-vertical--02 {
    width: fit-content;
    padding: var(--s1) var(--s3) 0 var(--s2);
    background: #fff;
  }

  .title-vertical--02 span.sm {
    font-size: 1.8rem;
  }

  .swiper {
    width: calc(100% + 1.2rem);
  }

  .swiper-container {
    margin: var(--s2) auto var(--s3);
  }

  .swiper-container:before {
    left: -1.2rem;
    border-radius: 0;
  }

  .card-slider {
    height: 31rem;
  }

  .card-slider__text span {
    font-size: 1.5rem;
  }

  .flow-text {
    padding: var(--s6) 0 0;
    background-size: 4rem auto;
    font-size: 1.8rem;
  }

  .sec02-inner {
    padding: var(--s2);
  }

  .card-reason__title {
    min-height: 9rem;
    padding-left: var(--s12);
    background-size: 4.5rem auto, auto 2.8rem;
    background-position: left var(--s5) center, 1rem 1rem;
    font-size: 1.8rem;
  }

  .card-reason__catch {
    margin-bottom: var(--s2);
    font-size: 1.6rem;
  }

  .box-summary {
    margin-top: var(--s8);
    padding: var(--s5) var(--s2) var(--s4) var(--s3);
  }

  .box-summary:before {
    width: calc(100vw + 1.2rem);
    border-top-left-radius: 5rem;
    background-size: auto 6rem;
  }

  .box-summary:after {
    width: 34rem;
    height: 21rem;
    top: -10rem;
    left: -7rem;
  }

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

  .box-summary--lower .box-summary__title {
    font-size: 2rem;
  }

  .loops {
    height: 15rem;
    margin-bottom: var(--s5);
    animation: loop01 300s linear infinite;
  }

  .title-interview {
    margin: -13rem auto var(--s3) 1.2rem;
    font-size: 2.4rem;
    border-radius: var(--s2);
    border: solid 0.6rem #063180;
  }

  .title-interview span.sm {
    font-size: 1.8rem;
  }

  .title-interview:before {
    width: 3rem;
    top: -1.6rem;
  }

  .title-interview__inner:before {
    border-color: #063180 transparent transparent transparent;
    left: 48px;
    border-width: 1.5rem 1.5rem 0 1.5rem;
  }

  .title-interview:after {
    width: 3rem;
    bottom: -1.6rem;
    right: var(--s3);
  }

  .title-interview__inner {
    padding: var(--s3) var(--s2) var(--s6) var(--s2);
    background-position: left var(--s2) bottom var(--s2);
    background-size: auto 2.4rem;
  }

  .title-interview--02 {
    margin: 0 auto var(--s5) 0;
    border-radius: var(--s2);
    border: solid 0.5rem #063180;
  }

  .title-interview--02 .title-interview__inner {
    padding: var(--s3) var(--s2);
  }

  .title-interview a {
    padding-right: var(--s4);
    background-size: 1.8rem auto;
  }

  .box-sponsored {
    padding: var(--s2);
    background-size: 25rem auto;
  }

  .box-sponsored__column {
    margin-bottom: var(--s2);
    flex-direction: column-reverse;
  }

  .box-sponsored__title {
    font-size: 1.8rem;
  }
.tag-01 {
    padding: 0.2rem var(--s1);
}
  .box-sponsored__name {
    font-size: 1.8rem;
  }

  .box-sponsored--lower {
    margin-right: 0;
    margin-left: 0;
  }

  .box-sponsored--common {
    max-width: 100%;
    margin: var(--s6) 0;
  }

  .box-sponsored__name span.bg-bk {
    font-size: 1.3rem;
    padding: var(--s1) var(--s1);
  }

  .box-sponsored--common .btn-internal a,
  .box-sponsored--common .btn-web a {
    width: 94%;
  }

  .box-qa-wrap {
    margin: var(--s5) auto;
  }

  .box-interview {
    padding: var(--s3) 1.2rem;
  }

  .box-interview__title {
    margin: var(--s3) 0 var(--s2);
    padding-left: 5rem;
    font-size: 1.8rem;
    background-size: 3.6rem auto;
  }

  .box-interview__title span.st {
    font-size: 2rem;
  }

  .title-deco-interview {
    width: 80%;
  }

  .box-answer {
    padding: var(--s2);
  }
.box-answer .btn-internal{
 margin: var(--s4) auto;
}

  .box-answer__pic {
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
    display: block;
  }

  .box-answer__tag {
    padding-left: var(--s1);
    padding-right: var(--s1);
  }

  .bg-gray {
    padding-bottom: 0;
  }

  .sec-05__titleblock {
    padding-top: var(--s9);
  }

  .sec-05__titleblock:before {
    width: 100vw;
    right: -1.2rem;
    left: auto;
    height: 13rem;
  }

  .sec-05__title {
    width: fit-content;
    margin-left: -1.2rem;
    padding: var(--s2) var(--s3) 0 var(--s2);
  }

  .sec-05__title:before {
    width: 100%;
  }

  .sec-05__title:after {
    width: 7rem;
    height: 7rem;
  }

  .modal-btn {
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    background-size: 3.8rem auto;
    background-position: var(--s1) center;
    font-size: 1.5rem;
  }

  .modal-btn-wrap {
    margin-top: var(--s3);
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
    --minmum: calc((100% - var(--s3)) / 2);
  }

  .modal-btn img {
    width: 7rem;
  }

  .remodal-inner {
    min-height: 70vh;
    padding: var(--s4) var(--s2);
  }

  .remodal-inner .box-answer {
    margin-top: var(--s6);
  }

  .modal-title {
    font-size: 1.8rem;
    margin: 0 0 var(--s3) 0;
    padding-left: 5rem;
    text-align: left;
  }

  .modal-title:before {
    left: 0;
    width: 4rem;
    height: 4rem;
  }

  .feature-catch {
    margin: 0 0 var(--s2);
    font-size: 1.6rem;
  }

  .box-flow:before {
    content: none;
  }

  .box-flow-wrap {
    margin: var(--s5) 0;
    padding-top: var(--s3);
  }

  .box-flow-wrap:before {
    right: -1.2rem;
  }

  .box-flow__title {
    margin-bottom: var(--s2);
    padding-left: 7rem;
    font-size: 2rem;
  }

  .box-flow__title:before {
    width: 6rem;
    height: 6rem;
    left: 0;
  }

  .box-flow__pic {
    padding: var(--s2);
  }

  .box-flow__summary {
    margin-top: var(--s4);
    margin-bottom: var(--s6);
    padding: var(--s3) var(--s1) var(--s3) var(--s3);
  }

  .box-flow__summary:before {
    width: calc(100% + 1.2rem);
    border-radius: var(--s3) 0 0 var(--s3);
  }

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

  .box-flow__column {
    margin-top: 0;
    flex-wrap: wrap;
    width: calc(100% - 10rem);
  }

  .box-flow__end {
    width: 9rem;
    padding-top: 0;
    writing-mode: vertical-rl;
    background: url(img/arrow-back-sp.png) no-repeat left center/4.5rem 80%;
  }

  .card-flow {
    width: 100%;
    flex: inherit;
  }

  .card-flow:before {
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    top: 98%;
  }

  .card-flow__title {
    margin-bottom: var(--s1);
    font-size: 1.8rem;
  }

  .card-flow__pic {
    margin-bottom: var(--s1);
  }

  .card-flow__column {
    padding: 0 var(--s1);
  }

  .card-flow__text {
    white-space: inherit;
  }

  .inner-icon span {
    font-size: 1.2rem;
  }

  .inner-icon img {
    height: 4rem;
  }

  .sp-column {
    display: flex;
    margin-top: var(--s3);
  }

  .box-step3 {
    gap: 0 var(--s2);
  }

  .icon-number {
    width: 16rem;
    height: 16rem;
    border-width: var(--s1);
    font-size: 1.8rem;
  }

  .icon-number span {
    font-size: 1.3rem;
  }

  .circle-subtitle {
    margin: var(--s3) auto var(--s4);
    font-size: 2.4rem;
  }

  .circle-subtitle:before {
    width: 45rem;
    height: 45rem;
    top: -23rem;
  }

  .circle-subtitle span {
    font-size: 2rem;
  }

  .card-point {
    padding-top: var(--s8);
  }

  .card-point__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .bg-photo:before {
    height: 20rem;
  }

  .sec-interview {
    padding-bottom: var(--s8);
  }

  .sec-interview:before {
    border: none;
    background-size: 18rem auto;
  }

  .sec-interview__inner {
    padding: 0;
  }

  .card-interview {
    width: 28rem;
  }

  .card-interview-wrap {
    margin: var(--s2) 0 var(--s1);
    width: fit-content;
    flex-wrap: nowrap;
    gap: var(--s2);
  }

  .card-interview-scroll {
    margin-bottom: var(--s7);
  }

  .int-title {
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .int-pic {
    width: 60%;
    margin: 0 auto;
  }

  .int-name {
    padding-top: var(--s4);
    font-size: 1.6rem;
  }

  .int-tag {
    margin-bottom: var(--s1);
  }

  .int-inner {
    padding: var(--s2);
  }

  .int-subtitle {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .about-this {
    max-width: 90%;
    margin: 0 auto var(--s3);
    padding: var(--s2);
    padding-top: 9.8rem;
    position: relative;
  }

  .about-this__en {
    width: 15rem;
  }

  .box-qa__catch {
    font-size: 1.6rem;
  }

  .title-q {
    padding-left: 4rem;
    font-size: 1.8rem;
  }

  .title-q:before {
    width: 3rem;
  }

  .box-qa__name {
    width: 6rem;
  }

  .lower-interview {
    margin: var(--s4) auto;
    padding: var(--s4) var(--s2);
  }
	.lower-interview p {
    margin: 0 auto;
}

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

      Sp - end 

  */
}