@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Pinyon+Script&display=swap');

html{font-size: 62.5%;

}
body{
font-family: 'Pinyon Script','Kaisei Decol', cursive;
color: #4d000b;
	line-height: 1.8;
}


/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}
/*========= レイアウトのためのCSS ===============*/

.wrapper{
  overflow: hidden;
}

.flex{
  display:flex;
  flex-wrap: wrap;
}

.two-calm{
	display: flex;
	flex-wrap:wrap;
}
.two-calm li {
	width: calc(100%/2);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.two-calm li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
}

.two-calms{
	display: flex;
	flex-wrap:wrap;
}
.two-calms li {
	width: calc(100%/2);/*←画像を横に4つ並べる場合*/
	padding:0px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.two-calms li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
}

    .container {
      width: 100%;
      display: block;
      margin: 0 auto;
      text-align: center;
    }
    .container>img {
      width: 200px;
      margin: 15px;
    }

    .container2 {
      width: 800px;
		max-width: 100%;
      display: block;
      margin: 0 auto;
      text-align: center;
    }
    .container2>img {
      width: 200px;
      margin: 15px;
    }

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger{
    opacity: 0;
}

    /* box-shadowとdrop-shadow */
    .box-and-drop .box-shadow {
      box-shadow: 10px 10px 5px 0 rgb(61, 61, 63, 0.5);
    }
    .box-and-drop .drop-shadow {
      filter: drop-shadow(10px 10px 5px rgb(61, 61, 63, 0.5));
		transform: translateZ(0);
    }

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

/* みぎよせ */
.parcent_l {
margin-left: 30%;
}
.pixel_l {
margin-left: 500px;
}

/* ひだりよせ */
.parcent_r {
margin-right: 30%;
}
.pixel_r {
margin-right: 500px;
}

.nega_m {
  margin-top: -40px; /* 上方向にネガティブマージンを取る */
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* ボタン共通設定 */
.btn03{
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    text-align: center;
    background: transparent;
	border-radius: 25px;
	border: solid 1px #333;
    outline: none;
	width: 30%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
	-webkit-transition: -webkit-transform 0.1s;
	transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn03:hover{
	border-color:transparent !important;	
}

/*ボタンの中のテキスト*/
.btn03 span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
	display: block;
    padding: 10px 5px;
	background:#fff;
	border-radius: 25px;
	color:#333;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
	-webkit-transition: -webkit-transform 0.3s;
}

/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
    content: "";
    /*絶対配置で影の位置を決める*/
    position: absolute;
	z-index: -1;
    top: 4px;
    left: 4px;
    /*影の形状*/
    width: 100%;
    height: 100%;
	border-radius: 25px;
    background-color: #333;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
	background-color: #333;
	color: #fff;
	transform: translate(4px, 4px);
}


/*矢印が右に移動する*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display: inline-block;
	padding: 0 20px;
    color: #4d000b;
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
	background:#4d000b;
    /*アニメーションの指定*/
    transition: all .3s;
		transform: translateZ(0);
}

.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#4d000b;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:20%;
}

.btnarrow4:hover::after{
    right:-5%;
}


/*== モーダル表示 */
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: 9999;
}
 
.md-contents{
  display: none;
  position: fixed;
  top: 5%;
  left: 50%;
  width: 90%;
  height: auto;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 10000;
}
 
 
.md-inner{
  padding: 16px;
  background: #fff;
  height: 80%;
}
 .md-img {
    max-height: calc(100vh - 350px);
}
 
 
.md-xmark{
  position: absolute;
  top: 14px;
  right: 10px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}
 
.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}
 
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}
 
 
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}

.flex{
    display: flex;
    justify-content: space-between;
}
.flex>p{
    width: 49%;
}

/*========= レイアウトのためのCSS ===============*/
    /*
body{
    vertical-align:middle; 
    padding: 100px 0;
    text-align: center;
}p{
    margin: 0 0 10px 0;
}*/

/*========= レイアウトのためのCSS ===============*/

body {
	width: 100%;
    font-size: 1.6rem;
    font-size: 16px;
    text-align: center;

    /*
    background-image:url(../newimg/katarogu_shita.png);
    background-position: bottom 0px left;*/
}

h2,p {
    text-align:center;
    padding:20px;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #4d000b;
text-decoration: none;
}

a:hover,
a:active{
	text-decoration: none;
}
		.shadow {
  box-shadow : 10px 10px 10px 3px rgba(102, 51, 0, 0.59);  /* 画像の影 */
}
				p{
			line-height: 1em
		}

.span{
display:block;}