@charset "utf-8";

/*************************************
* フォント
*************************************/

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url('../font/NotoSansCJKjp-Regular.woff2') format('woff2'),
       url('../font/NotoSansCJKjp-Regular.woff') format('woff'),
       url('../font/NotoSansCJKjp-Regular.ttf') format('truetype'),
       url('../font/NotoSansCJKjp-Regular.eot') format('embedded-opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url('../font/NotoSansCJKjp-Bold.woff2') format('woff2'),
       url('../font/NotoSansCJKjp-Bold.woff') format('woff'),
       url('../font/NotoSansCJKjp-Bold.ttf') format('truetype'),
       url('../font/NotoSansCJKjp-Bold.eot') format('embedded-opentype');
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: normal;
  src: url('../font/NotoSerifCJKjp-Regular.woff') format('woff'),
       url('../font/NotoSerifCJKjp-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../font/Montserrat-Medium.ttf') format('truetype');
}


/*************************************
* CSSリセット
*************************************/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  font-style: normal;
  vertical-align:baseline;
  background:transparent;
}
body {
  line-height:1;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display:block;
}
article{
  outline: none;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
em{
  font-style: normal;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
input, select {
  vertical-align:middle;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*************************************
* 共通
*************************************/

body {
  min-height: 100vh;
  line-height: 1.8;
  font-size: 16px;
  font-family: 'Noto Sans Japanese';
  color:#333;
  word-break : break-all;
  -webkit-text-size-adjust: 100%;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  color: inherit;
  text-decoration: none;
  max-width: 100%;
}
a > img{
  transition: opacity .3s ease-in-out;
}
a:hover{
  text-decoration: none;
}
.pc{
  display: none!important;
}
.clearfix:after {
  content:'';
  display:block;
  clear:both;
}

@media screen and (min-width:769px) {
  a:hover img{
    opacity: 0.7;
  }
  .pc{
    display: block!important;
  }
  .sp{
    display: none!important;
  }
}

/*************************************
* ヘッダー
*************************************/

header {
  position: fixed;
  z-index: 1;
  border-bottom: 1px #e1e1e1 solid;
  border-top: 3px #e8ac38 solid;
  height: 60px;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  background: #fff;
}
header .container-wide{
  height: 100%;
}
#header_logo{
  width: 30px;
  display: inline-block;
  margin-top: 6px;
}
#header_nav{
  font-family: 'Montserrat';
  display: none;
  background: #3c2b2b;
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  padding: 10px 0;
}
#header_nav ul li a{
  display: block;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
#open_menu {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: -3px;
  display: block;
}
#open_menu span {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 4px;
  background: #400100;
  transition: all .4s;
}
#open_menu span:nth-of-type(1) {
  top: 17px;
}
#open_menu span:nth-of-type(2) {
  top: 28px;
}
#open_menu span:nth-of-type(3) {
  bottom: 17px;
}
#open_menu.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
#open_menu.active span:nth-of-type(2) {
  opacity: 0;
}
#open_menu.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg)
}

@media screen and (min-width:769px) {
  header{
    height: 150px;
    border-top-width: 6px;
    transition: height 0.3s;
  }
  header.scroll{
    height: 80px;
  }
  #header_logo{
    float: left;
    width: 85px;
    transition: width 0.3s;
    margin-left: 40px;
  }
  header.scroll #header_logo {
    width: 43px;
  }
  #header_nav{
    display: block;
    position: static;
    float: right;
    width: auto;
    padding: 0;
    margin-top: 50px;
    background: transparent;
    font-size: 18px;
    transition: margin 0.3s;
  }
  header.scroll #header_nav {
    margin-top: 14px;
  }
  #header_nav ul{
    display: flex;
    align-items: center;
  }
  #header_nav ul li + li{
    margin-left: 30px;
  }
  #header_nav ul li:last-child{
    margin-left: 50px;
  }
  #header_nav ul li a {
    color: #400100;
    padding: 0;
    position: relative;
  }
  #header_nav ul li a:not(.insta):after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #400100;
    transition: width 0.3s;
  }
  #header_nav ul li a:not(.insta):hover:after{
    width: 100%;
  }
  #open_menu{
    display: none;
  }
}

/*************************************
* コンテンツエリア
*************************************/

.container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}
.container-wide{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}
.container:after,
.container-wide:after {
  content:'';
  display:block;
  clear:both;
}
#main{
  display: block;
  margin-top: 60px;
  padding: 30px 0 60px;
}
#main .page-title{
  text-align: center;
  margin-bottom: 45px;
}
#main .page-title span{
  font-family: 'Montserrat';
  display: block;
  font-size: 30px;
  background: url(../img/common/title_bg.png) no-repeat center bottom/80px;
  margin-bottom: 15px;
  color: #400100;
}

@media screen and (min-width:769px) {
  #main {
    display: block;
    margin-top: 150px;
    padding: 60px 0 75px;
  }
  #main .page-title{
    font-size: 24px;
  }
  #main .page-title span{
    font-size: 40px;
    background-size: 133px;
    padding-bottom: 15px;
    margin-bottom: 35px;
  }
}

/*************************************
* フッター
*************************************/

footer{
  background: #3c2b2b;
  text-align: center;
  padding-top: 30px;
}
footer .left-col{
  margin-bottom: 30px;
}
#footer_logo{
  display: inline-block;
  width: 200px;
  margin-bottom: 30px;
}
#footer_nav{
  display: flex;
  margin-bottom: 30px;
}
#footer_nav ul{
  width: 50%;
}
#footer_nav ul li a{
  color: #fff;
}
#footer_nav ul.left{
  font-family: 'Montserrat';
}
#footer_bnr li + li{
  margin-top: 20px;
}
#copyright{
  background: #000;
  color: #846e6e;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
}

@media screen and (min-width:769px) {
  footer{
    padding-top: 40px;
    text-align: left;
  }
  footer .left-col{
    float: left;
    width: 50%;
  }
  footer .right-col{
    float: right;
    width: 50%;
    padding-left: 30px;
  }
  #footer_logo{
    width: auto;
  }
  #footer_nav ul.left{
    font-size: 18px;
  }
  #footer_nav ul.right{
    font-size: 14px;
  }
  #footer_nav ul li + li{
    margin-top: 10px;
  }
  #footer_nav ul li a{
    position: relative;
    display: inline-block;
    line-height: 32px;
  }
  #footer_nav ul li a:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
  }
  #footer_nav ul li a:hover:after{
    width: 100%;
  }
  #copyright{
    font-size: 10px;
    padding: 15px 0;
  }
}