﻿@charset "UTF-8";




@media screen and (min-width:480px) { 
  /*　画面サイズが480pxからはここを読み込む　*/
  .works {
 }
}
@media screen and (min-width:768px) and ( max-width:1024px) {
  /*　画面サイズが768pxから1024pxまではここを読み込む　*/
  .works {
    width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width:1024px) {
  /*　画面サイズが1024pxからはここを読み込む　*/
  .works {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}


.works{
    margin-left: auto;
    margin-right: auto;
    
}

img {
max-width: 100% ;
height: auto;
}


.ex1{
font-size:17px;
line-height:30px;
}


.balloon-shadow {
  position: relative; /* 三角の位置を固定するために設定 */
  width: 530px; /* 幅 */
  margin: 0 auto 15px; /* 上 左右 下のマージン */
  padding: 10px; /* ふきだし内の余白 */
  background: #b12530; /* 背景色 */
  text-align: center; /* テキストの揃え */
  font-size: 18px;
  color: #ffffff;
  font-family: Cooper Black;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}
.balloon-shadow::before { /* 三角 */
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  width: 20px; /* 影をつけるために線幅で設定せずにboxを使用する */
  height: 20px;
  transform: rotate(45deg); /* 回転 */
  background: #b12530; /* 吹き出しの地と同じ色 */
  box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}
.round { /* 角丸用クラス */
  border-radius: 8px;
}


#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #000099;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #c72581;
}


/* ▼SP用スタイル▼ */
body{
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}
main{
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
}
header{
  position: relative;
}
header > div{
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
header > div img{
  width: 160px;
}
.btn_menu{
  position: absolute;
  top: 10px;
  right: 10px;
}
.btn_menu span{
  height: 50px;
  width: 50px;
  display: flex;
  border-radius: 50%;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background-color: #000000;
  color: #fff;
}
.nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #000000;
  height: 0;
  opacity: 0;
  transition: all 300ms;
}
.nav.show ul{
  height: auto;
  opacity: 1;
}
.nav ul li{
  text-align: center;
  border-bottom: solid 1px #ccc;
  padding: 0.5em 0;
  display:none;
}
.nav.show ul li{
  display: block;
}

/* ▼PC用スタイル▼ */
@media (min-width: 544px){
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: #000000;
}
header > div{
  width: 300px;
}
main{
  width: 900px;
  margin: 0 auto;
}
.btn_menu{
  display: none;
}
.nav{
  width: 100%;
}
.nav ul{
  display: flex;
  justify-content: flex-end;
  opacity: 1;
  height: auto;
  background: none;
  min-width: 620px;
}
.nav ul li{
  border: none;
  margin: 0 20px;
  display: block;
}
}



