@charset "utf-8";

/* base
----------------------------------------------------*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #333;
	letter-spacing: 0.025rem;
	position: relative;
    word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
table {
	border-collapse: collapse;
}
img {
	border: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
strong, b {
	font-weight: bold;
}
ul,ol{
	list-style-type: none;
}

/* link
----------------------------------------------------*/
a {
	color: #00a799;
	text-decoration: none;
	transition: 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}
a:visited {
	color: #00a799;
	text-decoration: none;
}
a:hover {
	color: #00776d;
}

/* Selected Text
----------------------------------------------------*/
::selection {
	background: #00a799;
    color: #fff;
}

/* Webfont
----------------------------------------------------*/
.wf {
  font-family: "Barlow Semi Condensed", sans-serif;
}

/* animation
----------------------------------------------------*/
.effect {
    opacity: 0.0;
}
.effect.visible {
    opacity: 1.0;
}
.fadein {
    transition: 0.5s;
    transform: translateY(20px);
}
.fadein.visible {
    transition: 0.5s;
    transform: translateY(0);
}

/* header
----------------------------------------------------*/
header.header {
    width: 100%;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    transition: 0.2s ease;
}
header.header .inner {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
}
header.header .inner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* global navi
----------------------------------------------------*/
.gnav {
    margin-left: auto;
}
.gnav>ul{
    display: flex;
    align-items: center;
}
.gnav>ul>li {
    font-weight: 600;
}
.gnav>ul>li:not(:last-child) {
    margin-right: 30px;
}
.gnav>ul>li a.members-btn {
    display: inline-block;
    padding: 1rem 6rem 1rem 4rem;
    background: #ffe100;
    color: #156e8f;
    border: 2px solid #156e8f;
    border-radius: 30px;
    box-shadow: 0 4px 0 0 rgba(21, 110, 143, 1);
    position: relative;
}
.gnav>ul>li a.members-btn::before {
    content: "";
    background: url(../img/icon-arrow.svg) center no-repeat;
    width: 14px;
    height: 12px;
    position: absolute;
    z-index: 2;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}
.gnav>ul>li a.members-btn::after {
    z-index: 1;
    content: "";
    background: #156e8f;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s ease;
}
.gnav>ul>li a.members-btn:hover{
    transform: translateY(4px);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .8);
}
.gnav>ul>li a.members-btn:hover::after{
    transform: translateY(-50%) scale(1.2);
}
.gnav>ul>li a.contact-btn {
    display: inline-block;
    padding: 1rem 6rem 1rem 4rem;
    background: #00cbb0;
    color: #fff;
    border: 2px solid #156e8f;
    border-radius: 30px;
    box-shadow: 0 4px 0 0 rgba(21, 110, 143, 1);
    position: relative;
}
.gnav>ul>li a.contact-btn::before {
    content: "";
    background: url(../img/icon-contact.svg) center no-repeat;
    width: 18px;
    height: 16px;
    position: absolute;
    z-index: 2;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.gnav>ul>li a.contact-btn::after {
    z-index: 1;
    content: "";
    background: #156e8f;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s ease;
}
.gnav>ul>li a.contact-btn:hover{
    transform: translateY(4px);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .8);
}
.gnav>ul>li a.contact-btn:hover::after{
    transform: translateY(-50%) scale(1.2);
}

/* bottom navi
----------------------------------------------------*/
.bnav {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    padding: 10px;
}
.bnav::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.bnav>ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.bnav>ul>li {
    font-weight: 600;
}
.bnav>ul>li:not(:last-child) {
    margin-right: 20px;
}
.bnav>ul>li a.members-btn {
    display: inline-block;
    padding: 1rem 6rem 1rem 4rem;
    background: #ffe100;
    color: #156e8f;
    border: 2px solid #156e8f;
    border-radius: 30px;
    box-shadow: 0 4px 0 0 rgba(21, 110, 143, 1);
    position: relative;
}
.bnav>ul>li a.members-btn::before {
    content: "";
    background: url(../img/icon-arrow.svg) center no-repeat;
    width: 14px;
    height: 12px;
    position: absolute;
    z-index: 2;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}
.bnav>ul>li a.members-btn::after {
    z-index: 1;
    content: "";
    background: #156e8f;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s ease;
}
.bnav>ul>li a.contact-btn {
    display: inline-block;
    padding: 1rem 6rem 1rem 4rem;
    background: #00cbb0;
    color: #fff;
    border: 2px solid #156e8f;
    border-radius: 30px;
    box-shadow: 0 4px 0 0 rgba(21, 110, 143, 1);
    position: relative;
}
.bnav>ul>li a.contact-btn::before {
    content: "";
    background: url(../img/icon-contact.svg) center no-repeat;
    width: 18px;
    height: 16px;
    position: absolute;
    z-index: 2;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.bnav>ul>li a.contact-btn::after {
    z-index: 1;
    content: "";
    background: #156e8f;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s ease;
}

/* contents
----------------------------------------------------*/
.section-mv {
	background: #f2f6f7;
    padding: 120px 5%;
    position: relative;
}
.section-mv .inner {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}
.section-mv .contents {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.section-mv .desc {
    width: 46%;
}
.section-mv .heading .catchcopy {
    font-size: 2.6rem;
    font-weight: 700;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    letter-spacing: .2rem;
}
.section-mv .heading .catchcopy::after {
    content: "";
    width: 16px;
    height: 16px;
    border-bottom: 2px solid #000;
    background: #f2f6f7;
    position: absolute;
    bottom: -8px;
    right: 30%;
    transform: rotate(-35deg);
}
.section-mv .heading .catchcopy .fb {
    font-size: 140%;
}
.section-mv .heading .catchcopy .dot {
    position: relative;
}
.section-mv .heading .catchcopy .dot::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00cbb0;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.section-mv .heading h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #156e8f;
    margin-bottom: 30px;
}
.section-mv .info {
    border: 2px solid #156e8f;
    border-radius: 10px;
    display: flex;
    margin: 30px 0 0;
}
.section-mv .info .today {
    background: #156e8f;
    color: #fff;
    padding: 10px 30px;
    text-align: center;
    font-weight: 700;
}
.section-mv .info .today .date {
    font-size: 2rem;
}
.section-mv .info .detail {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #156e8f;
    background: #fff;
    border-radius: 0 10px 10px 0;
}
.section-mv .info .detail .text {
    position: relative;
    padding-left: 36px;
}
.section-mv .info .detail .text::before {
    content: "";
    background: url(../img/icon-memo.svg) no-repeat center / contain;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: .2rem;
}
.section-mv .info .detail .counter {
    border: 1px solid #e1e8ea;
    border-radius: 10px;
    padding: 2px 8px;
    margin: 0 5px;
    background: #f2f6f7;
    position: relative;
}
.section-mv .info .detail .counter::before {
    content: "";
    background: #e1e8ea;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.section-mv .info .detail .number {
    font-size: 4rem;
    font-weight: 700;
    color: #00cbb0;
    line-height: 1;
    position: relative;
}
.section-mv .mv {
    width: 50%;
}
.section-mv .mv img {
    width: 100%;
}
.section-mv .mb-heading.heading {
    display: none;
}

/* loop */
.section-mv .loop-css {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: .5s .2s;
}
.section-mv .loop-css .bg-text {
    font-size: 16rem;
    font-weight: 700;
    letter-spacing: 1rem;
    color: #19a7db;
    white-space: nowrap;
    padding: 0 30px;
    opacity: .5;
}
.section-mv .loop-css.visible .bg-text-1 {
    -webkit-animation: loop 80s -40s linear infinite;
    animation: loop 80s -40s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
.section-mv .loop-css.visible .bg-text-2 {
    -webkit-animation: loop2 80s  linear infinite;
    animation: loop2 80s linear infinite;
}

@keyframes loop {
    0% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.section-about .about-entry {
    background: #f2f6f7;
    padding: 0 5% 60px;
}
.section-about .about-entry .about-entry-wrap {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}
.section-about .about-entry .entry-area {
    margin: 0;
}
.section-about .about-heading {
    padding: 100px 5% 150px;
    background: #19a7db;
    text-align: center;
}
.section-about .about-heading .heading {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .2rem;
    position: relative;
}
.section-about .about-heading .heading img {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transition: transform .3s;
    transform: translateY(-20px);
}
.section-about .about-heading .heading.visible img {
    transform: translateY(0);
}
.section-about .about-heading .heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-about .about-heading .visible.heading::before {
  transform: scale(1, 1);
}
.section-about .about-heading .heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-about .about-heading .visible.heading::after {
  transform: scale(1, 1);
}
.section-about .about-heading .heading h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-about .about-heading .heading span {
    display: block;
    overflow: hidden;
}
.section-about .about-heading .heading span h2 {
    transform: translateY(40px);
    transition: .3s;
    display: block;
}
.section-about .about-heading .heading.visible span h2 {
    transform: translateY(0);
}
.section-about .about-heading .heading span p {
    transform: translateY(40px);
    transition: .3s .1s;
    display: block;
}
.section-about .about-heading .heading.visible span p {
    transform: translateY(0);
}
.section-about .about {
    background: url(../img/bg-line-blue.gif);
    padding: 0 5%;
}
.section-about .about ul.strength-list {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    transform: translateY(-80px);
}
.section-about .about ul.strength-list li {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0px 5px 10px rgba(21, 110, 143, .1);
}
.section-about .about ul.strength-list li:not(:last-child) {
    margin-bottom: 80px;
}
.section-about .about ul.strength-list li:not(.reverse) .no {
    position: absolute;
    top: -70px;
    left: 50px;
    font-size: 8rem;
    font-weight: 700;
    color: #ffe100;
    letter-spacing: .2rem;
}
.section-about .about ul.strength-list li:not(.reverse) .about-img {
    width: 40%;
    position: absolute;
    right: 50px;
    top: -40px;
}
.section-about .about ul.strength-list li:not(.reverse) .about-desc {
    width: 53%;
}
.section-about .about ul.strength-list li.reverse .no {
    position: absolute;
    top: -70px;
    left: 47%;;
    font-size: 8rem;
    font-weight: 700;
    color: #ffe100;
    letter-spacing: .2rem;
}
.section-about .about ul.strength-list li.reverse .about-img {
    width: 40%;
    position: absolute;
    left: 50px;
    top: -40px;
}
.section-about .about ul.strength-list li.reverse .about-desc {
    width: 53%;
    margin-left: auto;
}
.section-about .about ul.strength-list li .about-desc h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #156e8f;
    margin-bottom: 30px;
}
.section-flow {
    background: #65c8bb;
    padding: 100px 5%;
}
.section-flow .inner {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}
.section-flow .flow-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-flow .flow-heading .heading {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .2rem;
    position: relative;
}
.section-flow .flow-heading .heading img {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transition: transform .3s;
    transform: translateY(-20px);
}
.section-flow .flow-heading .heading.visible img {
    transform: translateY(0);
}
.section-flow .flow-heading .heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-flow .flow-heading .visible.heading::before {
  transform: scale(1, 1);
}
.section-flow .flow-heading .heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-flow .flow-heading .visible.heading::after {
  transform: scale(1, 1);
}
.section-flow .flow-heading .heading h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-flow .flow-heading .heading span {
    display: block;
    overflow: hidden;
}
.section-flow .flow-heading .heading span h2 {
    transform: translateY(40px);
    transition: .3s;
    display: block;
}
.section-flow .flow-heading .heading.visible span h2 {
    transform: translateY(0);
}
.section-flow .flow-heading .heading span p {
    transform: translateY(40px);
    transition: .3s .1s;
    display: block;
}
.section-flow .flow-heading .heading.visible span p {
    transform: translateY(0);
}
.section-flow ol.flow-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section-flow ol.flow-list li {
    width: calc(33% - 20px);
    border-radius: 10px;
    background: #fff;
    border-radius: 20px;
}
.section-flow ol.flow-list li .title {
    background: #32b09f;
    color: #fff;
    text-align: center;
    border-radius: 20px 20px 0 0;
    padding: 10px;
    letter-spacing: .2rem;
}
.section-flow ol.flow-list li:not(:last-child) .title {
    min-height: 54px;
    padding: 12px 10px;
}
.section-flow ol.flow-list li .title p {
    display: inline-block;
    position: relative;
}
.section-flow ol.flow-list li .title .step {
    font-size: 2.4rem;
    font-weight: 700;
    padding: 0 80px 0 0;
    line-height: 1;
}
.section-flow ol.flow-list li .title .no {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 0;
}
.section-flow ol.flow-list li .title .more {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.section-flow ol.flow-list li .desc {
    background: #fff;
    border-radius: 0 0 20px 20px;
    padding: 40px;
}
.section-flow ol.flow-list li .desc img {
    display: block;
    margin: auto;
}
.section-flow ol.flow-list li .desc h3 {
    color: #00ac95;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-flow ol.flow-list li .desc p {
    margin-top: 20px;
}
.section-flow .flow-entry {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}
.section-flow .entry-area .title {
    background: #32b09f;
}
.section-flow .entry-area .contents {
    border: 4px solid #32b09f;
}

.section-client {
    background: url(../img/bg-dot-yellow.gif);
    padding: 100px 5%;
}
.section-client .inner {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.section-client .client-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-client .client-heading .heading {
    display: inline-block;
    padding: 20px;
    font-weight: 700;
    letter-spacing: .2rem;
    position: relative;
}
.section-client .client-heading .heading img {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transition: transform .3s;
    transform: translateY(-20px);
}
.section-client .client-heading .heading.visible img {
    transform: translateY(0);
}
.section-client .client-heading .heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-client .client-heading .visible.heading::before {
  transform: scale(1, 1);
}
.section-client .client-heading .heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-client .client-heading .visible.heading::after {
  transform: scale(1, 1);
}
.section-client .client-heading .heading h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-client .client-heading .heading span {
    display: block;
    overflow: hidden;
}
.section-client .client-heading .heading span h2 {
    transform: translateY(40px);
    transition: .3s;
    display: block;
}
.section-client .client-heading .heading.visible span h2 {
    transform: translateY(0);
}
.section-client .client-heading .heading span p {
    transform: translateY(40px);
    transition: .3s .1s;
    display: block;
}
.section-client .client-heading .heading.visible span p {
    transform: translateY(0);
}
.section-client ul.client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section-client ul.client-list li {
    width: 47%;
}
.section-client ul.client-list li:nth-child(n+3) {
    margin-top: 60px;
}
.section-client ul.client-list li .title {
    background: #f2d607;
    text-align: center;
    border-radius: 20px 20px 0 0;
    padding: 10px;
    letter-spacing: .2rem;
}
.section-client ul.client-list li:not(:last-child) .title {
    padding: 12px 10px;
}
.section-client ul.client-list li .title p {
    display: inline-block;
    position: relative;
}
.section-client ul.client-list li .title .voice {
    font-size: 2.4rem;
    font-weight: 700;
    padding: 0 80px 0 0;
    line-height: 1;
}
.section-client ul.client-list li .title .no {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 0;
}
.section-client ul.client-list li .desc {
    background: #fff;
    padding: 30px;
    border-radius: 0 0 20px 20px;
}
.section-client ul.client-list li .desc .client-title {
    display: flex;
}
.section-client ul.client-list li .desc .client-title .img {
    width: 100px;
    margin-right: 20px;
}
.section-client ul.client-list li .desc .client-title .c-title {
    flex: 1;
}
.section-client ul.client-list li .desc h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-client ul.client-list li .desc .client {
    color: #777;
    font-size: 90%;
}
.section-client ul.client-list li .desc .comment {
    margin: 40px 0 20px;
    position: relative;
}
.section-client ul.client-list li .desc .comment::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: -20px;
    background: url(../img/icon-quotation.svg) no-repeat center;
}
.section-client ul.client-list li .desc .comment::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    bottom: -20px;
    background: url(../img/icon-quotation.svg) no-repeat center;
    transform: rotate(180deg);
}

.section-members .members-heading {
    padding: 80px 5% 150px;
    background: #19a7db;
    text-align: center;
}
.section-members .members-heading .heading {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .2rem;
    position: relative;
}
.section-members .members-heading .heading img {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transition: transform .3s;
    transform: translateY(-20px);
}
.section-members .members-heading .heading.visible img {
    transform: translateY(0);
}
.section-members .members-heading .heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-members .members-heading .visible.heading::before {
  transform: scale(1, 1);
}
.section-members .members-heading .heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-members .members-heading .visible.heading::after {
  transform: scale(1, 1);
}
.section-members .members-heading .heading h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-members .members-heading .heading span {
    display: block;
    overflow: hidden;
}
.section-members .members-heading .heading span h2 {
    transform: translateY(40px);
    transition: .3s;
    display: block;
}
.section-members .members-heading .heading.visible span h2 {
    transform: translateY(0);
}
.section-members .members-heading .heading span p {
    transform: translateY(40px);
    transition: .3s .1s;
    display: block;
}
.section-members .members-heading .heading.visible span p {
    transform: translateY(0);
}
.section-members .members {
    margin-top: -80px;
    padding: 100px 0;
    background: #f2f6f7;
    border-radius: 50px 50px 0 0;
}
.section-members .members .inner-01,
.section-members .members .inner-02,
.section-members .members .inner-03 {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}
.section-members .members .inner-03 {
    margin-top: 60px;
}
.section-members .members .wrap-01,
.section-members .members .wrap-03 {
    padding: 0 5%;
}
.section-members .members .wrap-02 {
    padding: 0 5%;
    margin-top: 60px;
}
.section-members .membership {
    display: flex;
    align-items: flex-end;
}
.section-members .membership img {
    width: 30px;
}
.section-members .membership .title {
    width: 34%;
    background: #fff;
    font-weight: 700;
    border-top: 1px solid #d0d8db;
    border-left: 1px solid #d0d8db;
    border-bottom: 1px solid #d0d8db;
    border-radius: 15px 0 0 15px;
}
.section-members .membership .title div {
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 10px;
}
.section-members .membership .title div:not(:last-child) {
    border-bottom: 1px solid #d0d8db;
}
.section-members .membership .compro-member {
    width: 22%;
    background: #fff;
    border: 4px solid #00cbb0;
    border-radius: 15px;
    isolation: isolate;
    overflow: hidden;
    transform: translateY(24px);
}
.section-members .membership .compro-member div {
    border-bottom: 1px solid #d0d8db;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-members .membership .compro-member div:last-child {
    min-height: 100px;
}
.section-members .membership .compro-member .top {
    background: #00cbb0;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    min-height: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-members .membership .member {
    width: 22%;
    background: #fff;
    border-top: 1px solid #bfbfbf;
    isolation: isolate;
    overflow: hidden;
}
.section-members .membership .member div {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #d0d8db;
}
.section-members .membership .member .top {
    background: #dbe8eb;
    font-size: 2rem;
    font-weight: 700;
    min-height: 80px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-members .membership .member-01 {
    border-right: 1px solid #bfbfbf;
}
.section-members .membership .member-02 {
    border-right: 1px solid #bfbfbf;
    border-radius: 0 15px 15px 0;
}
.section-members .members h3 {
    font-size: 3rem;
    color: #156e8f;
    margin: 80px 0 30px;
}
.entry-area {
    margin-top: 80px;
}
.entry-area .title .break {
    display: none;
}
.entry-area .title {
    background: #00cbb0;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border-radius: 15px 15px 0 0;
    padding: 10px;
}
.entry-area .title p {
    display: inline-block;
    position: relative;
    padding: 0 40px;
    line-height: 1.2;
}
.entry-area .title p::before {
    content: "＼";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.entry-area .title p::after {
    content: "／";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.entry-area .contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 0 0 15px 15px;
    border: 4px solid #00cbb0;
    background: #fff;
}
.entry-area .contents .desc {
    width: 54%;
    padding: 30px 0 30px 6%;
}
.entry-area .contents .desc p {
    font-size: 3rem;
    font-weight: 700;
    color: #156e8f;
}
.entry-area .contents .desc .btn {
    display: flex;
    margin-top: 20px;
}
.entry-area .contents .img {
    width: 46%;
    padding: 0 6% 0 0;
}
.entry-area a.members-btn {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    padding: 1rem 6rem 1rem 4rem;
    background: #ffe100;
    color: #156e8f;
    border: 2px solid #156e8f;
    border-radius: 30px;
    box-shadow: 0 4px 0 0 rgba(21, 110, 143, 1);
    position: relative;
    margin: 0 20px 0 0;
}
.entry-area a.members-btn::before {
    content: "";
    background: url(../img/icon-arrow.svg) center no-repeat;
    width: 14px;
    height: 12px;
    position: absolute;
    z-index: 2;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
}
.entry-area a.members-btn::after {
    z-index: 1;
    content: "";
    background: #156e8f;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s ease;
}
.entry-area a.members-btn:hover{
    transform: translateY(4px);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .8);
}
.entry-area a.members-btn:hover::after{
    transform: translateY(-50%) scale(1.2);
}
.entry-area a.contact-btn {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    padding: 1rem 6rem 1rem 4rem;
    background: #00cbb0;
    color: #fff;
    border: 2px solid #156e8f;
    border-radius: 30px;
    box-shadow: 0 4px 0 0 rgba(21, 110, 143, 1);
    position: relative;
}
.entry-area a.contact-btn::before {
    content: "";
    background: url(../img/icon-contact.svg) center no-repeat;
    width: 18px;
    height: 16px;
    position: absolute;
    z-index: 2;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.entry-area a.contact-btn::after {
    z-index: 1;
    content: "";
    background: #156e8f;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s ease;
}
.entry-area a.contact-btn:hover{
    transform: translateY(4px);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .8);
}
.entry-area a.contact-btn:hover::after{
    transform: translateY(-50%) scale(1.2);
}
.section-faq {
    background: url(../img/bg-dot-blue.gif);
    padding: 100px 5%;
}
.section-faq .inner {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
    background: #e6f6fa;
    padding: 80px 5%;
}
.section-faq .faq-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-faq .faq-heading .heading {
    display: inline-block;
    padding: 20px;
    color: #156e8f;
    font-weight: 700;
    letter-spacing: .2rem;
    position: relative;
}
.section-faq .faq-heading .heading img {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transition: transform .3s;
    transform: translateY(-20px);
}
.section-faq .faq-heading .heading.visible img {
    transform: translateY(0);
}
.section-faq .faq-heading .heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #156e8f;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-faq .faq-heading .visible.heading::before {
  transform: scale(1, 1);
}
.section-faq .faq-heading .heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #156e8f;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s .3s;
}
.section-faq .faq-heading .visible.heading::after {
  transform: scale(1, 1);
}
.section-faq .faq-heading .heading h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-faq .faq-heading .heading span {
    display: block;
    overflow: hidden;
}
.section-faq .faq-heading .heading span h2 {
    transform: translateY(40px);
    transition: .3s;
    display: block;
}
.section-faq .faq-heading .heading.visible span h2 {
    transform: translateY(0);
}
.section-faq .faq-heading .heading span p {
    transform: translateY(40px);
    transition: .3s .1s;
    display: block;
}
.section-faq .faq-heading .heading.visible span p {
    transform: translateY(0);
}
.section-faq ul.faq-list li:not(:first-child) {
    margin-top: 20px;
}
.section-faq .question {
    display: flex;
    align-items: flex-start;
}
.section-faq .question .img {
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    border: 2px solid #fff;
}
.section-faq .question .text {
    flex: 1;
    margin: 2rem 0 0;
}
.section-faq .question .text .talk {
    background: #fff;
    justify-self: start;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin-left: 30px;
    box-shadow: 0px 3px 5px rgba(21, 110, 143, .1);
}
.section-faq .question .text .talk::before {
    content: "";
    background: url(../img/icon-fukidashi-left.svg) no-repeat center / contain;
    width: 18px;
    height: 16px;
    position: absolute;
    top: 28px;
    left: -16px;
}
.section-faq .question .text .talk p {
    position: relative;
    padding-left: 4rem;
}
.section-faq .question .text .talk p::before {
    content: 'Q';
    color: #19a7db;
    font-size: 3rem;
    font-weight: 700;
    position: absolute;
    top: -1rem;
    left: 0;
}
.section-faq .question .text .talk p::after {
    content: '';
    height: 27px;
    width: 3px;
    background: url(../img/dot-line.svg) no-repeat center / contain;
    position: absolute;
    top: 4px;
    left: 3rem;
}
.section-faq .answer {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.section-faq .answer .img {
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    border: 2px solid #fff;
}
.section-faq .answer .text {
    flex: 1;
    margin: 2rem 0 0;
}
.section-faq .answer .text .talk {
    justify-self: end;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin-right: 30px;
    box-shadow: 0px 3px 5px rgba(21, 110, 143, .1);
}
.section-faq .answer .text .talk::before {
    content: "";
    background: url(../img/icon-fukidashi-right.svg) no-repeat center / contain;
    width: 18px;
    height: 16px;
    position: absolute;
    top: 28px;
    right: -16px;
}
.section-faq .answer .text .talk p {
    position: relative;
    padding-left: 4rem;
}
.section-faq .answer .text .talk p::before {
    content: 'A';
    color: #00cbb0;
    font-size: 3rem;
    font-weight: 700;
    position: absolute;
    top: -1rem;
    left: 0;
}
.section-faq .answer .text .talk p::after {
    content: '';
    height: 27px;
    width: 3px;
    background: url(../img/dot-line.svg) no-repeat center / contain;
    position: absolute;
    top: 4px;
    left: 3rem;
}

/* accordion */
.section-faq .accordion {
    margin-top: 20px;
}
.section-faq .accordion_title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 4rem;
    padding: 20px 40px 20px 20px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 250px;
    margin: 30px auto 0;
    background: #00cbb0;
    transition: 0.3s ease;
}
.section-faq .accordion_title:hover {
    background: #00a799;
}
.section-faq .accordion_title.open {
    background: #888;
}
.section-faq .accordion_title.open:hover {
    background: #777;
}
.section-faq .accordion_title span {
    display: block;
}
.section-faq .accordion_title span::before {
    content: "質問をもっと見る";
}
.section-faq .accordion_title.open span::before {
    content: "質問を閉じる";
}
.section-faq .icon_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
}
.section-faq .icon {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
}
.section-faq .icon:before, .icon:after {
    display: flex;
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 20px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    transform: rotate(0deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}
.section-faq .icon:before {
    width: 4px;
    height: 20px;
    top: 0;
    left: 8px;
}
.section-faq .accordion_title.open .icon_wrap .icon:before {
    transform: rotate(-90deg);
}
.section-faq .accordion_inner {
    display: none;
}
.section-company {
    background: #f2f6f7;
    padding: 100px 5%;
}
.section-company .inner {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}
.section-company h2 {
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    color: #156e8f;
    margin-bottom: 60px;
}
.section-company h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #156e8f;
    margin-bottom: 20px;
}
.section-company .company table {
    width: 100%;
    border-top: 1px solid #d0d8db;
}
.section-company .company table th {
    border-bottom: 1px solid #d0d8db;
    padding: 2rem 0;
    text-align: left;
    width: 30%;
    font-weight: 600;
    vertical-align: top;
}
.section-company .company table td {
    border-bottom: 1px solid #d0d8db;
    padding: 2rem 0 2rem 0;
    width: 70%;
}
.section-company .company + .company {
    margin-top: 60px;
}
#pagetop {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 10px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    transition: opacity .2s;
}
#pagetop img{
    width: 50px;
}
#pagetop p {
    font-size: 1.4rem;
    font-weight: 700;
        color: #156e8f;
}
#pagetop.show {
    opacity: 1;
}
.bnav {
    display: none;
}

/* footer
----------------------------------------------------*/
footer.footer {
	padding: 40px 5%;
    color: #fff;
    background: #156e8f;
}
footer.footer .footer-inner {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
footer.footer .fnav a {
    color: #fff;
}
footer.footer .fnav a:hover {
    opacity: .7;
}
footer.footer .copy {
	font-size: 1.4rem;
}

@media screen and (min-width: 1025px) and (max-width: 1399px) {
    .section-mv .desc .heading .catchcopy {
        font-size: 1.8vw;
    }
    .section-mv .desc .heading h1 {
        font-size: 2.6vw;
    }
    .section-mv .info .detail {
        font-size: 1.6vw;
    }
    .section-mv .info .detail .number {
        font-size: 3vw;
    }
    .section-mv .desc .break {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .section-mv .pc-heading .catchcopy,
    .section-mv .pc-heading h1 {
        display: none;
    }
    .section-mv .desc .break {
        display: none;
    }
    .section-mv {
        padding: 120px 5% 200px;
    }
    .section-mv .contents {
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-mv .mv {
        width: 100%;
        margin: -80px 0 0;
    }
    .section-mv .desc {
        width: 100%;
        margin: 40px 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section-mv .info .detail {
        padding: 20px 30px;
    }
    .section-mv .heading .catchcopy {
        font-size: 3vw;
    }
    .section-mv .heading h1 {
        font-size: 6vw;
    }
    .section-mv .mb-heading.heading {
        display: block;
        position: relative;
        z-index: 1;
    }
    .section-about .about ul.strength-list li:not(.reverse) .about-img {
        width: 100%;
        text-align: center;
        position: static;
        margin-top: -100px;
    }
    .section-about .about ul.strength-list li:not(.reverse) .about-img img {
        width: 80%;
        max-width: 600px;
    }
    .section-about .about ul.strength-list li:not(.reverse) .about-desc {
        width: 100%;
    }
    .section-about .about ul.strength-list li.reverse .no {
        top: -70px;
        left: 50px;
    }
    .section-about .about ul.strength-list li.reverse .about-img {
        width: 100%;
        text-align: center;
        position: static;
        margin-top: -100px;
    }
    .section-about .about ul.strength-list li.reverse .about-img img {
        width: 80%;
        max-width: 600px;
    }
    .section-about .about ul.strength-list li.reverse .about-desc {
        width: 100%;
    }
    .section-flow ol.flow-list li {
        width: calc(50% - 20px);
    }
    .section-flow ol.flow-list li:nth-child(n+3) {
        margin: 40px auto 0;
    }
    .entry-area .contents {
        flex-direction: column-reverse;
        align-items: center;
    }
    .entry-area .contents .desc {
        width: auto;
        padding: 20px 20px 30px;
    }
    .entry-area .contents .desc .btn {
        justify-content: center;
    }
    .entry-area .contents .img {
        width: 100%;
        padding: 20px 20px 0;
        text-align: center;
    }
    .entry-area .contents .img img {
        width: 100%;
        max-width: 600px;
    }
    .entry-area .title .break {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .gnav {
        display: none;
    }
    header.header {
        position: absolute;
    }
    .bnav {
        display: block;
    }
    .section-mv {
        padding: 80px 5% 140px;
    }
    .section-mv .mv {
        width: 100%;
        margin: 0;
    }
    .section-mv .heading .catchcopy {
        font-size: 4vw;
        padding-bottom: 5px;
    }
    .section-mv .heading .catchcopy .dot::before {
        width: 4px;
        height: 4px;
        top: -10px;
    }
    .section-mv .heading h1 {
        margin-bottom: 20px;
    }
    .section-mv .desc {
        margin: 20px 0 0;
    }
    .section-mv .info {
        margin: 20px 0 0;
        flex-direction: column;
    }
    .section-mv .info .today {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .section-mv .info .today .year {
        margin-right: 5px;
    }
    .section-mv .info .detail {
        font-size: 2rem;
        padding: 20px;
        border-radius: 0 0 10px 10px;
    }
    .section-mv .info .detail .number {
        font-size: 3rem;
    }
    .section-mv .loop-css .bg-text {
        font-size: 10rem;
    }
    .section-about .about-heading {
        padding: 60px 5% 120px;
    }
    .section-about .about-heading .heading {
        padding: 14px 0;
    }
    .section-about .about-heading .heading img {
        width: 26px;
        height: 26px;
        top: -1.6rem;
    }
    .section-about .about-heading .heading h2 {
        font-size: 3rem;
        margin-bottom: 5px;
    }
    .section-about .about ul.strength-list {
        transform: translateY(-60px);
    }
    .section-about .about ul.strength-list li {
        padding: 16px 16px 24px;
    }
    .section-about .about ul.strength-list li:not(:last-child) {
        margin-bottom: 40px;
    }
    .section-about .about ul.strength-list li:not(.reverse) .no {
        top: -50px;
        left: 16px;
        font-size: 6rem;
    }
    .section-about .about ul.strength-list li:not(.reverse) .about-img {
        margin-top: -40px;
    }
    .section-about .about ul.strength-list li:not(.reverse) .about-desc {
        margin-top: 20px;
    }
    .section-about .about ul.strength-list li .about-desc h3 {
        font-size: 2.2rem;
    }
    .section-about .about ul.strength-list li.reverse .no {
        top: -50px;
        left: 16px;
        font-size: 6rem;
    }
    .section-about .about ul.strength-list li.reverse .about-img {
        margin-top: -40px;
    }
    .section-about .about ul.strength-list li.reverse .about-desc {
        margin-top: 20px;
    }
    .section-flow {
        padding: 60px 5%;
    }
    .section-flow .flow-heading {
        margin-bottom: 40px;
    }
    .section-flow .flow-heading .heading {
        padding: 14px 0;
    }
    .section-flow .flow-heading .heading img {
        width: 26px;
        height: 26px;
        top: -1.6rem;
    }
    .section-flow .flow-heading .heading h2 {
        font-size: 3rem;
        margin-bottom: 5px;
    }
    .section-flow ol.flow-list li {
        width: 100%;
    }
    .section-flow ol.flow-list li:nth-child(n+2) {
        margin: 40px auto 0;
    }
    .section-flow ol.flow-list li .title .no {
        font-size: 6rem;
    }
    .section-flow ol.flow-list li .title .step {
        font-size: 2rem;
        padding: 0 70px 0 0;
    }
    .section-flow ol.flow-list li:not(:last-child) .title {
         min-height: auto; 
    }
    .section-flow ol.flow-list li .title .more {
        font-size: 2rem;
    }
    .section-flow ol.flow-list li .desc {
        padding: 16px 16px 24px;
    }
    .section-flow ol.flow-list li .desc h3 {
        font-size: 2rem;
    }
    .section-client {
        padding: 60px 5%;
    }
    .section-client ul.client-list li .desc .client-title .img {
        width: 60px;
    }
    .section-client .client-heading {
        margin-bottom: 40px;
    }
    .section-client .client-heading .heading {
        padding: 14px 0;
    }
    .section-client .client-heading .heading img {
        width: 26px;
        height: 26px;
        top: -1.6rem;
    }
    .section-client .client-heading .heading h2 {
        font-size: 3rem;
        margin-bottom: 5px;
    }
    .section-client ul.client-list li {
        width: 100%;
    }
    .section-client ul.client-list li:nth-child(n+2) {
        margin-top: 40px;
    }
    .section-client ul.client-list li .title .no {
        font-size: 6rem;
    }
    .section-client ul.client-list li .title .voice {
        font-size: 2rem;
        padding: 0 70px 0 0;
    }
    .section-client ul.client-list li .desc {
        padding: 16px 16px 24px;
    }
    .section-client ul.client-list li .desc h3 {
        font-size: 2rem;
    }
    .section-client ul.client-list li .desc .comment {
        margin-top: 30px;
    }
    .section-members .members-heading {
        padding: 60px 5% 100px;
    }
    .section-members .members-heading .heading {
        padding: 14px 0;
    }
    .section-members .members-heading .heading img {
        width: 26px;
        height: 26px;
        top: -1.6rem;
    }
    .section-members .members-heading .heading h2 {
        font-size: 3rem;
        margin-bottom: 5px;
    }
    .section-members .members {
        margin-top: -40px;
        padding: 60px 0;
        border-radius: 40px 40px 0 0;
    }
    .section-members .members h3 {
        font-size: 2rem;
        margin: 40px 0 20px;
    }
    .entry-area {
        margin-top: 40px;
    }
    .entry-area .title {
        font-size: 1.8rem;
    }
    .entry-area .title p {
        padding: 0 30px;
    }
    .entry-area .contents .desc p {
        font-size: 5vw;
    }
    .section-faq {
        padding: 60px 0;
    }
    .section-faq .inner {
        padding: 40px 16px;
    }
    .section-faq .faq-heading {
        margin-bottom: 40px;
    }
    .section-faq .faq-heading .heading {
        padding: 14px 0;
    }
    .section-faq .faq-heading .heading img {
        width: 26px;
        height: 26px;
        top: -1.6rem;
    }
    .section-faq .faq-heading .heading h2 {
        font-size: 3rem;
        margin-bottom: 5px;
    }
    .section-faq .question .img {
        width: 70px;
    }
    .section-faq .question .text {
        margin: 0;
    }
    .section-faq .question .text .talk {
        padding: 10px;
        margin-left: 20px;
    }
    .section-faq .question .text .talk::before {
        top: 16px;
    }
    .section-faq .question .text .talk p {
        padding-left: 3rem;
    }
    .section-faq .question .text .talk p::before {
        font-size: 2.4rem;
    }
    .section-faq .question .text .talk p::after {
        height: 20px;
        left: 2.2rem;
    }
    .section-faq .answer .img {
        width: 70px;
    }
    .section-faq .answer .text {
        margin: 0;
    }
    .section-faq .answer .text .talk {
        padding: 10px;
        margin-right: 20px;
    }
    .section-faq .answer .text .talk::before {
        top: 16px;
    }
    .section-faq .answer .text .talk p {
        padding-left: 3rem;
    }
    .section-faq .answer .text .talk p::before {
        font-size: 2.4rem;
    }
    .section-faq .answer .text .talk p::after {
        height: 20px;
        left: 2.2rem;
    }
    .section-faq .accordion_title {
        font-size: 1.6rem;
        padding: 10px 40px 10px 10px;
    }
    .section-company {
        padding: 60px 5% 80px;
    }
    .section-company h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    .section-company .company + .company {
        margin-top: 40px;
    }
    .section-company .company table th {
        padding: 1.6rem 0;
    }
    .section-company .company table td {
        padding: 1.6rem 0 1.6rem 0;
    }
    #pagetop {
        right: 10px;
    }
    #pagetop img {
        width: 30px;
    }
    #pagetop p {
        font-size: 1.2rem;
    }
    footer.footer {
        padding: 40px 16px 100px;
    }
}


@media screen and (max-width: 640px) {
    .section-members .members .wrap-02 {
        padding: 0;
        margin-top: 40px;
    }
    .section-members .inner-02 {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .section-members .inner-02::-webkit-scrollbar {
        background: #dbe8eb;
        height: 14px;
    }
    .section-members .inner-02::-webkit-scrollbar-thumb {
        background-color: #afc0c6;
    }
    .section-members .members .inner-03 {
        margin-top: 30px;
    }
    .section-members .membership {
        margin: 0 5% 20px 5%;
        min-width: 500px;
    }
    .section-members .membership .title {
        width: 30%;
        border-radius: 10px 0 0 10px;
    }
    .section-members .membership .title div {
        min-height: 60px;
        padding: 5px;
    }
    .section-members .membership .compro-member {
        width: 23.3%;
        border: 4px solid #00cbb0;
        border-radius: 10px;
        transform: translateY(13px);
    }
    .section-members .membership .compro-member div {
        min-height: 60px;
    }
    .section-members .membership .compro-member .top {
        min-height: 70px;
        padding: 5px;
        font-size: 1.6rem;
    }
    .section-members .membership .compro-member div:last-child {
        min-height: 70px;
    }
    .section-members .membership .member {
        width: 23.3%;
    }
    .section-members .membership .member-02 {
        border-radius: 0 10px 10px 0;
    }
    .section-members .membership .member div {
        min-height: 60px;
    }
    .section-members .membership .member .top {
        min-height: 60px;
        padding: 5px;
        font-size: 1.6rem;
    }
    .entry-area .contents .desc .btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .entry-area a.members-btn {
        width: 230px;
    }
    .entry-area a.contact-btn {
        width: 230px;
        margin: auto;
    }
    .bnav>ul>li {
        width: 60%;
        font-size: 1.4rem;
    }
    .bnav>ul>li:not(:last-child) {
        margin-right: unset;
    }
    .bnav>ul>li a.members-btn {
        text-align: center;
        width: 100%;
        padding: .6rem 3rem .6rem 1rem;
    }
    .bnav>ul>li a.members-btn::before {
        width: 12px;
        height: 10px;
        right: 14px;
    }
    .bnav>ul>li a.members-btn::after {
        width: 20px;
        height: 20px;
        right: 10px;
    }
    .bnav>ul>li a.contact-btn {
        text-align: center;
        width: 100%;
        padding: .6rem 3rem .6rem 1rem;
    }
    .bnav>ul>li a.contact-btn::before {
        width: 12px;
        height: 10px;
        right: 14px;
    }
    .bnav>ul>li a.contact-btn::after {
        width: 20px;
        height: 20px;
        right: 10px;
    }
    footer.footer .footer-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    footer.footer .fnav {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}