body,ul,li,h1,p {margin: 0;padding: 0;}
a {text-decoration: none; color: #000;}
li {list-style-type: none;}
/*------------------------------------
汎用 ↓
------------------------------------*/
.flex {display: flex;}
.aic {align-items: center;}
.jcb {justify-content: space-between;}
/*------------------------------------
ヘッダー a hover:下線アンダーライン ↓
------------------------------------*/
header ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #3b5d82;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
header ul li a:hover {
  color: #3b5d82;
}
header ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.logo{
  width: auto;
  height: 50px;
}
/*------------------------------------
ヘッダー pcハンバーガーメニュー ↓
------------------------------------*/
header {
  font-weight: 700;
}
header .pc_nav {
  margin: auto;
  width: 80%;
  height: 90px;
}
header .pc_nav div .crumbs ul li {
  margin-right: 40px;
}
header .pc_nav div .crumbs ul li:last-of-type {
  margin-right: 0;
}
/*------------------------------------
ヘッダー spハンバーガーメニュー ↓
------------------------------------*/
header .sp_nav {
  text-align: center;
}
.sidemenu {
  height: 100vh;
  padding-top: 100px;
  position: fixed;
  right: -40%; /*メニュー幅*/
  transition: all 0.6s;
  top: 0;
  width: 40%; /*メニュー幅*/
  z-index: 2;
  background-color: #fff;
}
.sidemenu nav ul li {
  padding: 20px;
}
.hamburger {
  cursor: pointer;
  height: 60px;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 60px;
  z-index: 1000;
}
.hamburger span {
  background-color: #000;
  height: 4px;
  left: 15px;
  position: absolute;
  transition: all 0.6s;
  width: 30px;
}
.hamburger_linetop {
  top: 20px;
}
.hamburger_linecenter {
  top: 29px;
}
.hamburger_linebottom {
  top: 38px;
}
/*------------------------------------
メニュークリックした後 ↓
------------------------------------*/
.nav_open .sidemenu {
  right: 0;
}
.nav_open .hamburger_linetop {
  top: 26px;
  transform: rotate(45deg);
}
.nav_open .hamburger_linecenter {
  left: 50%;
  width: 0;
}
.nav_open .hamburger_linebottom {
  top: 26px;
  transform: rotate(-45deg);
}
.nav_open .overlay {
  opacity: 0.8;
  visibility: visible;
}
/*------------------------------------
メニュークリック後メニュー外の背景 ↓
------------------------------------*/
.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 1;
}
/*------------------------------------
@media screen 1000px~999px ↓
------------------------------------*/
@media screen and (max-width: 1000px) {
  .sp_no {
    display: none;
  }
  .sidemenu {
    right: -50%; /*メニュー幅*/
    width: 50%; /*メニュー幅*/
  }
}
@media screen and (min-width: 999px) {
  .pc_no {
    display: none;
  }
}
@media (max-width: 768px) {
  .image-container img {
    flex: 1 1 100%;
  }
}
/*------------------------------------
自分で入力 ↓
------------------------------------*/
.heading-large{
  margin-bottom: 1rem;
}

body{
  background-color: #f5eb68;
}
header{
  background-color: #4995dd;
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
}
.character_img{
  width: 150px;
}
.character_img img{
  width: 100%;
  height: auto;
}
h2{
  font-family: "ヒラギノ丸ゴ Pro W4","Hragino Maru Gothic Pro",sans-serif;
  font-size: 3rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #61cbf4;
}
h2 img{
  width: 100%;
  height: auto;
}
section{
  padding: 0 0 0 3rem;
  margin: 1rem auto;
}

p{
  font-size: 1rem;
  font-family:serif;
  max-width: 736px;
  margin: 1rem auto;
} 

#vegas{
  width: 100%;
  height: 200px;
  /* margin: 90px auto 0; */
  z-index: -1;
  }

  .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #61cbf4; /* 通常時の背景色 */
    color: #060606;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.2s;
    margin: 0 auto; /* センター表示のため */
  }
.email{
  max-width: 200px;
  /* background-color: #61cbf4; */
  border-radius: 48px;
  padding: 1rem;
  margin: 0 auto 0;
  text-align: center;
 }
.btn:active {
  background-color: #4995dd; /* 押したときの色に変更 */
  color: white;
}

/***** footer *****/
.page-footer {
  width: 100%;
  background-color: #4995dd;
  padding: 2rem 0;
}
.email{
  padding: 3rem 0;
}

.copyright{
  text-align: center;
  padding-bottom: 3rem;
  color: #fff;
}
.sns-youtube{
  display: block;
  width: 50%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
/* .sns-youtube iframe{
  height: 50%;
} */

/* 訓練校制作 */
.grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
}
.item p {
  font-size: .875rem;
}

/*****/
.works{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.works_title_side{
  width: 50%;
  margin: 0 auto;
}
/* .works_title_side img{
  width: 100%;
  height: auto;
} */
.works_caption_side p{
  font-size: 1.4rem;
  line-height: 1.2;
}

/*****/
.works_editing_side{
  width: 84%;
  margin: 0 auto;
}
.works_editing_side h2{
  text-align: center;
  font-size: 1.6rem;
  border-bottom: 1px solid #61cbf4;
  padding-bottom: 0.5rem;
}

.works_editing_inner{
  display: flex;
  justify-content: center;
}
.works_editing_img{
  display: block;
  width: 100%;
  margin: 3rem 0;
}
.works_editing_img img{
  width: 100%;
  height: auto;
}
.works_editing_caption{
  width: 50%;
  margin: 3rem 0;
}
.works_editing_caption p{
  font-size: 1.2rem;
  line-height: 1.2;
}

/*****/
.hobby{
  width: 84%;
  margin: 90px auto;
}

.hobby_title_side{
  width: 50%;
  margin: 0 auto;
}
.hobby_inner{
  display: flex;
  justify-content: center;
}
.hobby_editing_img{
  width: 100%;
  display: flex;
}
.hobby_editing_img img{
  width: 100%;
  height: auto;
}
.hobby_caption_side{
  width: 50%;
}
.hobby_caption_side p{
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 1.2rem;
}

/*****/
.title_img{
  display: block;
  width: 50%;
  margin: 0 auto;
}
.marketing_title_side{
  width: 84%;
  margin: 90px auto;
}
/* .marketing_title_side img{
  display: block;
  width: 50%;
  margin: 0 auto;
} */
/* .marketing_title_side h2{
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #61cbf4;
} */
.marketing_title_side p{
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
}

.marketing_inner{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.marketing_item{
  width: 40%;
}
.marketing_item img{
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.marketing_item p{
  font-size: 1.0rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 1rem 0;
}
/* アニメーションのフェードインアップ　※ヌガーサンド */
.scroll-up{
  transform: translateY(30px);
  opacity: 0;
  transition:transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.scroll-up.on{
    transform: translateY(0);
    opacity: 1;
  }
