@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-size: 22px;
    line-height: 1.7;
    color: #fff;
    background-color: #333;
    letter-spacing: 0.05em;
    font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: hidden;
}

.title {
    font-family: serif;
    margin-bottom: 40px;
    font-size: 35px;
    position: relative;
    text-align: center;
}

.title::after {
    position: absolute;
    background-color: #AD8B73;
    content: "";
    height: 1px;
    width: 50px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.h3 {
    font-size: 28px;
}

.header,
.first-view,
.concept,
.menu,
.product,
.news,
.access {
    padding: 0 5vw;
}

.concept-in,
.product-in,
.news-in {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.sp-br {
    display: none;
}

/*終わり*/

/*アニメーション*/
/*スクロールふわっと表示*/
.scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}
.scroll.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.8s;
}
/*終わり*/

/*js表示 一個ずつ出てくる*/
.scr-target {
  opacity: 0;
  transform: translate3d(0, 35px, 0);
}
.scr-target.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}
/*終わり*/

/*スクロールフェードイン*/
.js-fadeLeft {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(-100px); /* 下に100pxの位置から */
  transition: opacity .5s, transform .5s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeLeft.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 100px上に移動する */
  transition-delay: 0.5s; /* フェード開始を0.2秒遅らせる */
}

.js-fadeRight {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(100px); /* 下に100pxの位置から */
  transition: opacity .5s, transform .5s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeRight.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 100px上に移動する */
  transition-delay: .8s; /* フェード開始を0.2秒遅らせる */
}
/*終わり*/

/*カーテンを開くようなテキストアニメーション*/   
.visible {
	position: relative;
	overflow: hidden;
}

.visible::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 101%; /* 必要なら微調整する */
  height: 100%;
	background-color: #333;
	transform-origin: right top;/* アニメーションの軸となる座標 */
	transition: 1.0s;/* 1秒かけてアニメーションする */
  transition-delay: 0.3s;
	z-index: 2;
}

.effect.visible::before {
    transform: scale(0, 1);
}
/*終わり*/


/*終わり*/

/*<header class="header">*/
.header {
    font-family: serif;
    width: 100%;
    height: 150px;
}

.header-inner {
    height: 100%;
    position: relative;
}

.header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.header-site-menu {
    height: 100%;
    position: relative;
}

.header-nav ul li {
    margin-left: 50px;
}

/*ハンバーガーボタン*/
.hamburger {
    display : block;
    z-index : 60;
    position: absolute;
    top: 50%;
    right: 5vw;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);      
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background-color: #333;
    border-radius: 4px;
}

.hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    left    : 6px;
    background : #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition   : 0.5s ease-in-out;
    transition        : 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top : 20px;
    left: 6px;
    -webkit-transform: rotate(315deg);
    -moz-transform   : rotate(315deg);
    transform        : rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(-315deg);
    -moz-transform   : rotate(-315deg);
    transform        : rotate(-315deg);
}

.header-nav {
    position: fixed;
    z-index : 50;
    top  : 0;
    left : 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.5s;
    width: 100%;
    height: 100vh;
}

.header-nav ul {
    background: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-nav ul li {
    list-style-type: none;
    padding: 1em 0;
    margin: 0 auto;
}

.header-nav ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.header-nav ul a:hover{
    opacity: 0.6;
}

.header-nav ul li a {
    color: #000;
    text-decoration :none;
    display: block;
}

.header-nav .scroll {
    transition-delay: 0.5s;
}

.sp-sns {
    display: none;
}

/* このクラスを、jQueryで付与・削除する */
.header-nav.active {
    transform: translateY(0%);
}
/*終わり*/ 
/*終わり*/  

/*<div class="first-view">*/
.first-view {
    text-align: center;
    position: relative;
}

.first-view img {
    width: 90%;
}

.sns {
    position: absolute;
    bottom: 20%;
    left: 5vw;
    display: flex;
    flex-direction: column;
}

.sns a {
    display: inline-block;
    transition: 0.2s;
}

.sns a:hover {
    opacity: 0.7;
}

.sns img {
    display: block;
    width: 35px;
    margin-top: 20px;
}

.scroll-down::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
}

.scroll-down::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
}
/*終わり*/

/*<section class="concept">*/
.concept {
    margin-top: 100px;
    margin-bottom: 50vh;
}

.concept-in {
    position: relative;
}

.concept-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 50px;
}

.concept-text .lead-text {
    font-size: 55px;
    font-family: serif;
    line-height: 1.1;
    margin-bottom: 40px;
}

.concept-img {
    position: relative;
}

.concept-img .img-0102{
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-around;
}

.concept-img .img-01 {
    width: 45%;
    margin-top: 40px;
}

.concept-img .img-02 {
    width: 25%;
    position: relative;
    z-index: 1;
}

.concept-img .img-03 {
    position: absolute;
    top: 80%;
    left: 5%;
    width: 45%;
}

.bottom-text {
    font-family: serif;
    font-size: 30px;
    position: absolute;
    bottom: -22%;
    right: 0;
}
/*終わり*/

/*<section class="menu">*/
.menu {
    border-bottom: solid 1px #fff;
}

.menu-in {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.menu-in table {
    width: 100%;
    margin-bottom: 40px;
}

.menu-in table:last-child {
    margin-bottom: 80px;
}

.border {
    border-bottom: solid 1px #AD8B73;
    margin-top: 0;
}

.border th:first-child {
    font-family: serif;
    font-size: 30px;
}

.border small {
    margin-left: 16px;
    font-size: 20px;
    color: #f1f1f1;
}

.menu-in table tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 16px;
}
/*終わり*/

/*<section class="product">*/
.product {
    border-bottom: solid 1px #fff;
}

.product-in {
    margin-top: 80px;
    padding-bottom: 80px;
}

.product-con {
    display: flex;
    justify-content: space-between;
}

.con01-01,
.con01-02,
.con01-03 {
    width: 31%;
}

.product-con h3 {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.product-con small {
    font-size: 18px;
    color: #f1f1f1;
}
/*終わり*/

/*<section class="news">*/
.news-in {
    margin-top: 80px;
    padding-bottom: 80px;
}

.news-con {
    display: grid;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 40px;
    row-gap: 60px;
}

.news-con a {
    transition: 0.2s;
}

.news-con a:hover {
    opacity: 0.8;
}

.news-con time {
    font-size: 16px;
}

.news-con h3 {
    font-size: 18px;
}
/*終わり*/

/*<section class="access">*/
.access {
    border-bottom: solid 1px #fff;
}

.access-in {
    max-width: 900px;
    margin: 40px auto 120px auto;
    border: solid 2px #AD8B73;
    padding: 8px;
}

.access-line {
    padding: 16px 0;
    border: solid 1px #AD8B73;
    text-align: center;
}

.access-text .text-02 {
    font-size: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.access-text .text-02 img {
    width: 40px;
    margin-right: 8px;
}
/*終わり*/

/*<footer class="footer">*/
.footer {
    padding-left: 5vw;
}

.footer-in {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 40px;
    font-family: serif;
    margin-bottom: 40px;
}

.tel {
    display: flex;
    margin-top: 8px;
}

.tel img {
    width: 22px;
    margin-right: 8px;
}

.copyright {
    font-size: 12px;
    margin-top: 20px;
}

.footer-in iframe {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    body {
        font-size: 18px;
    }

    .title {
        font-size: 25px;
    }        
/*終わり*/  
  
/*<header class="header">*/
    .header {
        height: 120px;
    }
/*終わり*/ 

/*<div class="first-view">*/
    .sns {
        left: 2vw;
    }
/*終わり*/

/*<section class="concept">*/
    .concept {
        margin-bottom: 25vh;
    }

    .concept-text .lead-text {
        font-size: 35px;
    }
/*終わり*/

/*<section class="menu">*/
    .border th:first-child {
        font-size: 22px;
    }
/*終わり*/

/*<section class="product">*/
    .product-con h3 {
        font-size: 18px;
    }

    .product-con small {
        font-size: 14px;
    }
/*終わり*/
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .sns {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .pc-slash {
        display: none;
    }
/*終わり*/  

/*<header class="header">*/
    .sp-sns {
        display: block;
        width: 35px;
    }

    .hamburger {
        right: 0;
    }    
/*終わり*/ 

/*<div class="first-view">*/
    .first-view img {
        width: 100%;
    }

    .scroll-down::after {
        height: 50px;
    }
/*終わり*/

/*<section class="concept">*/
    .concept {
        margin-top: 50px;
        margin-bottom: 30vh;
    }

    .concept-flex {
        display: block;
    }

    .concept-text .lead-text {
        font-size: 30px;
    }

    .concept-img .img-01 {
        width: 55%;
    }
    
    .concept-img .img-02 {
        width: 35%;
    }
    
    .concept-img .img-03 {
        top: 90%;
        width: 45%;
    }    

    .bottom-text {
        font-size: 16px;
    }
/*終わり*/

/*<section class="menu">*/
    .menu-in {
        margin-top: 40px;
    }

    .border th:first-child {
        font-size: 18px;
    }

    .border small {
        font-size: 14px;
    }

    .border th {
        font-size: 16px;
    }
/*終わり*/

/*<section class="product">*/
    .product-con {
        display: block;
    }

    .product-con h3 {
        margin-bottom: 20px;
    }

    .con01-01,
    .con01-02,
    .con01-03 {
        width: 85%;
    }

    .con01-01,
    .con01-02 {
        margin-bottom: 50px;
    }

    .con01-02 {
        margin-left: auto;
        margin-right: 0;
    }
/*終わり*/

/*<section class="access">*/
    .access-text .text-02 {
        font-size: 25px;
    }

    .access-text .text-02 img {
        width: 25px;
        margin-right: 8px;
    }

    .access-text .text-03 {
        font-size: 14px;
    }
/*終わり*/

/*<footer class="footer">*/
    .footer {
        padding-left: 0;
    }

    .footer-in {
        display: block;
    }

    .footer-l {
        text-align: center;
        margin: 10px 0;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .footer-l .tel {
        justify-content: center;
    }

/*終わり*/
}