/*------------------------------
theme name: hitoshizuku
version: 200605
author: yamabatosha
author uri: http://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%;
    background: #1d5aa5;
    font-size: 14px;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN',
        'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'ヒラギノ角ゴシック', Meiryo, sans-serif;
    font-weight: normal;
    letter-spacing: .1em;
/*    word-break: break-all;*/
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    color: #504945;
}

img {
    width: 100%;
    height: auto;
    transition: .3s;
}

.container {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/*------------------------------
font
------------------------------*/

header h1, header h2,
#hello h1, #hello h2 {
    line-height: 1;
    margin: 0;
}

/*
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
}
*/

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 21px;
}

h4, h5, h6 {
    font-size: 18px;
}

.mincho {
    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', Georgia, serif;
}

.gothic {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
}

.white {
    color: #fff;
}

.black {
    color: #504945;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.marker {
    background: linear-gradient(transparent 60%, #ff6 60%);
    display: inline;
    margin-bottom: 30px;
}

/*------------------------------
link
------------------------------*/

a {
    transition: .3s;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
    background: transparent;
}

nav a {
    border: none;
}

a:hover, a:focus, a:active, a.active {
    outline: 0;
    opacity: .7;
}

/*------------------------------
figure
------------------------------*/

figure {
    position: relative;
    overflow: hidden;
    margin: 0;
}

figure:hover figcaption {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
}

figcaption {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
}

figcaption .copy h4 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*------------------------------
decoration
------------------------------*/

.border {
    border-bottom: 1px solid #504945;
}

.dashed {
    border-bottom: 1px dashed #504945;
}

.dotted {
    border-bottom: 1px dotted #504945;
}

hr {
    margin: 2em 0;
    padding: 0;
    width: 100%;
    border: 0;
    border-top: 8px solid #1d5aa5;
}

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: #f0f0f0;
}

::-moz-selection {
    background: #f0f0f0;
}

/*------------------------------
list
------------------------------*/

ul.list li {
    position: relative;
    list-style: none;
}

ul.list li::after {
    display: block;
    content: '';
    position: absolute;
    top: 1em;
    left: -1.5em;
    width: 8px;
    height: 1px;
    background: #504945;
}

/*------------------------------
btn
------------------------------*/

.btn {
    display: inline-block;
    letter-spacing: .2em;
    border-radius: 0;
    padding: .3rem 1rem;
    margin-bottom: 3rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* btn-line
------------------------------*/

.btn-line {
    border: 2px solid #fff;
    color: #1d5aa5;
    background: #fff;
    font-family: 'Brandon Grotesque', sans-serif;
    font-size: 18px;
}

.btn-line:hover, .btn-line:focus, .btn-line:active, .btn-line.active {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

/* btn-blue
------------------------------*/

.btn-blue {
    border: 1px solid #1d5aa5;
    color: #fff;
    background: #1d5aa5;
    border-radius: 32px;
}

.btn-blue:hover, .btn-blue:focus, .btn-blue:active, .btn-blue.active {
    border: 1px solid #1d5aa5;
    color: #1d5aa5;
    background: transparent;
}

/* btn-blue2
------------------------------*/

/*
.btn-blue2 {
    border: 1px solid #2fa8bd;
    color: #fff;
    background: #2fa8bd;
    border-radius: 32px;
}

.btn-blue2:hover, .btn-blue2:focus, .btn-blue2:active, .btn-blue2.active {
    border: 1px solid #2fa8bd;
    color: #2fa8bd;
    background: transparent;
}
*/

/*------------------------------
table
------------------------------*/

table {
    width: 100%;
    text-align: center;
    margin: 0;
}

.table th, .table td {
    padding: 1em;
    line-height: 2;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.table tr:first-child {
    border-top: 1px solid #ddd;
}

.tr-color tr:first-child,.td-color td:first-child {
    background: #f1f1f1;
}

.no-border th, .no-border td, .no-border tr:first-child {
    padding: 0; line-height: 2; border: none;
}

@media (max-width: 767px) {
    .table-sp td {
        display: block; width: 100%;
    }
}

#company td {
/*    text-align: justify;*/
    text-align: left;
}

#company td:last-child {
    padding-bottom: 1em;
}

#news td {
    line-height: 2;
/*    text-align: justify;*/
    text-align: left;
}

#news>tr {
    margin-bottom: 90px;
}

#company td:first-child,
#news td:first-child {
    width:120px;
    white-space: nowrap;
}

#faq tr>td:nth-child(odd) {
    font-family: 'Brandon Grotesque', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding-right: 2em;
}

#faq .q {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 30px;
/*    text-align: justify;*/
    text-align: left;
}

#faq .a {
    padding-bottom: 90px;
/*    text-align: justify;*/
    text-align: left;
}

#faq a {
    color: #1d5aa5;
    border-bottom: 1px dashed #1d5aa5;
/*    word-break: break-all;*/
}

/*------------------------------
dl
------------------------------*/

#news dl {
    width:auto;
    clear: both;
}

#news dt,#news dd {
    margin: 0;
    font-weight: normal;
	line-height: 2;
	letter-spacing: .1em;
}

#news dt {
    float:left;
}

#news dd {
    margin: 0 0 6em 8em;
}

#news dd h2 {
    font-weight: normal;
    font-size: 17px;
    margin-bottom: 17px;
}

#news dd p {
    margin: 0;
}

#news dd img {
    margin: 0 0 20px;
}

@media (max-width: 767px) {
    #news dt {display:block; width: 100%; margin: 0 0 1em 0;}
    #news dd {display:block; width: 100%; margin: 0 0 8em 0;}
}

/*------------------------------
form
------------------------------*/
.mw_wp_form .error {
    color: #ccc!important;
}

.form tr td {
    padding: 8px 0;
}

.form tr td:first-child{
    width: 6em;
    font-family: 'Brandon Grotesque', sans-serif;
    font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    height: 3em;
    padding: 1em;
    vertical-align: middle;
    width: 100%;
    color: #1d5aa5;
    background: #fff;
    border: none;
    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='#1d5aa5' 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.5em;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/*------------------------------
accordion
------------------------------*/

dl#accordion {
    border-top: 8px solid #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

#accordion dt{
    display: block;
    color: #fff;
    width: 100%;
    background: transparent;
    margin: 0 auto;
    padding: 3em 0;
    border-bottom: 8px solid #fff;
    border-top: 0;
    cursor: pointer;
    transition: .3s;
    }

#accordion dd{
    display: none;
    width: 100%;
    color: #504945;
    background: #fff;
    margin: 0 auto;
    padding: 30px 0 0;
    border-bottom: 8px solid #fff;
    }

#accordion dt:hover {
    background: rgba(255,255,255,0.1);
}

#accordion dt.active {
    background: #1d5aa5;
    color: #fff;
}


dl#accordion.company {
    border-top: none;
/*    text-align: justify;*/
    text-align: left;
}

dl#accordion.company dt {
    display: inline;
    color: #fff;
    width: 100%;
    background: transparent;
    padding: 0 0 10px;
    border-bottom: 3px dotted #fff;
    border-top: none;
    cursor: pointer;
    transition: .3s;
}

dl#accordion.company dd{
    display: none;
    width: 100%;
    color: #fff;
    background: #1d5aa5;
    margin-top: 90px;
    padding: 0;
    border-bottom: none;
    }

#accordion dt .mark-w {width: 60px; margin: 20px 0;}
#accordion dd .mark {width: 180px; margin: 60px 0;}
#accordion dd .type {width: 300px; margin: 60px 0;}

/*------------------------------
grid
------------------------------*/

.grid {
    display: flex;
    flex-wrap: wrap;
}

.grid-f, .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-60-center {
    flex: 0 0 100%;
    max-width: 100%; /* IE11s */
    padding: 0 0 2em 0;
}

.grid-top {
    align-items: flex-start;
}

.grid-middle {
    align-items: center;
}

.grid-bottom {
    align-items: flex-end;
}

.grid-left {
    justify-content: flex-start;
}

.grid-center {
    justify-content: center;
}

.grid-right {
    justify-content: flex-end;
}

/*------------------------------
embed
------------------------------*/

.embed {
    position: relative;
    width: 100%;
    padding-top: 125%;
}

.embed iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/*------------------------------
header
------------------------------*/

#header {
    width: 100%;
    height: 60px;
    position: fixed;
    display: table;
    z-index: 3;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

#header h1, nav {
    display: table-cell;
}

#header .title {
    position: absolute;
    top: 14px;
    width: 250px;
    }

/*------------------------------
nav
------------------------------*/

/* drawernav
------------------------------*/

#page {
    padding-top: 60px;
    position: relative;
    z-index: 2;
    left: 0;
    background: transparent;
    color: #fff;
}

#drawernav {
    font-family: 'Brandon Grotesque', sans-serif;
    position: fixed;
    top: 0;
    right: -240px;
    width: 240px;
    height: 100%;
    background: #1d5aa5;
    color: #fff;
    z-index: 1;
    padding-top: 20px;
}

#drawernav ul {
    list-style: none;
    padding: 0;
}

#drawernav ul li {}

#drawernav ul li a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}

#drawernav ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

#drawernav h4 {
    padding: 0 15px;
}

#drawernav img {
    height: 11px;
    width: auto;
}

#humberger {
    position: fixed;
    top: 15px;
    right: 5%;
    z-index: 3;
    width: 25px;
    padding: 6px 0 0;
    cursor: pointer;
}

.icon-bar {
    height: 2px;
    background: #504945;
    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: -webkit-calc(50% - 240px)!important;*/
        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;
}

#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: #504945;
    text-decoration: none;
}

.poem {
    width: 300px;
    margin: 90px 0;
}

.poem-en {
    width: 300px;
    margin: 90px 0;
}

/*------------------------------
main
------------------------------*/

.sea {
    background: url(images/sea-sp.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

@media (min-width: 992px) {
.sea {
    background: url(images/sea-pc.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
}

#tab-menu,
#tab-box div.active,
.justify p {
/*    text-align: justify;*/
    text-align: left;
}

#main .bg-wt {
    background: #fff;
/*    color: #504945;*/
}

#main .bg-bk {
    background: #000;
}

#company{
    padding-top: 60px;
    margin-top: -60px;
}

#profile h3,
#profile h4 {
	margin: 0;
	text-align: left;
	line-height: 1;
}

@media (max-width: 767px) {
    #profile img {
        padding:0 60px 15px;
    }
    #profile p:not(.bold) {
/*        text-align: justify;*/
        text-align: left;
    }
}

/* #single
------------------------------*/
#single-works h2,
#single-works h3,
#single-works h4,
#single-works p,
#single-works img {
    width: 90%;
    margin: auto;
}

#single-works {
    margin: 60px auto 0;
}

#single-works h2 {
    font-family: 'Brandon Grotesque', sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
}

#single-works h3 {
    font-size: 14px;
    text-align: center;
    font-weight: normal;
}

#single-works h4 {
    font-size: 12px;
    text-align: center;
    font-weight: normal;
}

#single-works p {
/*    text-align: justify;*/
    text-align: left;
}

#single-works a {
    color: #1d5aa5;
    border-bottom: 1px dashed #1d5aa5;
    word-break: break-all;
}

#recent-works {
    padding: 30px 0;
    text-align: center;
}

#recent-works h4 {
    font-family: 'Brandon Grotesque', sans-serif;
    text-align: center;
    font-size: 24px;
    line-height: 1;
}

#single-works .lead-en {text-align: left;}

@media (max-width: 767px) {
    #single-works .lead {text-align: left;}
    #single-works .lead br {display: none;}
}

section {
    text-align: center;
    background: #fff;
    color: #504945;
}

#content {
    margin-top: 60px;
    padding-bottom: 120px;
}

#content h3 {
/*    text-align: justify;*/
    text-align: left;
    font-weight: bold;
    padding-top: 90px;
}

#content p,
#content img {
    margin-top: 30px;
}

#content .caption {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

#credit {
    margin: 60px auto;
}
#credit p {
    margin-top: 0;
    text-align: center;
}

/* works
------------------------------*/

.grid-works {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.case-excerpt {
    font-size: 13px;
    color: #333;
/*    text-align: justify;*/
    text-align: left;
    padding: 0 20px;
}

.grid-case {
    text-align: center;
    padding: 0;
    flex: 0 0 50%;
    max-width: 50%; /* IE11s */
}

.case-title {
    color: #000;
    width: 66%;
    padding: 30px 10px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

p.case {
    font-family: 'Brandon Grotesque', sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0;
}

p.client {
    font-size: 10px;
    margin-bottom: 0;
}

p.other {
    font-size: 14px;
    color: #1d5aa5;
    margin-bottom: 0;
}

#works {
    position: relative;
    width: 100%;
}

#works:before {
    content:"";
    display: block;
    padding-top: 66.6666%;
}

#case {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#gmap {
    width:100%;
    height:400px;
}

/* the_posts_pagination
------------------------------*/
#the_posts_pagination {
    text-align: center;
}

#the_posts_pagination nav {
    display: inline-block;
}

.pagination .screen-reader-text {
    display: none;
}

.page-numbers {
    padding: 0 7.5px
}

.page-numbers.current {
    opacity: .7;
}

/* slick
------------------------------*/

.carousel li {
    padding: 0 5px 20px;
}

/*------------------------------
footer
------------------------------*/

#footer {
    text-align: center;
    background: #1d5aa5;
    padding: 2em 0;
}

/*------------------------------
768px
------------------------------*/

@media (min-width: 768px) {
    
    html {
    font-size: 15px;
    }
    
    /* accordion
    ------------------------------*/
    
    #accordion dt .mark-w {margin-right: 20px}
    
    /* grid [max-width for ie11]
    ------------------------------*/
    
    .grid {
        margin: -30px -15px 30px -15px;
    }
    
    .grid-f, .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-60-center {
        padding: 30px 15px 0 15px;
    }
    
    .grid-f {
        flex: 1;
    }
    
    .grid-1 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .grid-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .grid-3 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
    
    .grid-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .grid-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .grid-60-center {
        flex: 0 0 60%;
        max-width: 60%;
        margin-left: 20%;
    }
    
    /* nav
    ------------------------------*/
    #page {
        padding-top: 170px;
    }
    #nav {
        position: absolute;
        text-align: center;
        top: 100px;
        width: 100%;
    }
    #drawernav {
        position: static;
        width: 100%;
        height: auto;
		padding: 0;
        background: none;
        z-index: 1;
    }
    
    #drawernav ul li {
        display: inline-block;
		margin: 0 20px;
    }
    
    #drawernav ul li a {
        display: inline-block; /*check*/
        padding: 0;
    }
    
    #drawernav ul li a:hover {
        background: none;
    }
    
    #drawernav h4 {
        display: none;
    }
/* for IE 11 */
	#drawernav img.top {
		width: 36px;
		height: 13px;
	}
	#drawernav img.works {
		width: 67px;
		height: 13px;
	}
	#drawernav img.news {
		width: 52px;
		height: 13px;
	}
	#drawernav img.contact {
		width: 88px;
		height: 13px;
	}
	#drawernav img.company {
		width: 95px;
		height: 13px;
	}
	#drawernav img.en {
		width: 23px;
		height: 13px;
	}
	#drawernav img.jp {
		width: 20px;
		height: 13px;
	}
	
    /* header
    ------------------------------*/
    
    #header {
        height: 170px;
        font-size: 17px;
    }
    
    #header .title {
    position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -175px;
    width: 350px;
    }
    
    /* main
    ------------------------------*/
    
    #hello .copy {
        font-size: 2rem;
    }
    
    #hello .scroll {
        top: auto;
        bottom: 2em;
    }
    
    .poem-en {
        width: 400px;
    }
    
    #company{
    padding-top: 170px;
    margin-top: -170px;
    }
    
/*
    #tab-menu,
    #tab-box div.active,
    #profile p,
    #news p,
    #logo p {
        text-align: justify;
    }
*/
    
    .form tr td {
        padding: 15px 0;
    }
    
    /* #single
    ------------------------------*/
    #single-works h2,
    #single-works h3,
    #single-works p,
    #single-works img {
        width: 55%;
    }
    
    #single-works h2 {
        font-weight: bold;
        font-size: 30px;
    }
    
    #single-works h3 {
        font-size: 18px;
    }
    
    #single-works h4 {
        font-size: 15px;
    }
    
    /* grid-works
    ------------------------------*/
    .grid-case {
        text-align: center;
        padding: 0;
        flex: 0 0 33.3333%;
        max-width: 33.3333%; /* IE11s */
    }

    /* embed
    ------------------------------*/

    .embed {
        position: relative;
        width: 100%;
        padding-top: 43.2%;
    }

    .embed iframe {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
    
}

/*------------------------------
992px
------------------------------*/

@media (min-width: 992px) {
    
    .grid {
        margin: -60px -30px 60px -30px;
    }
    
    .grid-f, .grid-1, .grid-2, .grid-3, .grid-4, .grid-5 {
        padding: 60px 30px 0 30px;
    }
    
    p.case {
        font-weight: bold;
        font-size: 30px;
    }
    
    p.client {
        font-size: 15px;
    }
}

/*------------------------------
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 (min-width: 768px) {.sp {display: none !important}}
@media (max-width: 767px) {.pc {display: none !important}}

.m0 {margin: 0;}
.left {text-align: left;}
.right {text-align: right;}
.center {text-align: center;}