@charset "utf-8";
/*
Theme Name: Mediacloud2021
Description: Mediacloud2021
Version: 1.0
Author: Mediacloud
*/

/*-------------------
reset 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%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1.5;
display:grid;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
a {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
*, *::before, *::after {
box-sizing: border-box;
}
/* change colours to suit your needs */
ins {
background-color: #ff9;
color: #000;
text-decoration: none;
}
/* change colours to suit your needs */
mark {
background-color: #ff9;
color: #000;
font-style: italic;
font-weight: bold;
}
del {
text-decoration: line-through;
}
abbr[title], dfn[title] {
border-bottom: 1px dotted;
cursor: help;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #372c20;
margin: 1em 0;
padding: 0;
}
input, select {
vertical-align: middle;
}


/*-------------------

共通CSS

-------------------*/
html, body {
font-size: 16px;
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
color: #4d4d4d;
background: #f7f2e3;
}
p, td, th, li {
line-height: 2;
font-size: 16px;
}
*, *: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;
}
img {
max-width: 100%;
height: auto;
vertical-align: bottom;
}
a {
color: #5F564D;
text-decoration: none;
}
a:hover {
color: #726A62;
}
a:active {
color: #726A62;
}
section {
width: 100%;
padding: 160px 0 0;
}
.inner {
max-width: 1024px;
box-sizing: border-box;
position: relative;
margin: 0 auto;
}
.row {
display: flex;
flex-wrap: wrap;
}
h1 {
}
h2 {
font-size:90px;
text-align: center;    
letter-spacing: 2.5px;
color:#29abe2;
font-family: "Gill Sans";
font-weight: 600;
line-height: 1;
}
h3 {
font-size:90px;
line-height: 1;
font-family: "Gill Sans";
font-weight: normal;
font-style: italic;
}


/*----- Column -----*/
.Column2 {
flex: 0 0 50%;
padding:0 15px;
max-width: 50%;
position: relative;
}
.Column3 {
flex: 0 0 calc(100% / 3);
max-width: calc(100% / 3);
padding: 0 15px;
position: relative;
padding-bottom: 30px;
}
.Column3_1 {
flex: 0 0 33.333%;
max-width: 33.333%;
position: relative;
}
.Column3_2 {
flex: 0 0 66.666%;
max-width: 66.666%;
position: relative;
}
.Column4 {
flex: 0 0 calc(100% / 4);
max-width: calc(100% / 4);
padding: 0 15px;
position: relative;
padding-bottom: 30px;
}
.Column4_1 {
flex: 0 0 25%;
max-width: 25%;
position: relative;
}
.Column4_3 {
flex: 0 0 75%;
max-width: 75%;
position: relative;
padding-bottom: 30px;
}




/*-----  Nav  -----*/
nav {
color:#5F564D;
}
.gnav-top {
  position: absolute;
  top: 10%;
  text-align: center;
}
.gnav-top img {
    margin-bottom:60px;
    width:85%;
}
.gnav-top .gnav-menu-item {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
}
.gnav-bottom {
    font-size:14px;
    margin: 0 auto;
    right: 0;
    left: 0;
    position: absolute;
    bottom: 10%;
    font-weight:bold;
}
#Gnav.container {
  max-width: 100vw;
}
#Gnav li a:hover {
  color:#9fa0a0;
  text-decoration: none;
}
.navbar {
  text-align:center;
}

/*----- Hamburger Menu -----*/
#nav-drawer {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: fixed;
    right: 20px;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}
/*アイコンのスペース*/
#nav-open {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span {
    position: absolute;
    height: 3px;
    width: 30px; 
    border-radius: 3px;
    background: #4d4d4d;
    display: block;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
#nav-open span:nth-child(1) {
    top: 0;
}
#nav-open span:nth-child(2) {
    top: 10px;
}
#nav-open span:nth-child(3) {
    top: 20px;
}
/*メニューの中身*/
#nav-content {
}
.header-logo-menu {
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    background: #fff;
}
/* ナビ開いてる時のボタン */
#nav-open.active span:nth-child(1) {
    top : 45%;
    left: 0;
    background : #fff;
    -webkit-transform: rotate(315deg);
    -moz-transform   : rotate(315deg);
    transform        : rotate(315deg);
}
#nav-open.active span:nth-child(2),
#nav-open.active span:nth-child(3) {
    top: 45%;
    left: 0;
    background : #fff;
    -webkit-transform: rotate(-315deg);
    -moz-transform   : rotate(-315deg);
    transform        : rotate(-315deg);
}
.active {
    opacity: 1;
    top: 0;
}
.SPnav.active {
    opacity: 1;
    width: 100vw;
    height: 100vh;
}
#nav-open.active {
    opacity: 1;
    z-index: 4;
}
.SPnav {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #fff;
    text-align: center;
    width: 100%;
    display: none;
    transition: opacity .6s ease, visibility .6s ease;
    height: 100vh;
}
.SPnavl li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
.SPnav li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
}
.SPnav.active {
    opacity: 0.9;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    background: #000;
    margin-top: 0;
    padding-top: 30px;
}
.li_wrapper {
    top: 23%;
    position: absolute;
    width: 100%;
}
/* スマホ向けメニュー */
.SPnav {
  list-style: none;
  margin-top: 60px;
}
.SPnav li, .SPnav li a {
  color: #FFF;
  font-size: 20px;
  padding-bottom: 10px;
}
.SPnav .menu-item img {
    width: 15%;
    margin-bottom: 20px;
}
@media screen and (min-width:1025px) {
  .header-logo-menu {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  #Gnav {
    display: none;
  }
}




/******----HEADER-----******/
header {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 200px;
    background: #fff;
    box-shadow: 2px 2px 4px -2px grey inset;
}

/******----FOOTER-----******/
footer {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
footer {
  background: url("../img/footerbg.jpg");
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer .inner_wrapper {
  max-width: 100vw;
  background-color: #1a1a1a;
  position: relative;
}
.footer_inner {
position: relative;
padding: 50px 0;
max-width: 1024px;
margin: 0 auto;
text-align: center;
}
.footer_inner img {
width: 160px;
margin: 30px 0 50px;
}
address {
color: #fff;
font-style: normal;
font-size: 12px;
}
.company {
 margin: 0 auto ;
}
.menulist {
writing-mode: vertical-rl;
margin-bottom:40px;
}
footer  li a {
color: #fff;
font-weight: normal;
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
footer  li a:hover {
color:#9fa0a0;
text-decoration: none;
}
footer  li {
line-height: 1.8;
padding: 0 10px;
}
footer p {
 line-height: 1.5;
 font-size: 16px;
 margin-bottom: 10px;
 color: #fff;
}
footer .inner .Column3_1 {
  display: block;
}
.footer_ramen {
  max-width: 150%;
  position: absolute;
  top: -160px;
  right: -90px;
}
footer .instagram {
  width: 80%;
  left: 15px;
  position: absolute;
}
footer .instagram:hover {
  filter: brightness(70%);
}
footer .instagram img {
  max-width: 120px;
}
.footer_logo {
  z-index: 10;
  max-width: 550px;
  margin: 0 auto;
  right: 0;
  left: 0;
  height: auto;
  position: absolute;
  top: 50px;
}
footer address a { color: #231815; }
footer address a:hover {
  color: #000;
  text-decoration: none;
}
footer address {
  margin-bottom: 0;
}



/*-------------------

Top共通

-------------------*/
.fadeIn{
    opacity: 0;
    transition: .8s;
    position: relative;
    top: 80px; 
}

.active {
    opacity: 1; 
    top: 0;
}

.l-in {
    opacity: 0;
    transition: .8s;
    position: relative;
    left: -10vw;
}
.active-l {
    opacity: 1;
    left: 0;
}

.r-in {
    opacity: 0;
    transition: .8s;
    position: relative;
    right: -10vw;
}
.active-r {
    opacity: 1;
    right: 0;
}
.for-sp {
    display: none;
}


/******----MAIN----******/
main{
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 3;
    overflow-x: hidden;
}
#MAIN {
    height: 100vh;
    position: relative;
    width: calc(100vw - 202px);
}
#MAIN .slider {
    background-size: cover;
}
#MAIN .slide1 {
    background: url(../img/slider1.jpg) center no-repeat;
    background-size: cover;
    height: 100vh;
}
#MAIN .slide2 {
    background: url(../img/slider2.jpg)  center no-repeat;
    background-size: cover;
    height: 100vh;
}
#MAIN .slide3 {
    background: url(../img/slider3.jpg) center no-repeat;
    background-size: cover;
    height: 100vh;
}
.main-inner {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 40%;
    margin: 0 auto;
    color: #fff;
}
.en {
    font-size:40px;
    font-weight: 500;
    text-shadow: 2px 2px 6px #00000087;
}
.ja {
    font-size:20px;
    text-shadow: 2px 2px 6px #00000087;
}
.h2-ja {
    line-height: 1;
    font-size: 21px;
    font-weight: bold;
    color:#29abe2;
    text-align: center;
    margin-bottom: 110px;
}


/******----SERVICE----******/
.sv .Column2:first-child {
    padding: 0;
}
.sv.row {
    margin: 0 0 110px;
}
.sv.row .Column2:nth-child(2) {
    padding: 0 110px;
}
.r-sv.row .Column2:first-child {
    padding: 0 110px;
}
.r-sv.row .Column2:nth-child(2) {
    padding: 0;
}
.sv-img {
    background: #bca78f;
    padding: 20px 0;
    display: inline-table;
}
.sv-img img,.r-sv.row .sv-img img{
    max-width: 105%;
}
.r-sv.row .sv-img img{
    float: right;
}
.sv-intro {
    width: 80%;
}
.sv-subtitle {
    font-size: 26px;
    font-weight: bold;
}





/******----CONTACT----******/
#CONTACT {
    margin-bottom: 70px;
}
.w1020 {
    max-width: 1020px;
    margin: 0 auto;
}
#CONTACT p {
    text-align: center;
    margin-bottom: 40px;
}
.contact .h2-ja {
    margin-bottom: 40px;
}
#CONTACT table {
    width: 100%;
    margin-bottom: 40px;
}
#CONTACT table th,#CONTACT table td {
    padding: 15px 0;
}
#CONTACT table th {
    width: 30%;
    vertical-align: middle;
    color:#5f564d;
}
#CONTACT table td {
    width: 70%;
}
#CONTACT table td input,#CONTACT table textarea {
    background: #fefdfc;
    width: 100%;
    padding: 5px 10px;
}
.need {
    color:#a67c52;
}
.note {
    color: #5f564d;
}
.agree {
    border-bottom: 1px solid #5f564d;
}
.submit {
    background: #29abe2;
    padding: 5px 60px;
    border-radius: 2px;
    color: #fff;
}



/******----PRIVACYPOLICY----******/
.privacy-policy span {
    font-weight: bold;
}
#PRIVACYPOLICY {
    margin-bottom: 160px;
}