@charset "utf-8";

/* Common.css */

html, body {
  width: 100%;
  font-size: 62.5%;
  color: #000;
}

body {
  width: 100%;
  font-family: 'Open Sans', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 1;
  margin: 0 auto;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

/*--------------------*link--------------------*/
a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #999;
  text-decoration: none;
}

a img {
  text-decoration: none;
  border: none;
}

/*list*/
ul, li {
  list-style: none;
  margin: auto;
  padding-left: 0;
}

#wrap {
  overflow: hidden;
  width: 100%;
}

h1 {
  margin: 0;
}

h2 {
  margin: auto;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.3rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
}

h2 span {
  font-size: 20px;
}

img {
  max-width: 100%;
}

/*---------------------------header---------------------------*/
header {
  float: left;
}

#header_menu {
  margin: 52px 0 0 40px;
}

#header_menu h1 img {
  margin-bottom: 64px;
  width: 143px;
}

#header_menu li {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.06rem;
}

dl.more_btn {
  margin: 0;
}

.more_btn dt {
  cursor:pointer;
  margin-bottom: 14px;
}

.more_btn dt:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url(../img/common/arrow_off.png);
  background-size: contain;
  vertical-align: middle;
}

.more_btn dt.active:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url(../img/common/arrow_on.png);
  background-size: contain;
  vertical-align: middle;
}

.more_btn dd {
  display: none;
  margin-left: 18px;
}

#header_menu .more_btn dd li {
  font-size: 13px;
}


/*---------------------------footer---------------------------*/
footer {
  border-top: 2px solid #000;
  padding: 30px 0 40px;
}

.footer_inner {
  max-width: 990px;
  margin-left: 22%;
}

footer .right_column {
  float: right;
}

.right_column li {
  float: left;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8em;
  text-transform: uppercase;
  margin-left: 30px;
}

.right_column li:first-child {
  margin-left: 0;
}

footer .left_column {
  float: left;
}

footer .left_column a {
  float: left;
  margin: 0 18px 0 5px;
  width: 70px;
}

footer .left_column p {
  font-size: 12px;
  font-weight: 600;
  float: left;
  line-height: 1.8em;
  margin: 0;
}

/*---------------------------共通要素---------------------------*/
#main_content {
  max-width: 990px;
  margin-left: 19%;
  margin-top: 90px;
}

.contents_inner {
  margin: 40px auto;
}

/*---------------------------中ページ---------------------------*/
.profile,
.philosophy,
.message,
.privacypolicy,
.sitepolicy {
  margin: 0 auto 100px;
  max-width: 840px;
  overflow: hidden;
}

.profile h2,
.philosophy h2,
.message h2,
.privacypolicy h2,
.sitepolicy h2 {
  text-align: left;
}

.philosophy h3,
.message h3,
.privacypolicy h3,
.sitepolicy h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    margin: 46px 0 26px;
}

.philosophy p,
.message p,
.privacypolicy p,
.sitepolicy p {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.3rem;
  margin: 0 0 20px;
}

.profile dl {
  margin: 46px 0 0;
}

.sitepolicy dl {
  margin: 46px 0 26px;
}

.sitepolicy dt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8em;
  margin-bottom: 10px;
}

.sitepolicy dd {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.3rem;
  margin: 0 0 20px;
}

.profile dt {
  float: left;
  width: 20%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8em;
}

.profile dd {
  float: left;
  width: 80%;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.3rem;
  margin: 0;
}

/*--------------------------------------------------------------*/
.pc_none {
  display: none !important;
}

@media screen and (max-width: 768px) {

  header {
    float: none;
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
  }

  #header_menu {
    margin: 0;
  }

  .spmenu_bt {
    width: 30px;
    height: 25px;
    display: block;
    background: url(../img/toggle.png) no-repeat;
    background-size: 100%;
    transition: all .18s ease-out;
    -webkit-transition: all .18s ease-out;
    -moz-transition: all .18s ease-out;
    -ms-transition: all .18s ease-out;
    position: absolute;
    right: 20px;
    top: 25px;
  }
  
  .spmenu_bt.on {
    background: url(../img/toggle_on.png) no-repeat;
    background-size: 100%;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transition: all .18s ease-out;
    -webkit-transition: all .18s ease-out;
    -moz-transition: all .18s ease-out;
    -ms-transition: all .18s ease-out;
  }

  #logo {
    max-width: 85px;
    float: none;
    margin: 30px 0 0 30px;
    width: 100%;
  }

  .menu_box_main,
  .menu_box_main li,
  .menu_box_main li:last-child,
  .menu_box_sns {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    float: none;
  }

  header .menu_box {
    display: none;
    width: 100%;
    float: none;
    padding: 0;
  }

  header ul li {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
    
  #hover-click > ul {
    position: relative;
  }

  #header_menu li {
    font-size: 12px;
    margin-left: 30px;
  }

  #header_menu h1 img {
    margin-bottom: 40px;
  }

  #main_content {
    margin: 140px 0 0 0;
  }

  .profile,
  .philosophy,
  .message,
  .privacypolicy,
  .sitepolicy {
    width: 90%;
  }

  .profile dt {
    margin-bottom: 10px;
    float: none;
    width: 100%;
  }

  .profile dd {
    float: none;
    width: 100%;
  }

  footer {
    padding: 20px 0;
  }

  .footer_inner {
    margin-left: 0;
  }

  footer .right_column {
    float: none;
    margin-bottom: 20px;
    text-align: center;
    width: 38%;
  }

  footer .left_column {
    float: none;
  }

  footer .left_column a {
    float: none;
    display: block;
    margin: 0 auto;
  }

  footer .left_column a img {
    margin-bottom: 15px;
  }

  footer .left_column p {
    float: none;
    text-align: center;
  }

/* .fixed */
  header {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
  }

  header.fixed {
      background-color: #fff;
  }

  #logo {
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
  }

  header.fixed #logo {
      max-width: 60px;
  }

  #header_menu h1 img {
      margin-bottom: 20px;
  }

}

@media screen and (max-width: 480px) {

/*SP PC*/
  .sp_none {
    display: none!important;
  }

  .pc_none {
    display: block!important;
  }

  header #logo {
    margin: 20px 0 0 20px;
  }

  #header_menu li {
    margin-left: 20px;
  }

  #header_menu .more_btn dd li {
    font-size: 11px;
    margin-left: 0;
  }

/*---------------------------共通要素---------------------------*/
  h2 {
    font-size: 36px;
    margin-bottom: 35px;
  }

  #main_content {
    margin-top: 120px;
  }

  .philosophy h3,
  .message h3,
  .privacypolicy h3
  .sitepolicy h3 {
    font-size: 16px;
  }

  .philosophy p,
  .message p,
  .privacypolicy p,
  .sitepolicy p {
    font-size: 12px;
  }

  footer {
    border-top: 2px solid #000;
    margin: 0 auto;
    width: 90%;
  }

  footer .right_column {
      width: 85%;
  }

}

@media screen and (max-width: 320px) {
  footer .right_column {
      width: 100%;
  }
}





/*---------------------------配置・調整など---------------------------*/
/* Clearfix */
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  min-height: 1%;
}

/* Hides from IE \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

}