@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
  font-family: Noto_Sans_JP;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

@font-face {
  font-family: Rampart_One;
  src: url(../font/Rampart_One/RampartOne-Regular.ttf);
}

@font-face {
  font-family: Open_Sans;
  src: url(../font/Open_Sans/static/OpenSans_SemiCondensed-Bold.ttf);
}

@font-face {
  font-family: Noto_Sans_KR;
  src: url(../font/Noto_Sans_KR/static/NotoSansKR-ExtraBold.ttf);
}

body {
    background-color: #EEEEEE;
    height: 180vw;
    font-family: Noto_Sans_JP;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header.scroll-nav {
  backdrop-filter: blur(20px);
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
  
  /* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.header.scroll-nav .logo,
    header.scroll-nav ul li a {
    color: #000;
}


/* スクロールbox */
header {
  position: relative;
  width: 100%;
  height: 50vw;
  overflow: hidden;
}


/*  header::before {
  content: "";
	display: block;
	position: fixed;
	width: calc(100% - 2vw);
	height: calc(100% - 2vw);
	border: 1vw solid #268cc5;
  
}*/

.header {
    position: fixed;
    display: flex;
    width: 100%;
    height: 12vw;
    z-index: 10;
    
}

.header h1 {
  width: 15%;
  margin-left: 2%;
  margin-top: .6%;
}

.header h1 img {
  width: 100%;
}

.header .top-nav {
    display: none;
  width: 40%;
  margin-left: 45%;
}

.header .top-nav .top-ul {
  display: flex;
  list-style-type: none;
  display: none;
}

.header .top-nav .top-ul .top-li {
  width: calc(100% / 5);
  padding-right: 5%;
}

.header .top-nav .top-ul .top-li a {
  display: block;
  margin-top: 2vw;
  text-decoration: none;
  color: #666666;
  font-size: 1vw;
}

.header .top-nav .top-ul .top-li a .before {
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.header .top-nav .top-ul .top-li a .after {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: -2vw;
  border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%;
  background-color: #ffe43e;
  transform: scale(1,1); 
  opacity: 0;
}

.header .top-nav .top-ul .top-li a:hover .after {
  animation: fluid-anim1 6s ;
  opacity: 1;
}


@keyframes fluid-anim1 {
  0%    { 
    border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%;
    transform: scale(1,1); 
  }
  12.5% { 
    border-radius: 59% 41% 70% 30% / 61% 48% 52% 39%;
   }
  25%   {
     border-radius: 77% 23% 41% 59% / 48% 22% 78% 52%;
     transform: scale(10,10); 
  }
  37.5% { 
    border-radius: 55% 45% 61% 39% / 58% 71% 29% 42%;
 
  }
  50%   { 
    border-radius: 44% 56% 33% 67% / 30% 37% 63% 70%; 
  }
  62.5% { 
    border-radius: 73% 27% 68% 32% / 78% 54% 46% 22%;
   
  }
  75%   { 
    border-radius: 47% 53% 41% 59% / 44% 25% 75% 56%; 
  }
  87.5% { 
    border-radius: 81% 19% 38% 62% / 44% 26% 74% 56%; 
  }
  100%  { 
    border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%;
    transform: scale(12,12);  
  }
}



/* ナビ */

.hamburger-morph {
    position: absolute;/*  */
    top: 14%;
    right: 2%;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .hamburger-morph__icon {
    width: 100%;
    height: 100%;
  }
  
  .hamburger-morph__line {
    fill: none;
    stroke: #666666;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
  }
  
  .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
  }
  
  .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
  }
  
  .hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  
  .hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }
  
  .hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  
  .nav-morph {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vw;
    background: rgba( 38, 140, 197, 0.98);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }
  
  .nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }

  /* クリック後の背景 */
  .nav-morph__wrapper {
    display: flex;
    margin-top: 8%;
    width: 100%;
    height: 100%;
    background-image: url(../images/sample.png);
    background-size: 60%;
    background-repeat: no-repeat;
  }
  
  /* ナビリスト位置 */
  .nav-morph__list {
    margin-top: 5%;
    margin-left: 64%;
    list-style: none;
    text-align: center;
  }
  
  .nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
  }
  
.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
.nav-morph.active .nav-morph__item:nth-child(5) { transition-delay: 0.7s; }
.nav-morph.active .nav-morph__item:nth-child(6) { transition-delay: 0.8s; }


  .nav-morph__link {
    position: relative;
    display: inline-block;
    margin: 11%;
    padding: 2%;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    font-size: 2.5vw;
  }
  
  .nav-morph__text,
  .nav-morph__hover {
    display: block;
    transition: transform 0.3s ease;
  }
  
  .nav-morph__hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(0%);
    font-size: 1.6vw;
  }
  
  .nav-morph__link:hover .nav-morph__text {
    transform: translateY(-100%);
  }
  
  .nav-morph__link:hover .nav-morph__hover {
    transform: translateY(-100%);
  }



.nav-morph__wrapper .top-aicon {
  position: absolute;
  width: 15%;
  top: 2vw;
  left: 2vw;
}

.nav-morph__wrapper .top-aicon img {
  width: 100%;
}


/* サークル文字 */
.nav-morph__wrapper .circle1 {
    position: absolute;
    width: 52%;
    top: 10%;
    left: 50%;
    mix-blend-mode: color-dodge;
    z-index: -1;
}

.nav-morph__wrapper .circle2 {
    position: absolute;
    width: 35%;
    top: 15%;
    left: 40%;
    mix-blend-mode: soft-light;
    z-index: -1;
}


.nav-morph__wrapper .circle1 .circle-img1 {
    width: 100%;
    animation: circle-anime1 20s infinite linear;
}

.nav-morph__wrapper .circle2 .circle-img2 {
    width: 100%;
    animation: circle-anime2 16s infinite linear;
}


/* ヘッダー画像 */

@keyframes circle-anime1 {
    0%{
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes circle-anime2 {
    0%{
        transform: rotate(360deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

header .circle3 {
    position: absolute;
    width: 50%;
    top: 2%;
    left: 39%;
    border-radius: 50%;
}

header .circle3 .circle-img3 {
    width: 100%;
    animation: circle-anime1 18s infinite linear;
    mix-blend-mode:color-dodge; 
}

header .circle4 {
  position: absolute;
  width: 35%;
  top: 20%;
  left: 46%;
}

header .circle4 .circle-img4 {
  width: 100%;
  animation: circle-anime2 20s infinite linear;
  mix-blend-mode:color-dodge; 
}

header .circle5 {
  position: absolute;
  width: 28%;
  top: 27.5%;
  left: 49.5%;
}

header .circle5 .circle-img5 {
  width: 100%;
  animation: circle-anime1 30s infinite linear;
  mix-blend-mode:color-dodge; 
}


header .main-img {
    position: absolute;
    width: 50%;
    top: 20%;
    left: 40%;
}

header .main-img img {
    width: 100%;
    animation: yura 6s infinite;
}

@keyframes yura {
  0% {
      transform: translateY(0%);
  }

  20% {
      transform: translateY(3%);
  }
  40% {
      transform: translateY(1%);
      
  }
  80% {
      transform: translateY(2%);
  }
  100% {
      transform: translateY(0%);
  }
}

header .top-text {
  position: absolute;
  width: 44%;
  top: 16%;
  left: 3%;
  padding: 5%;
}

header .top-text h2 {
  line-height: 1.2;
  color: #268cc5;
  font-size: 6vw;
  font-family: Rampart_One;
}

header .top-text h2 + p {
  margin-top: 1%;
  margin-left: 10%;
  margin-bottom: 5%;
  color: #268cc5;
  font-size: 1.2vw;
}

header .top-text p {
  margin-left: 2%;
  line-height: ;
  white-space: pre-wrap;
  font-size: 1.8vw;
}


main .sec1-wrapper .sec1-container .sec1-flexbox1 {
    display: none;
}


main .sec1-wrapper .sec1-container .sec1-flexbox2 {
  width: 85%;
  margin-top: 16%;
  margin-left: auto;
  margin-right: auto;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 h2 {
  position: relative;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.5vw;
  text-align: center;
  white-space: pre-wrap;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 h2::before {
  display: none;
  content: "";
  width: 21.6vw;
  height: 0.3rem;
  background-color: #268cc5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(100%, -100%);/* (x軸,y軸) */
}



/* スクロールアクション1 */
.box {
  padding: 1rem;
  
  cursor: pointer;
  background-image: radial-gradient(circle at 40% 0, #EEEEEE 0%, #EEEEEE 70%, #268cc5 70%, #268cc5 100%);
  background-size: 100% 400%;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  color: #fff;
  font-size: 1rem;
  transition: all 1.8s;
}
.is-active {
  background-position: 50% 100%;
}


/* スクロールアクション2 */
.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.is-animated {
  clip-path: inset(0);
}
 

main .sec1-wrapper .sec1-container .sec1-flexbox2 h2 + p {
  margin-top: 2%;
  margin-bottom: 8%;
  font-size: 1.8vw;
  text-align: center;
  color: #268cc5;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 h3 {
  text-align: center;
  font-size: 3.5vw;
  background-image: linear-gradient(25deg, #268cc5, #3a7abd,#9BCCED, #3a7abd, #268cc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 p {
  width: 80%;
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8vw;
  line-height: 1.8;
  letter-spacing: .1em;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 h3:nth-last-of-type(1) {
  margin-top: 10%;
}

.button {
  width: 16%;
  margin-top: 8%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8vw;
  
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 h5 {
  margin-top: 5%;
  margin-bottom: 2%;
  color: #268cc5;
  text-align: center;
  font-size: 2.5vw;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 ul {
  width: 37%;
  list-style-type: none;
  margin-left: auto;
  margin-right: auto;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 ul li {
  font-size: 1.8vw;
  line-height: 1.8;
  font-weight: bold;
}

main .sec1-wrapper .sec1-container .sec1-flexbox2 ul li .fa-solid {
  margin-right: 4%;
}

.button a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  margin: 0 auto;
  text-decoration: none;
  color: #fff;
  background-color: #268cc5;
  border-radius: 61% 39% 16% 84% / 57% 72% 28% 43%;
  animation: fluid-anim2 20s infinite;
  transition: 1s;
  box-shadow: -2px 1px #eeeeee;
}

.button a:hover {
  transition: 1s;
  background: #ffe43e;
}


@keyframes fluid-anim2 {
  0%    { border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%; }
  12.5% { border-radius: 59% 41% 70% 30% / 61% 48% 52% 39%; }
  25%   { border-radius: 77% 23% 41% 59% / 48% 22% 78% 52%; }
  37.5% { border-radius: 55% 45% 61% 39% / 58% 71% 29% 42%; }
  50%   { border-radius: 44% 56% 33% 67% / 30% 37% 63% 70%; }
  62.5% { border-radius: 73% 27% 68% 32% / 78% 54% 46% 22%; }
  75%   { border-radius: 47% 53% 41% 59% / 44% 25% 75% 56%; }
  87.5% { border-radius: 81% 19% 38% 62% / 44% 26% 74% 56%; }
  100%  { border-radius: 65% 35% 55% 45% / 55% 50% 55% 45%; }
}

main .sec1-wrapper .sec2-container {
  display: block;
  width: 90%;
  margin-top: 12%;
  margin-left: auto;
  margin-right: auto;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 {
  width: 100%;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 h3 {
  margin-top: 3%;
  text-align: center;
  white-space: pre-wrap;
  font-size: 3.5vw;
  background-image: linear-gradient(25deg, #3a7abd, #9BCCED, #268cc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 p {
  width: 75%;
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8vw;
  line-height: 1.8;
  letter-spacing: .1em;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 h5 {
    margin-top: 5%;
    margin-bottom: 2%;
    color: #268cc5;
    text-align: center;
    font-size: 2.5vw;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 ul {
    width: 37%;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 ul li {
    font-size: 1.8vw;
    line-height: 1.8;
    font-weight: bold;
}

main .sec1-wrapper .sec2-container .sec2-flexbox1 ul li .fa-solid {
  margin-right: 4%;
}


main .sec1-wrapper .sec2-container .sec2-flexbox2 {
  width: 45%;
}

main .sec1-wrapper .sec2-container .sec2-flexbox2 p {
    display: none;
  font-size: 10vw;
  color: #fffffc;
  font-family: Noto_Sans_KR;
}

main .sec1-wrapper .sec2-container .sec2-flexbox2 img {
  width: 80%;
  margin-left: 20%;
}


main .sec1-wrapper .sec3-container {
  display: block;
  width: 90%;
  margin-top: 8%;
  margin-left: auto;
  margin-right: auto;
}



main .sec1-wrapper .sec3-container .sec3-flexbox1 {
  display: none;
}


main .sec1-wrapper .sec3-container .sec3-flexbox1 p {
  position: absolute;
  top: 0;
  font-size: 10vw;
  color: #fffffc;
  font-family: Noto_Sans_KR;
}

main .sec1-wrapper .sec3-container .sec3-flexbox1 img {
  width: 90%;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 h3 {
  margin-top: 6%;
  text-align: center;
  white-space: pre-wrap;
  font-size: 3.5vw;
  background-image: linear-gradient(25deg, #268cc5, #3a7abd,#9BCCED, #3a7abd, #268cc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 p {
  width: 80%;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8vw;
  line-height: 1.8;
  letter-spacing: .1em;
  text-align: center;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 h5 {
    margin-top: 5%;
    margin-bottom: 2%;
    color: #268cc5;
    text-align: center;
    font-size: 2.5vw;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 ul {
    width: 37%;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 ul li {
    font-size: 1.8vw;
    line-height: 1.8;
    font-weight: bold;
    white-space: pre-wrap
    ;
}

main .sec1-wrapper .sec3-container .sec3-flexbox2 ul li .fa-solid {
  margin-right: 4%;
}

main .sec4-news {
  position: relative;
  width: 90%;
  margin-top: 12%;
  margin-left: auto;
  margin-right: auto;
}

main .sec4-news h3 {
  width: 26%;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.5vw;
  text-align: center;

}

main .sec4-news h3 + p {
    margin-top: 2%;
    margin-bottom: 3%;
    font-size: 1.8vw;
    text-align: center;
    color: #fffffc;
}

main .sec4-news .news-container {
    position: relative;
  width: 100%;
  border-radius: 3vw;
  background-color: #fffffc;
  z-index: 1;
}

main .sec4-news .news-container .news-box {
  width: 90%;
  margin-top: 3%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px dotted #666666;
  line-height: 2;
  font-size: 1.8vw;
}

main .sec4-news .news-container .news-box:nth-of-type(1) {
 padding-top: 5%;
}

main .sec4-news .news-container .news-box a {
  text-decoration: none;
  color: #333;
}

main .sec4-news .news-container .news-box .news-date {
    margin-left: 10%;
  color: #ffe43e;
}

main .sec4-news .news-container .news-box .news-border {
  margin-left: 3%;
  margin-right: 3%;
  padding-left: 3%;
  padding-right: 3%;
  line-height: 2;
  display: inline-block;
  text-align: center;
  color: #fffffc;
  background-color: #666666;
}

main .sec4-news .news-container .news-box button {
    
  position: relative;
  top: -1.2vw;
  left: 5%;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
 }
 
 main .sec4-news .news-container .news-box button.news-button {
  width: 8rem;
  height: auto;
 }
 
 main .sec4-news .news-container .news-box button.news-button .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 2rem;
  height: 2rem;
  background: #666666;
  border-radius: 1.625rem;
 }
 
 main .sec4-news .news-container .news-box button.news-button .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fffffc;
 }
 
 main .sec4-news .news-container .news-box button.news-button .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.2rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
 }
 
 main .sec4-news .news-container .news-box button.news-button .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fffffc;
  border-right: 0.125rem solid #fffffc;
  transform: rotate(45deg);
 }
 
 main .sec4-news .news-container .news-box button.news-button .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 0;
  margin: 0 0 0 1.85rem;
  color: #fffffc;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8vw;
 }
 
 main .sec4-news .news-container .news-box a:hover .circle {
  width: 100%;
 }
 
 main .sec4-news .news-container .news-box a:hover .circle .icon.arrow {
  background: #fffffc;
  transform: translate(1rem, 0);
 }
 
 main .sec4-news .news-container .news-box a:hover .button-text {
  color: #fffffc;
 }

 main .sec4-news .news-container .news-all {
  line-height: 3;
  font-size: 2vw;
  padding-left: 70%;
 }

 main .sec4-news .news-container .news-all a {
  text-decoration: none;
  color: #333;
 }

 main .sec4-news .news-container .news-all span {
  display: inline-block;
  font-size: 3vw;
  padding-left: 3%;
 }


/* ループ */
.marquee {
  margin-top: -46.3vw;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: .5rem;
  -webkit-text-stroke: 1px black;
  color: white;
  text-shadow:
    3px 3px 0 #eeeeee,
    -1px -1px 0 #eeeeee,  
    1px -1px 0 #eeeeee,
    -1px 1px 0 #eeeeee,
    1px 1px 0 #eeeeee;
  color: #9BCCED;
  background: #268cc5;
  font-size: 12rem;
  font-family: Open_Sans;
}

.marquee-inner {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0%   { translate: 0; }
  100% { translate: calc(-100% - 1rem); }
}


main .footer-design {
  width: 50%;
  margin-top: -15vw;
  margin-left: 40%;
}

main .footer-design img {
  width: 100%;
  animation: yura 6s infinite;
}


main .sec5-blog h3 {
  width: 20%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 3.5vw;
  color: #fffffc;
}

main .sec5-blog h3 + p {
  margin-top: .6%;
  text-align: center;
  color: #268cc5;
  font-size: 1.8vw;
}

main .sec5-blog .blog-img {
  width: 30%;
  margin-top: -8vw;
  margin-left: 10%;
}

main .sec5-blog .blog-img img {
  width: 100%;
}


  /* 横自動で流れる */

  @keyframes infiniteScrollRTL {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(
        calc(
          -1 * (100% / var(--_infinite-scroll-clone-length)) - var(
              --_infinite-scroll-gap,
              var(--scroll-gap)
            ) / var(--_infinite-scroll-clone-length)
        )
      );
    }
  }
  
  @keyframes infiniteScrollLTR {
    0% {
      transform: translateX(
        calc(
          -1 * (100% / var(--_infinite-scroll-clone-length)) - var(
              --_infinite-scroll-gap,
              var(--scroll-gap)
            ) / var(--_infinite-scroll-clone-length)
        )
      );
    }
    100% {
      transform: translateX(0);
    }
  }
  
  .js-scrollTrack {
    width: max-content;
  
    &[data-scroll-initialized="true"][data-scroll-direction="left"] {
      animation: infiniteScrollRTL var(--_infinite-scroll-duration) linear
        infinite;
    }
    &[data-scroll-initialized="true"][data-scroll-direction="right"] {
      animation: infiniteScrollLTR var(--_infinite-scroll-duration) linear
        infinite;
    }
    &[data-scroll-pause-on-hover="true"]:hover {
      animation-play-state: paused;
    }
  }
  
  .js-scrollList {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 var(--_infinite-scroll-gap, var(--scroll-gap));
  }
  
  .js-scrollCont {
    flex-shrink: 0;
  }
  
  .scroll_wrap {
    margin-block-start: 20vh;
    width: 100%;
    margin-top: -7vw;
    overflow: hidden;
  }
  
  .scroll_cont {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    min-width: 50vw;
    height: 50vw;
    aspect-ratio: 1 / 1;
    font-size: .8vw;
    font-weight: bold;
    
      
    &:nth-of-type(5n + 1) {
      background-color: #fffffc;
      border-radius: 0 0 0 3vw;
    }
    &:nth-of-type(5n + 2) {
      background-color: #9BCCED;
      border-radius: 0 0 0 3vw;
    }
    &:nth-of-type(5n + 3) {
      background-color: #fffffc;
      border-radius: 0 0 0 3vw;
    }
    &:nth-of-type(5n + 4) {
      background-color: #9BCCED;
      border-radius: 0 0 0 3vw;
    }
    &:nth-of-type(5n + 5) {
      background-color: #ffe43e;
      border-radius: 0 0 0 3vw;
    }
  }

.scroll_cont a {
  text-decoration: none;
  color: #fffffc;
}

.scroll_cont > a:nth-last-of-type(1), a:nth-last-of-type(3) {
  
  color: #333;
}


.scroll_cont .blog-box {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  
}

.scroll_cont .blog-box img {
  width: 100%;
  margin-top: -1vw;
}

.scroll_cont .blog-box p {
  text-align: center;
  margin-top: 5%;
  white-space: pre-wrap;
  font-size: 2vw;
}

main .sec5-blog .button {
  width: 14%;
  margin-left: auto;
  margin-right: auto;
}

main .sec5-blog .blog-img2 {
  width: 30%;
  margin-top: -20vw;
  margin-left: 60%;
}

main .sec5-blog .blog-img2 img {
  width: 100%;
}

footer {
  margin-top: 5%;
}

footer .footer-flexbox1 {
  display: none;
  width: 15%;
  height: 20vw;
  margin-top: 10%;
  margin-left: 15%;
  margin-right: 5%;
  border-radius: .5vw;
  background-color: #EEEEEE;
}




footer .footer-flexbox1 address {
  width: 80%;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-flexbox1 address p {
  line-height: 1.8;
  font-style: normal;
  text-align: center;
  font-size: .9vw;
}

footer .footer-flexbox1 address p span {
  margin-right: 4%;
}

footer .footer-flexbox1 .footer-sns {
  width: 60%;
  margin-top: 6%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

footer .footer-flexbox1 .footer-sns .fa-brands {
  padding: 2%;
  font-size: 1.5vw;
}

footer .footer-flexbox1 .footer-sns .fa-instagram {
  background-image: linear-gradient(25deg, #4C64D3, #CF2E92, #F26939, #FFDD83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer .footer-flexbox2 {
  display: flex;
  width: 100%;
}

footer .footer-flexbox2 .footer-box {
  width: 30%;
  margin-top: 8%;
  margin-left: 2%;
}

footer .footer-flexbox2 h6 {
  margin-bottom: 2%;
  font-weight: bold;
  color: #fffffc;
  font-size: 2vw;
}

footer .footer-flexbox2 h6 span {
  margin-right: 4%;
  font-size: 2vw;
}

footer .footer-flexbox2 ul {
  list-style-type: none;
  margin-bottom: 2%;
}

footer .footer-flexbox2 ul li {
  text-indent: 1em;
  white-space: pre-wrap;
}

footer .footer-flexbox2  a {
  text-decoration: none;
  color: #fffffc;
  font-size: 1.6vw;
}

footer .footer-flexbox2 h6 a {
  font-size: 2vw;
}


