@charset "UTF-8";

/*****STANDART CSS******/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.topping {top:94px}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

.anchor{
  display: block;
  height: 80px; /*same height as header*/
  margin-top: -80px; /*same height as header*/
  visibility: hidden;
} 

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}

body.open {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color: #000;
}
/* --img {
  width: 100%;
}-- */

/* パンくずリスト */
.bread {
  width: 100%;
  margin-top: 15px;
}

.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

.bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bread ul li {
  padding: 5px;
}

.bread ul li a {
  -webkit-transition: .15s;
  transition: .15s;
}

.bread ul li a:hover {
  opacity: 0.7;
}

.bread ul li:after {
  content: '\003e';
  margin-left: 10px;
  margin-right: 10px;
  color: #000;
}

.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* inner */
.inner {
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}

@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}

@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

/* header */
.oneheader {
  position: fixed;
  top: 0;
  z-index: 1001;
  width: 100%;
  background-color: #000;
  padding: 10px 0;
}
.header_row {
  align-items: center;
}

.logo {
  width: 100px;
}
.logo h1 {
  display: contents;
}
.logo h1 img {
  display: block;
}
.pc_nav {
/*  width: 50%;*/
}
.pc_nav ul li {
margin: 0 5px;
}

.sp_nav {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 90px 0 0;
  text-align: center;
}
.sp_nav li {
  margin-bottom: 20px;
}
nav a {
  color: #fff;
}

/* ハンバーガー */
#menu_btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

@media (max-width: 768px) {
  #menu_btn {
    display: block;
    margin-left: auto;
  }
}

#menu_btn span {
  display: inline-block;
  height: 3px;
  width: 28px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s;
  transition: .3s;
}

#menu_btn span:nth-child(1) {
  top: 10px;
}

#menu_btn span:nth-child(2) {
  top: 20px;
}

#menu_btn span:nth-child(3) {
  top: 30px;
}

.open #menu_btn {
  z-index: 1000;
}

.open #menu_btn span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}

.open #menu_btn span:nth-child(2) {
  opacity: 0;
}

.open #menu_btn span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .sp_nav {
  opacity: 1 !important;
  left: 0 !important;
}


@media (max-width: 768px) {
  .pc_nav {
    display: none;
  }
}

#contact_page {
  padding: 50px 0;
}
.thanks {
  text-align: center;
}
.thanks p {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.thanks a {
  background-color: #cbcbcb;
  color: #000;
  padding: 10px 25px;
  border-radius: 5px;
}
/*# sourceMappingURL=style.css.map */