@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;600;900&family=Patua+One&display=swap");

/*========================================
Reset
========================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, mark, hr {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  font-size: 100%;
  font-style: normal;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  line-height: 1;
}

code {
  line-height: 1.2;
}

ol, ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

picture {
  line-height: 1;
}

img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, div {
  word-wrap: break-word;
}

button, input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0;
  margin: 0;
  border: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-color: transparent;
  display: block;
  outline: none;
  border-radius: 0px;
  font-weight: normal;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

::-moz-focus-inner {
  border: 0px;
}

select::-ms-expand {
  display: none;
}

*:focus {
  outline: none;
}

/*========================================
Base
========================================*/
html {
  width: 100%;
  height: 100%;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #fff;
	background: #000;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
	letter-spacing: 0.08em;
  -webkit-txt-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer {
  margin-top: auto;
}

input, button, txtarea, select {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  color: inherit;
  font-size: 15px;
}

@media screen and (min-width: 769px) {
  html, body,
  input, button, txtarea, select {
    font-size: 17px;
  }
}
img {
  vertical-align: top;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  -ms-user-select: none;
      user-select: none;
}

video {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
input[type=button],
input[type=submit],
button {
  cursor: pointer;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  a:hover,
  input[type=button]:hover,
  input[type=submit]:hover,
  button {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  a:hover:hover,
  input[type=button]:hover:hover,
  input[type=submit]:hover:hover,
  button:hover {
    opacity: 0.8;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}
h1, h2, h3 {
  line-height: 1.4;
}

small {
  font-size: 0.8rem;
}

sup,
sub {
  font-size: 0.6em;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

b {
  font-weight: bold;
}

body {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
          animation: fadeIn 1s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
Layout
====================================================*/
/* -------------------- header -------------------- */
.header:has(+ .fv) {
	position: absolute;
	z-index: 10;
	width: 100%;
}
.header-logo img {
	width: 28%;
	margin: 0 2%;
}
.header-free {
	position: absolute;
	top: 0;
	right: 1em;
	color: #fff;
	background: #d63b25;
	font-size: clamp(20px, 3vw, 40px);
	font-weight: 900;
	width: 3em;
	line-height: 1.1;
	padding: 0.8em 0.3em 0.3em 0.3em;
}
@media screen and (max-width: 768px) {
	.header-logo {
		margin: 8vh auto 5%;
		width: 61.8%;
		max-width: 320px;
	}
}

@media screen and (min-width: 769px) {
	.header-logo {
		width: 35%;
		max-width: 400px;
		margin: 2% auto 0 2%;
	}
}
/* -------------------- main -------------------- */
.main {
	text-align: center;
  min-height: 50vh;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 0;
}
/* -------------------- footer -------------------- */
.footer {
  text-align: center;
	font-size: 80%;
	padding: 3em 20px;
}

.footer-contact {
	margin-bottom: 2em;
}

/*==================================================
component 
====================================================*/
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  br.sp {
    display: none;
  }
}

/* -------------------- signup -------------------- */
.signup {
	margin-top: 80px !important;
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	position: relative;
}
.signup-ttl {
	position: absolute;
	top: -0.8em;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 600;
	color: #FFFD00;
	background: #000;
	padding: 0 0.5em;
}
.signup-wrap {
	padding: 2em 10px;
	max-width: 560px;
	margin: 0 auto;
}
a[class^="signup-btn"] {
	display: block;
	color: #fff;
	font-weight: 600;
	box-shadow: inset 0 -3px 1px rgba(0,0,0,.3);
	background-image: linear-gradient(0deg, #b71a03, #d63b25);
	border-radius: 6px;
	padding: 0.5em;
}
.signup-btn {
	font-size: 140%;
}
.signup-btn2 {
	font-size: 120%;
}
.signup-box + .signup-box {
	margin-top: 1em !important;
}
.signup-box p {
	font-size: 110%;
	margin-bottom: 0.3em;
}
.signup-box p:before {
	content: "▼";
	font-size: 80%;
}
.signup-box p:before {
	margin-right: 0.5em;
}
@media screen and (min-width: 769px) {
.signup-box p:after {
	content: "▼";
	font-size: 80%;
}
.signup-box p:after {
	margin-left: 0.5em;
}
}
.pageback a {
	color: #aaa;
	font-size: 70%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pageback a:before {
  content: '';
	display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-top: solid 1px;
  border-right: solid 1px;
	transform: rotate(-135deg);
	margin-top: 0.15em;
	margin-right: 0.5em;
}

/*==================================================
top 
====================================================*/

/* -------------------- common -------------------- */
section:not(.fv) {
	margin: 0 auto;
	padding: 4vh 20px;
}
section:not(.fv) > div + div {
	margin-top: 40px;
}

.sec-ttl {
	color: #d63b25;
	text-align: center;
	font-size: 230%;
	font-size: clamp(27px, 3vw, 40px);
	font-weight: 900;
	margin-bottom: 1.5em;
}
.txt-col1 {
	color: #d63b25;
}
.txt-lg {
	font-size: clamp(20px, 2.2vw, 35px);
	font-weight: 900 !important;
	text-align: center;
}
.txt-md {
	font-size: clamp(18px, 1.6vw, 25px);
	font-weight: 600;
	text-align: center;
}
.txt-bg {
	padding: 0.2em 0.5em;
	color: #fff;
	background: #d63b25;
	margin-bottom: 0.5em;
}
.txt-line {
	text-decoration: underline;
	text-decoration-color: #d63b25;
	text-underline-offset: 0.4em;
	line-height: 2;
	width: fit-content;
	margin: 0 auto 0.5em;
}
@media screen and (min-width: 769px) {
	.txt-bg {
	padding: 0.2em 1em;
	width: fit-content;
	margin: 0 auto 0.5em;
	}
}

/* -------------------- fv -------------------- */
.fv {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100svh;
	background: url("images/mainimg.jpg") no-repeat bottom center;
	background-color: rgba(0,0,0,0.4);
	background-blend-mode: multiply;
	position: relative;
	margin-bottom: 5vh;
}
.fv > div {
	z-index: 10;
}
.fv-box {
	text-align: center;
}
.fv-subttl {
	display: inline-block;
	background: #d63b25;
	padding: 0.2em 1.5em;
	line-height: 1;
	color: #fff;
	font-size: 200%;
	font-weight: 900;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
}
.fv-ttl {
	font-weight: 900;
	line-height: 1;
}
.fv-ttl span {
	color: #d63b25;
	font-family: "Patua One", serif;
}
.fv-point {
	margin: auto 0 2%;
}
.fv-point {
	display: flex;
	justify-content: center;
	width: 90%;
	max-width: 560px;
	margin: auto;
	text-align: center;
	font-weight: 600;
}
.fv-point p {
	font-size: clamp(15px, 4vw, 26px);
	font-weight: 900;
	line-height: 1.4;
	font-style: italic;
	width: 30vw;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.5);
	position: relative;
}
.fv-point p:before {
	content: '';
	display: block;
	padding-top: 100%;
} 

.fv-point p:after {
	content: "";
	position: absolute;
	width: 93%;
	height: 93%;
	border-radius: 100%;
	border: 1px solid rgba(256,256,256,0.7);
}

@media screen and (max-width: 768px) {
	.fv {
		background-size: 200%;
	}
	.fv-box {
		margin: 25vh 0 auto;
	}
	.fv-ttl {
		margin-top: -2%;
		font-size: 17vw;
	}
	.fv-ttl span {
		font-size: 14vw;
	}
}

@media screen and (min-width: 769px) {
	.fv {
		background-size: contain;
	}
	.fv-box {
		margin: 25vh auto 0;
	}
	.fv-ttl {
		font-size: clamp(100px, 10vw, 120px);
	}
}

/* -------------------- about -------------------- */
.about-point {

}
.about-point ul {
	margin-top: 1em;
	border: 1px solid #aaa;
	padding: 1em;
	text-align: left;
}
.about-point li {
	margin: 0.3em 0;
}
.about-point li:before {
	content: "";
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	border-radius: 100%;
	background: #fff;
	margin-right: 0.5em;
}
.about-target ol {
	counter-reset: about 0;
	text-align: left;
	display: inline-block;
	margin-top: 1em;
}
.about-target li {
  padding-left: 2em;
	position: relative;
	margin-bottom: 0.5em;
}
.about-target li:before {
	counter-increment: about 1;
	content: counter(about) ""; 
	position: absolute;
	top: 0.2em;
	left: 0;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	font-weight: 600;
	text-align: center;
	line-height: 1.3em;
	background: #d63b25;
	border-radius: 100%;
}
.about-target ol:after {
	content: "";
	display: inline-block;
	margin-left: 50%;
	transform: translateX(-50%);
	width: 2em;
	height: calc(2em / 3 * tan(60deg));
	background: #d63b25;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 769px) {
	.about-point ul {
  display: inline-grid;
  width: fit-content;
  column-gap: 2em;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
	}
}

/* -------------------- point -------------------- */
.point-list {
	margin: 0 auto;
	counter-reset: point 0;
	text-align: left;
}
.point-list li {
	padding: 2.5em 1em 1em 1em;
	border: 1px solid #aaa;
	position: relative;
}
.point-list li:before {
	counter-increment: point 1;
	content: counter(point) "";
	position: absolute;
	top: -1em;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 2em;
	height: 2em;
	color: #fff;
	background: #d63b25;
	border-radius: 100%;
	font-size: 150%;
	font-weight: 900;
	text-align: center;
}
.point-ttl {
	line-height: 1.2;
	margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
	.point-list li+li {
	margin-top: 2.5em;
	}
}
@media screen and (min-width: 769px) {
	.point-list {
		display: flex;
		justify-content: center;
	}
	.point-list li {
		margin: 0 10px;
		width: calc(33% - 20px);
		max-width: 360px;
	}
}

/* -------------------- message -------------------- */
.message {
	margin-top: 2em;
}
.message p {
	font-weight: 600;
}
.message p+p {
	margin-top: 0.3em;
}


/* -------------------- group -------------------- */
.group-txt {
	margin-bottom: 3em;
}


