@charset "utf-8";

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

@keyframes fadeA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@keyframes lightA {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(1.4);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-15px) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeAndTranslate_scale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeAndTranslate_right {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーションを適用するクラス */
.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}

.animate-on-appear02 {
  animation: fadeA 1s ease forwards;
}

.animate-on-appear_light {
  animation: lightA 0.5s linear forwards;
}

.animate-on-appear_scale {
  animation: fadeAndTranslate_scale 1s ease-in-out forwards;
}

.animate-on-appear_soon {
  animation: fadeA 0.3s ease forwards;
}

.animate-on-appear_right {
  animation: fadeAndTranslate_right 1s ease forwards;
}







/*mv*/
#main {
  position: relative;
  width: 100%;
}

.logo_header {
  background-color: #000;
  padding: 10px;
  padding-left: 30px;
}
.logo_header a {
  width: 230px;
  display: block;
}

/* フッター */
.box-footer {
  background: #3c3c3c;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .box-footer {
    padding: 4vw 0 10vw;
  }
}

.box-footer nav {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0;
}

.box-footer .lnk-line {
  padding: 3vw 0 0;
  margin: 0 0 0 10vw;
  width: 3vw;
  height: 3vw;
}

@media screen and (max-width: 900px) {
  .box-footer .lnk-line {
    padding: 0;
    margin: 0 auto;
    width: 6vw;
    height: 6vw;
  }
}

.box-footer .nav_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2vw 0 0;
  padding: 2vw 10vw 3vw;
  width: 80%;
}

@media screen and (max-width: 900px) {
  .box-footer .nav_foot {
    display: block;
    margin: 0 auto;
  }

  .box-footer .nav_foot li {
    margin: 2vw auto 0;
    text-align: center;
  }
}

.box-footer .nav_foot a {
  color: #fff;
}

.box-footer .company {
  margin: 0 0 1vw;
  text-align: center;
  background: #fff;
  font-size: 1.4rem;
}

.box-footer .company img {
  margin: 0 auto;
}

.box-footer .copy {
  margin: 0 auto;
  padding: 0 2vw;
  color: #818181;
  text-align: right;
  font-size: 12px;
}

.box-footer .copy:last-child {
  padding-bottom: 5vw;
}

@media (max-width: 670px) {
  .logo_header {
    /* width: 40%; */
  }
  .logo_header a {
    width: 35vw;
  }
}

/* LINE友だち登録 */
#line {
  margin: 0 auto;
  padding: 40px 0;
  background: url("../img/common/bg_line_pc.svg") #85da7a;
  color: #000;
}

@media screen and (max-width: 900px) {
  #line {
    padding: 15vw 0 10vw;
    background: url("../img/common/bg_line_sp.svg") #85da7a;
    margin-top: -5vw;
  }
}
@media screen and (max-width: 900px) and (max-width: 768px) {
  #line {
    margin-top: -5vw;
  }
}
@media screen and (max-width: 900px) {
  #line .inner {
    display: block;
  }
}
#line .left {
  width: 55%;
}

@media screen and (max-width: 900px) {
  #line .left {
    width: 100%;
  }
}
#line .left .txt {
  text-align: center;
  line-height: 2;
}

#line .left .txt .line {
  padding: 0 20px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 70%,
    #ffe33a 70%,
    #ffe33a 100%
  );
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

#line .left .txt .line.sp {
  display: none;
}

#line .left .txt .line.pc {
  display: inline-block;
}

@media screen and (max-width: 900px) {
  #line .left .txt .line.sp {
    display: inline-block;
  }
  #line .left .txt .line.pc {
    display: none;
  }
}
#line .left .lnk {
  align-items: center;
  margin: 10px auto 0;
  width: 90%;
}

#line .left .lnk .btn {
  position: relative;
  top: -15px;
  display: block;
  width: 60%;
  padding: 28px 40px 28px 25px;
  background: #e57a00;
  border-radius: 40px;
  border: 5px solid #fff;
  font-family: "Noto Sans JP";
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: left;
  color: #fff;
  transition: 0.25s ease all;
}

#line .left .lnk .btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 6%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

#line .left .lnk .btn:hover {
  background: #ffa53e;
}

#line .left .lnk .qr {
  display: block;
  width: 35%;
}

#line .left .lnk .qr figcaption {
  text-align: center;
  font-size: 1.5rem;
}

@media screen and (max-width: 900px) {
  #line .left .lnk {
    margin: 5vw auto 0;
    display: block;
  }
  #line .left .lnk .btn {
    top: 0;
    padding: 5vw 15vw 5vw 5vw;
    width: 100%;
    border: 5px solid #fff;
  }
  #line .left .lnk .qr {
    margin: 5vw auto 0;
    width: 100%;
    text-align: center;
  }
  #line .left .lnk .qr img {
    margin: auto;
    width: 50%;
  }
  #line .left .lnk .qr figcaption {
    margin: 2vw auto 0;
  }
}
#line .right {
  display: flex;
  align-items: center;
  width: 45%;
}

@media screen and (max-width: 900px) {
  #line .right {
    margin: 5vw auto 0;
    width: 100%;
  }
}

/* SNSエリア */
.snsArea {
  padding: 85px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .snsArea {
    padding: 12vw 0;
  }
}
.snsArea h3 {
  max-width: 590px;
  width: 90%;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 20px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  line-height: 1;
  color:#000;
}
@media screen and (max-width: 768px) {
  .snsArea h3 {
    width: 80%;
    font-size: 6vw;
    padding: 4vw 0;
  }
}
.snsArea_fb {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .snsArea_fb {
    margin-top: 8vw;
  }
}
.snsArea_fb a {
  width: 80px;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .snsArea_fb a {
    width: 15vw;
    margin-right: 6vw;
  }
}
.snsArea_fb a:last-child {
  margin-right: 0;
}
.snsArea .txt {
  margin-top: 25px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .snsArea .txt {
    font-size: 4.5vw;
    margin-top: 6vw;
  }
}



.floating {
  position: fixed;
  top:2vw;
  right: 0%;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
  z-index: 3;
  margin:0;
}
.floating.is-active {
  opacity: 1;
  visibility: visible;
}
.floating li {
  width: 3vw;
  transition-duration: 0.3s;
  list-style: none;
}
@media screen and (max-width: 1367px) {
	.floating li {
	  width: 3.5vw;
	}
}
@media screen and (max-width: 1100px) {
	.floating li {
	  width:4.5vw;
	}
}
@media screen and (max-width: 768px) {
	.floating {
		top: auto;
		bottom: -1px;
		transform: none;
		display: flex;
		width: 100%;
	}
	.floating li {
		width:calc(100% / 3);
	}
  
}



.floating li:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .floating li:nth-of-type(n + 2) {
    margin-top: 0vw;
  }
}
.floating li a {
  display: block;
}
.floating li:hover a {
  opacity: 0.6;
}







/* LINE友だち登録 */
.line_cam {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color:#41cc33;
}
@media screen and (max-width: 768px) {
  .line_cam {
    flex-direction: column-reverse;
  }
}
.line_cam .left {
  width: 65.3472222vw;
  background-color: #41cc33;
  height: 38.56vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .line_cam .left {
    height: 38.9vw;
  }
}
@media screen and (max-width: 768px) {
  .line_cam .left {
    width: 100%;
    height: auto;
    padding-top: 7.19999vw;
    padding-bottom: 11.466666vw;
    text-align: center;
  }
}
.line_cam .left .line_cam_catch {
  width: 42.375em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .line_cam .left .line_cam_catch {
    width: 68.667vw;
  }
}
.line_cam .left .line_cam_title {
  font-size: 2.5em;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.9em;
  margin-bottom: 0.6em;
  font-weight: 700;
  color: #fff;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .line_cam .left .line_cam_title {
    font-size: 5.3333334vw;
    margin-top: 5.3333333vw;
    margin-bottom: 3.06666vw;
  }
}
.line_cam .left .line_cam_text {
  display: flex;
  align-items: flex-end;
  column-gap: 1.5em;
  margin-inline: auto;
  width: fit-content;
}
.line_cam .left .line_cam_text .line_cam_text_left {
  width: 9.6875em;
}
@media screen and (max-width: 768px) {
  .line_cam .left .line_cam_text .line_cam_text_left {
    display: none;
  }
}
.line_cam .left .line_cam_text .txt {
  font-size: 0.9375em;
  letter-spacing: -0.07em;
  line-height: 1.6;
  color: #fff;
}
.line_cam .left .line_cam_text .line_btn {
  width: 23.875em;
  margin-top: 1.0625em;
}
@media screen and (max-width: 768px) {
  .line_cam .left .line_cam_text .line_btn {
    width: 77.6vw;
    margin-top: 5.3334vw;
  }
}
.line_cam .right {
  width: 36.5277vw;
}
@media screen and (max-width: 768px) {
  .line_cam .right {
    width: 100%;
    height: 40.8vw;
  }
}



/* +++++++++++++++++++++++++　page top */

#page-top {
	position: fixed;
	z-index:10;
	right: 1vw;
	bottom:1vw;
	opacity: 0;
	transition-duration: 0.3s;
}
#page-top.is-active {
	opacity: 1;
}

#page-top a{
	position: relative;
	width:3vw;
	height:3vw;
	border-radius:50%;
	background-color:#000;
	text-decoration:none;
	color:#fff;
	font-size:0;
	line-height:0;
	text-indent:-20000px;
	text-align:center;
	-js-display: flex; display: -webkit-box; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex;
	-webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-justify-content: center; justify-content: center;
	-webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center;
	-ms-flex-wrap:wrap; -webkit-flex-wrap:wrap; flex-wrap:wrap;
}
#page-top a:before{
	position:absolute;
	left:50%;
	top:50%;
	content:"";
	width: 0.8vw;
	height: 0.8vw;
	margin-left:-0.4vw;
	margin-top:-0.2vw;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {

	#page-top {
		right: 3vw;
		bottom:13vw;
	}
	#page-top a{
		width:10vw;
		height:10vw;
	}
	#page-top a:before{
		width: 3vw;
		height: 3vw;
		margin-left:-1.3vw;
		margin-top:-0.8vw;
	}
	

}
