@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-weight: 400;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.ndwWrapper {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text-main);
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt";
  word-break: break-all;
  overflow: hidden;
}
.ndwWrapper a {
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}
.ndwWrapper a:hover {
  color: #ea4631;
}

.ndwContainer {
  max-width: 1100px;
  margin: 0 auto;
  width: 92%;
}
@media only screen and (max-width: 1024px) {
  .ndwContainer {
    max-width: 90%;
  }
}
.ndwContainer__inner {
  padding: 100px 0;
}
@media only screen and (max-width: 430px) {
  .ndwContainer__inner {
    padding: 60px 0;
  }
}

.ndwMenu {
  position: absolute;
  right: 40px;
  top: 40px;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media only screen and (max-width: 430px) {
  .ndwMenu {
    -moz-column-gap: 12px;
         column-gap: 12px;
    right: 20px;
    top: 20px;
  }
}
.ndwMenu__list {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .ndwMenu__list {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.ndwMenu__list li {
  width: 32px;
}
@media only screen and (max-width: 430px) {
  .ndwMenu__list li {
    width: 28px;
  }
}

.ndwMenu.fixed {
  position: fixed;
  z-index: 9999;
}

.inside .ndwLogo1 {
  display: none;
}

.ndwLogo1 {
  position: absolute;
  left: 40px;
  top: 40px;
  max-width: 492px;
  z-index: 10;
}
@media only screen and (max-width: 1280px) {
  .ndwLogo1 {
    max-width: 420px;
  }
}
@media only screen and (max-width: 768px) {
  .ndwLogo1 {
    max-width: 300px;
  }
}
@media only screen and (max-width: 430px) {
  .ndwLogo1 {
    left: 20px;
    top: 20px;
    max-width: 200px;
  }
}

.ndwLogo2 {
  position: absolute;
  left: 40px;
  top: 40px;
  max-width: 172px;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .ndwLogo2 {
    left: 20px;
    top: 20px;
    max-width: 160px;
  }
}
.ndwLogo2 a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.ndwLogo2 a:hover {
  transform: scale(1.2);
}

.ndwMvanime {
  width: 1280px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  .ndwMvanime {
    width: 90%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .ndwMvanime {
    /*width: 120%;
    right: 10%;*/
    padding-top: 170px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 430px) {
  .ndwMvanime {
    width: 120%;
    right: 10%;
    padding-top: 100px;
    margin-bottom: 30px;
  }
}
.ndwMvanime__anime {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .ndwMvanime__anime video {
    width: 1000px;
  }
}
@media only screen and (max-width: 768px) {
  .ndwMvanime__anime video {
    width: 120%;
  }
}
@media only screen and (max-width: 430px) {
  .ndwMvanime__anime video {
    width: 120%;
  }
}
.ndwMvanime__list {
  position: absolute;
  right: 0px;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .ndwMvanime__list {
    right: 0px;
  }
}
@media only screen and (max-width: 430px) {
  .ndwMvanime__list {
    right: 50px;
  }
}
.ndwMvanime__list--scroll {
  position: relative;
  width: 180px;
  bottom: 100px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .ndwMvanime__list--scroll {
    right: 10px;
    top: -20px;
    width: 100px;
  }
}
@media only screen and (max-width: 430px) {
  .ndwMvanime__list--scroll {
    width: 70px;
  }
}

footer {
  border-top: solid 1px var(--black);
  display: flex;
  justify-content: center;
  padding: 60px 0 120px;
}

.footerContainer {
  display: flex;
  -moz-column-gap: 2.5%;
       column-gap: 2.5%;
  flex-direction: column;
  width: 1100px;
  gap: 40px;
  align-items: center;
  max-width: 90%;
}
@media only screen and (max-width: 1100px) {
  .footerContainer {
    width: 86%;
    flex-direction: column;
    row-gap: 40px;
  }
}
.footerContainer__right {
  display: flex;
  justify-content: space-between;
  width: 100%;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
@media only screen and (max-width: 768px) {
  .footerContainer__right {
    flex-direction: column;
  }
}
.footerContainer__right--first {
  width: 15%;
}
@media only screen and (max-width: 768px) {
  .footerContainer__right--first {
    width: 100%;
  }
}
.footerContainer__right--second {
  width: 58%;
}
@media only screen and (max-width: 768px) {
  .footerContainer__right--second {
    width: 100%;
  }
}
.footerContainer__right--third {
  width: 22%;
}
@media only screen and (max-width: 768px) {
  .footerContainer__right--third {
    width: 100%;
  }
}
.footerContainer__right ul li {
  border-bottom: solid 1px var(--black);
  margin-bottom: 10px;
}
.footerContainer__right ul li a {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--black);
  text-decoration: none;
  padding: 6px 0 12px 0;
  display: block;
}
@media only screen and (max-width: 768px) {
  .footerContainer__right ul li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .footerContainer__right ul li a {
    font-size: 14px;
  }
}
.footerContainer__right ul li dl {
  display: flex;
  -moz-column-gap: 3%;
       column-gap: 3%;
  white-space: nowrap;
  padding-top: 10px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 430px) {
  .footerContainer__right ul li dl {
    flex-direction: column;
  }
}
.footerContainer__right ul li dl dd a {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: 0 0 15px 0;
  display: block;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .footerContainer__right ul li dl dd a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .footerContainer__right ul li dl dd a {
    font-size: 14px;
  }
}
.footerContainer__right ul li.bordernone {
  border-bottom: none;
}
.footerContainer__left--footlogo {
  width: 172px;
}
.footerContainer__left--footcopy {
  font-family: "Ropa Sans", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 800;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .footerContainer__left--footcopy {
    font-size: 17px;
  }
}
@media only screen and (max-width: 430px) {
  .footerContainer__left--footcopy {
    font-size: 16px;
  }
}
.footerContainer__left--footsns dl {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.footerContainer__left--footsns dl img {
  width: 32px;
}
.footerContainer__left ul {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  align-items: center;
}

/* ハンバーガー */
.hamburger {
  width: 40px;
  height: 32px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  outline: none;
  caret-color: transparent;
}
@media only screen and (max-width: 430px) {
  .hamburger {
    width: 32px;
    height: 26px;
  }
}
.hamburger span {
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: var(--bg-black);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 430px) {
  .hamburger span {
    height: 2px;
  }
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 14px;
}
@media only screen and (max-width: 430px) {
  .hamburger span:nth-child(2) {
    top: 12px;
  }
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger .hamburger-label {
  position: absolute;
  top: 42px;
  font-size: 12px;
  line-height: 1;
  color: var(--bg-white);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border: none;
  background: none;
}
@media only screen and (max-width: 768px) {
  .hamburger .hamburger-label {
    font-size: 11px;
  }
}
@media only screen and (max-width: 430px) {
  .hamburger .hamburger-label {
    font-size: 10px;
  }
}
.hamburger.active span {
  transform: translateZ(0);
  background-color: var(--bg-white);
  transition: background-color 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}
@media only screen and (max-width: 430px) {
  .hamburger.active span:nth-child(1) {
    top: 14px;
  }
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 14px;
}
@media only screen and (max-width: 430px) {
  .hamburger.active span:nth-child(3) {
    top: 14px;
  }
}
.hamburger.active .hamburger-label {
  opacity: 1;
  background: none;
}

/* メニュー背景とリスト */
.menuWrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  background-color: var(--bg-primary);
  color: white;
  z-index: 1000;
}
.menuWrapper__button {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦方向中央 */
  align-items: center; /* 横方向中央 */
  text-align: center;
  height: 100vh; /* ここを追加 */
}
.menuWrapper__button--block {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 60%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
@media only screen and (max-width: 980px) {
  .menuWrapper__button--block {
    width: 90%;
    gap: 10px;
  }
}
.menuWrapper__button--block li {
  width: 100%;
}
.menuWrapper__button--block li.line {
  width: calc(50% - 7.5px);
}
@media only screen and (max-width: 980px) {
  .menuWrapper__button--block li.line {
    width: calc(50% - 5px);
  }
}
.menuWrapper__button--block li a {
  border: solid 1px rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.8;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .menuWrapper__button--block li a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 430px) {
  .menuWrapper__button--block li a {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 430px) {
  .menuWrapper__button--block li a {
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.7;
    letter-spacing: 0em;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 430px) and (max-width: 768px) {
  .menuWrapper__button--block li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) and (max-width: 430px) {
  .menuWrapper__button--block li a {
    font-size: 14px;
  }
}
.menuWrapper__button--block li dl {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
@media only screen and (max-width: 430px) {
  .menuWrapper__button--block li dl {
    gap: 10px;
  }
}
.menuWrapper__button--block li dl dt {
  width: 100%;
  font-weight: 800;
}
.menuWrapper__button--block li dl dd a {
  display: flex;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.8;
  padding: 10px 0;
  justify-content: center;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .menuWrapper__button--block li dl dd a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 430px) {
  .menuWrapper__button--block li dl dd a {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 430px) {
  .menuWrapper__button--block li dl dd a {
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.7;
    letter-spacing: 0em;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 430px) and (max-width: 768px) {
  .menuWrapper__button--block li dl dd a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) and (max-width: 430px) {
  .menuWrapper__button--block li dl dd a {
    font-size: 14px;
  }
}
.menuWrapper__button--block a {
  display: block;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.1em;
}
.menuWrapper__button--block a:hover {
  color: #000;
}

.scroll {
  position: absolute;
  left: -24px;
  bottom: 90px;
  display: inline-block;
  padding-right: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #000;
  transform: rotate(90deg);
}
@media only screen and (max-width: 768px) {
  .scroll {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .scroll {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .scroll {
    left: -36px;
  }
}
@media only screen and (max-width: 430px) {
  .scroll {
    font-size: 12px;
    line-height: 1.3;
    left: -28px;
    bottom: 54px;
  }
}
@media only screen and (max-width: 430px) and (max-width: 768px) {
  .scroll {
    font-size: 11px;
  }
}
@media only screen and (max-width: 430px) and (max-width: 430px) {
  .scroll {
    font-size: 10px;
  }
}
.scroll::after {
  content: "";
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 64px;
  height: 1px;
  background-color: #000;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center; /* ←左から伸ばす */
  -webkit-animation: lineSweep 1.6s ease-in-out infinite;
          animation: lineSweep 1.6s ease-in-out infinite;
}
@media only screen and (max-width: 430px) {
  .scroll::after {
    width: 30px;
  }
}

@-webkit-keyframes lineSweep {
  0% {
    transform: translateY(-50%) scaleX(0);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
  }
}

@keyframes lineSweep {
  0% {
    transform: translateY(-50%) scaleX(0);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
  }
}
/*-----見出し-----*/
.basictitle {
  font-size: 28px;
  line-height: 1.8;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .basictitle {
    font-size: 24px;
  }
}
@media only screen and (max-width: 430px) {
  .basictitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 430px) {
  .basictitle {
    margin-bottom: 50px;
  }
}
.basictitle span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .basictitle span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .basictitle span {
    font-size: 14px;
  }
}
.basictitle::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}
.basictitle.yellow::after {
  background-color: var(--text-yellow);
}
.basictitle.green::after {
  background-color: var(--text-green);
}
.basictitle.blue::after {
  background-color: var(--text-blue);
}

.basictitleLine {
  padding-top: 40px;
  position: relative;
}
.basictitleLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background-color: var(--bg-black);
}

.intro {
  font-size: 36px;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .intro {
    font-size: 28px;
  }
}
@media only screen and (max-width: 430px) {
  .intro {
    font-size: 22px;
  }
}

.lead {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .lead {
    font-size: 17px;
  }
}
@media only screen and (max-width: 430px) {
  .lead {
    font-size: 16px;
    line-height: 1.8;
  }
}
.lead span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .lead span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .lead span {
    font-size: 14px;
  }
}

.subtitle {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  .subtitle {
    font-size: 17px;
  }
}
@media only screen and (max-width: 430px) {
  .subtitle {
    font-size: 16px;
    line-height: 1.8;
  }
}
.subtitle.orange::first-letter {
  color: var(--primary-color);
}
.subtitle.green::first-letter {
  color: var(--text-green);
}
.subtitle.yellow::first-letter {
  color: var(--text-yellow);
}

/*-----テーブル-----*/
.table-wrap {
  overflow-x: auto; /* 横スクロールを有効に */
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
}

.basic-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background-color: #f9f9fa;
}

.basic-table,
.basic-table th,
.basic-table td {
  padding: 12px;
  text-align: left;
  font-weight: normal;
}
@media only screen and (max-width: 430px) {
  .basic-table,
.basic-table th,
.basic-table td {
    padding: 12px;
  }
}

.basic-table th,
.basic-table td {
  border-bottom: solid 1px #ccc;
}

/*
.basicbtn {
	display: flex;
	justify-content: center;
	a {
		border: solid 1px var(--bg-black);
		@include txt-24;
		color: var(--text-main);
		padding: 20px 60px;
		background-color: var(--bg-gray);
		text-align: center;
		display: inline-block;
		transition: transform 0.3s ease;
		@media only screen and (max-width: 430px) {
			padding: 20px 40px;
		}
		&:hover {
			transform: scale(1.2);
		}
	}
}*/
.basicbtn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 430px) {
  .basicbtn {
    flex-direction: column;
    row-gap: 20px;
  }
}
.basicbtn a {
  display: block;
  padding: 28px 60px;
  text-align: center;
  border: solid 2px var(--black);
  box-shadow: 0px 15px 20px -10px rgba(119, 119, 119, 0.3333333333);
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--text-main);
  background-color: var(--bg-gray);
  text-decoration: none;
  border-radius: 100px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .basicbtn a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 430px) {
  .basicbtn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 430px) {
  .basicbtn a {
    padding: 24px;
  }
}
.basicbtn a:hover {
  color: var(--text-light);
  background-color: var(--bg-black);
  transform: scale(1.05);
}

@-webkit-keyframes bg {
  0%, 100% {
    background-color: #1e90ff;
  }
  25% {
    background-color: #39d24a;
  }
  50% {
    background-color: #ffe244;
  }
  75% {
    background-color: #ff36a3;
  }
}

@keyframes bg {
  0%, 100% {
    background-color: #1e90ff;
  }
  25% {
    background-color: #39d24a;
  }
  50% {
    background-color: #ffe244;
  }
  75% {
    background-color: #ff36a3;
  }
}
.section1 {
  border-radius: 0 0 60px 60px;
  position: relative;
  overflow: hidden;
}

.section1::after {
  content: "";
  background: radial-gradient(circle at bottom, #fff, transparent 80%), linear-gradient(to top, dodgerblue 0%, transparent 70%), linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4) 70%), #1e90ff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  -webkit-animation: bg 5s infinite;
          animation: bg 5s infinite;
  mix-blend-mode: color-burn;
}
/*# sourceMappingURL=main.css.map */