@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 2;
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    color: #000;
}

.nav-open {
    overflow: hidden;
}

.body-wrapper {
    position: relative;
    overflow-x: hidden;
}

.container { 
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.position-relative {
    position: relative !important;
}

.flex-1 {
    flex: 1;
}

.fw-700 {
    font-weight: 700 !important;
}

.f-12 {
    font-size: 1.2rem;
    line-height: 1.5;
}

.f-24 {
    font-size: 2.4rem !important;
}

.tb,
.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .tb {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .f-24 {
        font-size: 1.6rem !important;
    }
    .sp {
        display: block;
    }
    .sp-hide {
        display: none;
    }
}

.fadeUp {
    opacity: 0;
}

.fadeUp.anime {
	animation-name: fadeUp;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeUp {
	0% {
		transform: translateY(100px);
        opacity: 0;
	}
	100% {
		transform: translateY(0);
        opacity: 1;
	}
}


/********************************************************
************************ Header *************************
********************************************************/

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 3;
}

.header-wrapper {
    display: flex;
    align-items: center;
    max-width: 1210px;
    height: 120px;
    margin: 0 auto;
    padding-right: 15px;
}

.header-logo {
    width: 320px;
    line-height: 0;
}

.header-menu ul li {
    margin: 10px 0;
}

.header-menu ul li a {
    position: relative;
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    color: #333;
}

.header-menu ul li a .it-txt{
  font-style: italic;
}

.header-menu ul li:not(:last-child) a {
    margin-right: 22px;
}

.menu-trigger {
    position: fixed;
    display: none;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #004386;
    z-index: 101;
}

.menu-trigger span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
}

.menu-trigger span:nth-of-type(1) {
    top: 17px;
}

.menu-trigger span:nth-of-type(2) {
    top: 29px;
}

.menu-trigger span:nth-of-type(3) {
    top: 41px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(12px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(12px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(12px) rotate(0);
    }
    100% {
        transform: translateY(12px) rotate(45deg);
    }
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    width: 30px;
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-12px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-12px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-12px) rotate(0);
    }
    100% {
        transform: translateY(-12px) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {
    .header-wrapper {
        height: 60px;
    }
    .header-logo {
        width: 200px;
    }
    .header-menu {
        position: fixed;
        top: 0;
        left: 100vw;
        width: 100%;
        height: 100vh;
        padding: 100px 5vw;
        /* background: linear-gradient(to right, rgba(0, 169, 255, .8), rgba(5, 219, 255, .8)); */
        background: linear-gradient(to right, rgba(0, 67, 134, 0.8), rgba(5, 153, 212, 0.8));
        transition: all .4s;
        z-index: 100;
        overflow-y: auto;
    }
    .header-menu.active {
        left: 0;
    }
    .header-menu ul {
        max-width: 600px;
        margin: 0 auto;
    }
    .header-menu ul li {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .header-menu ul li a {
        margin: 0 !important;
        padding: 15px 0 !important;
        font-size: 1.6rem;
        line-height: 2;
        color: #fff;
        border-right: none !important;
        border-top: 1px solid #fff;
    }
    .header-menu ul li:last-child a {
        height: 60px;
        font-size: 0;
        border-top: none;
        background: url(../img/btn_sp-menu.png) no-repeat center / contain;
    }
    .menu-trigger {
        display: block;
    }
}


/********************************************************
************************ footer *************************
********************************************************/

.footer {
    padding: 50px 0;
    text-align: center;
    font-size: 1.8rem;
}

.ft-btn {
    position: fixed;
    right: 0;
    top: calc(50vh - 150px);
    display: block;
    width: 80px;
    height: 270px;
    background: url(../img/btn_contact.png) no-repeat right center / contain;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .ft-btn {
        position: fixed;
        right: 0;
        top: auto;
        bottom: 0;
        display: block;
        width: 100%;
        height: auto;
        padding: 10px 5%;
        background: rgba(255, 255, 255, .5);
    }
}


/****************************************
***************** MV *******************
****************************************/

.mv {
    margin-top: 120px;
    background: url(../img/bg_mv.png) no-repeat center bottom / cover;
    height: calc(100vh - 120px);
    /* height: 100vh; */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mv .container {
    width: 95%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.mv-logo {
    width: 45.7%;
    margin: 0 10px;
}

.mv-cont {
    width: 45%;
    margin: 0 10px;
}

.mv-cont__ttl{
  /* font-size: 4.8rem; */
  font-size: clamp(4rem, 2.5vw, 4.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
  margin-top: calc((1 - 1.5) * 0.5em);
}

.mv-cont__txt {
    margin-top: 15px;
    line-height: 2;
    color: #fff;
    letter-spacing: .2em;
    font-feature-settings: "palt";
}

@media screen and (max-width: 1024px) {
  .mv .container{
    /* display: block; */
  }
  .mv-logo{
    width: 45%;
  }
  .mv-cont{
    width: 54%;
  }
  .mv-cont__txt{
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
    .mv {
        height: calc(100dvh - 60px);
        min-height: 500px;
        margin-top: 60px;
        padding-top: 16.41vw;
        display: block;
    }    
    .mv .container {
        width: 78%;
        height: auto;
        display: block;
    }    
    .mv-logo {
        width: 100%;
        max-width: 500px;
        margin: 0;
        margin-bottom: 20px;
    }
    .mv-cont {
        width: 100%;
        margin: 0;
    }
    .mv-cont__txt span {
        letter-spacing: .1em;
    }
    .mv-cont__ttl {
      font-size: 3.2rem;
      font-size: clamp(1.6rem, 8.205vw, 6rem);
    }
    .mv-cont__txt {
      width: 100%;
      font-weight: bold;
      font-size: clamp(1.2rem, 3.59vw, 2rem);
      line-height: 1.5;
      margin-top: 8px;
    }
}

/* タイトル */
.cmn-ttl{
  font-size: 2.4rem;
  line-height: 1.5;
}
.cmn-ttl span {
    display: inline-block;
    padding-left: .2em;
    font-weight: 700;
    letter-spacing: .2em;
    color: #0068ad;
    border: 2px solid #0068ad;
    padding: 4px 12px;
    font-feature-settings: "palt";
}

@media screen and (max-width: 480px) {
    .cmn-ttl{
      font-size: 1.6rem;
    }
    .cmn-ttl span{
      padding: 2px 8px;
    }
}


/****************************************
***************** ウルトラファインバブルとは？ *******************
****************************************/

.concept {
    margin-top: -110px;
    padding-top: 210px;
    padding-bottom: 194px;
    background: url(../img/bg_concept.png) no-repeat center bottom / cover;
}

.concept .cmn-ttl span{
  border: none;
  padding: 0;
}

.concept-cont__txt {
    margin-top: 10px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    /* .concept {
        padding-top: 40px;
    } */
    .concept {
      margin-top: -220px;
      padding-top: 270px;
      padding-bottom: 100px;
      background: url(../img/bg_concept.png) no-repeat center bottom / cover;
    }

    .concept .cmn-ttl span {
      border: none;
      padding: 0;
    }

    .concept-cont__txt {
      margin-top: 30px;
      text-align: left;
      /* font-feature-settings: "palt"; */
      letter-spacing: .2em;
    }
  }

@media screen and (max-width: 480px) {
    .concept .cmn-ttl{
      font-size: 1.8rem;
    }

}


/****************************************
***************** 効果 *******************
****************************************/

.effect {
    padding-top: 126px;
}

.effect .container{
  max-width: 1200px;
}

.effect ul {
    margin-top: 44px;
}

.effect-img {
    width: 47.3%;
}

.effect-cont {
    width: 45.4%;
    padding: 0 42px 0 50px;
}

.effect-cont__txt{
  margin-top: 10px;
}

.effect-cont .cmn-ttl span{
  border: none;
  padding: 0;
}

.effect-txt {
    margin-top: 160px;
}


@media screen and (max-width: 768px) {
    .effect {
        padding-top: 30px;
    }
    .effect ul li:not(:first-child){
      margin-top: 40px;
    }
}

@media screen and (max-width: 680px) {
    .effect-cont {
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }
    .effect-cont .cmn-ttl{
      font-size: 1.8rem;
    }
    .effect-img {
        width: 100%;
    }
    .effect-txt {
      margin-top: 60px;
      width: 98%;
      font-feature-settings: "palt";
    }
    .effect-cont__txt {
      width: 96%;
      font-feature-settings: "palt";
    }
}


/****************************************
**************** 活用例 ******************
****************************************/

.case {
    padding-top: 220px;
}

.case ul li {
    margin-top: 80px;
}

.case ul li .cmn-ttl span{
  border-radius: 30px;
  padding: 0 20px;
}

.case ul li:first-child {
    margin-top: 100px;
    padding: 0 40px;
}

.case ul li:last-child {
    padding: 0 40px;
}

.case-cont {
    position: relative;
    width: calc(100% - 500px);
    z-index: 2;
}

.case ul li:first-child .case-cont {
    padding-bottom: 10px;
    width: calc(100% - 435px);
}

.case ul li:nth-child(2) .case-cont {
    margin-right: 40px;
    margin-top: 140px;
}

.case ul li:nth-child(3) .case-cont {
    margin-top: 146px;
    margin-right: 24px;
}

.case ul li:nth-child(4) .case-cont {
    margin-top: 140px;
    margin-right: -10px;
}

.case ul li:last-child .case-cont {
    margin-top: 146px;
    width: calc(100% - 445px);
}


.case-img {
    position: relative;
    width: 400px;
}

.case ul li:nth-child(2) .case-img{
  margin-left: -20px;
}

.case ul li:nth-child(3) .case-img {
  margin-right: -10px;
}

.case ul li:nth-child(4) .case-img {
  margin-left: 30px;
}

.case-img figcaption {
    position: absolute;
    font-family: "Times New Roman", serif;
    font-style: italic;
    color: #0068ad;
    font-size: 4.8rem;
    font-feature-settings: "palt";
    letter-spacing: .2em;
    line-height: 1;
}

.case ul li:nth-child(1) .case-img figcaption {
    top: 40px;
    left: -220px;
}

.case ul li:nth-child(2) .case-img figcaption {
    top: 50px;
    left: 365px;
}

.case ul li:nth-child(3) .case-img figcaption {
    top: 40px;
    left: -190px;
}

.case ul li:nth-child(4) .case-img figcaption {
    top: 44px;
    left: 365px;
}

.case ul li:nth-child(5) .case-img figcaption {
    top: 40px;
    left: -68px;
}

.case-cont__txt{
  margin-top: 16px;
}

@media screen and (max-width: 980px) {
  .case ul li:first-child .case-cont {
      width: calc(100% - 220px);
      margin-right: -180px;
  }
}
@media screen and (max-width: 768px) {
    .case {
        padding-top: 170px;
    }
    .case ul li .cmn-ttl {
      font-size: 2.4rem;
    }
    .case ul li {
        width: 100%;
        margin-top: 76px;
    }
    .case ul li:first-child{
      margin-top: 70px;
      padding: 0;
    }
    .case ul li:nth-child(2){
      margin-top: 60px;
    }
    .case ul li:nth-child(5) {
      margin-top: 50px;
      padding: 0;
    }
    .case-cont {
        width: 100%;
        margin-top: 0;
        margin-bottom: 10px;
        font-feature-settings: "palt";
    }
    .case ul li:first-child .case-cont {
        width: 92%;
        margin-right: 0;
        margin-bottom: -40px;
    }
    .case ul li:nth-child(2) .case-cont{
      width: 90%;
      margin: 10px 0 0 auto;
      margin-right: -4%;
    }
    .case ul li:nth-child(3) .case-cont {
      margin-top: 0;
      margin-bottom: -30px;
    }
    .case ul li:nth-child(4) .case-cont {
      margin-top: 0;
    }
    .case ul li:nth-child(5) .case-cont {
      margin-top: 0;
      width: 100%;
      margin-bottom: -30px;
    }
    .case-img {
        width: calc(100% + 5vw);
    }
    .case ul li:nth-child(2n+1) .case-img {
        margin-right: -5vw;
    }
    .case ul li:nth-child(2n) .case-img {
        margin-left: -5vw;
    }
    .case-img figure {
        width: 77vw;
    }
    .case ul li:nth-child(2n+1) .case-img figure {
        margin-left: auto;
    }
    .case ul li:nth-child(1) .case-img figcaption {
      top: auto;
      left: 2%;
      bottom: 4%;
    }
    .case ul li:nth-child(2) .case-img figcaption {
      top: 5%;
      left: auto;
      right: -4%;
    }

    .case ul li:nth-child(3) .case-img figcaption {
      top: auto;
      left: -4%;
      bottom: 16%;
    }

    .case ul li:nth-child(4) .case-img figcaption {
      top: 8%;
      left: auto;
      right: -4%;
    }

    .case ul li:nth-child(5) .case-img figcaption {
      top: auto;
      bottom: 5%;
      left: 0;
    }
    .case-cont__txt {
      margin-top: 10px;
      width: 96%;
    }
    .case ul li:first-child  .case-cont__txt{
      width: 100%;
    }
}


/****************************************
***************** UFB DUAL™とは *******************
****************************************/

.ufb {
    padding-top: 160px;
}

.ufb-cont {
    max-width: 800px;
    margin: 40px auto 0;
}

.ufb-cont figure {
    width: 110px;
    margin-right: 28px;
}

.ufb-cont .flex-1{
  max-width: 666px;
}

@media screen and (max-width: 768px) {
    .ufb {
        padding-top: 80px;
    }
}

@media screen and (max-width: 480px) {
    .ufb .cmn-ttl span {
      line-height: 1.5;
    }
    
    .ufb-cont {
        margin-top: 15px;
    }

    .ufb-cont figure {
        width: 100%;
        max-width: 110px;
        margin: 0 auto 15px;
        text-align: center;
    }
    .ufb-cont .flex-1 {
        flex: none;
        width: 96%;
        font-feature-settings: "palt";
    }
}


/****************************************
***************** 変化 *******************
****************************************/

.change {
    padding-top: 160px;
}

.change .cmn-ttl span{
  line-height: 1.5;
  padding: 10px 24px;
}

.change-txt{
  margin: 80px 0 50px 0;
}

@media screen and (max-width: 768px) {
    .change {
        padding-top: 80px;
    }
    .change-txt{
      margin: 52px 0 22px;
    }
    .change .ma_30 {
        margin: 1em 0;
    }
    .change-diagram dl {
        position: absolute;
        left: 0;
        bottom: 70%;
        width: 77%;
        font-size: 1.4rem;
        line-height: 1.5;
    }
    .change-diagram dl dt {
        margin-bottom: 5px;
        color: #008bd5;
        font-weight: 700;
        letter-spacing: .1em;
    }
    .change-list li {
        margin-top: 20px;
        padding: 20px;
        border: 1px solid #008bd5;
        border-radius: 5px;
        font-feature-settings: "palt";
    }
    .change-list li h3 {
        font-weight: 700;
        color: #008bd5;
    }
    .change-list li figure {
        margin-top: 10px;
        text-align: center;
    }
    .change-list li p{
      width: 96%;
    }
}

@media screen and (max-width: 400px) {
    .change-diagram dl {
        font-size: 1.2rem;
    }
}


/****************************************
***************** 特徴 *******************
****************************************/

.feature {
    padding-top: 152px;
}

.feature-ttl{
  color: #0068ad;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 2.1rem;
  line-height: 1.33;
  margin-top: 10px;
  letter-spacing: .2em;
  font-feature-settings: "palt";
}

.feature-ttl .num{
  font-weight: 400;
  font-family: "Times New Roman", serif;
  font-size: 9rem;
  font-style: italic;
  margin-right: 14px;
  line-height: 0.9;
  letter-spacing: 0;
}

.feature ul li {
    width: 47%;
    margin-top: 84px
}

.feature ul li:not(:nth-child(-n+2)){
  margin-top: 120px;
}

.feature-cont{
  text-align: justify;
}


@media screen and (max-width: 768px) {
    .feature {
        padding-top: 86px;
    }
}

@media screen and (max-width: 600px) {
    .feature-ttl{
      align-items: flex-start;
      margin-top: 20px;
    }
    .feature ul li:nth-child(5) .feature-ttl{
      font-size: 2rem;
      letter-spacing: .15em;
    }
    .feature ul li:first-child .feature-ttl{
      align-items: center;
    }
    .feature-ttl .num{
      line-height: 0.8;
      margin-top: -5px;
    }
    .feature ul li {
      width: 100%;
      margin-top: 50px;
    }
    .feature ul li:not(:nth-child(-n+2)) {
      margin-top: 50px;
    }
    .feature ul li:first-child {
      margin-top: 27px;
    }
    .feature-cont {
        width: 100%;
    }
    .feature-cont p{
      margin-top: 10px;
    }
    .feature-img {
        width: 100%;
    }
}


/****************************************
***************** 使われています *******************
****************************************/

.usage {
    padding-top: 124px;
}

.usage ul{
  margin-top: 64px;
}
.usage ul li:not(:nth-child(-n+3)){
  margin-top: 40px;
}

.usage ul li {
    position: relative;
    width: 30%;
}

.usage ul li p {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .usage {
        padding-top: 75px;
    }
}

@media screen and (max-width: 600px) {
    .usage .cmn-ttl span{
      line-height: 1.5;
    }
    .usage .ma_to20{
      margin-top: 52px;
    }
    .usage ul{
      margin-top: 20px;
    }
    .usage ul li {
        position: relative;
        width: 48%;
    }
    .usage ul li:not(:nth-child(-n+2)) {
      margin-top: 15px;
    }
    .usage ul li p {
        font-size: 1.6rem;
    }
}


/****************************************
***************** お声 *******************
****************************************/

.voice {
    padding-top: 230px;
}

.voice ul li {
    margin-top: 50px;
}

.voice ul li:first-child{
  margin-top: 92px;
}

.voice ul li:last-child {
  margin-top: 78px;
}
.voice-img{
  width: 47.5%;
}

.voice-cont {
  width: 47%;
}

.voice-cont .num{
  font-size: 4.8rem;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-feature-settings: "palt";
  color: #0068ad;
  line-height: 0.8;
}

.voice-cont .txt{
  margin-top: 10px;
  text-align: justify;
}

.voice ul li h3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1.5;
}

.voice ul li h3 span {
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    font-weight: bold;
    background-color: #004386;
}

@media screen and (max-width: 768px) {
    .voice {
        padding-top: 136px;
    }
}

@media screen and (max-width: 600px) {
    .voice ul li {
        width: 100%;
        margin-top: 60px;
    }
    .voice ul li:first-child{
      margin-top: 80px;
    }
    .voice-img {
      width: 100%;
    }
    .voice-cont {
      width: 100%;
      margin-top: 16px;
    }
}


/****************************************
***************** 比較表 *******************
****************************************/

.compare {
    padding-top: 90px;
}

.compare figure {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .compare {
        padding-top: 114px;
    }
}


/****************************************
***************** スペック ***************
****************************************/

.spec {
    padding-top: 120px;
}

.spec table {
    width: 100%;
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #2c67af;
    border: 1px solid #2c67af;
    border-collapse: collapse;
}

.spec table tr th,
.spec table tr td {
    padding: 10px 30px;
    border: 1px solid #2c67af;
    vertical-align: middle;
}

.spec table thead tr th,
.spec table thead tr td {
    text-align: center;
    color: #fff;
    background-color: #2c67af;
    border: 1px solid #fff;
}

.spec table tr td img{
  height: 147px;
}

@media screen and (max-width: 768px) {
    .spec {
        padding-top: 72px;
    }
    .spec table {
        margin-top: 20px;
    }
    .spec table:first-child{
      margin-top: 40px;
    }
    .spec table tr th {
        width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .spec table tr th, 
    .spec table tr td {
        padding: 10px;
        font-size: 1.2rem;
    }
    .spec table tr th {
        width: 150px;
    }
}


/****************************************
***************** よくあるご質問 *******************
****************************************/

.faq {
    padding-top: 130px;
}


.faq ul {
    max-width: 800px;
    margin: 0 auto;
}

.faq ul li {
    margin-top: 45px;
}

.faq ul li:first-child{
  margin-top: 35px;
}
.faq ul li .cmn-ttl{
  font-size: 1.6rem;
}
.faq ul li .cmn-ttl span{
  border: none;
  color: #fff;
  background-color: #0068ad;
  padding: 4px 10px;
}

@media screen and (max-width: 768px) {
    .faq {
        padding-top: 78px;
    }
}

@media screen and (max-width: 480px) {
    .faq ul li {
        margin-top: 25px;
        font-size: 1.4rem;
    }
    .faq ul li .cmn-ttl{
      font-size: 1.3rem;
    }
    .faq ul li .cmn-ttl span{
        padding: 2px;
        letter-spacing: 0;
        font-feature-settings: inherit;
    }
}


/****************************************
***************** フロー*****************
****************************************/

.step {
    padding-top: 152px;
}

.step ul {
    min-height: 983px;
    max-width: 576px;
    margin: 0 auto;
    position: relative;
}

.step ul::before{
  content: '';
  display: block;
  width: 90px;
  height: 100%;
  background: url(../img/arw_step.png) no-repeat top left / 90px 100%;
  position: absolute;
  top: 5px;
  left: 0;
}

.step ul li {
    max-width: 470px;
    /* margin-top: 70px; */
    margin-left: 108px;
}

.step ul li:first-child{
  margin-top: 80px;
}

.step ul li:nth-child(2) {
  margin-top: 58px;
}

.step ul li:nth-child(3) {
  margin-top: 60px;
}

.step ul li:nth-child(4) {
  margin-top: 60px;
}

.step ul li:nth-child(5) {
  margin-top: 60px;
}
.step ul li .cmn-ttl{
  font-size: 2.1rem;
}
.step ul li .cmn-ttl span{
  border: none;
  padding: 0;
}

.step ul li p{
  margin-top: 5px;
  /* text-align: justify; */
}


@media screen and (max-width: 768px) {
    .step {
        padding-top: 74px;
    }
}

@media screen and (max-width: 680px) {
    .step ul {
        min-height: 0;
        padding-bottom: 88px;
        position: relative;
    }
    .step ul::before{
      content: '';
      width: 2px;
      height: 100%;
      display: block;
      background-color: #0068ad;
      left: 8px;
    }
    .step ul::after{
      content: '';
      width: 2px;
      height: 25px;
      background-color: #0068ad;
      transform: rotate(45deg);
      position: absolute;
      bottom: -9px;
      left: 16px;

    }
    .step ul li {
      max-width: 470px;
      /* margin-top: 70px; */
      margin-left: 60px;
    }
    .step ul::before {
      /* width: 40px; */
      /* display: none; */
    }
    .step ul li{
      position: relative;
    }

    .step ul li .cmn-ttl::before{
      content: '';
      width: 39px;
      height: 16px;
      display: block;
      background: url(../img/arw_step_parts.png) no-repeat top left / 100%;
      position: absolute;
      top: 5px;
      left: -60px;
    }
    .step ul li:first-child{
      margin-top: 68px;
    }
    .step ul li:nth-child(2) {
      margin-top: 34px;
    }

    .step ul li:nth-child(3) {
      margin-top: 34px;
    }

    .step ul li:nth-child(4) {
      margin-top: 30px;
    }

    .step ul li:nth-child(5) {
      margin-top: 30px;
    }
}


/****************************************
***************** contact ***************
****************************************/

.contact {
    padding-top: 210px;
}

.formTable {
    max-width: 800px;
    margin: 84px auto 0;
}

.formTable dl {
    margin-bottom: 30px;
}

.formTable dl dt {
    font-weight: 700;
    color: #2c67af;
}

.formTable input[type="text"],
.formTable input[type="email"],
.formTable select,
.formTable textarea {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 0;
}

::-webkit-full-page-media,
:future,
:root .formTable select {
  -webkit-appearance: none;
    appearance: none;
}

.formTable select {
    max-width: 200px;
}

.formTable input[type="button"] {
    display: block;
    width: 642px;
    height: 106px;
    margin: 50px auto 0;
    font-size: 0;
    background: url(../img/btn_submit.png) no-repeat top / 100% auto;
    border: none;
    outline: none;
}

.formTable input[type="button"]:hover {
    opacity: .7;
    filter: opacity(.7);
}

.formTable .error_blank {
    color: #ff0000;
}

.formTable #agreement input[type="checkbox"] {
	margin-right: 10px;
}


.formTable #agreement span.error_check {
	display: none;
	color: #ff0000;
	margin-top: 3px;
}

.formTable-other {
    display: none;
}

.thanks-main {
    margin-top: 120px;
    height: 800px;
    background: url(../img/thanks_b.jpg) no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thanks-cont{
  color: #fff;
  text-align: center;
  /* line-height: 1; */
  padding-top: 50px;
  font-feature-settings: "palt";
}
.thanks-cont .txt1{
  font-family: "Times New Roman", serif;
  font-size: clamp(3rem, 13.846vw, 5.4rem);
  /* font-size: 5.4rem; */
  letter-spacing: .2em;
}
.thanks-cont .txt2{
  /* font-size: 28px; */
  font-size: clamp(2rem, 6.154vw, 2.8rem);
  margin-top: 20px;
  letter-spacing: .2em;
  font-weight: bold;
}
.thanks-cont .txt3{
  margin-top: 18px;
  font-size: clamp(1.4rem, 5.128vw, 2rem);
  /* font-size: 2rem; */
}

@media screen and (max-width: 768px) {
    .contact {
        padding-top: 48px;
    }
    .formTable{
      margin: 70px auto 0;
    }
    .formTable input[type="button"] {
        width: 100%;
        height: 60px;
    }

    .thanks-main {
      margin-top: 60px;
      height: calc(100vh - 60px);
      background: url(../img/thanks_b.jpg) no-repeat center / cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .thanks-cont {
      color: #fff;
      text-align: center;
      padding-top: 0px;
      font-feature-settings: "palt";
      line-height: 1.8;
    }

    .thanks-cont .txt1 {
      /* font-size: 5.4rem; */
      letter-spacing: .2em;
    }

    .thanks-cont .txt2 {
      /* font-size: 2.4rem; */
      margin-top: 0px;
    }

    .thanks-cont .txt3 {
      margin-top: 15px;
    }
}