@charset "UTF-8";

/*=========================================

common

=========================================*/

html, body {
	height: 100%;
	background: #fff;
}

html *,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	color: #222;
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333;
}

p {
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

#FV,
#introduction,
#faq,
#media {
    width: 70%;
    margin: 0 auto;
}

#FunctionsList {
    width: 80%;
    margin: 0 auto;
}

#about h2,
#features h2,
#introduction h2,
#point h2,
#plan h2,
#faq h2,
#flow h2,
#media h2,
#FunctionsList h2,
#voice h2 {
    font-size: 36px;
    text-align: center;
    padding-bottom: 50px;
    line-height: 1.5;
}

#introduction h3,
#faq h3,
#media h3,
#FunctionsList h3,
#voice h3 {
    width: 500px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
    border-radius: 36px;
    background: #dd597b;
    color: #fff;
    margin: 0 auto 50px !important;
}

.s_title {
    display: block;
    color: #dd597b;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 1920px) {
    /* .worries_container {
        width: 1200px;
        margin: 0 auto;
    } */
}

@media (max-width: 1024px) {
    #FV {
        width: 90%;
    }
}

@media (max-width: 425px) {
    #about h2,
    #features h2,
    #introduction h2,
    #point h2,
    #plan h2,
    #faq h2,
    #flow h2,
    #media h2,
    #FunctionsList h2,
    #voice h2 {
        font-size: 30px;
    }
    #introduction h3,
    #faq h3,
    #media h3,
    #FunctionsList h3,
    #voice h3 {
        width: 90%;
    }
}


/*=========================================

ヘッダー

=========================================*/

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

header h1 {
    margin: 0;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

.navLogin {
    display: flex;
    align-items: center;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    padding: 15px;
    font-size: 14px;
}

.gnavi li a{
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#ef839f;
}

.gnavi li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #ef839f;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);
}

.login_btn a::before {
    content: url(../image/login.png);
    display: inline-block;
    vertical-align: middle;
    transform: scale(0.9);
    padding-right: 10px;
}

.login_btn a {
    display: block;
    background: #dd597b;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    padding: 10px 35px 5px 25px;
    text-align: center;
}

.login_btn a:hover {
    background: #ef839f;
    transition: all 0.3s;
}

#navArea {
    display: none;
}


/* スマホメニュー */

.sp_groNav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }

  .open .sp_groNav {
    left: 0;
    opacity: 1;
  }

  .sp_groNav .inner {
    padding: 25px;
  }

  .sp_groNav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
      flex-direction: column;
  }

  .sp_groNav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #537790;
  }

  .sp_groNav .inner ul li.check {
      border-bottom: 0;
  }

  .sp_groNav .inner ul li a {
    display: block;
    color: #dd597b;
    font-size: 14px;
    padding: 20px;
    text-decoration: none;
    transition-duration: 0.2s;
  }

  .sp_groNav .inner ul li a:hover {
    background: #e4e4e4;
  }

  .toggle_btn {
    display: block;
    position: fixed;
    top: 25px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #333;
    border-radius: 4px;
    transition: all .5s;
  }

  .toggle_btn span:nth-child(1) {
    top: 4px;
  }

  .toggle_btn span:nth-child(2) {
    top: 14px;
  }

  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }

  .open .toggle_btn span {
    background-color: #fff;
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }

  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }

  #mask {
    display: none;
    transition: all .5s;
  }

  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }

  @media (max-width: 1024px) {
    .navLogin nav {
        display: none;
    }

    #navArea {
        display: block;
    }

    .login_btn {
        margin: 0 40px 0 auto;
    }
  }

  @media (max-width: 1024px) {

  }

  @media (max-width: 960px) {

  }

  @media (max-width: 768px) {

  }

  @media (max-width: 428px) {
    .logo {
        width: 180px;
    }

    .login_btn {
        display: none;
    }

    .login_btn a {
        padding: 10px 20px 5px 10px;
    }
  }

  @media (max-width: 375px) {
    header {
        height: 70px;
    }
  }


/*=========================================

ファーストビュー

=========================================*/

#FV {
    padding: 100px 0;
}

#FV img {
    width: 75%;
    margin: 0 auto;
}

.siteTitle p {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.emphasis {
    color: #dd597b;

}

.emphasis span {
    font-size: 36px;
}

.emphasis_under span {
    color: #dd597b;
    font-size: 40px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .siteTitle p {
        font-size: 24px;
    }

    .emphasis span {
        font-size: 28px;
    }

    .emphasis_under span {
        font-size: 28px;
    }
}

@media (max-width: 425px) {
    #FV {
        padding: 100px 0 50px;
    }

    .siteTitle p {
        font-size: 22px;
    }

    #FV img {
        width: 100%;
    }
}


/*=========================================

悩み

=========================================*/

#worries {
    background: #f8f8f8;
    padding: 100px 0 50px;
}

#worries h2 {
    font-size: 30px;
    text-align: center;
    padding-bottom: 20px;
    color: #52b8e8;
}

#worries img {
    margin: 0 auto;
}

#worries p {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

#worries p span {
    color: #dd597b;
    font-size: 32px;
}

.worries_container {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}

.worries_inner {
     background: url(../image/worries_image.jpg) no-repeat;
     background-size: cover;
     background-position: center;
     position: relative;
     width: 100%;
     height: auto;
}

.worries_inner ul li {
    background: rgba(255, 255, 255, 0.8);
    margin: 2%;
    padding: 15px 20px;
    line-height: 1.5;
    border-radius: 20px;
    width: 60%;
}

.worries_inner ul li::before {
    content: url(../image/check.png);
    display: inline-block;
    vertical-align: middle;
    transform: scale(0.9);
    padding-right: 10px;
}

.worries_inner2 {
    border-radius: 22px;
    background-color: rgb(255, 255, 255);
    box-shadow: 2.294px 3.277px 62px 0px rgba(221, 89, 123, 0.4);
    font-size: 16px;
    padding: 30px;
    line-height: 1.5;
    margin: 50px auto 100px;
    width: 90%;
  }

  .worries_inner2 img {
    margin-bottom: 10px !important;
    width: 3%;
  }

  .solution {
    margin-top: 50px;
    position: relative;
  }

  .bg_line {
    width: 60%;
    height: 20px;
    background: #fceca7;
    margin: 0 auto;
    position: absolute;
    top: 85px;
    right: 0;
    left: 0;
    border-radius: 10px;
  }

  @media (max-width: 1024px) {
    .worries_container {
        width: 95%;
    }

    .bg_line {
        width: 70%;
    }
  }

  @media (max-width: 768px) {
    .worries_inner ul {
        padding-left: 10px;
    }
    .worries_inner ul li {
        width: 90%;
    }

    .worries_inner2 img {
        width: 5%;
    }

    .bg_line {
        width: 90%;
    }
  }

  @media (max-width: 425px) {
    #worries {
        padding: 50px 0 0;
    }

    #worries h2 {
        font-size: 28px;
    }

    .worries_inner ul li {
        width: 95%;
    }

    .worries_inner {
        background-position: 80%;
   }

   .worries_inner2 img {
        width: 10%;
    }

    .bg_line {
        width: 100%;
        top: 140px;
      }
  }



/*=========================================

about

=========================================*/

#about {
    padding: 80px 0;
    background: url(../image/bg_01.png) no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	width: 100%;
	height: auto;
}

.about_container {
    display: flex;
    width: 70%;
    margin: 0 auto;
}

.about_container img {
    width: 50%;
    height: 50%;
}

.about_container p {
    padding: 20px;
}

.about_container p span {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about_container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .about_container {
        flex-direction: column;
    }

    .about_container p {
        padding: 10px;
    }

    .about_container img {
        width: 80%;
        height: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 425px) {
    #about {
        padding: 50px 0;
    }
}


/*=========================================

cta

=========================================*/

#cta {
    background: #dd597b;
    padding: 30px 0;
}

.cta_container {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px;
}

.cta_container p {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    padding-bottom: 20px;
}

.cta_container p span {
    font-size: 30px;
    color: #dd597b;
}

.cta_container img {
    width: 20%;
    margin-right: 30px;
}

.cta_btn a {
    display: block;
    background: #dd597b;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 18px;
}

.cta_btn a:hover {
    background: #ef839f;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .cta_container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .cta_container {
        width: 90%;
    }

    .cta_container img {
        width: 30%;
    }
}

@media (max-width: 425px) {
    .cta_container {
        flex-direction: column;
        width: 90%;
    }

    .cta_container img {
        width: 40%;
        margin: 0 auto;
    }

    .cta_btn a {
        font-size: 16px;
    }
}


/*=========================================

Features

=========================================*/

#features {
    background: #f8f8f8;
    padding: 100px 0;
}

.features_inner,
.features_inner2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 70%;
    margin: 20px auto 0;
    padding: 30px;
}

.features_inner h3,
.features_inner2 h3 {
    font-size: 24px;
}

.features_inner p,
.features_inner2 p {
    color: #52b8e8;
    font-size: 22px;
    font-weight: 500;
}

.features_inner img,
.features_inner2 img {
    width: 30%;
    height: 30%;
}

.features_inner p span,
.features_inner2 p span {
    background: linear-gradient( 0deg, rgb(221,89,123) 0%, rgb(82,184,232) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 500;
    opacity: 0.702;
}

.features_inner ul,
.features_inner2 ul {
    list-style: disc;
}

.features_inner ul li,
.features_inner2 ul li {
    line-height: 1.7;
    padding-bottom: 10px;
}

.features_inner ul li::marker,
.features_inner2 ul li::marker {
    color: #52b8e8;
}


.features_contents,
.features_contents2 {
    width: 60%;
}

@media (max-width: 1024px) {
    .features_inner,
    .features_inner2 {
        width: 90%;
    }

    .features_inner img,
    .features_inner2 img {
        width: 40%;
        height: 40%;
    }
}

@media (max-width: 768px) {
    .features_inner {
        flex-direction: column;
    }

    .features_inner2 {
        flex-direction: column-reverse;
    }

    .features_contents,
    .features_contents2 {
        width: 90%;
    }

    .features_inner img,
    .features_inner2 img {
        width: 60%;
        height: 60%;
    }
}

@media (max-width: 425px) {
    #features {
        padding: 50px 0;
    }

    .features_inner ul,
    .features_inner2 ul {
        padding-left: 0;
    }

    .features_inner img,
    .features_inner2 img {
        width: 80%;
        height: 80%;
    }
}


/*=========================================

FunctionsList

=========================================*/

#FunctionsList {
    padding: 100px 0;
}

.FunctionsList_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 50px;
}

.listItem1,
.listItem2,
.listItem3,
.listItem4,
.listItem5,
.listItem8,
.listItem9,
.listItem12,
.listItem15 {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.14);
    width: 160px;
    height: 160px;
    text-align: center;
    margin: 0 20px 20px 0;
    font-size: 14px;
    padding: 55px 20px 10px;
}

.listItem6,
.listItem7,
.listItem10,
.listItem11,
.listItem13,
.listItem14,
.listItem16,
.listItem17,
.listItem18 {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.14);
    width: 160px;
    height: 160px;
    text-align: center;
    margin: 0 20px 20px 0;
    font-size: 14px;
    padding: 40px 20px 10px;
}

.listItem1::after {
    content: url(../image/list_01.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem2::after {
    content: url(../image/list_02.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem3::after {
    content: url(../image/list_03.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem4::after {
    content: url(../image/list_04.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem5::after {
    content: url(../image/list_05.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem6::after {
    content: url(../image/list_06.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem7::after {
    content: url(../image/list_07.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem8::after {
    content: url(../image/list_08.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem9::after {
    content: url(../image/list_09.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem10::after {
    content: url(../image/list_10.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem11::after {
    content: url(../image/list_11.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem12::after {
    content: url(../image/list_12.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem13::after {
    content: url(../image/list_13.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem14::after {
    content: url(../image/list_14.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem15::after {
    content: url(../image/list_15.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem16::after {
    content: url(../image/list_16.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem17::after {
    content: url(../image/list_17.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.listItem18::after {
    content: url(../image/list_18.png);
    display: block;
    transform: scale(0.9);
    padding-top: 10px;
}

.text {
    text-align: center;
    font-size: 20px;
}

@media (max-width: 1024px) {
    #FunctionsList {
        width: 90%;
    }
}

@media (max-width: 425px) {

#FunctionsList {
    padding: 50px 0;
}
}


/*=========================================

point

=========================================*/

#point {
    background: url(../image/bg_01.png) no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	width: 100%;
	height: auto;
    padding: 100px 0;
}

.point_container {
    background: #fff;
    width: 60%;
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 40px 30px;
}

.point_container p {
    padding-top: 20px;
}

.point_container p span {
    font-weight: 600;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .point_container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .point_container {
        width: 90%;
    }
}

@media (max-width: 425px) {
    #point {
        padding: 50px 0;
    }
}


/*=========================================

掲載メディア

=========================================*/

#media {
    padding: 100px 0;
}

.media_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.media_container img {
    margin: 10px;
    width: 15%;
    height: 15%;
}

@media (max-width: 1024px) {
    #media {
        width: 90%;
    }
}

@media (max-width: 425px) {
    #media {
        padding: 50px 0;
        width: 95%;
    }

    .media_container img {
        margin: 10px;
        width: 30%;
        height: 30%;
    }
}


/*=========================================

料金プラン

=========================================*/

#plan {
    background: url(../image/bg_02.png) no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	width: 100%;
	height: auto;
    padding: 100px 0 50px;
}

.plan_wrapper {
    display: flex;
    justify-content: center;
}

.plan_container {
    display: flex;
    justify-content: center;
}

.plan_inner,
.plan_inner2,
.plan_inner3,
.plan_inner4 {
    background: #fff;
    border: 1px solid #ccc;
    width: 250px;
    margin-right: 20px;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    flex: 1;
}

.plan_inner4 {
    margin-right: 0;
}

.plan_inner hr,
.plan_inner2 hr,
.plan_inner3 hr,
.plan_inner4 hr {
    height: 1px;
    background: #ccc;
    border: none;
    width: 80%;
}

.plan_inner h4,
.plan_inner2 h4,
.plan_inner3 h4,
.plan_inner4 h4 {
    font-size: 24px;
    text-align: center;
}

.plan_inner h5,
.plan_inner2 h5,
.plan_inner3 h5,
.plan_inner4 h5 {
    font-size: 14px;
    font-weight: 100;
    text-align: center;
    padding: 10px 0;
}

.plan_inner ul,
    .plan_inner2 ul,
    .plan_inner3 ul,
    .plan_inner4 ul {
        padding-left: 10px;
    }

.plan_inner ul li,
.plan_inner2 ul li,
.plan_inner3 ul li,
.plan_inner4 ul li {
    list-style: disc;
    line-height: 1.5;
}

.plan_inner ul li::marker,
.plan_inner2 ul li::marker,
.plan_inner3 ul li::marker,
.plan_inner4 ul li::marker {
    color: #52b8e8;
}

.plan_inner h4 {
    color: #777;
}

.plan_inner2 h4 {
    color: #e6a1b3;
}

.plan_inner3 h4 {
    color: #5ca4e8;
}

.plan_inner4 h4 {
    color: #b58547;
}

.plan_inner_point {
    text-align: center;
    color: #6991a2;
    height: 80px;
    font-weight: 600;
    padding-top: 10px;
}

.price {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}

.plan_login a,
.plan_contact a {
    display: block;
    background: #dd597b;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    border-radius: 50px;
    position: absolute;
    bottom: 15px;
    right: 10px;
    left: 10px;
}

.explanatoryText {
    margin: 30px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .plan_wrapper {
        flex-direction: column;
    }

    .plan_inner,
    .plan_inner2,
    .plan_inner3,
    .plan_inner4 {
        width: 22%;
        margin: 30px;
    }

    .plan_inner ul,
    .plan_inner2 ul,
    .plan_inner3 ul,
    .plan_inner4 ul {
        padding-left: 50px;
    }
}

@media (max-width: 425px) {
    .plan_container {
        flex-direction: column;
    }

    .plan_inner,
    .plan_inner2,
    .plan_inner3,
    .plan_inner4 {
        width: 90%;
        margin: 0 auto 20px;
    }

    .plan_inner h4,
    .plan_inner2 h4,
    .plan_inner3 h4,
    .plan_inner4 h4 {
        font-size: 36px;
    }
}



/*=========================================

各プランの比較

=========================================*/

#comparison {
    background: url(../image/bg_03.png) no-repeat;
	background-size: cover;
	background-position: center bottom;
	position: relative;
	width: 100%;
	height: auto;
    padding-bottom: 50px;
}

#comparison img {
    margin: 0 auto;
}

#comparison h3 {
    font-size: 30px;
    color: #ef839f;
    text-align: center;
    margin: 50px 0;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
}

table th,
table td {
    border-bottom: solid 1px #ccc;
    padding: 22px 5px;
    width: 200px;
    line-height: 1.5;
    font-size: 14px;
}

table th {
    background: #f8f8f8;
}

table td {
    background: #fff;
    text-align: center;
}

table td span {
    font-size: 12px;
    color: #777;
}

.blank {
    background: none;
}

.head th {
    color: #fff;
    font-weight: 400;
    border-radius: 20px;
    border-bottom: 0;
    padding: 15px 0;
    font-size: 16px;
}

.recommendation th {
    color: #fff;
    background: #dd597b;
}

.recommendation td {
    font-weight: 600;
}

.free {
    background: #777;
}

.economy {
    background: #e6a1b3;
}

.corporate {
    background: #5ca4e8;
}

.enterprise {
    background: #b68647;
}
.note {
    font-size: 14px;
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.7;
}

.note a {
    text-decoration: underline;
    color: #dd597b;
}

.button td {
    padding: 10px;
}

.comparison_login a,
.comparison_contact a {
    display: block;
    border: 1px solid #dd597b;
    background: #fff;
    color: #dd597b;
    text-align: center;
    padding: 10px 15px;
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .table_container {
        margin: 0 15px;
    }

    .note {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .table_container {
        overflow-x: scroll;
      }

      table {
        width: 800px;
        margin: 0 20px;
      }
}

@media (max-width: 425px) {
    .note {
        width: 95%;
    }
}




/*=========================================

FAQ

=========================================*/

#faq {
    padding: 100px 0;
}

.accordion-area{
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.question {
    position: relative;
    cursor: pointer;
    font-size:15px;
    line-height: 1.5;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

.question::before,
.question:after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background: #333;

}
.question::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);

}
.question::after{
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

.question.close::before{
	transform: rotate(45deg);
}

.question.close::after{
	transform: rotate(-45deg);
}

.question span {
    color: #52b8e8;
    font-size: 20px;
    font-weight: 500;
}
.answer {
    display: none;
    background: #fafafa;
	margin:0 3% 3% 3%;
    padding: 3%;
    color: #777;
    font-size: 14px;
}

.answer span {
    color: #dd597b;
    font-size: 20px;
    font-weight: 500;
}

.answer a {
    color: #dd597b;
}

.answer a:hover {
    text-decoration: underline;
}

.faq_btn a {
    display: block;
    border: 1px solid #dd597b;
    text-align: center;
    width: 200px;
    padding: 15px 20px;
    border-radius: 50px;
    color: #dd597b;
    margin: 50px auto 0;
}

.faq_btn a:hover {
    background: #dd597b;
    color: #fff;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    #faq {
        width: 90%;
    }
}

@media (max-width: 428px) {
    #faq {
        width: 100%;
        padding: 50px 0;
    }

    .accordion-area {
        padding-left: 0;
    }
}


/*=========================================

ご利用の流れ

=========================================*/

#flow {
   background: url(../image/bg_01.png) no-repeat;
   background-size: cover;
   background-position: center;
   position: relative;
   width: 100%;
   height: auto;
   padding: 100px 0;
}

.flow_inner,
.flow_inner2 {
    background: #fff;
    width: 70%;
    margin: 0 auto 30px;
    border: 1px solid #dd597b;
    border-radius: 20px 20px 0 0;
}

.flow_inner h4,
.flow_inner2 h4 {
    background: #dd597b;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.flow_contents {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow_contents a {
    text-decoration: underline;
    color: #52b8e8;
}

.flow_item,
.flow_item2 {
    border: 1px solid #ccc;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 20px;
    width: 20%;
}

.flow_item h5 {
    font-size: 18px;
}

.flow_item hr {
    height: 2px;
    background: #52b8e8;
    border: none;
}

.flow_item2 p {
    color: #52b8e8;
    font-weight: 600;
}

.flow_item2 span {
    display: block;
    color: #333;
    padding-top: 10px;
}

.flow_inner2 p {
    padding: 20px 40px;
}

.attention {
    text-align: right;
    padding: 0 10px 10px 0;
}

.arrow_d {
    display: none;
}

@media (max-width: 1024px) {
    .flow_inner,
    .flow_inner2 {
        width: 90%;
    }

    .flow_item,
    .flow_item2 {
        width: 25%;
    }
}

@media (max-width: 425px) {
    #flow {
        padding: 50px 0;
    }

    .flow_contents {
        flex-direction: column;
    }

    .flow_item,
    .flow_item2 {
        width: 70%;
    }

    .attention {
        text-align: left;
        padding: 15px;
    }

    .flow_inner2 p {
        padding: 20px;
    }

    .arrow_r {
        display: none;
    }

    .arrow_d {
        display: block;
    }
}


/*=========================================

Userの声

=========================================*/

#voice {
    background: #f8f8f8;
    padding: 100px 0;
}

.voice_container {
    width: 70%;
    margin: 0 auto;
    display: flex;
}

.voice_box {
    border: 1px solid #ccc;
    margin: 20px;
    padding: 20px;
}

.voice_box h4 {
    padding: 15px 0;
}

.voice_box p {
    font-size: 14px;
}

.voice_box span {
    display: block;
    text-align: right;
}

.voice_btn a {
    display: block;
    border: 1px solid #dd597b;
    text-align: center;
    width: 200px;
    padding: 15px 20px;
    border-radius: 50px;
    color: #dd597b;
    margin: 50px auto 0;
}

.voice_btn a:hover {
    background: #dd597b;
    color: #fff;
    transition: all 0.3s;
}

@media(max-width: 1100px) {
    .voice_container {
        width: 80%;
    }
}

@media (max-width: 1024px) {

}

@media (max-width: 960px) {
    .voice_container {
        width: 90%;
    }

    .voice_box {
        margin: 20px 10px;
    }
}

@media (max-width: 768px) {
    .voice_container {
        flex-direction: column;
    }

    .voice_box_inner {
        display: flex;
        justify-content: space-between;
        padding-right: 30px;
    }

    .voice_box_inner img {
        width: 40%;
    }
}

@media (max-width: 428px) {
    #voice {
        padding: 50px 0;
    }
    .voice_box_inner {
        flex-direction: column;
        padding-right: 0;
    }

    .voice_box_inner img {
        width: 100%;
    }
}


/*=========================================

利用企業様

=========================================*/

#introduction {
    padding: 100px 0;
}

.introduction_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.introduction_container img {
    margin: 10px;
    width: 15%;
    height: 15%;
}

@media (max-width: 1024px) {
    #introduction {
        width: 90%;
    }
}

@media (max-width: 425px) {
    #introduction {
        width: 95%;
        padding: 50px 0;
    }

    .introduction_container img {
        width: 30%;
        height: 30%;
    }
}


/*=========================================

フッター

=========================================*/

footer {
    background: #f8f8f8;
    padding: 50px;
}

footer p {
    padding-left: 20%;
}

footer p img {
    width: 180px;
}

.footer_container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.footer_container ul li {
    line-height: 2.5;
    font-size: 14px;
}

small {
    font-size: 12px;
    display: block;
    text-align: center;
    padding-top: 100px;
}

@media (max-width: 1024px) {
    footer p {
        padding-left: 13%;
    }
    .footer_container {
        width: 90%;
    }
}

@media (max-width: 960px) {
    footer {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 428px) {
    footer {
        padding: 30px 0 50px;
    }
    .footer_container {
        flex-direction: column;
    }

    small {
        padding: 50px 0;
    }
}


/*=========================================

トップへ

=========================================*/

#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background: #dd597b;
	border-radius: 5px;
	width: 80px;
	height: 80px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size:14px;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #ef839f;
}

#page-top {
	position: fixed;
	right: 20px;
	bottom:20px;
	z-index: 2;
	opacity: 0;
	transform: translateX(100px);
}


#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

@media (max-width: 428px) {
    #page-top {
        position: fixed;
        right: 10px;
        bottom:70px;
        z-index: 2;
        opacity: 0;
        transform: translateX(100px);
    }

    #page-top a{
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 375px) {
    #page-top {
        bottom: 100px;
    }
}


/*=========================================

下部固定ログイン

=========================================*/

.fix_btn {
    display: none;
  }

  @media (max-width: 428px) {
    .fix_btn {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1;
    }

    .fix_btn a {
        display: block;
        background: #dd597b;
        color: #fff;
        font-size: 22px;
        padding: 20px 0 10px;
        text-align: center;
    }

    .fix_btn a::before {
        content: url(../image/login.png);
        display: inline-block;
        vertical-align: middle;
        transform: scale(0.9);
        padding-right: 10px;
    }
  }

	.bot-link a {
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.bot-link a:hover {
    background: #555;
}
