@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}
body {
    font-size: 16px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    background-color: #FFFFFF;
    line-height: 1.7em;
}

a {
    color: #FFFFFF;
    /* 下線削除 */
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}

.pc {
    display: none;
}

header {
    width: 100%;
	height: 100%;
    background-color: #000000;
}
#headerInner {
    width: 100%;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}
#headerLogo {
    float: left;
    margin-top: 20px;
    margin-left: 20px;
}
#headerSub {
    float: right;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    overflow: hidden;
}
#headerSub ul {
    float: left;
    list-style-type: none;
}
#headerSub ul li {
    float: left;
}

/* hambergermenu */
#hambergerMenu {
    width: 30px;
    height: 25px;
    position: fixed;
    top: 40px;
    right: 50px;
    z-index: 1000;
}
#hambergerMenu > div {
    position: relative;
    width: 100%;
    height: 100%;
}
#hambergerMenu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(28, 173, 218);
    position: absolute;
    left: 0;
    transition: all .6s ease;
}
#hambergerMenu span:nth-child(1) {
    top: 0;
}
#hambergerMenu span:nth-child(2) {
    top: 10px;
}
#hambergerMenu span:nth-child(3) {
    top: 20px;
}
.open #hambergerMenu span {
    top: 10px;
}
.open #hambergerMenu span:nth-child(1) {
    transform: rotate(45deg);
}
.open #hambergerMenu span:nth-child(2) {
    opacity: 0;
}
.open #hambergerMenu span:nth-child(3) {
    transform: rotate(-45deg);
}

#grobalNavi  {
    background-color: #423E3E;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    align-items: center;
    color: black;
    font-size: 32px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .6s ease;
    line-height: normal;
  }

#grobalNavi ul {
    opacity: 0;
    transform: translateY(-200px);
    transition: all .9s ease;
	font-weight: bold;
    list-style-type: none;
  }

#grobalNavi a {
	line-height: 100px;
    font-size: 24px;
    letter-spacing: 0.15em;
    color: #FFF;
    transition: all ease 0.3s;
    text-shadow: 3px 3px 1px #4ac0d2;
  }

#grobalNavi p {
	color: white;
}

  /* open */
  .open {
    overflow: hidden;
  }

  .open #grobalNavi {
    visibility: visible;
    opacity: 1;
  }

  .open #grobalNavi ul {
    opacity: 1;
    transform: translateY(0);
  }

#searchBox {
	display: none;
}
#headerSub input {
    float: left;
    margin-top: 8px;
    margin-left: 20px;
    margin-right: 10px;
}
#headerSub button {
    float: left;
    margin-right: 20px;
	padding-top: 4px;
}
#cart {
    float: left;
    margin-top: 30px;
    margin-left: 40px;
}

main {
    clear: both;
    width: 100%;
}
#mainPhoto {
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
}

.h2_Style {
    font-size: 24px;
    text-align: center;
    margin: 40px 0 40px 0;
    letter-spacing: 0.1em;
}
.underLine {
    display: inline-block;
    border-bottom: solid 4px #050505;
    padding-bottom: 10px;
}

#news table {
    font-size: 16px;
	width: 100%;
	height: 100%;
    margin: auto;
    /* 隣接するセルの枠線を空けずに表示する。 */
    border-collapse: collapse;
}
#news table td {
    height: 50px;
    width: auto;
	padding-left: 50px;
    /* セルの底に線を引く。 */
    border-bottom: 2px solid #000000;
}

#birthdayStone {
    margin-bottom: 40px;
}
.month {
    font-size: 20px;
}
.month:hover {
    font-size: 24px;
}

#birthdayStone ul {
	margin: 10px auto;
    list-style-type: none;
    text-align: center;
}
#birthdayStone ul li {
    margin: 0 0 10px 0;
}
#birthdayStone ul li p {
    margin: 10px auto;
}

.imgHover {
	display: flex;
	margin: 0 0 20px 0;
}

#birthdayStone ul li img {
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

figure{
  margin:0;
  padding: 0;
  display: flex;
}

.imgHover figcaption {
	display: none;
}

aside {
    margin-left: auto;
	margin-right: auto;
	text-align: center;
}

aside img {
	width: 100%;
}

footer {
    width: 100%;
    height: 100%;
    min-width: 1000px;
    background-color: #000000;
    float: left;
}
#footerInner {
    height: 200px;
}
#naviList {
    float: left;
}
#subList {
    float: left;
}
#subList small {
    color: #FFFFFF;
}