@charset "UTF-8";

/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}


/*------------------------------------------------------
 Base (Mobile First)
------------------------------------------------------*/
* {
    box-sizing: border-box;
}
html {
    height: 100%;
    font-size: 62.5%;
    background: #e6e6e6;
}
body{
  color: #000;
  width: 100%;
  height: 100%;
  margin: 0;
    line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  font-size:1.4rem;/* 16px*/
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif; 
}
a {
    text-decoration: none;
    color: #000;
    transition: .3s;
}
a:hover {
    opacity: 0.7;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h1{
    font-size: 2.4rem;
}
h2 {
    font-size: 4rem;
    font-weight: bold;
}
h1,
h2,
.tap,
.top_menu,
.subpage_title {
    font-family: 'Cabin';
    font-style: italic;
}
em {
    color: #0099FF;
}
.pc {
    display: none;
}
.sp {
    display: block;
}
.wrap {
    overflow: hidden;
    min-height: 100vh;
}

/* header
================================================ */
header {
    position: relative;
    z-index: 999;
}
.menu-btn {
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #787878;
    position: absolute;
    transition: 0.3s;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
}
#menu-btn-check {
    display: none;
}
.menu-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    background-color: #003d50;
    transition: all 0.5s;/*アニメーション設定*/
    color: #FFF;
    z-index: 999;
}
.logo_menu {
    fill: #FFF !important;
}
.menu-content a {
    color: #FFF;
}
.menu-content span {
    font-size: 1.2rem;
    text-align: center;
    margin-top:auto
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* nav
================================================ */
header ul {
    margin-left: 10px;
}
header li {
    position: relative;
}
.main_manu {
    margin-top: 30px;
}
nav {
    padding: 10px 5% 10%;
    font-size: 3rem;
    line-height: 1.5;
    font-family: 'Cabin';
}
.submenu {
    font-size: 1.8rem;
}
.main_manu .submenu.first {
    margin-top: 10px;
}
.active:before {
    content: "";
    display: block;
    position: absolute;
    top: 18px;
    left: -20px;
    border: 5px solid transparent;
    border-left: 10px solid #000;
    animation: carrent 1s forwards;
    opacity: 0;
}
@keyframes carrent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
  }

.menu-content .active:before {
    border-left: 10px solid #FFF;
}
.main_manu .submenu.active:before {
    top: 10px;
}

/* contents
================================================ */
main {
    display: block;
    height: 100%;
}
section {
    position: relative;
    margin: 30% auto;
    z-index: 1;
}
.main-copy {
    margin-top: 20%;
    transform: translateY(50px);
    opacity: 0;
    animation: up 0.5s forwards;
}
@keyframes up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }

.main-copy h2 {
    position: absolute;
    width: 100%;
    text-align: right;
    transform: translateY(-70%);
    color: #FFF;
}
.scroll {
    position: absolute;
    left: 10%;
    bottom: 0;
    transform: translateY(50%);
    color: #707070;
}
.scroll:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 50px;
    background: #707070;
    top: 100%;
    left: 50%;
}
.arrow:after {
    position: absolute;
    top: 55px;
    left: 50%;
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #707070;
    border-bottom: 1px solid #707070;
    transform: rotate(-45deg);
    margin-left: -5px;
}
.arrow:before {
    position: absolute;
    top: 50px;
    left: 50%;
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #707070;
    border-bottom: 1px solid #707070;
    transform: rotate(-45deg);
    margin-left: -5px;
}
.title-left,
.title-right {
    position: absolute;
    bottom: 100%;
    border-bottom: 2px solid #FFF;
    font-style: italic;
    line-height: 1.1;
    transform: translateY(20px);
}
.title-right {
    right: 0;
    padding: 0 4% 10px 10%;
}
.title-left {
    padding: 0 10% 10px 4%;
}
.frame {
    margin: 0 5%;
    padding: 40px 5% 30px;
    background: rgba(255,255,255,0.5);
}
.content-center,
.content-right,
.content-left {
    display: flex;
}
.content-center .frame {
    width: 90%;
}
.contet-center-all .frame {
    width: 100%;
    margin: 0;
}
.content-right .frame,
.content-left .frame {
    max-width: 85%;
    min-width: 60%;
    width: auto;
    margin: 0;
}
.content-right {
    justify-content: flex-end;
}
.content-left {

}
.col2 {
    display: flex;
    flex-direction: row;
    font-size: 3rem;
    line-height: 1;
}
.col2 li {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 40px;
    min-height: 140px;
    overflow: hidden;
    text-align: center;
    align-items: center;
    color: #FFF;
}
.col2 li a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.top_menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 60px 4%;
    font-size: 3.6rem;
    line-height: 1;
    background: url(../images/print_service.png) center center no-repeat;
    background-size: cover;
    color: #FFF;
}
.top_menu .tap {
    position: absolute;
    bottom: 10px;
    right: 20px;
}
.top_menu .tap a,
.top_menu .tap a:after  {
    color: #FFF !important;
    border-color: #FFF !important;
}
.tap {
    display: block;
    margin-top: 2rem;
    text-align: right;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
}
.tap a,
.tap span {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    border-bottom: 2px solid #000;
}
.tap a:after,
.tap span:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -7px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    transform: rotate(-45deg);
}
.tap input {
    border: none;
    font-style: italic;
}
.logo_title {
    max-width: 160px;
    margin-bottom: 1rem;
}
.brand ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.brand ul li {
    margin: 0 5px;
}
.brand img {
    vertical-align: middle !important;
}
.access .frame {
    padding-bottom: 0;
}
iframe {
    vertical-align: bottom;
    margin: 20px -5% 0;
    width: 110%;
    filter: grayscale(100%);
}

.company {
    margin-top: 40%;
    margin-bottom: 0;
}
.sub_page .contact .frame {
    padding-right: 0;
}
.form dt {
    padding: 10px 0;
    color: #707070;
}
.form dd {
    margin-bottom: 10px;
}
.required:after {
    content:"必須";
    margin-left: 10px;
    background: #707070;
    padding: 2px 5px;
    color: #fff;
    font-size: 1.2rem;
    display: inline-block;
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.form dd input,
.form dd textarea {
    padding: 10px;
    border: none;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 16px;
}
input::placeholder,
textarea::placeholder {
    color:#D9D7D7;
}
.sub_page .contact .frame .tap {
    margin-right: 10%;
}
table.list {
    border-collapse:separate;
    border-spacing: 10px;
}
table.list th,
table.list td {
    padding: 20px 0 10px;
    border-top: 1px solid #000;
}
table.list tr:last-child th,
table.list tr:last-child td {
    border-bottom: 1px solid #000;
}
table.list th {
    min-width: 80px;
    vertical-align: top;
}
table.list tr:last-child th,
table.list tr:last-child td {
    padding-bottom: 20px;
}
table.list tr:last-child th {
    border-bottom: none;
}
/* footer
================================================ */
footer {

}

/* sub_page
================================================ */
.sub_page .menu-main > ul {
    display: none;
}
.sub_page main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.sub_page article {
    display: flex;
    height: 100%;
    width: 100%;
    flex-grow: 1;
}
.sub_page p {
    margin-top: 1.7rem;
}
.sub_page section {
    display: block;
    margin: 20% 0 0;
    flex-grow: 1;
}
.sub_page .frame {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 100%;
    padding: 60px 10% 30px 7%;
    flex-grow: 1;
}
.sub_page .frame .tap {
    margin-top: auto;
}
.sub_page h2 {
    position: absolute;
    width: 150%;
    text-align: right;
    transform: translate3d(-12%,-20%,0) rotate(-90deg);
    transform-origin: right top;
    top: 0;
    right: 0;
    font-size: 4rem;
    color: #D4D4D4;
}
.sub_page h3 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.sub_page .brand_logo {
    position: absolute;
    top: 0;
    max-width: 50%;
    transform: translateY(-50%) !important;
}
.subpage_title {
    width: 100%;
    font-size: 3rem;
    position: absolute;
    top: 0;
    left: 6%;
    transform: translateY(-50%) !important;
    line-height: 1;
}
.sub_page .brand_logo img {
    max-height: 100px;
    width: auto;
}
img.line {
    max-width: 268px;
}
.line.sp {
    display: block;
    width: 90%;
    max-width: 508px;
    position: fixed;
    left: 50%;
    bottom: 10%;
    z-index: 100;
    text-align: center;
    transform: translateX(-50%);
}
.line.sp a {
    display: inline-block;
    position: relative
}
.line.sp span {
    display: inline-block;
    content: "";
    position: absolute;
    bottom: 100%;
    right: 10%;
    width: 30px;
    height: 30px;
    padding: 20px;
    border-radius: 6px 6px 0 0;
    background: rgba(138,138,138,0.3);
}
.line.sp span:before,
.line.sp span:after {
    display: block;
    content: "";
    position: absolute;
    top: 6px;
    left: 18px;
    width: 4px;
    height: 30px;
    border-radius: 2px;
    background: #FFF;
}
.line.sp span:before {
    transform: rotate(-45deg);
}
.line.sp span:after {
    transform: rotate(45deg);
}

/*------------------------------------------------------
 Tablet ~
------------------------------------------------------*/
@media screen and (min-width:768px) {
    .main_manu {
        width: 240px;
    }
    section {
        margin: 200px auto;
    }
    .company {
        margin-top: 300px;
    }

    .brand ul li {
        margin: 0 20px;
    }
    .sub_page header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 20px;
    }
    .sub_page {
        -ms-overflow-style: none;    /* IE, Edge 対応 */
        scrollbar-width: none;       /* Firefox 対応 */
    }  
    .sub_page::-webkit-scrollbar {  /* Chrome, Safari 対応 */
        display:none;
    }    
    .sub_page .menu-main > ul {
        display: block;
    }
    .sub_page section {
        margin-top: 200px;
        margin-left: 260px;
    }
    .sub_page .frame {
        width: 100%;
        padding: 100px 10% 30px !important;
    }
    .sub_page h2 {
        width: 100%;
        padding-right: 30px;
        transform: rotate(0deg) translateY(-50%);
        color: #000;
        font-size: 2.6rem;
    }
    .subpage_title {
        font-size: 6rem;
    }
    .sub_page .frame .tap {
        margin-top: 100px;
    }
    .sub_page main {
        margin-top: 0;
    }
    .sub_page .brand_logo {
        margin-left: -5%;
    }
    .sub_page .brand_logo img {
        max-height: 150px;
    }
}

/*------------------------------------------------------
 PC
------------------------------------------------------*/
@media screen and (min-width:1200px) {
    body {
        font-size: 1.6rem;
    }
    .pc {
        display: block;
    }
    .sp,
    .line.sp  {
        display: none;
    }
    h1 {
        font-size: 3.6rem;/* 36px*/
    }
    h2,
    .col2 {
        font-size: 10rem;
    }
    .sub_page header,
    header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 60px;
    }
    .logo_pc {
        position: fixed;
        bottom: 60px;
        left: 60px;
    }

    .content-center,
    .content-right,
    .content-left {
        margin-left: 260px;
    }
    .scroll {
        left: 50%;
    }
    .scroll:after {
        height: 200px;
    }
    .arrow:after {
        top: 185px;
    }
    .arrow:before {
        top: 180px;
    }
    .main-copy {
        margin: 460px 0 300px;
    }
    .frame {
        padding: 140px 6% 40px;
        min-width: 60%;
    }
    #about .frame,
    #brand .frame,
    #company .frame {
        padding-bottom: 110px;
    }
    .contet-center-all .frame,
    .content-right .frame, .content-left .frame {
        margin: 0 40px;
    }
    .title-left, .title-right {
        transform: translateY(80px);
        border-bottom: 6px solid #FFF;
    }
    .company .frame {
        text-align: right;
    }
    .top_menu {
        padding: 140px 4%;
        font-size: 8rem;
    }
    .top_menu .tap {
        bottom: 30px;
    }
    table.list {
        display: inline-block;
        text-align: left;
    }

    .tap {
        font-size: 3rem;
    }
    #service .inner {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 2rem;
    }
    .logo_title {
        padding-right: 30px;
        max-width: 40%;
    }
    .brand ul li {
        margin: 0 50px;
    }
    #access {
        width: 70%;
    }
    #contact .frame {
        min-width: 600px;
    }
    #contact .tap {
        font-size: 4rem;
    }
    #access .frame {
        text-align: right;
        padding-right: 2%;
        overflow: hidden;
    }
    iframe {
        width: 90%;
        height: 300px;
        margin: 20px -2.5% 0;
    }
    .company .frame {
        margin-right: 0;
    }
    .sub_page h2 {
        font-size: 6rem;
    }
    .sub_page .frame {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
    form {
        max-width: 800px;
    }
    .sub_page .contact .frame .tap {
        margin: 60px 0 80px;
    }
    .line.pc {
        max-width: 268px;
        margin: 35px 0;
    }
}


/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up {
    transform: translateY(50px);
    opacity: 0;
}
.u-fade-type-up p,
.u-fade-type-up .frame div,
.u-fade-type-up table,
.u-fade-type-up.top_menu div {
    transform: translateY(100px);
    opacity: 0;
}
.u-fade-type-slide-right {
    right: -100%;
    opacity: 0;
}
.u-fade-type-slide-left {
    left: -100%;
    opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active,
.u-fade-type-up.is-active p,
.u-fade-type-up.is-active .frame div,
.u-fade-type-up.is-active table,
.u-fade-type-up.top_menu.is-active div {
    transition: .8s;
    transform: translateY(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}
.u-fade-type-up.is-active p,
.u-fade-type-up.is-active .frame div,
.u-fade-type-up.is-active table,
.u-fade-type-up.top_menu.is-active div {
    transition-delay: .3s;
}

.u-fade-type-slide-right.is-active {
    transition: .5s;
    transition-delay: .3s;
    right: 0;
    opacity: 1;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}
.u-fade-type-slide-left.is-active {
    transition: .5s;
    transition-delay: .3s;
    left: 0;
    opacity: 1;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}