<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
Theme Name: 
Description: 
Author: Mediacloud
*/

/*###### リセット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;
}
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;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
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-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}


/*###### 固定CSS ######*/
html, body{
	height:100%;
	background-color:#fff;
	color: #333;
	font-size: 17px;
	font-size: 1.0rem;
	font-family: 'Noto Sans JP', sans-serif,"游ゴシック体", "Yu Gothic";
    line-height: 1.7;
    margin:0;
}
p {
    font-size: 17px;
}
img {
    height: auto;
    vertical-align: bottom;
    max-width: 100%;
}
a {
    color:#333;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    transition: .3s;
}
button {
    font-family:  'Noto Sans JP', sans-serif;
}
button:hover {
    cursor: pointer;
}
section {
     width: 100%;
     position: relative;
}
ul {
    list-style: none;
}
.inner {
    position: relative;
    margin: 0 auto;
    padding: 90px 20px;
    max-width: 1200px;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.for-sp {
    display: none;
}
address {
    font-style: unset;
}


/*######アニメーション ######*/
/* フェードイン */
.fadeinA {
    opacity : 0;
    transform: translate(0, 20px);
    transition : all 1000ms;
    }
.fadeinA.show {
    opacity : 1;
    transform : translate(0, 0);
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-moz-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-o-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/* ズームイン */
.zoomin {
    transform: scale(0.5,0.5) translate(0, 20px);
    opacity: 0;
}
.zoomin.show {
    transform: translate(0px, 0px);
    opacity: 1;
    transition: 1s;
}
/* 回転 */
.rotate {
    transform: rotateY(120deg);
    opacity: 0;
}
.rotate.show {
    transform: rotateY(0);
    opacity: 1;
    transition: .8s;
}
/* 順に表示 */
.js-order {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.0s;
}
.js-order.show {
    opacity: 1;
    transform: translateY(0);
}
.js-order.show:nth-of-type(1) {
    transition-delay: 0s;
}
.js-order.show:nth-of-type(2) {
    transition-delay: 0.3s;
}
.js-order.show:nth-of-type(3) {
    transition-delay: 0.6s;
}


/*###### Column ######*/
.Column2 {
  flex: 0 0 50%;
  padding: 0 15px;
  max-width: 50%;
  position: relative;
  padding-bottom: 30px;
}
.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;
  padding-bottom: 30px
}
.Column3_2 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  position: relative;
}



/*###### ヘッダー ######*/
header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
}
/*###### PC用ナビ ######*/
#G-nav {
    height: 90px;
    background: #42a437;
    color:#fff;
}
#G-nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}
#G-nav .logo {
    text-align: left;
}
#G-nav .logo h1 {
    font-size: 13px;
    font-weight: normal;
}
#G-nav .logo img {
    max-width: 280px;
    width: 100%;
}
#G-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
}
#G-nav ul li {
    position: relative;
}
#G-nav ul li a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 25px;
}
/* メディアクエリ */
@media screen and (max-width:768px) {
#G-nav {
    display: none;
}
}


/*###### SP用ナビ ######*/
/* ナビバー部分 */
.sp-nav__wrapper {
    background: #42a437;
    width: 100vw;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 900;
    position: fixed;
}
.sp-nav__wrapper h1 span{
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}
.sp-nav__wrapper h1 img {
    max-width: 250px;
    width: 100%;
}
.sp-nav_contact {
    display: flex;
    align-items: center;
}
.sp-nav_contact p {
    background: #fba33b;
    color: #fff;
    font-weight: bold;
    font-size: 19px;
    border-radius: 100vh;
    padding: 3px 1em;
    margin-right: 25px;
    width: 100%;
}
.sp-nav_contact a {
    display: block;
    margin-right: 20px;
}
@media screen and (min-width: 769px){
.sp-nav__wrapper {
    display: none;
}}
/* ハンバーガー部分 */
.js-hamburger {
    position: relative;
    z-index: 1100;
    cursor: pointer;
    width: 40px;
    height: 24px;
}
.js-hamburger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 100%;
}
.js-hamburger span:nth-of-type(1) {
    top: 0;
}
.js-hamburger span:nth-of-type(2) {
    top: 12px;
}
.js-hamburger span:nth-of-type(3) {
    top: 24px;
}
.js-hamburger.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}
.js-hamburger.active span:nth-of-type(2) {
    opacity: 0;
}
.js-hamburger.active span:nth-of-type(3) {
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}
/* メニュー表示部分 */
#SP-NAV {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 50px 20px;
    background: #357c37a8;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sp-menu-wrapper {
    background: #fff;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    width: 60vw;
    margin: 0 auto;
}
#SP-NAV ul {
}
#SP-NAV li {
    margin: 0 0 10px;
    text-align: center;
}
#SP-NAV li a {
    background: #FFF;
    border: 2px solid #4caf50;
    border-radius: 10px;
    padding: 15px;
    display: block;
    color: #333;
    font-weight: 500;
}

/* メニュー表示部分 お問い合わせ*/
#SP-NAV li.sp-contact a {
    background: #ff9800;
    color: #fff;
    border: none;
}
.sp-content p {
    font-size: 14px;
    font-weight: 500;
    display: inline;
    border-bottom: 1px solid #534741;
}
/* メニュー表示部分 SNS*/
.sp-menu-sns {
    display: flex;
    justify-content: center;
}
.sp-content .sp-menu-sns img {
    display: block;
    margin: 10px 15px 20px;
    width: 100%;
    max-width: 40px;
}
#SP-NAV.panelactive {
    visibility: visible;
    opacity: 1;
}


/*###### 共通 ######*/
h2 {
    font-size: 45px;
    text-align: center;
    margin-bottom: 50px;
}
h2.green_dot,h2.brown_dot,h2.white_dot {
    position: relative;
}
h2.green_dot::after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 102px;
    height: 7px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-image: url("../img/dotline_green.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
h2.brown_dot::after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 102px;
    height: 7px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-image: url("../img/dotline_brown.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
h2.white_dot::after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 102px;
    height: 7px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-image: url("../img/dotline_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.bg_dot {
    background-color: #e8e6e2;
    background-image: linear-gradient(-90deg, transparent 2px, #f8f7f0 2px), linear-gradient(transparent 2px, #f8f7f0 2px);
    background-position: 5px 0;
    background-size: 8px 8px;
}
.bg_green {
    background: #e1f1df;
}
.bg_beige {
    background: #f8f7f0;
}
.blline {
    background: linear-gradient(transparent 75%, #7ac4e8 25%);
    padding: 0 3px 0 3px;
    display: inline;
}



/*###### ファーストビュー ######*/
#MAINIMG {
    margin-top: 90px;
    padding: 80px 0 30px;
}
#MAINIMG .inner {
    display: flex;
    align-items: center;
    padding: 0 40px 30px;
}
#MAINIMG .Column2 {
    padding: 0 15px;
}
#MAINIMG img.fv-illust {
    max-width: 480px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
#MAINIMG img.fv-logo {
    max-width: 513px;
    width: 100%;
    margin-bottom: 35px;
}
#MAINIMG p {
    font-size: 22px;
    margin-bottom: 35px;
}
.fv-button {
    background: #f7931e;
    border-radius: 6px;
    color: #fff;
    font-size: 22px;
    border: none;
    padding: 25px 40px;
    position: relative;
    box-shadow: 0 5px 0 0 #f15a24;
}
.fv-button:hover {
    background: #ff820e;
    transition: .3s;
    box-shadow: none;
    transform: translate3d(0, 5px, 0);
}
.slider_card {
    display: flex!important;
    align-items: center;
}
.card_tate{
    max-width: 100px;
    width: 100%;
    margin-right: 70px;
}
.card_yoko{
    max-width: 170px;
    width: 100%;
    margin-right: 50px;
}
.card_pc {
    max-width: 210px;
    width: 100%;
    margin-right: 50px;
}
.slider_card {
    pointer-events: none;
}


/*###### こんなお悩み ######*/
#INTRO .inner {
    padding-bottom: 0;
}
.worries_wrapper {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 50px 60px;
    position: relative;
}
.worries_wrapper:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -70px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 70px 112.5px 0 112.5px;
    border-color: #ffffff transparent transparent transparent;
}
.worries_wrapper .blline {
    font-size: 20px;
    position: relative;
}
.worries_illust {
    position: absolute;
    content: '';
    display: inline-block;
    width: 95px;
    height: 134px;
    left: 110px;
    top: 70px;
}
.worries_wrapper .worries_text  {
    max-width: 263px;
    width: 100%;
    display: block;
    margin: 20px auto 40px;
}
.worries ul {
    text-align: left;
}
.worries li {
    padding-left: 30px;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    padding: 8px 0 8px 30px;
    border-bottom: 2px dashed #ccc;
}
.worries li:nth-last-of-type(1) {
    border-bottom: none;
}
.worries li:before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    left: 0;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../img/checkbox.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.omakase {
    background: #42a437;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    line-height: 1.3;
    font-weight: bold;
}
.omakase p {
    font-size: 45px;
}
.omakase p span {
    font-size: 30px;
}


/*###### まとめて解決 ######*/
#POINT .row {
    justify-content: space-around;
}
#POINT h2 {
    margin-bottom: 40px;
}
#POINT h2 img {
    max-width: 345px;
    width: 100%;
}
#POINT .Column3 {
    max-width: 365px;
    font-weight: 500;
}
#POINT .Column3 img {
    max-width: 265px;
    width: 100%;
    display: block;
    margin: 0 auto 20px;
}
#POINT h3 {
    background: #fba33b;
    font-size: 30px;
    color: #fff;
    border-radius: 100vh;
    padding: 0 25px;
    margin: 0 auto 25px;
    width: fit-content;
}



/*###### 作れるもの ######*/
#SERVICE {
    position: relative;
}
#SERVICE:before {
    position: absolute;
    background-image: url("../img/wave_gn.svg");
    background-repeat: repeat-x;
    top: -50px;
	content: '';
	height: 110px;
	width: 100%;
}
.service_wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    max-width: 1030px;
    width: 100%;
    margin: 0 auto 50px;
}
.service_wrapper&gt;p {
    max-width: 740px;
    font-size: 15px;
    margin: 0 auto;
}
.service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.service_wrapper h3 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1;
}
.service_wrapper_dtp h3 {
    color: #42a437;
}
.service_wrapper_web h3 {
    color: #46addf;
}
.service_wrapper_others h3 {
    color: #fba33b;
}
.service_wrapper h3 span {
    font-size: 17px;
    color: #666;
    display: block;
}
.service_card {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
#SERVICE .inner&gt;p {
    max-width: 700px;
    display: block;
    margin: 0 auto 50px;
}
.service_card img {
    max-width: 120px;
    width: 100%;
}
.service_card_text h4 {
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: normal;
}
.service_card_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 15px;
}
.service_card_text p {
    font-size: 15px;
    color: #808080;
}


/*###### プラン ######*/
#PLAN .inner&gt;p {
    text-align: center;
    margin-bottom: 50px;
}
.plan_card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 30px;
}
.plan_card_otegaru {
    border: 5px solid #faca76;
}
.plan_card_erisuguri {
    border: 5px solid #a0d8b5;
}
.plan_card_marunage {
    border: 5px solid #9fc1d9;
}
.plan_card {
    text-align: center;
}
.plan_card&gt;p {
    margin-bottom: 15px;
    font-size: 18px;
}
.plan_card h3 img {
    max-width: 280px;
}
.plan_card h4{
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}
.plan_card .price {
    padding: 25px 0;
}
.plan_card .period {
    padding: 25px 0 20px;
}
.plan_card .revision {
    padding: 25px 0 15px;
}
.plan_card .price,.plan_card .period {
    border-bottom: 2px dashed #ccc;
}
.plan_card .price span.number,.plan_card .period span,.plan_card .revision span {
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #fba33b;
}
.plan_card_erisuguri .price span.number,.plan_card_erisuguri .period span,.plan_card_erisuguri .revision span {
    color: #129e46;
}
.plan_card_marunage .price span.number,.plan_card_marunage .period span,.plan_card_marunage .revision span {
    color: #1063a0;
}
.initial {
    margin-top: -10px;
    font-size: 15px;
}
.initial span {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 20px;
}
/* モーダル表示部分*/
.openModal {
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    background: #fba33b;
    border: none;
    box-shadow: 0 5px 0 0 #f17b24;
}
.plan_card_erisuguri .openModal {
    background: #129e46;
    box-shadow: 0 5px 0 0 #007e38;
}
.plan_card_marunage .openModal_marunage {
    background: #1063a0;
    box-shadow: 0 5px 0 0 #0c4a78;
}
.openModal:hover {
    cursor: pointer;
    background: #ff820e;
    transition: .3s;
    box-shadow: none;
    transform: translate3d(0, 5px, 0);
}
.plan_card_erisuguri .openModal:hover {
    background: #017b2e;
}
.plan_card_marunage .openModal:hover {
    background: #004c83;
}
.modalArea {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}
.modalBg {
    width: 100vw;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 1000px;
    width: 100%;
    max-height: 800px;
    overflow-y: scroll;
    padding: 40px 40px 30px;
    background-color: #fff;
}
.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    font-size: 25px;
}
.modal_contents&gt;p {
    background: #fba33b;
    font-size: 20px;
    color: #fff;
    padding: 0 1em;
    margin: 0 auto 30px;
    border-radius: 100vh;
    width: fit-content;
}
.plan_card_erisuguri .modal_contents&gt;p {
    background: #129e46;
}
.plan_card_marunage .modal_contents&gt;p {
    background: #1063a0;
}
.modal_service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.modal_service_card {
    display: flex;
    margin: 10px;
    align-items: center;
}
.modal_service_card img {
    max-width: 90px;
    width: 100%;
    margin-right: 10px;
}
.modal_service_card h5 {
    font-size: 16px;
    font-weight: normal;
    text-align: left;
}
#PLAN .zoomin.show {
    transform: unset;
} 

/*###### 制作の流れ ######*/
.flow_wrapper {
    border-radius: 30px;
    background: #fff;
    padding: 30px;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    width: fit-content;
    position: relative;
}
.flow_wrapper:nth-child(odd) {
    margin-left: auto;
}
.flow_number {
    position: absolute;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: #fba33b;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    top: -30px;
    left: -20px;
    font-weight: bold;
    font-size: 30px;
}
.flow_wrapper_text h3 {
    color: #007e38;
    font-size: 25px;
    background: #f5ecde;
    padding: 0 1em;
    margin-bottom: 15px;
    border-radius: 100vh;
    width: fit-content;
    position: relative;
}
.flow_wrapper_text h3::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-style: solid;
    border-width: 8px 0 8px 19px;
    border-color: transparent transparent transparent #f5ecde;
}
.flow_wrapper img {
    max-width: 270px;
    width: 100%;
}
.flow_wrapper_text {
    max-width: 595px;
    margin-right: 30px;
}


/*###### ルール ######*/
#RULE {
    position: relative;
}
#RULE:before {
    position: absolute;
    background-image: url("../img/wave_wh.svg");
    background-repeat: repeat-x;
    top: -50px;
	content: '';
	height: 110px;
	width: 100%;
}
#RULE:after {
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
}
#RULE:after {
    content: "";
    width: 75vw;
    height: 57%;
    background-color: #f3f1e5;
    position: absolute;
    top: 32%;
    left: 0;
    z-index: -1;
}
#RULE .inner&gt;p {
    text-align: center;
    margin-bottom: 50px;
}
#RULE .Column3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rule_box {
    background: #fff;
    border: 2px solid #ded9c9;
    border-radius: 20px;
    padding: 35px 30px;
    max-width: 340px;
    flex-grow: 1;
}
.rule_box img {
    max-width: 165px;
    width: 100%;
    display: block;
    margin: 0 auto 15px;
}
.rule_box span.blline {
    font-weight: bold;
}


/*###### よくあるご質問 ######*/
#FAQ .inner {
    padding: 60px 20px 90px;
}
.faq_wrapper {
    border-radius: 20px;
    background: #e2f2e0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
}
.faq_box:nth-of-type(1) {
    margin-bottom: 40px;
}

.faq_wrapper h3 {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    background: #42a437;
    padding: 0 1em;
    border-radius: 100vh;
    width: fit-content;
    margin: 0 auto 20px;
}


#FAQ .question-wrapper {
    margin:0 auto 20px;
    width: 100%;
    max-width: 800px;
}
#FAQ .question:before {
    content: "Q1.";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    transform: translateY(-50%);
}
#FAQ .question.question2:before {
    content: "Q2.";
}
#FAQ .question.question3:before {
    content: "Q3.";
}
#FAQ .question.question4:before {
    content: "Q4.";
}
#FAQ .question {
    position: relative;
    cursor: pointer;
    display: flex;
    background:#fff;
    padding: 15px 10px 15px 70px;
    font-size: 20px;
}
#FAQ .question:after {
     font-family: "Font Awesome 5 Free";
    content: '\f067';
    font-weight: 900;
    font-size: 1rem;
    color: #333;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
#FAQ .question:after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../img/faq_open.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
#FAQ .question.open:after {
    background-image: url("../img/faq_close.svg");
}
#FAQ .answer {
    display: none;
    padding: 0 10px 15px 70px;
    background-color: #fff;
    border-top: none;
    position: relative;
    font-size: 17px;
}



/*###### 契約の流れ ######*/
#AGREEMENT h2 {
    z-index: 10;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.agreement_wrapper {
    z-index: 10;
    margin: 0 auto;
    width: 600px;
    height: 600px;
    background: url("../img/contract_circle.png") center no-repeat;
    background-size: contain;
}
.agreement_card {
    max-width: 600px;
    height: 600px;
    padding: 30px 100px 60px;
    display: flex!important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.agreement_card.for-pc img {
    max-width: 100px;
    width: 100%;
    margin-bottom: 20px;
}
.agreement_card h3 {
    font-size: 25px;
}
.agreement_card hr {
    border: 2px dashed #999;
    width: 100%;
}
#AGREEMENT .slick-arrow:before{
    content:""!important;
    width: 40px!important;
    height: 40px!important;
    position: absolute;
    top: 0;
    left: 60px;
}
#AGREEMENT .slick-next:before{
    background: url("../img/arrow_contract.svg")!important;
    background-repeat: no-repeat;
    background-size: contain!important;
    right: 60px;
    left: unset;
}
#AGREEMENT .slick-prev:before{
    background: url("../img/arrow_contract.svg")!important;
    background-repeat: no-repeat;
    background-size: contain!important;
    transform: scale(-1, 1);
  }
#AGREEMENT {
    background: url("../img/contract_bg.jpg") center no-repeat;
    background-size: cover;
    position: relative;
}
#AGREEMENT::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247,147,30,0.1);
    z-index: 1;
}


/*###### お問い合わせ ######*/
#CONTACT .inner&gt;p {
    max-width: 830px;
    display: block;
    margin: 0 auto 50px;
}
.contact_wrapper {
    background: #fff;
    border: 5px solid #8ec887;
    border-radius: 20px;
    margin: 0 auto;
    padding: 40px;
    max-width: 830px;
    width: 100%;
}
.contact-form {
    width: 100%;
}
.contact-form label {
    display: block;
}
.contact-form th span {
    color: #fff;
    font-size: 13px;
    background: #46addf;
    border-radius: 100vh;
    padding: 0 10px;
    margin-right: 10px;
}
.contact-form th,.contact-form td {
    padding: 10px;
}
.contact-form th {
    text-align: left;
    vertical-align: middle;
    width: 30%;
}
.contact-form td {
    width: 70%;
}
.contact-form input,.contact-form textarea {
    width: 100%;
    border: none;
    background: #f2f2f2;
    padding: 10px 15px;
}
.contact-form input.radio {
    width: unset;
    background: unset;
}
.contact-form textarea {
    height: calc( 1em * 10 );
}
.to-privacy {
    font-weight: normal;
}
.to-privacy a {
    border-bottom: 2px solid #fba33b;
}
.submit button {
    padding: 10px 60px;
    width: fit-content;
    margin: 0 auto 40px;
    border-radius: 3px;
    color: #fff;
    font-size: 20px;
    background: #fba33b;
    border: none;
    box-shadow: 0 5px 0 0 #f17b24;
}
.submit button:hover {
    background: #ff820e;
    transition: .3s;
    box-shadow: none;
    transform: translate3d(0, 5px, 0);
}
#PRIVACY {
    max-height: 200px;
    overflow-y: scroll;
    background: #fff9f2;
    padding: 30px;
}
#PRIVACY h3 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
#PRIVACY p {
    font-size: 14px;
}



/*###### バナー ######*/
.banner {
    opacity: 0;
    position: fixed;
    right: 0;
    transform: scale(0.5,0.5) translate(390px, 0);
    bottom: 100px;
    max-width: 260px;
    width: 100%;
    z-index: 20;
    transition: .5s;
}
.banner.show {
    opacity: 1;
    right: 0;
    transform: translate(0px, 0px);
    transition: 1s;
}
.banner img {
    filter: drop-shadow(0px 0px 4px rgb(0, 0, 0, .2));
}
.banner img:hover {
    opacity: .8;
    transition: .3s;
}
.banner a {
    display: block;
}

/*###### トップへ ######*/
#PAGE-TOP {
    opacity: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-weight: bold;
    padding: 0.7em;
    text-align: center;
    background: #fb7a25;
    color: #fff;
    border-radius: 100vh;
    width: 50px;
    height: 50px;
    transition: 0.5s;
    z-index: 100;
}
#PAGE-TOP.show {
    opacity: 1;
    transition: 2s;
}
#PAGE-TOP a {
    font-weight: bold;
    color: #fff;
    display: block;
}
/* マウスオーバー時 */
#PAGE-TOP:hover {
    background: #fba33b;
    transition: .3s;
    cursor: pointer;
}


/*###### フッター ######*/
footer {
    background: #42a437;
    color: #fff;
}
footer .inner {
    padding: 40px 0;
}
footer .inner&gt;p {
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.footer_company {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}
.footer-left {
    text-align: right;
}
.footer_company img {
    max-width: 200px;
    width: 100%;
    margin-right: 20px;
}
.footer-right p {
    margin-bottom: 15px;
    font-size: 15px;
}
footer address {
    text-align: center;
    font-size: 13px;
}

</pre></body></html>