/*------------------------------
theme name: suguri
version: 190510
author: yamabatosha
author uri: https://yamabatosha.com
------------------------------*/

@charset "utf-8";
@import url(css/sanitize.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,400italic,700italic);

/*------------------------------
base
------------------------------*/

html {
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #e6e6e6;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: .1em;
    line-height: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN',
        'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'ヒラギノ角ゴシック', Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    width: 100%;
    height: auto;
    transition: .3s;
    vertical-align: bottom;
}

ul, ol {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style: none;
}

.container {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.inline-block {
    display: inline-block;
}

/*------------------------------
font
------------------------------*/

header h1, header h2,
#hello h1, #hello h2 {
    line-height: 1;
    margin: 0;
}

p, .p {
    margin: 15px 0 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 16px;
}

h4, h5, h6 {
    font-size: 16px;
}

.mincho {
    font-family: '游明朝', 'YuMincho', 'Yu Mincho', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

.gothic {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN',
        'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'ヒラギノ角ゴシック', Meiryo, sans-serif;
}

.white {
    color: #fff;
}

.black {
    color: #333;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.marker {
    background: linear-gradient(transparent 60%, #ff6 60%);
    display: inline;
    margin-bottom: 30px;
}

/*------------------------------
link
------------------------------*/

a {
    transition: .3s;
}

a, a:hover, a:focus, a:active, a.active {
    color: #333;
    text-decoration: none;
    background: transparent;
}

p a, .line a, table a, .frame a, .cat-item a {
/*    border-bottom: 1px dashed #fff;*/
}

p a:hover, .line a:hover, table a:hover, .frame a:hover, .cat-item a:hover {
    background: rgba(255,255,255,.5);
}

.anchor {
    padding: 90px 0 60px;
    margin-top: -90px;
}

/*------------------------------
fx
------------------------------*/

figure {
    margin: 0;
}

.fx figure {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 66.666%;
}

.fx figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: .3s;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.fx:hover figure img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

figcaption {
    text-align: center;
    color: #000;
    font-weight: bold;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -25%;
    padding: 5px 15px;
    transform: translate(-50%, -50%);
}

/*------------------------------
decoration
------------------------------*/

.border {
    border-bottom: 1px solid #333;
}

.dashed {
    border-bottom: 1px dashed #333;
}

.dotted {
    border-bottom: 1px dotted #333;
}

hr {
    margin: 2em 0;
    padding: 0;
    width: 100%;
    border: 0;
    border-top: 3px solid #333;
}

hr.center {
    margin: 2em auto;
    max-width: 2em;
}

hr.left {
    max-width: 2em;
}

hr.white {
    border-color: #fff;
}

.frame {
    background: #f9f9f9;
    padding: 2em;
}

::selection {
    background: #fff;
}

::-moz-selection {
    background: #fff;
}

/*------------------------------
list
------------------------------*/

ol.list li,
ul.list li {
    position: relative;
    margin-left: 1.5em;
}

ul.list li {
    list-style: none;
}

ul.list li::after {
    display: block;
    content: '';
    position: absolute;
    top: 1em;
    left: -1em;
    width: 2px;
    height: 2px;
    background: #333;
}

/*------------------------------
btn
------------------------------*/

.btn {
    display: inline-block;
    min-width: 200px;
    text-align: center;
    letter-spacing: .2em;
    border-radius: 0;
    padding: .5rem 2rem;
    margin-bottom: 3rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.btn:hover {
    cursor: pointer;
}

/* btn-line
------------------------------*/

.btn-r {
    border-radius: 32px;
}

/* btn-line
------------------------------*/

.btn-line {
    border: 1px solid #000;
    background: transparent;
}

.btn-line:hover, .btn-line:focus, .btn-line:active, .btn-line.active {
    color: #fff;
    background: #000;
}

/* btn-white
------------------------------*/

.btn-white {
    color: #000;
    background: #fff;
    opacity: 1!important;
}

.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active {
    color: #fff;
    background: #000;
}

/* btn-green
------------------------------*/

.btn-green {
    color: #fff;
    background: #94c631;
    padding: 15px 30px;
}

.btn-green:hover, .btn-green:focus, .btn-green:active, .btn-green.active {
    opacity: .8;
}

/*------------------------------
table
------------------------------*/

table {
    width: 100%;
    text-align: center;
    margin: 0 0 0 0;
}

.table th, .table td {
    padding: 1em;
    line-height: 2;
    vertical-align: middle;
    border-bottom: 1px solid #333;
}

.table tr:first-child {
    border-top: 1px solid #333;
}

.tr-color tr:first-child,.td-color td:first-child {
    background: #f1f1f1;
}

.no-border th, .no-border td, .no-border tr:first-child {
    padding: 1em; line-height: 2; vertical-align: middle; border: none;
}

.table-ccc th, .table-ccc td, .table-ccc tr:first-child {
    padding: 2em 1em; line-height: 2; vertical-align: middle; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
    .table-sp td {
        display: block; width: 100%;
    }
}

/*------------------------------
form
------------------------------*/

.form tr td:first-child{
    width: 6em;
    vertical-align: middle;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    margin: 1em 0;
    height: 3em;
    padding: 1em;
    vertical-align: middle;
    width: 100%;
    color: #333;
    background: #f9f9f9;
    letter-spacing: .1em;
}

select {
    text-indent: 1em;
    padding: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;    
     background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#333' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
    background-position: 98% 50%;
    background-repeat: no-repeat;
}

textarea {
    height: 10em;
    line-height: 1.5;
}

/* wpcf7
------------------------------*/
.wpcf7-response-output {
    margin: 0!important
}

/*------------------------------
page-top
------------------------------*/

#page-top {
    position: fixed;
    right: 1em;
}

#page-top>a {
    background: #818181;
    color: #fff;
    display: block;
    height: 3em;
    width: 2em;
    line-height: 2.8;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
    border-radius: 1em;
    opacity: .6;
    transition: .3s;
}

#page-top>a:hover {
    background: #ddd;
}

body.drawer-opened #page-top{
    right: 256px;
}

/*------------------------------
updown 
------------------------------*/

.updown {
    -webkit-animation-name: updown;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: updown;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
}

@-webkit-keyframes updown {
0% {-webkit-transform: translate(0, 0);}
50% {-webkit-transform: translate(0, -10px);}
100% {-webkit-transform: translate(0, 0);}
}
@-moz-keyframes updown {
0% {-moz-transform: translate(0, 0);}
50% {-moz-transform: translate(0, -10px);}
100% {-moz-transform: translate(0, 0);}
}

/*------------------------------
embed
------------------------------*/

.embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.embed iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/*------------------------------
header
------------------------------*/

#header {
    width: 100%;
    height: 100px;
    position: fixed;
    display: table;
    z-index: 3;
    background: #fff;
/*    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);*/
    top: 0;
    left: 0;
    transition: .4s;
}

#header h1, nav {
    display: table-cell;
}

#header .title {
    position: absolute;
    top: 25px;
}

#header .title img {
    height: 50px;
    width: auto;
}

/*------------------------------
nav
------------------------------*/

/* drawernav
------------------------------*/

#page {
    padding-top: 100px;
    position: relative;
    z-index: 2;
    left: 0;
}

#drawernav {
    position: fixed;
    top: 0;
    right: -240px;
    width: 240px;
    height: 100%;
    background: #e6e6e6;
    color: #fff;
    z-index: 1;
    padding-top: 80px;
}

#drawernav ul {
    list-style: none;
    padding: 0;
}

#drawernav ul li img {
        height: 30px;
        width: auto;
    }


#drawernav ul li a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}

#drawernav ul li a:hover {
    color: #ddd;
    background: #fff;
}

#drawernav h4 {
    font-weight: normal;
    padding: 0 15px;
}

#humberger {
    position: fixed;
    top: 25px;
    right: 5%;
    z-index: 3;
    width: 25px;
    padding: 6px 0 0;
    cursor: pointer;
}

#humberger p {
    font-size: 10px;
    font-weight: bold;
    margin: 0 0 0 -4px;
}

.icon-bar {
    height: 2px;
    background: #333;
    display: block;
    margin-bottom: 6px;
}

.fixed-content {
    left: 0;
    z-index: 2;
}

#overlay {
    z-index: -1;
    opacity: 0;
    background: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

/* drawer-opened
------------------------------*/

@media (max-width: 767px) {
    body.drawer-opened #page {
        left: -240px;
        box-shadow: 1px 0 2px #000;
        -webkit-box-shadow: 1px 0 2px #000;
    }
    body.drawer-opened .fixed-content {
        left: -240px;
    }
    body.drawer-opened #drawernav {
        right: 0;
    }
/*
    body.drawer-opened #humberger .icon-bar {
        background: #fff;
    }
*/
    body.drawer-opened #humberger :nth-child(1){
        transform: translate(0, 8px) rotate(45deg);
        -webkit-transform: translate(0, 8px) rotate(45deg);
    }
    body.drawer-opened #humberger :nth-child(2){
        transform: translate(-20px, 0);
        -webkit-transform: translate(-20px, 0);
        opacity: 0;
    }
    body.drawer-opened #humberger :nth-child(3){
        transform: translate(0, -8px) rotate(-45deg);
        -webkit-transform: translate(0, -8px) rotate(-45deg);
    }
    body.drawer-opened #overlay {
        z-index: 3; opacity: 0.3; left: -240px;
    }
}

/* easeInOutExpo
------------------------------*/

#page, #drawernav, .icon-bar, .fixed-content, #overlay, #page-top {
    -webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
    -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
    -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
    transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
    -webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
    -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
    -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
    transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
}

/*------------------------------
hello
------------------------------*/

#hello {
    position: relative;
    overflow: hidden;
}

#hello .copy {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#hello .scroll a, #hello .scroll a:hover {
    color: #fff;
    position: absolute;
    bottom: 1em;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#hello a, #hello a:hover {
    color: #333;
    text-decoration: none;
}

#hello .slide img {
    object-fit: cover;
    width: 100%;
    height: 400px;
}

/*------------------------------
main
------------------------------*/

#main {
    padding: 90px 0;
}

#main .bg-color {
    background: #f1f1f1;
}

.section {
    margin: 90px 0 90px;
}

.hd {
    display: block;
    width: 200px;
    margin: 60px auto;
}

#single {
    text-align: center;
}

#single a {
    word-break:break-all;
}

#single h2 {
    font-size: 24px;
    margin: 60px 0 0;
}

#single h3 {
    font-size: 24px;
    margin: 0;
}

#single p {
    margin-top: 30px;
}

#category ul li {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 18px;
}

#concept,
#info {
    padding-top:150px;
    margin-top:-150px;
}

#gmap {
    width:100%;
    height:400px;
}



/* slick
------------------------------*/

.carousel li {
    padding: 0 5px 20px;
}

/*------------------------------
footer
------------------------------*/

#footer {
    text-align: center;
    background: #e6e6e6;
    padding: 2em 0;
}

.icon {
    width: 32px;
    margin: 32px 12px;
}

/*------------------------------
768px
------------------------------*/

@media (min-width: 768px) {
    
    body {
        font-size: 15px;
    }

    /* nav
    ------------------------------*/
    
    #nav {
        position: absolute;
        text-align: right;
        width: 100%;
    }
    
    #drawernav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        color: #333;
        z-index: 1;
        padding-top: 84px;
    }
    
    #drawernav ul li {
        display: inline-block;
    }
    
    #drawernav ul li img {
        height: 20px;
        width: auto;
    }
    
    #drawernav ul li a {
        color: #333;
        display: inherit; /*check*/
        padding: 0;
        margin-left: 3em;
    }
    
    #drawernav ul li a:hover {
        color: #333;
        background: none;
    }
    
    #drawernav h4 {
        display: none;
    }
    
    /* header
    ------------------------------*/
    
    #header {
        height: 150px;
    }
    
    #header .title {
        top:45px;
    }

    #header .title img {
        height: 70px;
    }
    
    #page {
        padding-top: 150px;
    }
    
    /* main
    ------------------------------*/
    #hello .slide img {
        height: 500px;
    }
    
    #hello .copy {
        font-size: 2rem;
    }
    
    #hello .scroll {
        top: auto;
        bottom: 2em;
    }
    
    #tab-menu {
        text-align: left;
    }

    #tab-box div.active {
        text-align: left;
    }
    
    /* embed
    ------------------------------*/

    .embed {
        position: relative;
        width: 100%;
        padding-top: 43.2%;
    }
    
}

@media (min-width: 992px) {
    
    #drawernav ul li img {
        height: 26px;
    }
    
    #header {
        height: 150px;
    }
    
    #header .title {
        top:40px;
    }
    
    #header .title img {
        height: 80px;
    }
}

/*------------------------------
break point
------------------------------*/

@media (min-width: 768px) {.container {width: 750px;}}
@media (min-width: 992px) {.container {width: 970px;}}
@media (min-width: 1200px) {.container {width: 1170px;}}

.text {display: inline-block;}
@media (min-width: 768px) {.text br {display: none;}}

.hidden {display: none !important}
@media (max-width: 767px) {.pc {display: none !important} .right {text-align: left !important;}}
@media (min-width: 768px) {.sp {display: none !important}}