/*
Theme Name: Expo Revolution
Description:Expo Revolutionのサービスサイト
Theme URI: https://revo48.jp
Author: 株式会社シェリーココ
Author URI: https://revo48.jp
Version: 1.00
*/
/* ========== Reset ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (max-width: 480px) {}

/* ========== Base typography ========== */
body, html {
    height: 100%;
}

body {
  -webkit-print-color-adjust: exact;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12pt;
  color: #000000;
  line-height: 1.6em;
  -webkit-text-size-adjust: 100%;
  font-weight: bold;
}

.body-wrap {
    overflow-x: hidden;
}

section {
    width: 100%;
}

.contents-wrap {
    width: 92%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

main {
    padding-top: 70px;
}

section .section-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

section .section-wrap h2 {
  color: #0077A3;
  margin-bottom: 20px;
  font-size: 24pt;
  text-align: center;
}

section .section-wrap h3 {
  color: #0077A3;
  margin-bottom: 50px;
  font-size: 16pt;
  text-align: center;
}

section .section-wrap .contents-wrap .wrap.flex {
  display: flex;
  flex-wrap: wrap;
}


@media screen and (max-width: 480px) {

section .section-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contents-wrap {
    padding-top: 0px;
    padding-bottom: 0px;
}

}

/* ========== Layout Basic ========== */
/* ヘッダー */
header {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 70px;
    z-index: 999;
    /* ドロワーを前面に出したい場合、念のため追加 */
}

header .site-logo {
    width: 40%;
    max-width: 250px;
    padding-top: 15px;
}

header .site-logo img {
  width: 100%;
  height: auto;
}

header nav {
    margin-left: auto;
}

/* ------------------------------------------------- */
header nav ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

header nav ul li {
    padding-left: 10px;
    padding-right: 10px;
}

header nav ul.sub {
    font-size: 10pt;
}

/* ドロワーメニュー全体 */
.drawer-menu {
  position: fixed;
  top: 0;
  right: -70%;
  /* 初期は画面外（右側）に隠しておく */
  width: 70%;
  height: 100vh;
  background-color: rgba(255,255,255,0.90);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 縦方向に中央配置などにしたい場合 */
  align-items: flex-end;
  /* リストを右寄せに */
  padding: 20px;
}

/* .drawer-menuが.open状態になったら右:0 で表示 */
.drawer-menu.open {
    right: 0;
}

/* ドロワー内のulを縦並び（右寄せ） */
.drawer-menu ul {
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 20px;
}

/* ハンバーガーボタン */
.menu-button {
    display: inline-block;
    margin-left: auto;
    /* ロゴの次に右側へ配置 */
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
    /* ドロワーより手前に出す */
    margin-right: 5px;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* スマホ時のみ表示、PC時は非表示などの分岐 */
@media screen and (min-width: 481px) {
    .menu-button {
        display: none;
    }
}

@media screen and (max-width: 480px) {

    /* PCではドロワーを使わずに別レイアウトにしたいなら、
     ここでnavを display:none → .drawer-menu を display:block; にする等、条件調整 */
    header nav {
        display: none;
        /* スマホ時はデフォルト非表示にしてドロワーに任せる */
    }

    header nav ul {
        font-size: 18pt;
    }

    header nav ul li {
        padding-left: 20px;
        padding-right: 20px;
        line-height: 3em;
        font-size: 14pt;
    }

    header nav ul.sub {
        font-size: 14pt;
    }
}

/*フッター*/
footer {
    width: 100%;
    color: #FFFFFF;
    background-color: #007A9F;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

footer .wrap .logo {
    margin-right: 20px;
}

footer .wrap .logo img {
    max-width: 400px;
}

footer .wrap .info {
    width: 100%;
    max-width: 500px;
}

footer .wrap .info .company {}

footer .wrap .info .address {}

footer .wrap copyright {
    margin-left: auto;
}

@media screen and (max-width: 480px) {

footer .wrap .logo img {
    max-width: 200px;
}

footer .wrap .info {
margin-bottom: 30px;
}

footer .wrap copyright {
    margin-left: auto;
    margin-right: auto;
}

}

/* ========== Layout トップページ ========== */


/* ファーストビュー用セクション */
section.fv-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* 全画面表示させる */
    overflow: hidden;
    /* 動画がはみ出さないようにする */
}

/* 背景動画のスタイル */
section.fv-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画面を埋めるように拡大・トリミング */
    z-index: 1;
}

/* キャッチコピーを動画の上に重ねる */
.catch-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    filter: drop-shadow(10px 10px 10px rgb(0, 0, 0));
    width: 90%;
    max-width: 800px;
}


@media screen and (max-width: 480px) {


}


/* ========== Layout 説明文 ========== */

section#intro p {
  text-align: center;
  font-size: 14pt;
  line-height: 2em;
}

@media screen and (max-width: 480px) {

section#intro p {
  text-align: left;
  font-size: 12pt;
  line-height: 2em;
}

section#intro .contents-wrap {
padding-top: 80px;
padding-bottom: 80px;
}

}


/* ========== Layout 製品概要 ========== */

section#product {
  background-image: url(images/bg1.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

section#product .section-wrap {
  background-color: rgba(255,255,255,0.80);
}

section#product .section-wrap h2 {
}

section#product .section-wrap h3 {
}

section#product .section-wrap .contents-wrap {
}

section#product .section-wrap .contents-wrap h4 {
  color: #0077A3;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 20pt;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #0077A3;
}

section#product .wrap p {
  text-align: center;
  font-size: 14pt;
  line-height: 2em;
}

section#product .flex {
}

section#product .flex dl {
  width: 21%;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 30px;
}

section#product .flex dl dd {
  margin-bottom: 20px;
}

section#product .flex dl dd img{
  width: 100%;
  height: auto;
}

section#product .flex dl dt {
  font-size: 12pt;
  line-height: 1.6em;
}

@media screen and (max-width: 480px) {

section#product .section-wrap .contents-wrap {
  margin-bottom: 50px;
}

section#product .wrap p {
  text-align: left;
  font-size: 12pt;
  line-height: 1.6em;
}

section#product .flex dl {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 30px;
}


}



/* ========== Layout サービス概要 ========== */

section#service {
  background-color: #007A9F;
  color: #FFFFFF;
}

section#service .section-wrap h2 {
  color: #FFFFFF;
}

section#service .section-wrap h3 {
  color: #FFFFFF;
}

section#service .flex {
  margin-bottom: 50px;
}

section#service .flex dl {
  width: 27.33%;
  margin-left: 3%;
  margin-right: 3%;
  margin-bottom: 80px;
}

section#service .flex dl dt {
  font-size: 20pt;
  line-height: 1.6em;
}

section#service .flex dl div {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

section#service .flex dl div img{
  width: 60%;
  max-width: 150px;
  height: auto;
}

section#service .flex dl dd {
  font-size: 10pt;
  line-height: 1.6em;
  text-align: left;
}

section#service .wrap p {
  text-align: center;
  font-size: 14pt;
  line-height: 2em;
}

@media screen and (max-width: 480px) {

section#service .flex dl {
  width: 94%;
  margin-left: 3%;
  margin-right: 3%;
  margin-bottom: 80px;
}

section#service .flex dl div img{
  max-width: 100px;
}

section#service .wrap p {
  text-align: left;
  font-size: 12pt;
  line-height: 2em;
}

}



/* ========== Layout 導入事例 ========== */

section#introduction {
  background-image: url(images/bg2.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

section#introduction .section-wrap {
  background-color: rgb(0 0 0 / 60%);
}

section#introduction .section-wrap h2 {
  color: #FFFFFF;
}

section#introduction .section-wrap h3 {
  color: #FFFFFF;
}

section#introduction .flex {
}

section#introduction .flex article {
  width: 46%;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 30px;
  color: #000000;
  border-radius: 10px;
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 4%;
  padding-right: 4%;
}

section#introduction .flex article h4 {
  font-size: 16pt;
  line-height: 1.6em;
  margin-bottom: 10px;
  text-align: left;
}

section#introduction .flex article .name {
  font-size: 12pt;
  line-height: 1.6em;
  margin-bottom: 10px;
  text-align: left;
}

section#introduction .flex article .detail {
  font-size: 16pt;
  line-height: 1.6em;
  margin-bottom: 20px;
  text-align: left;
}

section#introduction .flex article .discription {
  font-size: 10pt;
  line-height: 1.6em;
  margin-bottom: 20px;
  text-align: left;
}

section#introduction .flex article .img {
  margin-bottom: 20px;
}

section#introduction .flex article .img img{
  width: 100%;
  height: auto;
}


@media screen and (max-width: 480px) {

section#introduction .flex article {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 30px;
  color: #000000;
  border-radius: 10px;
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 4%;
  padding-right: 4%;
}

}




/* ========== Layout プラン紹介 ========== */

section#plan {
  background-image: url(images/bg3.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

section#plan .section-wrap {
  background-color: rgba(0,122,159,0.80);
}

section#plan .section-wrap h2 {
  color: #FFFFFF;
}

section#plan .section-wrap h3 {
  color: #FFFFFF;
}

section#plan .flex {
}

section#plan .contents-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

section#plan .flex article {
    width: 31.33%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 30px;
    color: #000000;
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 2%;
    padding-right: 2%;
}

section#plan article .plan-num {
  color: #9FC8D5;
  font-size: 16pt;
  line-height: 1.6em;
  margin-bottom: 10px;
}

section#plan article .wrap {
  margin-bottom: 20px;
  height: 15em;
}

section#plan article h4 {
  color: #000000;
  font-size: 18pt;
  line-height: 1.6em;
  margin-bottom: 20px;
}

section#plan article .title {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #FFFFFF;
  background-color: #007A9F;
  margin-bottom: 20px;
}

section#plan article ul {
  list-style-type: none;
  margin-bottom: 10px;
}

section#plan article ul li {
  text-align: left;
}

section#plan article .price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

section#plan article .price p {
  font-size: 18pt;
  line-height: 1.6em;
}

section#plan article .price .num {
  font-size: 50pt;
  line-height: 1.6em;
}

section#plan article .discription {
  font-size: 10pt;
  line-height: 1.6em;
  text-align: left;
}

@media screen and (max-width: 480px) {

section#plan .flex article {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 30px;
    color: #000000;
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 6%;
    padding-right: 6%;
}

section#plan article .wrap {
  margin-bottom: 20px;
  height: auto;
}

}




/* ========== Layout お問い合わせ ========== */

section#contact {
  background-image: url(images/contact.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 450px auto;
}

section#contact .contents-wrap {
  max-width: 800px;
  padding-top: 0px;
}

section#contact .contactform7 {
  padding-top: 30px;
}

.form dl {
margin-bottom: 30px;
}
.form dl dt {
font-weight: bold;
margin-bottom: 10px;
text-align: left;
}
.form dl dd {
}

.form label {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    white-space: nowrap;
    margin-right: 20px;
    margin-bottom: 10px;
}

.form label input {
    margin-right: 10px;
}
.form label span {
display: inline-block;
}

.wpcf7 input::placeholder {
color: #CFCFCF;
}
.wpcf7 textarea::placeholder {
color: #CFCFCF;
}

.wpcf7 input {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14pt;
    background-color: #f9f9f9;
}

.wpcf7 select {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14pt;
    background-color: #f9f9f9;
}

.wpcf7 textarea {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14pt;
    font-weight: normal;
    background-color: #f9f9f9;
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 10pt;
    text-align: left;
}

.wpcf7 .wpcf7-acceptance input {
    width: auto;
}

.wpcf7 .wpcf7-submit {
    border: none;
    background-image: linear-gradient(120deg, rgba(1, 138, 231, 1), rgba(0, 191, 181, 1));
    border-radius: 50px;
    color: #FFFFFF;
}

.wpcf7 .wpcf7-submit:disabled {
    background-color: #d7d7d7;
background-image: none;
}

@media screen and (max-width: 480px) {

section#contact {
  background-image: url(images/contact.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 300px auto;
  padding-bottom: 250px;
}

section#contact .contents-wrap {
  text-align: left;
}




}






