@charset "UTF-8";

:root {
  --color1: #121212;
	--color2: #BA172B;
	--color3: #f5f5f5;
	--color4: #f15a24;
  --color5: #f6e47d;
  --hr-color: #efefef;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  font-family: 'Poppins', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-style: normal;
  color: var(--color1);
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  @media only screen and(-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx) {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: var(--color1);
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: var(--color1);
}
a:link {
  color: var(--color1);
}
a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  transition: all .3s;
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--hr-color);
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
::placeholder {
  color: #aaa;
}
.picthover {
	transform: scale(1, 1);
	transition: all 0.3s 0s ease-Out;
}
a:hover .picthover {
	transform: scale(1.018, 1.018);
	transition: all 0.3s 0s ease-Out;
	opacity: 1;
}

/* 共通
------------------------------*/
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
}
.flex_reverse {
	flex-direction: row-reverse;
}
.font_bold {
	font-weight: bold;
}
.font_en {
	font-family: 'Poppins', sans-serif;
}
.section {
	padding: 150px 0;
}
.wrap {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}
.cms_txt {
	font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	line-height: 1.75;
	text-align: justify;
}
@media screen and (max-width:768px) {
	.pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
	.cms_txt {
		font-size: 13px;
	}
	.section {
		padding: 80px 0;
	}
}

/*　もっと見るボタン　*/
.more_btn {
	width: 80%;
	max-width: 400px;
	border: solid 2px var(--color2);
  border-radius: 50vh;
  overflow: hidden;
	margin: 80px auto 0;
}
.more_btn a {
	text-align: center;
  color:  #fff;
	padding: 18px 0;
	display: block;
	background-color: var(--color2);
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.4s cubic-bezier(0.49, 0.1, 0.49, 0.8);
	transition: all 0.4s cubic-bezier(0.49, 0.1, 0.49, 0.8);
}
.more_btn a:hover {
	color: var(--color2);
	background-color: #fff;
}
.more_btn a:before {
	content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  -webkit-animation: bo002 0.3s cubic-bezier(0.49, 0.1, 0.49, 0.8) forwards;
  animation: bo002 0.3s cubic-bezier(0.49, 0.1, 0.49, 0.8) forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
}
.more_btn a:after {
	content: "";
  width: 0;
  height: 1px;
  background: var(--color2);
  -webkit-animation: bo001 0.3s cubic-bezier(0.49, 0.1, 0.49, 0.8) forwards;
  animation: bo001 0.3s cubic-bezier(0.49, 0.1, 0.49, 0.8) forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
}
.more_btn a:hover:after {
	-webkit-animation: bo002 0.3s forwards;
  animation: bo002 0.3s forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media screen and (max-width:768px) {
  .more_btn {
    margin-top: 60px;
  }
	.more_btn a {
		font-size: 13px;
		padding: 15px 0;
	}
}
@-webkit-keyframes bo001 {
  0% {
    width: 15px; }
  100% {
    width: 0; } 
}
@keyframes bo001 {
  0% {
    width: 15px; }
  100% {
    width: 0; } 
}
@-webkit-keyframes bo002 {
  0% {
    width: 0;
    right: calc(15px + 5%); }
  100% {
    width: 15px;
    right: 5%; } 
}
@keyframes bo002 {
  0% {
    width: 0;
    right: calc(15px + 5%); }
  100% {
    width: 15px;
    right: 5%; } 
}

/*　もっと見る2　*/
.link_btn {
	margin-top: 30px;
}
.link_btn a {
	position: relative;
	display: inline-block;
  padding-right: 0;
  color: var(--color1);
  text-decoration: none;
  outline: none;
}
.link_btn a::before {
	content: "";
	position: absolute;
  bottom:-8px;
  left: 20%;  
  width: 100%;
  height: 1px;
  background-color: var(--color1);
	transition: all .3s;
}
.link_btn a:hover::before {
	left: 30%;
}
.link_btn a::after {
	content: "";
	width: 15px;
	height:1px;
	position: absolute;
  bottom:-3px;
  right: -20%;
  background-color: var(--color1);
	transform: rotate(35deg);
	transition: all .3s;
}
.link_btn a:hover::after {
	right: -30%;
}

/*　ウェーブ　*/
.wave {
	width: 100%;
	color: #fff;
	background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
	padding-top: 150px;
}
.waves {
  position:relative;
  width: 100%;
  height: 15vh;
	min-height: 100px;
	max-height: 150px;
  margin-bottom:-7px; /*Fix for safari gap*/
}
.wave_parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.wave_parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.wave_parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.wave_parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.wave_parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
@media (max-width: 768px) {
	.wave {
		padding-top: 80px;
	}
  .waves {
    height:40px;
		min-height:40px;
  }
}

/*　フェードイン　*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
    opacity: 0;
		transform: translateY(30px);
  }
	to {
    opacity: 1;
		transform: translateY(0);
	}
}