@charset "UTF-8";
/* CSS Document */
html, body {
  overflow-x: hidden;
}

/* ==========================================
header 
============================================*/
#toppage #gnav ul li:nth-child(1) a {
  color: #FFF;
  background-color: #00345B;
  border-radius: 22px;
  padding: 6px 23px;
}

/* ==========================================
top
============================================*/
/* 10/16変更 */
.top {
  position: relative;
  overflow: hidden;
  height: 535px;
  width: 100vw;
  display: flex;
  align-items: flex-end;
}
.top:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/movie_top-view.png);
  background-position: center 15%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: zoom 10s ease-in-out forwards;
          animation: zoom 10s ease-in-out forwards;
}
.top .pc-none {
  display: none;
}
.top .top-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 80%;
  max-width: 1200px;
  height: 70%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  filter: drop-shadow(1px 1px 0 rgb(0, 0, 0));
}
.top .top-inner h1 {
  font-weight: 300;
  font-size: 50px;
  line-height: 1.3;
}
.top .top-inner .top-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.top .top-inner .top-flex .top-link a {
  color: #FFF;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 300;
}
.top .top-inner .top-flex .top-link a:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.top .top-inner .top-flex .top-link a .top-link_s {
  margin-right: 5px;
}
.top .top-inner .top-flex .top-flex2 .top-flex3 {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.top .top-inner .top-flex .top-flex2 .flex3-title {
  font-size: 23px;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 14px;
}
.top .top-inner .top-flex .top-flex2 .top-flex_logo {
  margin: 15px 0 0 auto;
  display: block;
  width: 180px;
}
.top #video-area {
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.top #video-area .video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  min-height: 100%;
  min-width: 100%;
  filter: brightness(80%);
}
.top #video-area #sp-video {
  display: none;
}

a.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

/* top回転 */
.circle-box {
  position: relative;
}
.circle-box .circle-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.4;
}

.circle {
  background-image: url(../img/index-circle.png);
  background-size: cover;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
          animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.circle::before {
  content: "";
  padding-top: 50%;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
/* top回転 */
/* ==========================================
top　レスポンシブ
============================================*/
@media screen and (max-width: 1500px) {
  .top .top-inner {
    height: 80%;
  }
  .top .top-inner h1 {
    font-size: 40px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1280px) {
  .top .top-inner h1 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1100px) and (min-height: 1000px) {
  /* 横幅1100px以下で、高さ1000px以上の場合（縦型） */
  .top {
    height: 30vh;
    min-height: 650px;
  }
  .top .top-inner h1 {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 850px) {
  .top .top-inner {
    width: 85%;
  }
  .top .top-inner .top-flex .top-link a {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .top .top-inner h1 {
    font-size: 2.6em;
  }
  .top .top-inner .top-flex .top-flex2 .flex3-title {
    font-size: 1.2em;
  }
  .circle {
    width: 95px;
    height: 95px;
  }
  .circle-box .circle-title {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 600px) {
  .top .top-inner {
    height: 60%;
  }
  .top .top-inner h1 {
    font-size: 2em;
    margin-top: 1rem;
  }
  .top .top-inner .top-flex {
    flex-direction: column-reverse;
  }
  .top .top-inner .top-flex .top-link {
    display: none;
  }
  .top .top-inner .top-flex .top-flex2 {
    display: flex;
    justify-content: right;
  }
  .top .top-inner .top-flex .top-flex2 .flex3-title {
    gap: 11px;
  }
  .top .top-inner .top-flex .top-flex2 .top-flex3 {
    margin-bottom: 6px;
  }
  .top .top-inner .top-flex .top-flex2 div .top-flex_logo {
    width: 40%;
    margin: 17px 0 0 auto;
  }
  .top #video-area #pc-video {
    display: none;
  }
  .top #video-area #sp-video {
    top: 60%;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .top {
    min-height: 0;
  }
  .top .top-inner h1 {
    font-size: 1.45em;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .top .top-inner .top-flex .top-flex2 .top-flex3 {
    gap: 10px;
  }
  .top .top-inner .top-flex .top-flex2 .flex3-title {
    font-size: 0.8em;
    margin-bottom: 7px;
  }
  .circle {
    width: 75px;
    height: 75px;
  }
  .circle-box .circle-title {
    font-size: 0.6em;
  }
}
/* ==========================================
240122　Gmail対策POPUP
============================================*/
.top .top-inner .top-flex .gmail {
  background-color: #fff;
  position: relative;
  text-align: center;
  width: 500px;
  padding: 25px 23px 20px 20px;
  color: #5e5e5e;
}
.top .top-inner .top-flex .gmail .gmail_date {
  position: absolute;
  font-size: 20px;
  color: #fff;
  background-color: #00345B;
  padding: 3px 20px;
  top: -18px;
}
.top .top-inner .top-flex .gmail .gmail_title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 2px;
  line-height: 1.15;
}
.top .top-inner .top-flex .gmail .gmail_read {
  font-size: 20px;
  margin-bottom: 10px;
}
.top .top-inner .top-flex .gmail img {
  border: 1px solid #333;
  width: 100%;
}
.top .top-inner .top-flex .gmail div {
  position: absolute;
  background-color: #fff;
  border: 5px solid #C00000;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 100px;
  top: 5px;
  right: -29px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .top-inner .top-flex .gmail div span {
  font-size: 28px;
  letter-spacing: -1.5px;
  font-weight: bold;
  color: #C00000;
  transform: rotate(14deg);
}

@media screen and (max-width: 1280px) {
  .top .top-inner .top-flex .gmail {
    width: 400px;
  }
  .top .top-inner .top-flex .gmail .gmail_title {
    font-size: 22px;
  }
  .top .top-inner .top-flex .gmail .gmail_read {
    font-size: 18px;
  }
  .top .top-inner .top-flex .top-flex2 .flex3-title {
    font-size: 18px;
  }
  .top .top-inner .top-flex .top-flex2 .top-flex3 {
    gap: 12px;
  }
  .circle {
    width: 100px;
    height: 100px;
  }
  .circle-title {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1081px) {
  .gmail_br {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .top .top-inner .top-flex .gmail {
    width: 300px;
  }
  .top .top-inner .top-flex .gmail div {
    width: 80px;
    height: 80px;
    right: -16px;
  }
  .top .top-inner .top-flex .gmail div span {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .top .top-inner .top-flex .gmail {
    padding: 25px 13px 13px;
  }
  .top .top-inner .top-flex .gmail div {
    top: -20px;
    right: -10px;
  }
  .top .top-inner .top-flex .gmail div span {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .gmail_br {
    display: none;
  }
  .top .top-inner .top-flex {
    justify-content: space-between;
    gap: 40px;
  }
  .top .top-inner .top-flex .top-flex2 div .top-flex_logo {
    display: none;
  }
  .top .top-inner .top-flex .top-flex2 .flex3-title {
    font-size: 1rem;
  }
  .top .top-inner .top-flex .top-flex2 .top-flex3 {
    gap: 4px;
  }
  .top .top-inner .top-flex .gmail {
    width: 100%;
    padding: 17px 13px 13px;
  }
  .top .top-inner .top-flex .gmail .gmail_date {
    font-size: 1rem;
  }
  .top .top-inner .top-flex .gmail .gmail_title {
    font-size: 1.25rem;
    text-align: left;
    padding-left: 7px;
    margin-bottom: 0;
  }
  .top .top-inner .top-flex .gmail .gmail_read {
    font-size: 1rem;
    margin-bottom: 4px;
    text-align: left;
    padding-left: 9px;
  }
  .top .top-inner .top-flex .gmail div {
    width: 70px;
    height: 70px;
    top: -10px;
  }
  .top .top-inner .top-flex .gmail div span {
    font-size: 1.3125rem;
  }
  .circle {
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 400px) {
  .top .top-inner .top-flex .gmail div {
    width: 60px;
    height: 60px;
    top: -38px;
    border: 3px solid #C00000;
  }
  .top .top-inner .top-flex .gmail div span {
    font-size: 1.1875rem;
  }
}
/* ==========================================
news-area
============================================*/
.news-area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.c-item-01__inner {
  display: flex;
  -ms-flex-align: center;
  margin-right: auto;
  margin-left: auto;
  padding: 16px 20px;
  max-width: 1280px;
  align-items: center;
}

.news-area h2.contens-ttl {
  padding: 0;
  color: #1D1D1F;
  font-size: 1rem;
  width: 7%;
  text-align: left;
}

.news-area h2.contens-ttl span {
  font-size: 0.7rem;
  font-weight: normal;
}

.c-item-01__box {
  display: flex;
  margin-left: 15px;
  padding: 10px 30px;
  width: 1010px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.c-item-01__date {
  font-size: 0.875rem;
  font-family: "Helvetica", serif;
}

.c-item-01__link-outer {
  position: relative;
}

.c-item-01__link {
  display: block;
  margin-left: 40px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}

.c-item-01__link--02 {
  margin-left: 1rem;
  background-color: #00345B;
  display: block;
  color: #FFF;
  padding: 0.3rem 1rem;
  text-align: center;
  letter-spacing: 0.2rem;
  width: 124px;
  height: 32px;
}

.c-item-01__link--02:hover {
  text-decoration: none;
}

/* ==========================================
ロゴスライダー 
============================================*/
.loop {
  background-color: #fff;
  box-shadow: 3px 10px 10px 1px rgba(0, 0, 0, 0.06);
}
.loop .loop-box {
  width: 100vw;
  height: 84px;
  background-position: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
.loop .upper {
  background: url(../img/loop/showcase-loop-upper.webp) repeat-x;
  background-size: auto 84px;
  -webkit-animation: bgroop-r 60s linear infinite;
          animation: bgroop-r 60s linear infinite;
}
.loop .lower {
  background: url(../img/loop/showcase-loop-lower.webp) repeat-x;
  background-size: auto 84px;
  -webkit-animation: bgroop-l 60s linear infinite;
          animation: bgroop-l 60s linear infinite;
  animation-direction: reverse;
}

@-webkit-keyframes bgroop-r {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -4637.887px 0;
  }
}

@keyframes bgroop-r {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -4637.887px 0;
  }
}
@-webkit-keyframes bgroop-l {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -4639.882px 0;
  }
}
@keyframes bgroop-l {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -4639.882px 0;
  }
}
@media screen and (max-width: 1280px) {
  .loop .loop-box {
    width: 100vw;
    height: 50px;
    background-position: center;
  }
  .loop .upper {
    background: url(../img/loop/showcase-loop-upper.webp) repeat-x;
    background-size: auto 50px;
    -webkit-animation: bgroop-r 90s linear infinite;
            animation: bgroop-r 90s linear infinite;
  }
  .loop .lower {
    background: url(../img/loop/showcase-loop-lower.webp) repeat-x;
    background-size: auto 50px;
    -webkit-animation: bgroop-l 90s linear infinite;
            animation: bgroop-l 90s linear infinite;
    animation-direction: reverse;
  }
}
@media screen and (max-width: 480px) {
  .loop .loop-box {
    width: 100vw;
    height: 35px;
    background-position: center;
  }
  .loop .upper {
    background: url(../img/loop/showcase-loop-upper.webp) repeat-x;
    background-size: auto 35px;
    -webkit-animation: bgroop-r 100s linear infinite;
            animation: bgroop-r 100s linear infinite;
  }
  .loop .lower {
    background: url(../img/loop/showcase-loop-lower.webp) repeat-x;
    background-size: auto 35px;
    -webkit-animation: bgroop-l 100s linear infinite;
            animation: bgroop-l 100s linear infinite;
    animation-direction: reverse;
  }
}
/* ==========================================
main-area    feature-area
============================================*/
/* 9/5追記 */
.main-area {
  margin-top: 90px;
}

.main-area p {
  font-size: 14px;
  color: #5e5e5e;
  text-align: justify;
}

/* 9/5追記 */
.main-area .index-eng {
  height: 37px;
  margin: 0 auto 37px;
}

.feature-area {
  margin-top: 48px;
}

.discript-block, .support-area {
  width: 100vw;
}

.container {
  display: flex;
  width: 1024px;
  margin: 0 auto;
}

.discript-block:nth-child(2n) {
  background-color: #EFEFEE;
}

.discript-block .container {
  align-items: flex-start;
}

.index-box {
  width: 32.3%;
  color: #5e5e5e;
  /* min-height: 950px; */
}

.index-box h3 {
  margin-bottom: 2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 4rem;
  text-align: center;
  color: #333;
}

.index-box ul {
  padding: 0;
  margin: 0;
}

.index-box ul li {
  width: 100%;
  text-align: center;
  background-color: white;
  padding: 0.8rem;
  margin-bottom: 2.4rem;
  border-radius: 5px;
  border: 1px solid #00345B;
}

/* .part01 .index-box{
	background: linear-gradient(to right, #1d1d1f, 15%,#72334D);
}

.part01 .index-box ul li{
	color: #72334D;
} */
.part01 {
  padding-bottom: 5rem;
}

.part01 .container {
  padding: 3rem 0;
}

/* 9/5変更 */
.part01 .index-title p {
  text-align: center;
  line-height: 1.8;
  font-size: 24px;
  margin-bottom: 22px;
}

.discript-box {
  width: 67.7%;
  margin-right: auto;
  padding: 0 0 3rem 9.6%;
}

h4 {
  color: #00345B;
  padding-bottom: 0.8rem;
  font-size: 1.45rem;
  line-height: 31px;
  font-weight: 500;
  text-align: center;
}

.feature-area .text-box:not(:last-child) {
  padding-bottom: 3.5rem;
}

#toppage .main-area h2 {
  color: #00345B;
  margin: 36px auto 4rem;
  text-align: center;
  font-size: 2rem;
}

.part02 .container, .part03 .container {
  justify-content: space-between;
}

.part02 .container p, .part02 .container h4 {
  width: 29%;
}

.part03 .container p, .part03 .container h4 {
  width: 30%;
}

.part03 .container h4 {
  font-size: 1.3rem;
  line-height: 28px;
}

.discript-block .inner {
  width: 1024px;
  margin: 0 auto;
  padding: 3rem 0;
}

.part02, .part03 {
  padding: 5rem 0;
}

.discript-block, .support-area {
  width: 100vw;
}

h4 span {
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.part01 h4 {
  text-align: start;
}

.inner h3 + .container {
  align-items: center;
  /* margin-bottom: 0.8rem; */
}

.logo-area {
  padding-top: 2rem;
}
.logo-area img {
  margin: 2rem 0;
}
.logo-area a {
  display: block;
  text-align: end;
}

/* ==========================================
main-area    support-area
============================================*/
.support-area {
  padding: 8rem 0 4rem;
  background-color: #EFEFEE;
}
.support-area h3 {
  text-align: center;
}
.support-area .container {
  justify-content: space-between;
  margin-bottom: 2rem;
}
.support-area .container .text-box {
  width: 29%;
}
.support-area .container .text-box h4 {
  text-align: center;
  padding-bottom: 1rem;
}
.support-area .container .text-box p {
  padding-bottom: 1.5rem;
}

/* ==========================================
main-area    price-area
============================================*/
.price-area {
  padding: 5rem 0;
}
.price-area h3 {
  margin-bottom: 3rem;
}
.price-area .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 660px;
}
.price-area .container .price-box {
  padding: 8px 35px 5px;
  flex-grow: 1;
}
.price-area .container .price-box h4 {
  font-size: 30px;
  padding-bottom: 5px;
  color: #333;
}
.price-area .container .price-box p {
  font-size: 50px;
  font-weight: bold;
  padding-top: 14px;
  color: #00345B;
  text-align: center;
}
.price-area .container .price-box p span {
  font-size: 30px;
}
.price-area .container div + div {
  border-left: 3px solid #00345B;
}
.price-area .price-read {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin-top: 40px;
}

/* ==========================================
animation
============================================*/
/* #toppage .index-box , #toppage .appear-trigger{
	opacity: 0;
} */
/* .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(-100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.appear {
    animation-name: appearAnime;
    animation-duration:.8s;
    animation-fill-mode:forwards;
    opacity: 0;
	animation-delay: .7s;
}

@keyframes appearAnime{
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

.delay-time02{
	animation-delay: 1s;
}

.delay-time04{
	animation-delay: 1.3s;
}

.delay-time06{
	animation-delay: 1.6s;
} */
/* 左から */
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-delay-time01 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.slide-delay-time02 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.slide-delay-time03 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.slide-delay-time04 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.slide-delay-time05 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.slide-delay-time06 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.slide-delay-time07 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

/* ==========================================
レスポンシブ
============================================*/
@media screen and (max-width: 1180px) {
  .news-area h2.contens-ttl {
    width: 10%;
  }
}
@media (max-width: 1024px) {
  #toppage .main-area h2 {
    font-size: 2rem;
  }
  .container {
    width: 80%;
  }
  .discript-block .inner {
    width: 80%;
  }
  .inner .container {
    width: 100%;
  }
  .news-area h2.contens-ttl {
    width: 16%;
  }
  .price-area .container .price-box h4, p {
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 860px) {
  .news-area h2.contens-ttl {
    width: 20%;
  }
  .price-area .container {
    gap: 15px;
  }
  .price-area .container .price-box {
    width: 45%;
    padding: 25px 25px 20px;
  }
  .price-area .container .price-box h4 {
    padding-bottom: 23px;
  }
  .price-area .container .price-box p {
    font-size: 2rem;
  }
  .price-area .container .price-box p span {
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) {
  .sp-inner {
    display: none;
  }
  .tb-br {
    display: none;
  }
}
@media (max-width: 768px) {
  .top {
    height: 550px;
  }
  section.main-area {
    width: 100%;
    overflow: hidden;
  }
  .discript-block .index-title h3 {
    margin-bottom: 0;
  }
  .discript-block .container {
    display: block;
  }
  .index-box, .discript-box {
    width: 100%;
    min-height: auto;
  }
  .part01 h4 {
    text-align: center;
  }
  .discript-block.part02 .container {
    flex-direction: row;
  }
  .discript-box {
    padding: 2rem 0 5rem;
  }
  .part02 .discript-box {
    padding-right: 0;
  }
  .index-box {
    padding: 30px;
  }
  .pc-inner {
    display: none;
  }
  .c-item-01__inner {
    position: relative;
    display: block;
    padding: 5.33333vw 0 6.66667vw;
    max-width: none;
    width: 89.33333vw;
    font-size: 4.26667vw;
  }
  .news-area h2.contens-ttl {
    font-size: 1.2rem;
    width: auto;
  }
  .c-item-01__ttl {
    margin-bottom: 0;
    letter-spacing: 0.16em;
  }
  .c-item-01__box {
    display: block;
    margin-top: 3vw;
    margin-left: 0;
    padding: 0;
    width: 100%;
    border: none;
    font-size: 2.7vw;
    line-height: 1.6;
  }
  .c-item-01__link-outer:after {
    content: none;
  }
  .c-item-01__link-outer {
    position: absolute;
    top: 6.7vw;
    right: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 2.46667vw;
  }
  .c-item-01__link {
    display: inline;
    margin-left: 3.2vw;
    font-size: 1rem;
  }
  .c-item-01__link--02 {
    margin-left: 0;
    padding: 0.2rem 1rem;
  }
  .support-area .container {
    display: block;
    row-gap: 20px;
  }
  .support-area .container .text-box {
    width: 100%;
  }
  .support-area .container .text-box:not(:last-child) {
    padding-bottom: 3.5rem;
  }
  .tabsp-none {
    display: none;
  }
  .logo-area {
    padding: 0;
  }
  .logo-area img {
    margin: 1rem 0 2rem;
  }
  .logo-area a {
    font-size: 14px;
  }
}
@media (min-width: 580px) {
  #toppage .main-area .pc-non {
    display: none;
  }
}
@media (max-width: 580px) {
  .top .pc-none {
    display: block;
  }
  .top .copy01 {
    font-size: 10px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  .top .copy02 {
    font-size: 11px;
  }
  .top .copy02::before {
    width: 350px;
    left: calc(50% - 175px);
  }
  .top .copy03 {
    font-size: 10px;
    margin-left: 13px;
  }
  #toppage .main-area h2 {
    font-size: 1.4rem;
  }
  .support-area .container .text-box h4, .support-area .container .text-box p {
    padding-bottom: 0.8rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  .part01 .index-box ul li {
    font-size: 14px;
  }
  .part01 h4 {
    text-align: center;
  }
  .price-area .container {
    gap: 10px;
  }
  .price-area .container .price-box {
    width: 100%;
    padding: 20px 15px;
  }
  .price-area .container .price-box h4 {
    font-size: 1.2rem;
    padding-bottom: 14px;
  }
  .price-area .container .price-box p {
    font-size: 1.5rem;
  }
  .price-area .container .price-box p span {
    font-size: 0.9rem;
  }
  .price-area .price-read {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  #toppage .main-area {
    font-size: 1.2rem;
  }
  .index-box {
    padding: 45px 30px 25px;
  }
  .index-box ul li {
    margin-bottom: 1.4rem;
  }
  .part01 .container {
    padding: 0;
  }
  .part01 .index-title p {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 414px) {
  video.pc-movie {
    display: none;
  }
  #toppage .main-contents {
    display: block;
  }
}