/*===========================================================================*/
/*  reset  */
/*===========================================================================*/

*,
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*===========================================================================*/
/*  共通  */
/*===========================================================================*/
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt" 1;
    line-height: 2;
}
.l-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.l-inner_s {
    max-width: 600px;
    margin: 0 auto;
}
.l-inner_max {
    max-width: 95%;
    margin: 0 auto;
}
.c-section,
.usecase-area {
    padding: 100px 0;
}
.c-section-title {
    font-size: 3rem;
    line-height: 1.5;
}
.c-section-title_2nd {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
}
.mt-01 {
    margin-top: 1rem;
}
.mt-02 {
    margin-top: 2rem;
}
.mt-03 {
    margin-top: 3rem;
}
.t-c {
    text-align: center;
}
p {
    text-align: justify;
}
.pc {
    display: block;
}
.sp {
    display: none;
}

@media screen and (max-width: 900px) {
    .l-inner {
        padding: 0 5%;
    }
    .c-section-title {
        font-size: 6vw;
    }
    .c-section-title_2nd {
        font-size: 5vw;
    }
    p {
        font-size: 3.5vw;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .usecase-area {
        padding: 50px 0;
    }

}
/*===========================================================================*/
/*  1.　ヘッダー　グローバルメニュー  */
/*===========================================================================*/
.header {
    display: flex;
    align-items: center;
    height: 70px;
}

.site-header{
    background: rgba(255,255,255,1);
    padding: 20px;
    position: fixed;
    top: 0;
    transition: .5s;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 2px 2px #00000010;}
  
.site-header.hide{
    transform: translateY(-100%);
}
.site-logo {
    max-width: 200px;
}
.site-logo__lead {
    font-size: .8rem;
    display: none;
}
.gnav {
    position: absolute;
    right: 0;
}
.gnav__menu {
    display: flex;
    list-style-type: none;
    align-items: center;
}
.gnav__menu__item__link {
    margin-left: 2rem;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.gnav-contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #34CDD7;
    height: 70px;
    width: 200px;
    color: #fff;
    line-height: 1.5;
}
.gnav-contact img {
    width: 50px;
}

.gnavi-sp {
    display: none;
}
@media screen and (max-width:1024px) {
    .site-logo{
        width: 15vh
    }
    .gnav__menu {
        display: none;
    }
    .gnavi-sp {
        display: block;
    }
    .gnav-contact {
        position: absolute;
        right: 70px;
        top: -35px;
        width: 100px;
        height: 70px;
        flex-wrap: wrap;
        font-size: .7rem;
        padding: 5px;
    }
}
@media screen and (max-width: 900px) {

    .gnav-contact img {
        width: 40px;
    }
}


/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100px;
  height: 70px;
  border: none;
  background: transparent;
  cursor: pointer;
    background-color: #000;
}

.hamburger-overlay__line {
  position: absolute;
  left: 21px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 22px; }
.hamburger-overlay__line:nth-of-type(2) { top: 34px; }
.hamburger-overlay__line:nth-of-type(3) { top: 46px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }

.nav-overlay__link {
  display: inline-flex;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}
@media screen and (max-width:1024px) {
    .hamburger-overlay {
        width: 70px;
        height: 70px;
    }

}

/*===========================================================================*/
/*  2. ヒーローエリア  */
/*===========================================================================*/
.hero-area {
    margin-top: 100px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-title {
    font-size: 3rem;
    
}
.hero-img__main {
    width: 30%;
}
.hero-area__text {
    
}
@media screen and (max-width: 900px) {
    .hero-area {
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 0;
    }
    .page-title {
        font-size: 8vw;
    }
    .hero-img__main {
        width: 60%;
    }
}
/*===========================================================================*/
/*  sv ヒーロー画像アコーディオン  */
/*===========================================================================*/
.p-sv {
    margin: 50px auto 0;
    padding: 0 .81%;
    position: relative;
    z-index: 5;
/*    max-width: 1920px;*/
}

.p-sv__list {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.p-sv__list--content {
    width: 15.5%;
    height: 300px;
    transition: width .6s 0s cubic-bezier(.44,.14,.09,1.02);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.p-sv__list--content.js-active {
    width: 50.9%;
}
.p-sv__list--content::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 72.69%, rgba(0, 0, 0, 0.30) 95.37%);
    content: '';
    height: 335px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}

.p-sv__list--link {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.p-sv__list--content.js-active .p-sv__list--link {
    pointer-events: all;
}

.p-sv__list--img {
    width: 100%;
    height: 100%;
}
.p-sv__list--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-sv__list--txts {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: inline-table;
    padding: .5rem 1rem;
    background-color: #000;
    color: #fff;
    transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
/*    opacity: 0;*/
    z-index: 3;
}
.p-sv__list--content.js-active .p-sv__list--txts {
    opacity: 1;
}

.p-sv__list--name {
    font-feature-settings: 'palt' on;
    font-size: 10px;
    line-height: 2.2;
    letter-spacing: .08em;
}

.p-sv__list--ttl {
    font-feature-settings: 'palt' on;
    font-size: 1rem;
    line-height: 1.48;
    letter-spacing: .08em;
}
.p-sv__list--content.js-active .p-sv__list--ttl {
    font-size: 2rem;
    transition-delay: 0.3s;
}

.p-sv__list--arrow {
    position: absolute;
    width: 37px;
    height: 37px;
    border: #fff solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
/*    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);*/
    opacity: 0;
    z-index: 3;
    right: 25px;
    bottom: 20px;
    border-radius: 100vh;
}
.p-sv__list--content.js-active .p-sv__list--arrow {
    opacity: 1;
}
/*
.p-sv__list--arrow svg {
    width: 9px;
}
*/
@media screen and (min-width: 901px) {
    .p-sv__list--link:hover .p-sv__list--img img {
        transform: scale(1.1);
    }

    .p-sv__list--link:hover .p-sv__list--arrow {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .p-sv {
        display: none;
        margin-top: 25px;
        padding: 0 2.56%;
    }
    
    .p-sv__list {
        flex-wrap: wrap;
        gap: 5px;
    }

    .p-sv__list--content {
        width: 100%;
        height: 70px;
        transition: height .6s 0s cubic-bezier(.44,.14,.09,1.02);
    }
    .p-sv__list--content.js-active {
        width: 100%;
        height: 248px;
    }
    .p-sv__list--content::before {
        height: 201px;
    }
    
    .p-sv__list--txts {
        left: 12px;
        bottom: 10px;
        display: inline-table;
    }
    
    .p-sv__list--ttl {
        font-size: 11px;
    }
    
    .p-sv__list--arrow {
        width: 23px;
        height: 23px;
        right: 12px;
        bottom: 10px;
    }
/*    
    .p-sv__list--arrow svg {
        width: 6px;
    }
*/
}

/*===========================================================================*/
/*  3. 利用ケース  */
/*===========================================================================*/

.usecase-area .l-inner{
}
.usecase-title {
    position: relative;
    z-index: 22;
}
.usecase-block{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0 0 0 20%;
    margin-top: -50px;
/*
    position: relative;
    margin: 2rem 0 0 20%;
    padding: 120px 50px 50px 0;
*/
}
.usecase-block__text {
/*
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    /* margin-top: 100px; */
    background-color: #EEEEEE;
    width: 100%;
    padding: 100px 50px 50px 50px;
    z-index: 20;

}
.usecase-block__img {
    position: relative;
    padding: 0 50px 50px 0;
    background-color: #EEEEEE;
    width: 30%;
    z-index: 21;
/*
    position: absolute;
    bottom: 50px;
    right: 50px;
    height: 250px;
*/
}
.usecase-block__img img{
    position: absolute;
    bottom: 44px;
    width: 80%;
    margin-top: -100px;
}



.usecass-list {
    position: relative;
    padding: 0;
}
.usecass-item {
    display: flex;
    list-style-type: none;

}

.usecass-list__item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}
.usecass-list__number {
    display: flex;
    align-items: center;
    background-color: #fff;
    width: 20%;
    font-size: 2.5rem;
    font-weight: 800;
    color: #CCC;
    justify-content: space-between;
}
.usecass-list__number span {
    font-size: 6rem;
    font-weight: 800;
    margin-right: 1rem;
}
.usecass-list__number::after {
    content: '';
    width: 30px;
    height: 20px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #34CDD7 0% 0% no-repeat padding-box;
    opacity: 1;
}
.usecass-list__block {
    background-color: #EAF2F6;
    min-height: 200px;
    width: 50%;
    padding: 20px 50px;
}
.usecass-list__block p {
    margin-top: 1rem;
}
.usecass-item__img{
    width: 30%;
}
.usecass-list__title {
    font-size: 2rem;
    line-height: 1.5;
}
.usecass-item__img.case-img_01 {
    background-image: url("../img/top/img-usecase_01_s.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.usecass-item__img.case-img_02 {
    background-image: url("../img/top/img-usecase_02_s.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.usecass-item__img.case-img_03 {
    background-image: url("../img/top/img-usecase_04_s.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.usecass-item__img.case-img_04 {
    background-image: url("../img/top/img-usecase_05_s.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
}

.usecass-item__img.case-img_05 {
    background-image: url("../img/top/img-usecase_03_s.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.usecass-item__img.case-img_06 {
    background-image: url("../img/top/img-usecase_06_s.jpg");
    background-size: cover;
    background-position: center;
    min-height: 200px;
}


@media screen and (max-width: 900px) {
    .usecase-block{
        margin: 2rem 0 0;
        padding: 0;
    }
    .usecase-block__text {
        left: 0;
        padding: 5% 5%;
    }
    .usecase-block__img {
        right: 0;
    }
    .usecase-block__img img {
        filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .5));
    }
    .usecass-list__item{
        margin-top: 10px;
    }
    .usecass-list__number {
        width: 100%;
        justify-content: flex-start;
        height: 110px;
        font-size: 2rem;
    }
    .usecass-list__number span {
        font-size: 4.5rem;
    }
    .usecass-list__block{
        width: 100%;
        padding: 3%;
        min-height: auto;
    }
    .usecass-item__img{
        width: 100%;
    }
    .usecass-list__title {
        font-size: 5vw;
    }
    .eyebrow {
        font-size: 3.5vw;
    }
    .usecass-item__img.case-img_01,
    .usecass-item__img.case-img_02,
    .usecass-item__img.case-img_03,
    .usecass-item__img.case-img_04,
    .usecass-item__img.case-img_05,
    .usecass-item__img.case-img_06 {
        min-height: 400px;
    }
}
@media screen and (max-width: 768px) {
    .usecass-item__img.case-img_01,
    .usecass-item__img.case-img_02,
    .usecass-item__img.case-img_03,
    .usecass-item__img.case-img_04,
    .usecass-item__img.case-img_05,
    .usecass-item__img.case-img_06 {
        min-height: 240px;
    }
}
/*===========================================================================*/
/*  4. コンタクト　01  */
/*===========================================================================*/
.contact-area {
    border-top: 1px dashed #707070;
    border-bottom: 1px dashed #707070;
}
.contact-block {
    margin: 10px 0;
    padding: 50px 5%;
    background-color: #34CDD7;
    color: #fff;
    text-align: center;
}
.contact-block__text {
    color: #000;
    margin-top: 1rem;
    text-align: center;
}
.store-block {
    background-color: #248F96;
}
a.button-form {
    padding: 1rem 7rem 1rem 3rem;
    text-align: left;
    color: #34CDD7;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    background: #34CDD7 url("../img/common/mail_blue.svg") no-repeat 90% center / 50px auto;
    background-color: #fff;
    
}
a.button-form::after {
    width: 50px;
    height: 37px;
}
a.button-form:hover {
    background-color: #efefef;;
}
a.-store {
    background: url("../img/common/store.svg") no-repeat 90% center / 50px auto;
    background-color: #FEFDDE;
    color: #248F96;
}
@media screen and (max-width: 900px) {
    a.button-form {
        font-size: 4vw;
        padding: 2% 15% 2% 5%;
        display: block;
        width: 100%;
        background: url("../img/common/mail_blue.svg") no-repeat 80% center / 7vw auto;
        background-color: #fff;
        text-align: center;
    }
    a.-store {
        background: url("../img/common/store.svg") no-repeat 80% center / 7vw auto;
        background-color: #FEFDDE;
    }
}
/*===========================================================================*/
/*  5. 課題提起  */
/*===========================================================================*/
.problem {
    background-color: #333;
    color: #fff;
    margin: 10px 0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.problem::after {
/*    content: ""; /* 【重要】これがないと表示されません */
    display: block; /* widthやheightを有効にするために必要 */    
    width: 30px;
    height: 35px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #34CDD7 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    bottom: -110px;
    left: 0;
    right: 0;
    margin: auto;
}
.problem-case {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}
.problem-case::after {
	position: absolute; /*--positionを追加--*/
    margin: auto;
	left: 0;
    right: 0;
	content: "";
	width: 10px; /*--縦線の太さ(幅)--*/
	height: 100%;
	background-color: #34CDD7; /*--縦線の色--*/
}
.problem-case__item {
    width: 40%;
    position: relative;
}
.problem-case__item:nth-child(2) {
    margin-top: 100px;
}
.problem-case__item:nth-child(3),
.problem-case__item:nth-child(5) {
    margin-top: -50px;
}
.problem-case__item:nth-child(4) {
    margin-top: 50px;
}
.problem-case__item:nth-child(2n+1) {

}
.problem-case__item:nth-child(2n+1)::after {
}
.problem-case__item:nth-child(2n+1)::after {
}
.problem-case__box {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    background-color: #333;
}
.box-right,
.box-left {
    position: relative;
}
.box-right::after {
    content: ""; /* 【重要】これがないと表示されません */
    display: block; /* widthやheightを有効にするために必要 */    
    width: 30px;
    height: 20px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #34CDD7 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    top: 90px;
    right: -20px;
}
.box-left::after {
    content: ""; /* 【重要】これがないと表示されません */
    display: block; /* widthやheightを有効にするために必要 */    
    width: 30px;
    height: 20px;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    background: #34CDD7 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    top: 90px;
    left: -20px;
}
.problem-case__title {
    line-height: 1.5;
}
.problem-case__text {
    margin-top: 1rem;
}
.problem-conclusion {
    margin-top: 100px;
    padding: .5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #34CDD7;
    background-color: #333;
}

@media screen and (max-width: 900px) {
    .problem-case {
        margin-bottom: -30px;
    }

    .problem-case__item {
        width: 100%;
        z-index: 40;
    }
    .problem-case__item:nth-child(odd) {
        margin: 20px 0 0;
    }
    .problem-case__item:nth-child(even) {
        margin: 20px 0 0 0;
    }
    .box-right::after, 
    .box-left::after {
        content: none;
    }
    .problem-conclusion {
        margin-top: 30px;
        font-size: 4vw;
        text-align: center;
    }
}

/*===========================================================================*/
/*  6. 選ばれる理由  */
/*===========================================================================*/
.reasons {
    padding: 150px 0 0;
    position: relative;
}
.reasons .arrow-down {
    position: absolute;
    margin: auto;
    top: -10px;
    left: 0;
    right: 0;
}
.reasons-area {
    margin: 50px 0 0;
    border-top: 1px dashed #707070;
    position: relative;
}
.reasons-area::after {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    width: 1px;         /* 線の太さ */
    height: 100%;      /* 線の長さ */
    border-left: 1px dotted #707070; /* 点線、色を指定 */
}
.reasons-area__block {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}
.reasons-area__item {
    width: 40%;
}
.reasons-title {
    padding: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.5;
    border-bottom: 10px solid #34CDD7;
    display: inline-block;
}
.reasons-hr {
    border-top: 1px dashed #707070;
}
@media screen and (max-width: 1024px) {
    .reasons-area__block {
        margin: 0 3%;
    }
}
@media screen and (max-width: 900px) {
    .reasons {
        padding-top: 100px;
    }
    .reasons-area::after {
        content: none;
    }
    .reasons-area__block {
        display: block;
        margin: 0;
    }
    .reasons-area__item {
        width: 100%;
    }
    .reasons-area__item:nth-child(2) {
        margin-top: 50px;
        padding-top: 50px;
        border-top: 1px dashed #707070;
    }
    .reasons-title {
        font-size: 5vw;
    }
}
/*===========================================================================*/
/*  8. 料金プラン  */
/*===========================================================================*/
.pricing {
    padding: 100px 0;
}
.pricing-block {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    
}
.pricing-item {
    width: 23%;
    box-shadow: 0px 5px 5px #00000029;
    border-radius: 0px 0px 10px 10px;
    opacity: 1;
}
.pricing-title {
    background-color: #000;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-title img {
    margin: .5rem 1rem .5rem 0;
    width: 60px;
}
.-blue{
    background-color: #34CDD7;
}
.pricing-table{
    margin: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}
.pricing-table span {
    color: #34CDD7;
    font-weight: 700
}
.pricing-table span span {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0 .1rem;
}
.pricing-table dt,dd {
    padding: 1rem 0;
    border-bottom: 1px solid #000;
}
.pricing-table dt {
    width: 30%;
}
.pricing-table dd {
    width: 70%;
    text-align: right;
}
@media screen and (max-width: 1024px) {
    .pricing-block {
        flex-wrap: wrap;
        margin: 50px 3%;
    }
    .pricing-item{
        width: 48%;
        margin-top: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .pricing-block {
        margin: 50px 0;
    }
    .pricing-item{
        width: 100%;
    }
    .pricing {
        padding: 50px 0;
    }
}

/*===========================================================================*/
/*  7. フォーム  */
/*===========================================================================*/
.contact-form {
    margin: 10px 0 0;
    padding: 100px 0;
    background-color: #EEEEEE;
}
.contact-form .c-section-title {
}
.contact-form .c-section-title span {
    padding-bottom: 1rem;
    border-bottom: 10px solid #34CDD7;
    display: inline-block;
}
.contact-form__block {
    margin : 50px 0;
}
iframe {
    margin-top: 50px;
    width: 100%;
    height: 100vh;
}
form,
.mktoForm {
    width: 100% !important;
}
.mktoForm mktoHasWidth mktoLayoutLeft{
    
}

.mktoForm .mktoFieldWrap {
    float: none !important;
    margin-bottom: .5rem;
}
.label {
    width: auto !important;
}
.mktoForm .mktoFormCol {
    display: block;
    width: 100% !important;
}
.mktoForm .mktoField {
    width: 600px !important;
    margin-bottom: 1rem !important;
    border: 1px solid #707070;
    height: 2.4rem;
}

.mktoForm .mktoLabel {
    color: #707070;
    width: auto !important;
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: bold;
}
.mktoLogicalField .mktoCheckboxList .mktoHasWidth .mktoRequired {
    display: flex !important;
}
.mktoCheckboxList .mktoField {
    width: auto !important;
    margin-bottom: .5rem !important;
}

.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    font-size: 1rem;
}

.mktoForm .mktoCheckboxList.mktoRequired:after {
    color: #bf0000;
    content: "*";
    font-weight: 700;
}
.mktoForm #Lblprivacypolicyagreement {
    display: none !important;
}
.mktoForm .mktoRadioList > label, .mktoForm .mktoCheckboxList > label {
    margin-left: .5rem !important;
}
.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    background-image: none !important;
    background-color: #34CDD7 !important;
    padding: .5rem 2rem !important;
    border: none !important;
    border-radius: 30px !important;
    width: 300px;
    font-size: 1rem !important;
    font-weight: 600;
    
}
.mktoForm .mktoButtonRow {
    display: block;
    text-align: center;
    width: auto !important;
}
.mktoButtonWrap {
    margin: auto !important;
}

@media screen and (max-width: 900px) {
    .mktoForm .mktoField {
        width: 100% !important;
    }
    .mktoCheckboxList .mktoField {
        width: auto !important;
        margin-bottom: .5rem !important;
    }
    .contact-form__block {
        padding: 0 10px;
    }
}
@media only screen and (max-width: 480px) {
    .mktoForm textarea {
        height: 10.6em !important;
    }
    .mktoForm .mktoField {
        height: 2.4rem !important;
    }
    .contact-form__block {
        padding: 0;
    }
}

/*===========================================================================*/
/* 8. footer  */
/*===========================================================================*/
/* トップに戻る */
#page-top a {
    background-color: #eee;
    border-radius: 40px;
    bottom: 135px;
    color: #fff;
    padding: 20px;
    position: fixed;
    right: 20px;
    z-index: 80;
    box-shadow: 0px 5px 5px #00000029;
}
#page-top a::after {
    content: '';
    width: 30px;
    height: 30px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #34CDD7 0% 0% no-repeat padding-box;
    opacity: 1;
    display: block;
}
@media only screen and (max-width: 480px) {
    #page-top a {
        right: 10px;
        padding: 15px;
    }
    #page-top a::after {
        width: 20px;
        height: 20px;
    }
}

.footer {
    padding: 2rem;
    background-color: #333333;
    border-bottom: 4px solid #34CDD7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #EEEEEE;
}
.footer-logo {
    width: 200px;
}
.footer-list {
    list-style-type: none;
    padding: 0;
    line-height: 1.5;
}
.footer-list a {
    color: #EEEEEE;
    text-decoration: none;
    font-size: .8rem;
    position: relative;
}
.footer-list a::after {
    background: url("../img/common/ico_blank.svg");
    background-size: contain;
    bottom: 5px;
    content: "";
    height: 10px;
    margin-left: 5px;
    position: absolute;
    width: 10px;
}
.copyright {
    color: #EEEEEE;
    font-size: .8rem;
    align-self: flex-end;
}
@media screen and (max-width: 900px) {
    .footer {
        display: block;
    }
}

