﻿/*html, body{overflow: auto}
.pp-section{position: static}*/


h2, h3, h4 {
font-family: 'Kiwi Maru', serif !important;
}
h2, h3 {
font-weight: bold;
}
@charset "utf-8";
/* CSS Document */
/* color */
body,.txt_color_nomal{color: #1a1a1a;}
.txt_white{color: white;}
.txt_red{color: red;}
.txt_color1{color: #66ccff} /* メインカラー */
.txt_color2{color: #d8f2ff} /* サブカラー */
.txt_color3{color: #fff136} /* アクセントカラー1 */
.txt_color4{color: #cccccc} /* アクセントカラー2 */

/* background-color */
.bg_white{background-color: white} /* 白背景 */
.bg_black{background-color: black} /* 黒背景 */
.bg_color1{background-color: #66ccff} /* メインカラー */
.bg_color2{background-color: #d8f2ff} /* サブカラー */
.bg_color3{background-color: #fff136} /* アクセントカラー1 */
.bg_color4{background-color: #cccccc} /* アクセントカラー2 */
.bg_color_clear{background-color: transparent!important}


/* border-color ※!important */
.border_color1{border-color: #66ccff}
.border_color2{border-color: #d8f2ff}
.border_color3{border-color: #fff136}
.border_color4{border-color: #cccccc}


/* hover ---------------------------------------------------------------------------------------------*/
/* color */
.hvr_txt_color_nomal:hover{color: #1a1a1a;}
.hvr_txt_white:hover{color: white;}
.hvr_txt_red:hover{color: red;}
.hvr_txt_color1:hover{color: #66ccff} /* メインカラー */
.hvr_txt_color2:hover{color: #d8f2ff} /* サブカラー */
.hvr_txt_color3:hover{color: #fff136} /* アクセントカラー1 */
.hvr_txt_color4:hover{color: #cccccc} /* アクセントカラー2 */

/* background-color */
.hvr_bg_white:hover{background-color: white} /* 白背景 */
.hvr_bg_black:hover{background-color: black} /* 黒背景 */
.hvr_bg_color1:hover{background-color: #66ccff} /* メインカラー */
.hvr_bg_color2:hover{background-color: #d8f2ff} /* サブカラー */
.hvr_bg_color3:hover{background-color: #fff136} /* アクセントカラー1 */
.hvr_bg_color4:hover{background-color: #cccccc} /* アクセントカラー2 */
.hvr_bg_color_clear:hover{background-color: transparent!important}


/* border-color ※!important */
.hvr_border_color1:hover{border-color: #66ccff}
.hvr_border_color2:hover{border-color: #d8f2ff}
.hvr_border_color3:hover{border-color: #fff136}
.hvr_border_color4:hover{border-color: #cccccc}

#video{overflow: hidden;}
.con_no, .cms_title .font_14up {
    color: #fff136;
    font-family: 'Train One', cursive !important;
    font-size: 3rem;
}
.custom_box {
    background-color: #d8f2ff;
}
#page08 .txt_color2 {
    color: #66ccff;
}
.page5_tel, .linkStyle {
  color: #66ccff;
}
.cms_title .font_14up {
    position: relative;
    top: -100px;
    z-index: -1;
    font-size: 6rem;
}
.cms_title {
z-index: 1;
    margin-bottom: -50px;
}
#intro .intro_left {
    background-color: #d8f2ff;
}
.custom_title {
    top: 0%;
    right: 0;
}
.custom_img {
    position: absolute;
    bottom: 0%;
    width: 40%;
    z-index: 1;
}

.custom_txt {
    bottom: 10%;
    /* right: 4%; */
    left: 16%;
    color: #66ccff;
}
.intro_wrap .font_bar {
    position: relative;
    font-size: calc(1.5rem + 2px);
    font-weight: bold;
}
/*.intro_wrap .font_bar:before {
    position: absolute;
    content: "";
    background-image: url(./Dup/img/nizi.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: -80px;
    width: 166px;
    height: 75px;
}*/
.intro_wrap {
    color: #4ae;
}
/*.con_box3 {
    padding: 0 120px;
    width: 54%;
    margin-top: -110px;
    margin-bottom: 100px;
}*/
.con_box3 .con_title, .con_box3 .con_txt {
  color: #ffffff;
}
#contents .con_bg {
	background-image: url("./Dup/img/contents_back.jpg");
  background-size: cover;
}

#contents2 .con_bg {
	background-image: url("./Dup/img/con2.jpg");
  background-size: cover;
}
.txt_move {
    top: 0;
    left: 14px;
    opacity: 0.4;
    z-index: 1;
    width: 150px;
}
#page09 .bg_color3 {
    background-color: #6cf;
}
#page09 .bg_color3:hover {
    background-color: #fff136;
}
#cms_6-a .cate_list li {
    text-align: left;
}
#contents2 .con_wrap {
transform: translateX(20px)
}
#contents2.trans .con_wrap {
 opacity: 1;
transform: translateX(0px)
}
#contents2 .con_img {
    top: 100px;
    bottom: 100px;
    left: 0;
}

/***********************バブル***************************************************/
.bubble-background {
  overflow: hidden;
}
/* 泡の見た目 */
.bubble {
  position: absolute;
  bottom: -50px;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.7);
  animation: bubble 8s linear infinite;
}

/* 泡の一番明るい部分を疑似要素で表現 */
.bubble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0.25) translate(-70%, -70%);
  background: radial-gradient(rgba(255,255,255, 0.9), transparent);
  border-radius: 50%;
}

/* 泡が上に浮かび上がっていくアニメーション */
@keyframes bubble {
  0% {
    transform: translatY(0);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
/**********************************************************************/
.bottom2 {
    background: #66ccff;
    color: #fff;
    border: none;
    position: relative;
    height: 60px;
    font-size: 1.6em;
    padding: 1em 2em 0;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
}
.bottom2:hover{
  background:#fff;
  color:#66ccff;
}
.bottom2:before,.bottom2:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #66ccff;
  transition:400ms ease all;
}
.bottom2:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.bottom2:hover:before,.bottom2:hover:after{
  width:100%;
  transition:800ms ease all;
}
.buttom {
    text-align: center;
    margin: 50px auto;
    width: 25%!important;
}
@media screen and (max-width: 1281px){
.custom_img {
    position: absolute;
    bottom: 0%;
    width: 65%;
}
}
/************タブレット***********************/
@media screen and (max-width: 768px){
#video{height: 65vw!important;}
.custom_img {
    position: absolute;
    bottom: 46%;
    width: 55%;
    right: 43%;
}
.custom_txt {
    bottom: 52%;
    right: 2%;
    left: 4%;
    text-align: left;
}
.custom_title {
    top: -3%;
    right: 31%;
    width: 70%;
}
#intro .intro_left {
margin-top: -426px;
    padding-top: 0px;
}
.con_box3 {
    padding: 0 50px;
    width: 100%;
    margin-top: -110px;
    margin-bottom: 100px;
}
.bottom2 {
    background: #66ccff;
    color: #fff;
    border: none;
    position: relative;
    height: 47px;
    font-size: 1.2em;
    padding: 1em 2em 0;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
}
.buttom {
    text-align: center;
    margin: 50px auto;
    width: 35%!important;
}
.txt_move {
    display: none;
}
#logo {
  margin-bottom: 50px;
}
#contents2 .con_wrap {
transform: translateX(0px)
}
#contents2 .con_img {
    top: 0px;
    bottom: 100px;
    left: 0;
}
#custom .custom_wrap {
    transform: scale(1.05,1.05) rotate(
0.1deg
);
    transition: 1s;
}
}
@media screen and (max-width: 667px) {
.con_box3 {
    padding: 0px 20px;
    width: 100%;
    margin-top: -110px;
    margin-bottom: 100px;
}
.buttom {
    text-align: center;
    margin: 50px auto;
    width: 60%!important;
}
#intro .intro_left {
    margin-top: -250px;
}
.custom_txt {
    bottom: 50%;
    right: 2%;
    left: 4%;
    text-align: left;
    font-size: calc(1rem + 0px);
}
.custom_title {
    top: -6%;
    right: 16%;
    width: 86%;
}
.custom_img {
    position: absolute;
    bottom: 39%;
    width: 64%;
    right: 23%;
}
.intro_title .txt_left {
    font-size: -webkit-calc(1rem + 4px);
    font-size: calc(1rem + 4px);
    line-height: 1.8;
}
#cms_6-a .cate_list li {
    text-align: center;
}
.cms_title .font_14up {
    position: relative;
    top: -72px;
    z-index: -1;
    font-size: 4rem;
}
#logo {
  margin-top: 0px;
}
#logo .width_200_sp {
    width: 300px;
}
#cms_6-a .d_block {
    text-align: left;
}
}

@media all and (-ms-high-contrast:none) {
#cms_2-b .cate .cate_title {
    padding-top: 7px !important;
}
#cms_6-a .cate .cate_title {
    padding-top: 7px !important;
}
#contents2 .con_bg {
top: 0px !important;
right: 0px !important;
}
}