@charset "UTF-8";
/*mid knight*/
/*space grey*/
/*space grey*/
/*world blue*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q::before, q::after, blockquote::before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
  /* 10px */
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  line-height: 1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #333;
  background:url(../images/bg_main.png) 0 0 repeat;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  word-break: break-all;
}

div {
  font-size: 1.1rem;
}

/*
h1 {
    font-size: 3.2rem;
}
*/
h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  color: #EB6100;
}

a:hover {
  text-decoration: none;
}

b, strong {
  font-weight: bold;
}

li {
  list-style: none;
}

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

dl, dt, dd {
  margin: 0;
}

table {
  width: 100%;
  border: 1px solid #CAC8CD;
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  padding: 8px 13px;
  font-weight: normal;
  border: 1px solid #CAC8CD;
}

th {
  font-weight: bold;
}

label,
button {
  cursor: pointer;
}

blockquote {
  margin: 0;
  padding: 0;
}

input,
textarea {
  font-size: 1.6rem;
}

dfn {
  font-style: italic;
}

mark {
  background: #ffffff;
  color: #000000;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  overflow-x: scroll;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

html.android body {
  line-height: 1.5;
}


.pc-only {
  display: none;
}

@media only screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: inline-block;
  }
}

/*==========================================================================*/
/*                               Header                                     */
/*==========================================================================*/

header {
  padding: 10px;
  position: fixed;
  z-index: 1;
  width: 100%;
  background-color: #EB6100;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
header .menu {
  color: white;
  position: fixed;
  top: 12px;
  right: 10px;
  z-index: 100;
}
header .menu .menu-trigger,
header .menu .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
header .menu .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 34px;
  height: 28px;
}
@media only screen and (min-width: 1080px) {
  header .menu .menu-trigger {
    display: none;
  }
}
header .menu .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
}
header .menu .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header .menu .menu-trigger span:nth-of-type(2) {
  top: 12px;
}
header .menu .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header .menu .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-45deg);
  transform: translateY(14px) rotate(-45deg);
}
header .menu .menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
header .menu .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}
header .headerInner {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1080px) {
  header .headerInner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
header .headerInner .logo {
  margin: 0 20px 0 0;
  flex-shrink: 0;
  line-height: 1;
}
@media only screen and (min-width: 1080px) {
  header .headerInner .logo a {
    display: inline-block;
  }
}
header .menuList {
  margin: 0;
  padding: 10px;
  text-align: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  background: #EB6100;
  top: 0;
  left: 100%;
  transition: left 300ms ease-out;
  font-size: 1.3rem;
}
header .menuList.menuList--pc {
  display: none;
}
@media only screen and (min-width: 1080px) {
  header .menuList.menuList--pc {
    display: flex;
  }
}
@media only screen and (min-width: 1080px) {
  header .menuList.menuList--sp {
    display: none;
  }
}
@media only screen and (min-width: 1080px) {
  header .menuList {
    position: relative;
    height: auto;
    padding: 0;
    left: 0;
    display: flex;
  }
}
header .menuList.active {
  left: 0;
}
header .menuList li {
  padding: 5px;
}
@media only screen and (min-width: 1080px) {
  header .menuList li {
    padding: 10px;
  }
}
header .menuList li:first-child {
  padding-top: 0;
}
@media only screen and (min-width: 1080px) {
  header .menuList li:first-child {
    display: none;
    padding: 0 10px 0 0;
  }
}
header .menuList li a {
  padding: 5px 0;
  color: white;
  display: block;
  text-decoration: none;
}
@media only screen and (min-width: 1080px) {
  header .menuList li a {
    padding: 0;
  }
}
header .menuList li a.current {
  background: #ffffff;
  color: #EB6100;
}
@media only screen and (min-width: 1080px) {
  header .menuList li a.current {
    background-color: #EB6100;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}


/*==========================================================================*/
/*                             Contents                                     */
/*==========================================================================*/

#wrapper {
	width: 100%;
	margin: 0 auto;
}

.wrapper_top { 
	width: 100%;
	margin: 0 auto;
  }


.wrapper_bottom { 
	width: 100%;
	margin: 0 auto;
  padding-top: 80px;
  }

#main {
	width: 100%;
	margin: 0 auto;
  padding: 0 20px 20px;
	}

#content {
	width: 100%;
	margin: 0 auto;
	}

#content {
  font-size: 1.2rem;
}

#content li {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

#navi {
  font-size: 14px;
}

@media only screen and (min-width: 1080px) {
  #main {
    width: 1200px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 0 50px;
  }
  #content {
    width: 900px;
    padding: 0 0 0 50px;
    }
  #navi {
    width: 300px;
  }
  .wrapper_bottom { 
    padding-top: 120px;
  }
}

/* index
------------------------------------------------------------------------*/
h1 {
  margin: 0 0 30px;
  text-align: center;
}

  h3  { 
  background: url(../images/jewely.png) 5px center no-repeat #00baff;
  font-weight: bold;
  font-size:18px;
  color: white;
  padding: 3px 30px;
  margin: 30px 0 10px;
  }
  h3.mini  { 
    background: url(../images/jewely.png) 5px center no-repeat #EB6100;
    margin: 30px 0 10px;
    padding: 3px 30px;
    }

  h3.minitop {
    background: url(../images/jewely.png) 5px center no-repeat #EB6100;
    margin: 0 0 10px;
    padding: 3px 30px;
  }

  .extit {
    background: url(../images/jewely.png) 5px center no-repeat #EB6100;
    font-weight: bold;
    font-size:18px;
    color: white;
    padding: 3px 30px;
    margin: 10px 0;
  }

  .extit a {
    color: white;
  }

  .navilist li {
    margin: 0 0 10px;
  }
 
 

/*==========================================================================*/
/*                              Footer                                      */
/*==========================================================================*/

footer {
  background: #EB6100;
  color: #ffffff;
}

.footer-inner {
  width: 1080px;
  margin: 0 auto;
}
.footer-inner .copy {
  padding: 8px 0;
  font-size: 1rem;
  text-align: center;
}
@media only screen and (max-width: 1079px) {
  .footer-inner {
    width: 100%;
  }
}