@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #1f303c;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
    display: block !important;
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: column;
    padding: 2rem 0 0 0;
    margin-bottom: 10px;
}
.header-box {
	display: none !important;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#navi {
    display: none;
}
nav ul {
	display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
.header {
    flex-direction: row;
    margin-bottom: 0;
}
.header-box {
    display: block !important;
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}
#navi {
    display: block !important;
}
nav ul {
	flex-direction: row;
}
}


    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
.section-wrap{
    padding: 14.49vw 0;
}
.gray-back {
	background-color: var(--back-color);
}

@media screen and (min-width: 768px){
    .section-wrap{
        padding: 90px 0;
    }
}

@media screen and (min-width: 1080px){
    .section-wrap{
        padding: 120px 0;
    }
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #004ea2; 
    padding: 3rem 0;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}

@media screen and (min-width: 768px){
    .table th {
        width: 250px;
        display: table-cell;
    }
    .table td {
        display: table-cell;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    background: #004ea2;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    line-height: 1.1;
    z-index: 20;
}
#pagetop a {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #666;
    border-radius: 50%;
    opacity: 0.9;
    transition: 0.3s;
}
#pagetop a:hover,
#pagetop a:active,
#pagetop a:focus{
    opacity: 0.6;
}
#pagetop a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    font-size: 25px;
    text-align: center;
}





/*
# =================================================================
# カスタマイズ
# =================================================================
*/

body{
    color: #000;
}

.sp{
    display: block!important;
}

.pc{
    display: none!important;
}

.flex-box {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
    
.flex-box.align-fs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-box.align-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

.flex-box.row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
}

picture{
    display: block;
    line-height: 1;
}

.b{
    font-weight: 700;
}

.red{
    color: #d80c18;
}

.lp-a header{
    display: block;
    background-color: #e9f8fd;
    background-image: url(../images/fv_img_a_sp.webp);
    background-position: center 36.23vw;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    margin: 0;
}

.lp-a.title01 header .container{
    height: 0;
    padding: 0;
    padding-bottom: calc(100%*643/414);
    position: relative;
}

.lp-a.title02 header .container{
    height: 0;
    padding: 0;
    padding-bottom: calc(100%*753/414);
    position: relative;
}

header .fv-catch{
    position: absolute;
    top: 9.66vw;
    left: 0;
    right: 0;
    line-height: 1;
    margin: auto;
}

header .catch01{
    width: 92.75vw;
}

header .catch02{
    width: 77.78vw;
}

.lp-a header .main-title{
    position: absolute;
    bottom: 9.66vw;
    left: 0;
    right: 0;
    line-height: 1;
    margin: auto;
}

.lp-a.title01 header .main-title{
    width: 88.41vw;
}

.lp-a.title02 header .main-title{
    width: 77.29vw;
}

.lp-b header{
    display: block;
    padding: 0;
    margin: 0;
}

.lp-b header .fv01{
    background: url(../images/fv_back_b_sp.webp) center top no-repeat;
    background-size: cover;
}

.lp-b header .fv01 .container{
    height: 0;
    padding: 0;
    background: url(../images/fv_img_b_sp.webp) center bottom no-repeat;
    background-size: contain;
    padding-bottom: calc(100%*404/414);
    position: relative;
}

.lp-b header .fv02{
    background: linear-gradient(0deg, #00479d 0%, #008cbb 100%);
    margin: -5.56vw 0 0;
    padding: 9.66vw 0;
}

.lp-b.title01 header .fv02 .main-title{
    width: 88.41vw;
    line-height: 1;
    margin: 0 auto;
}

.lp-b.title02 header .fv02 .main-title{
    width: 77.05vw;
    line-height: 1;
    margin: 0 auto;
}



@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    margin: 0;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 15s infinite linear 0.5s both;
}

.scroll-infinity__item {
    width: calc(100vw / 3);
    padding: 0;
    margin: 0;
}

.scroll-infinity__item>img {
    display: block;
    width: 100%;
}

.section-wrap.entry-sec{
    padding: 9.66vw 0;
    background: #004ea2;
}

.entry-sec h2{
    width: 75.36vw;
    line-height: 1;
    margin: 0 auto 6.04vw;
}

.entry-sec .entry-btn{
    width: 87.92vw;
    margin: 0 auto;
    filter: drop-shadow(0.24vw 0.24vw 1.21vw rgba(0,0,0,0.2));
}

.entry-sec .entry-btn a{
    transition: 0.3s;
}

.entry-sec .entry-btn a:hover,
.entry-sec .entry-btn a:active,
.entry-sec .entry-btn a:focus{
    filter: brightness(1.1);
}

h2.sec-title{
    line-height: 1;
    margin: 0 auto 8.45vw;
}

.section01 h2.sec-title{
    width: 88.41vw;
}

.section01 .hikaku-table{
    margin: 0 auto;
}

.section-wrap.section02{
    background: #004ea2;
}

.section02 h2.sec-title{
    width: 89.13vw;
    margin-bottom: 9.66vw;
}

.section02 .flex-box.feature-conts{
    flex-direction: column;
}

.section02 .flex-box.feature-conts:nth-of-type(n+2){
    margin-top: 9.66vw;
}

.section02 .feature-img{
    width: 100vw;
    margin: 0 -3.62vw;
}

.section02 .feature-text{
    width: 92.75vw;
    line-height: 1;
    margin: -9.66vw auto 0;
    filter: drop-shadow(0.24vw 0.24vw 1.44vw rgba(0,0,0,0.3));
}

.section-wrap.section03{
    padding-bottom: 65.22vw;
    background: url(../images/sec03_img04_sp.webp) center bottom no-repeat;
    background-size: contain;
}

.section03 h2.sec-title{
    width: 63.04vw;
}

.section03 .merit-img:nth-of-type(n+2){
    margin-top: 6.04vw;
}

.section-wrap.section04{
    background: #d4ecf3;
}

.section04 h2.sec-title{
    width: 68.36vw;
    margin-bottom: 14.49vw;
}

.section04 .flex-box.case-flex{
    justify-content: start;
}

.section04 .flex-box.case-flex > .col{
    width: 100%;
    background: #fff;
    border: 0.72vw solid #00a6cb;
    padding: 13.29vw 6.04vw 6.04vw;
    border-radius: 1.93vw;
    position: relative;
}

.section04 .flex-box.case-flex > .col:nth-child(n+2){
    margin-top: 14.49vw;
}

.section04 .flex-box.case-flex > .col .case-num{
    position: absolute;
    left: 0;
    right: 0;
    top: -9.66vw;
    width: 19.32vw;
    margin: auto;
    line-height: 1;
    z-index: 10;
}

.section04 .flex-box.case-flex > .col .clinic-add{
    font-size: 3.86vw;
    font-weight: 700;
    line-height: 1.3;
    color: #00a6cb;
    padding-bottom: 1.21vw;
    border-bottom: 1px solid #00a6cb;
    text-align: center;
    margin: 0 0 3.62vw;
}

.section04 .flex-box.case-flex > .col .clinic-name{
    font-size: 5.31vw;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.section04 .flex-box.case-flex > .col .clinic-name span{
    font-size: 3.86vw;
}

.section04 .flex-box.case-flex > .col .clinic-doctor{
    font-size: 3.86vw;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 1.21vw 0 0;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.section04 .flex-box.case-flex > .col .case-img{
    width: 100%;
    margin: 3.62vw auto 2.42vw;
}

.section04 .flex-box.case-flex > .col .case-img img{
    width: 100%;
}

.section04 .flex-box.case-flex > .col table{
    width: 100%;
    margin: 0;
    min-height: 17.87vw;
}

.section04 .flex-box.case-flex > .col table th,
.section04 .flex-box.case-flex > .col table td{
    border: none;
    vertical-align: middle;
    text-align: center;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.section04 .flex-box.case-flex > .col table th{
    font-size: 4.35vw;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #00a6cb;
    padding: 2.42vw;
    width: 37%;
}

.section04 .flex-box.case-flex > .col table td{
    font-size: 4.83vw;
    font-weight: 700;
    line-height: 1;
    color: #ee7800;
    background: #fff9b1;
    padding: 1.21vw 2.42vw;
}

.section04 .flex-box.case-flex > .col table td span{
    font-size: 12.56vw;
}

.section04 .flex-box.case-flex > .col table td.achivement{
    font-size: 6.04vw;
}

.section-wrap.section05{
    background: #f3f0ef;
    padding-bottom: 8.45vw;
}

.section05 h2.sec-title{
    width: 54.35vw;
}

.section05 .accordion-conts{
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.section05 .accordion-conts .accordion-title{
    font-size: 4.35vw;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    background: #004ea2;
    padding: 2.42vw 6.04vw 1.68vw 13.29vw;
    min-height: 15.94vw;
    border-radius: 0.96vw;
    margin: 0 0 6.04vw;
    position: relative;
    cursor: pointer;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.section05 .accordion-conts .accordion-title span{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 2.42vw 6.04vw 1.68vw 13.29vw;
}

.section05 .accordion-conts .accordion-title::before{
    position: absolute;
    content: url(../images/icon/question.svg);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 2.42vw;
    width: 8.70vw;
    height: 8.70vw;
    margin: auto;
}

.section05 .accordion-conts .accordion-title::after{
    content: "\25BC";
    position: absolute;
    top: 53%;
    right: 2.42vw;
    transform: translateY(-50%);
    font-size: 2.90vw;
}

.section05 .accordion-conts .accordion-title.open::after{
    content: "\25B2";
}

.section05 .accordion-conts .accordion-text{
    display: none;
    font-size: 3.86vw;
    line-height: 1.6;
    padding: 0 0 0 13.29vw;
    margin: 0 0 7.25vw;
    position: relative;
}

.section05 .accordion-conts .accordion-text::before{
    position: absolute;
    content: url(../images/icon/answer.svg);
    top: 1.21vw;
    left: 2.42vw;
    width: 8.70vw;
    height: 8.70vw;
    margin: auto;
}

.section06 h2.sec-title{
    width: 77.54vw;
}

.section06 p{
    font-size: 3.86vw;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.section06 p:nth-of-type(n+2){
    margin-top: 4.83vw;
}

.section06 .contact-tyuui{
    font-size: 3.38vw;
    line-height: 1.5;
}

.section06 input,
.section06 textarea,
.section06 select,
.section06 fieldset{
    margin-bottom: 0 !important;
}

footer {
    padding: 6.04vw 0 2.42vw;
}

.footer-menu{
    margin: 0;
    text-align: center;
}

.footer-menu li{
    list-style: none;
    font-size: 3.38vw;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.footer-menu li:nth-child(n+2){
    margin-top: 2.42vw;
}

.footer-menu li a{
    text-decoration: none;
    color: #fff;
}

.footer-menu li a:hover,
.footer-menu li a:active,
.footer-menu li a:focus{
    text-decoration: underline;
}

.copyright{
    padding: 2.42vw 0;
}

.copyright small{
    font-size: 3.38vw;
}






@media (min-width : 768px){

    .sp{
		display: none!important;
	}

	.pc{
		display: block!important;
	}

    .lp-a header{
        background-color: #e9f8fd;
        background-image: url(../images/fv_img_a_pc.webp);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 139.81vw 57.78vw;
    }
    
    .lp-a.title01 header .container,
    .lp-a.title02 header .container{
        padding-bottom: calc(100%*750/1080);
    }
    
    header .fv-catch{
        top: 6.48vw;
    }
    
    header .catch01{
        width: 84.44vw;
    }
    
    header .catch02{
        width: 84.63vw;
    }
    
    .lp-a.title01 header .main-title{
        bottom: 13.43vw;
        width: 61.57vw;
    }
    
    .lp-a.title02 header .main-title{
        bottom: 12.04vw;
        width: 75.93vw;
    }

    .lp-b header .fv01{
        background: url(../images/fv_back_b_pc.webp) center top no-repeat;
        background-size: cover;
    }
    
    .lp-b header .fv01 .container{
        max-width: none;
        background: url(../images/fv_img_b_pc.webp) center bottom no-repeat;
        background-size: 155.56vw 46.86vw;
        padding-bottom: calc(100%*684/1080);
        position: relative;
    }
    
    .lp-b header .fv02{
        margin: -3.97vw 0 0;
        padding: 6.48vw 0;
    }
    
    .lp-b.title01 header .fv02 .main-title{
        width: 77.87vw;
    }
    
    .lp-b.title02 header .fv02 .main-title{
        width: 83.43vw;
    }
    
    .scroll-infinity__item {
        width: calc(100vw / 4);
    }
    
    .section-wrap.entry-sec{
        padding: 50px 0;
    }
    
    .entry-sec h2{
        width: 87.6%;
        max-width: 827px;
        margin: 0 auto 30px;
    }
    
    .entry-sec .entry-btn{
        width: 76.2%;
        max-width: 720px;
        filter: drop-shadow(1px 1px 8px rgba(0,0,0,0.2));
    }
    
    h2.sec-title{
        margin: 0 auto 50px;
    }
    
    .section01 h2.sec-title{
        width: 68.3%;
        max-width: 645px;
    }
    
    .section02 h2.sec-title{
        width: 72.1%;
        max-width: 681px;
        margin-bottom: 80px;
    }
    
    .section02 .container{
        max-width: 1550px;
    }

    .section02 .flex-box.feature-conts{
        flex-direction: row;
    }

    .section02 .flex-box.feature-conts:nth-of-type(even){
        flex-direction: row-reverse;
    }
    
    .section02 .flex-box.feature-conts:nth-of-type(n+2){
        margin-top: 80px;
    }
    
    .section02 .feature-img{
        width: 50%;
        min-height: 350px;
        margin: 0 -6% 0 0;
    }

    .section02 .flex-box.feature-conts:nth-of-type(even) .feature-img{
        margin: 0 0 0 -6%;
    }

    .section02 .feature01 .feature-img{
        background: url(../images/sec02_img01_pc.webp) center no-repeat;
        background-size: cover;
    }

    .section02 .feature02 .feature-img{
        background: url(../images/sec02_img02_pc.webp) center no-repeat;
        background-size: cover;
    }

    .section02 .feature03 .feature-img{
        background: url(../images/sec02_img03_pc.webp) center no-repeat;
        background-size: cover;
    }

    .section02 .feature04 .feature-img{
        background: url(../images/sec02_img04_pc.webp) center no-repeat;
        background-size: cover;
    }

    .section02 .feature05 .feature-img{
        background: url(../images/sec02_img05_pc.webp) center no-repeat;
        background-size: cover;
    }

    .section02 .feature06 .feature-img{
        background: url(../images/sec02_img06_pc.webp) center no-repeat;
        background-size: cover;
    }
    
    .section02 .feature-text{
        width: 56%;
        margin: 0;
        filter: drop-shadow(1px 1px 8px rgba(0,0,0,0.3));
    }
    
    .section-wrap.section03{
        padding-bottom: 40.75vw;
        background: url(../images/sec03_img04_pc.webp) center bottom no-repeat;
        background-size: 112.96vw 33.33vw;
    }
    
    .section03 h2.sec-title{
        width: 51.0%;
        max-width: 482px;
    }

    .section03 .merit-img{
        width: 84.7%;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .section03 .merit-img:nth-of-type(n+2){
        margin-top: 30px;
    }
    
    .section04 h2.sec-title{
        width: 55.2%;
        max-width: 521px;
        margin-bottom: 80px;
    }
    
    .section04 .flex-box.case-flex{
        justify-content: space-between;
    }
    
    .section04 .flex-box.case-flex > .col{
        width: 48%;
        border: 4px solid #00a6cb;
        padding: 65px 25px 25px;
        border-radius: 10px;
        margin: 0 !important;
    }
    
    .section04 .flex-box.case-flex > .col:nth-child(n+3){
        margin-top: 80px !important;
    }
    
    .section04 .flex-box.case-flex > .col .case-num{
        top: -45px;
        width: 90px;
    }

    .section04 .flex-box.case-flex > .col .clinic-data{
        height: 100%;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .section04 .flex-box.case-flex > .col .clinic-add{
        font-size: 1.8rem;
        padding-bottom: 5px;
        margin: 0 0 15px;
    }
    
    .section04 .flex-box.case-flex > .col .clinic-name{
        font-size: 2.4rem;
    }
    
    .section04 .flex-box.case-flex > .col .clinic-name span{
        font-size: 1.6rem;
    }
    
    .section04 .flex-box.case-flex > .col .clinic-doctor{
        font-size: 1.8rem;
        margin: 5px 0 0;
    }
    
    .section04 .flex-box.case-flex > .col .case-img{
        margin: 20px auto;
    }
    
    .section04 .flex-box.case-flex > .col table{
        min-height: 90px;
    }
    
    .section04 .flex-box.case-flex > .col table th{
        font-size: 2.0rem;
        line-height: 1.3;
        padding: 10px 5px;
    }
    
    .section04 .flex-box.case-flex > .col table td{
        font-size: 2.0rem;
        padding: 5px;
    }
    
    .section04 .flex-box.case-flex > .col table td span{
        font-size: 5.4rem;
    }
    
    .section04 .flex-box.case-flex > .col table td.achivement{
        font-size: 2.6rem;
        line-height: 1.3;
    }
    
    .section-wrap.section05{
        padding-bottom: 40px;
    }
    
    .section05 h2.sec-title{
        width: 41.9%;
        max-width: 396px;
    }
    
    .section05 .accordion-conts .accordion-title{        
        font-size: 2.0rem;
        border-radius: 6px;
        margin-bottom: 30px;
        padding: 14px 60px 10px 85px;
        min-height: 80px;
    }
    
    .section05 .accordion-conts .accordion-title span{
        padding: 14px 60px 10px 85px;
    }
    
    .section05 .accordion-conts .accordion-title::before{
        left: 20px;
        width: 48px;
        height: 48px;
    }
    
    .section05 .accordion-conts .accordion-title::after{
        right: 20px;
        font-size: 1.4rem;
    }
    
    .section05 .accordion-conts .accordion-text{
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 50px;
        padding: 0 0 0 85px;
    }
    
    .section05 .accordion-conts .accordion-text::before{
        top: 4px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
    
    .section06 h2.sec-title{
        width: 90%;
        max-width: 850px;
    }
    
    .section06 p{
        font-size: 1.8rem;
        line-height: 1.8;
    }
    
    .section06 p:nth-of-type(n+2){
        margin-top: 30px;
    }
    
    .section06 .contact-tyuui{
        font-size: 1.6rem;
    }
    
    footer {
        padding: 40px 0 10px;
    }
    
    .footer-menu li{
        font-size: 1.4rem;
        display: inline-block;
        margin: 0 0 0 40px !important;
    }
    
    .footer-menu li:first-child{
        margin-left: 0 !important;
    }
    
    .copyright{
        padding: 15px 0;
    }
    
    .copyright small{
        font-size: 1.4rem;
    }
    
    




}



@media (min-width : 1080px){

    .lp-a header{
        background-size: 1510px 624px;
    }
    
    .lp-a.title01 header .container,
    .lp-a.title02 header .container{
        height: 750px;
        padding-bottom: 0;
    }
    
    header .fv-catch{
        top: 70px;
    }
    
    header .catch01{
        width: 912px;
    }
    
    header .catch02{
        width: 914px;
    }
    
    .lp-a.title01 header .main-title{
        bottom: 145px;
        width: 665px;
    }
    
    .lp-a.title02 header .main-title{
        bottom: 130px;
        width: 820px;
    }

    .lp-b header .fv01 .container{
        height: 684px;
        background-size: 1680px 506px;
        padding-bottom: 0;
    }
    
    .lp-b header .fv02{
        margin: -43px 0 0;
        padding: 70px 0;
    }
    
    .lp-b.title01 header .fv02 .main-title{
        width: 841px;
    }
    
    .lp-b.title02 header .fv02 .main-title{
        width: 901px;
    }

    .scroll-infinity__item {
        width: calc(100vw / 4);
    }

    .section-wrap.entry-sec{
        padding: 60px 0;
    }

    .entry-sec h2{
        margin: 0 auto 40px;
    }

    h2.sec-title{
        margin: 0 auto 60px;
    }

    .section02 h2.sec-title{
        margin-bottom: 100px;
    }

    .section02 .flex-box.feature-conts:nth-of-type(n+2){
        margin-top: 100px;
    }

    .section02 .feature-img{
        width: 57.7%;
        min-height: 450px;
        margin: 0 -4% 0 0;
    }

    .section02 .flex-box.feature-conts:nth-of-type(even) .feature-img{
        margin: 0 0 0 -4%;
    }
    
    .section02 .feature-text{
        width: 46.3%;
    }

    .section-wrap.section03{
        padding-bottom: 440px;
        background-size: 1220px 360px;
    }

    .section03 .merit-img:nth-of-type(n+2){
        margin-top: 40px;
    }

    .section04 .flex-box.case-flex > .col table th{
        font-size: 2.2rem;
        padding: 10px;
    }
    
    .section04 .flex-box.case-flex > .col table td{
        font-size: 2.4rem;
        padding: 5px 10px;
    }
    
    .section04 .flex-box.case-flex > .col table td span{
        font-size: 6.4rem;
    }

    .section04 .flex-box.case-flex > .col table td.achivement{
        font-size: 3.0rem;
    }

    .section-wrap.section05{
        padding-bottom: 70px;
    }
    

}



@media (min-width : 1280px){

    .scroll-infinity__item {
        width: calc(100vw / 5);
    }

    .section02 .feature-img{
        min-height: 520px;
    }
    
}



@media (min-width : 1600px){

    .scroll-infinity__item {
        width: calc(100vw / 6);
    }
    
}



@media (min-width : 1920px){

    .scroll-infinity__item {
        width: calc(100vw / 8);
    }
    
}



