/*

■このCSSの役割＝複数ページにわたるCSS基本ファイル
⑦/css/technology-future-vision.css（技術未来ビジョンページ専用css）

■CSSファイル区分メモ
①/css/main.css（サイト全体使用基本css）
②/css/top.css（TOPページのみ使用css）
③/css/under.css（下層ページ共通css）
④/css/archive.css（検索付き一覧ページのみcss）
⑤/css/single.css（子ページ関連のみcss）
⑥/css/page.css（その他ページ分css）（about、rd、rd子ページ）

↓2025.03新規追加
⑦/css/technology-future-vision.css（技術未来ビジョンページ専用css）

※基本的には①、③に書いて、追加分やオリジナルなcssはそのほかに書くような形

*/


@charset 'UTF-8';

.basic-page {
    background: none !important;
}

/*------------------------------------------------------------
    #gradient-canvas
------------------------------------------------------------*/

#gradient-canvas {
  width:100%;
  height:100%;
  position: fixed;
  top: 0;
  left: 0;
  --gradient-color-1: #B1DDEF; 
  --gradient-color-2: #19ABD8; 
  --gradient-color-3: #CCEAE0;  
  --gradient-color-4: #4BC1D1;
}


/*#gradient-canvas {
  width:100%;
  height:100%;
  --gradient-color-1: #c3e4ff; 
  --gradient-color-2: #6ec3f4; 
  --gradient-color-3: #eae2ff;  
  --gradient-color-4: #b9beff;
}*/




@media only screen and (max-width:640px) and (max-device-width:1280px){



}





/*------------------------------------------------------------
	#future-vision-visual
------------------------------------------------------------*/

/* 動画のアニメーション表示 */
#future-vision-visual-movie {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
#future-vision-visual-movie.loaded {
    opacity: 1;
    transform: translateY(0);
}


#future-vision-visual{
    position: relative;
    background: #fff;
}
#future-vision-visual-box {
    position: relative;
    max-width: 1470px;
    min-width: 1280px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: calc(80px + 80px);
}
#future-vision-visual-text {
    max-width: 450px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.visual-copy{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 24px;
    margin-right: 24px;
}
.visual-title{
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.visual-description{
    margin-top: 40px;
    font-weight: 500;
    line-height: 2;
}
.visual-decorate {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}
.visual-decorate:after{
    content: "";
    display: block;
    width: 2px;
    height: 80px;
    background: #19ABD8;
    border-radius: 2px;
    margin-top: 12px;
}
.visual-decorate-scroll{
    line-height: 1;
    font-family: "quasimoda", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #19ABD8;
}

#future-vision-visual-figure{
    max-width: 720px;
    position: absolute;
    width: 100%;
    top: 20px;
    right: 88px;
    z-index: 2;
    width: 52vw;
}

#future-vision-visual-movie {
    max-width: 720px;
    position: absolute;
    width: 100%;
    top: 20px;
    right: 88px;
    z-index: 2;
    width: 52vw;
    height: 520px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#future-vision-visual-movie:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#future-vision-visual-movie video {
    display: block;
    width: 190%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

@media only screen and (max-width:1279px){

    #future-vision-visual-figure{
        width: 672px;
    }
    #future-vision-visual-movie{
        width: 672px;
    }

}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    #future-vision-visual-box{
        min-width: auto;
        padding: 56px 0 32px;
    }
    #future-vision-visual-movie{
        width: 100%;
        position: relative;
        top: 0;
        right: unset;
        left: 0;
        height: 75vw;
        margin-top: 5vw;
    }
    .visual-decorate{
        display: none;
    }

    .visual-copy{
        font-size: 16px;
        font-size: 4.2vw;
        margin-bottom: 16px;
    }
    .visual-title {
        font-size: 38px;
        font-size: 10vw;
    }
    .visual-description {
        margin-top: 32px;
    }

}



/*------------------------------------------------------------
    article#future-vision-article
------------------------------------------------------------*/

article#future-vision-article{

}
.future-vision-section-head{
    margin-bottom: 56px;
}
.future-vision-section-title{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
}
.future-vision-section-title:before{
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #19ABD8;
    position: absolute;
    left: 0;
    top: 20px;
}
.future-vision-section-description{
    margin-top: 32px;
    font-weight: 500;
    line-height: 2;
    padding-left: 32px;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    .future-vision-section-title{
        line-height: 1.56;
        font-size: 22px;
        padding-left: 24px;
    }
    .future-vision-section-title:before{
        width: 12px;
        height: 12px;
        top: 14px;
        left: 0;
    }
    .future-vision-section-description{
        padding-left: 0;
        margin-top: 28px;
        font-size: 15px;
    }
    .future-vision-section-head{
        margin-bottom: 40px;
    }


}




/*------------------------------------------------------------
    section#concept
------------------------------------------------------------*/

section#concept{
    padding: 80px 0;
}
#concept-whitebox {
    position: relative;
    background: #fff;
    padding: 80px 0 64px;
    border-radius: 32px;
    bottom: 160px;
    margin-bottom: -160px;
    box-shadow: rgba(9,35,64,0.1) 4px 6px 16px 4px;
    z-index: 2;
}
#concept-movie {
    padding: 0 32px;
}
#concept-movie iframe {
    display: block;
    width: 100%;
    height: 515px;
    border-radius: 16px;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    section#concept .unicom-container-md{
        padding: 0;
    }
    #concept-whitebox{
        bottom: 0;
        margin-bottom: 0;
        padding: 56px 0 45px;
    }
    #concept-movie{
        padding: 0;
    }
    #concept-movie iframe{
        height: calc(100vw / 1.77778);
        height: calc(100vw / 1.93);
    }

}






/*------------------------------------------------------------
    section#realize
------------------------------------------------------------*/

section#realize{
    padding: 108px 0 0;
    background: #f2f2f2;
    position: relative;
}

#realize-copy{
    position: relative;
}
#realize-copy:before{
    content: "「";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}
#realize-copy:after{
    content: "」";
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}
.realize-copy-text {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-align: center;
}

#realize-share{
    margin-top: 64px;
}
.realize-share-caption {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 48px;
}

ul.realize-share-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
ul.realize-share-list > li{
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 0 12px;
    position: relative;
}
ul.realize-share-list > li a:before{
    content: "";
    display: block;
    position: absolute;
    top: -32px;
    left: -8px;
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    transition: all .3s;
}
ul.realize-share-list > li a{
    background: #fff;
    border-radius: 16px;
    display: block;
    box-shadow: rgba(9,35,64,0.1) 4px 6px 16px 4px;
    color: #1A1A1A;
    text-align: center;
    overflow: hidden;
}
.realize-share-copy{
    padding: 28px 0 48px;
}
.realize-share-copy-sub{
    font-weight: 500;
}
.realize-share-copy-main{
    line-height: 1.6;
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
}
.realize-share-title{
    height: 120px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s;
}
.realize-share-title:before{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 24px solid #cde4e2;
    border-top: 0;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transition: all .3s;
}
.realize-share-title-text{
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
}



ul.realize-share-list > li:nth-of-type(1) a .realize-share-title{
    background: #DEE8ED;
}
ul.realize-share-list > li:nth-of-type(1) a .realize-share-title:before{
    border-bottom: 24px solid #DEE8ED;
}
ul.realize-share-list > li:nth-of-type(1) a:before{
    content: "1";
    color: #DEE8ED;
}
ul.realize-share-list > li:nth-of-type(2) a .realize-share-title{
    background: #CDE4E2;
}
ul.realize-share-list > li:nth-of-type(2) a .realize-share-title:before{
    border-bottom: 24px solid #CDE4E2;
}
ul.realize-share-list > li:nth-of-type(2) a:before{
    content: "2";
    color: #CDE4E2;
}
ul.realize-share-list > li:nth-of-type(3) a .realize-share-title{
    background: #DEE3ED;
}
ul.realize-share-list > li:nth-of-type(3) a .realize-share-title:before{
    border-bottom: 24px solid #DEE3ED;
}
ul.realize-share-list > li:nth-of-type(3) a:before{
    content: "3";
    color: #DEE3ED;
}

ul.realize-share-list > li a:hover{
    box-shadow: none;
}
ul.realize-share-list > li a:hover .realize-share-title{
    background: #19ABD8 !important;
    color: #fff;
}
ul.realize-share-list > li a:hover .realize-share-title:before{
    border-bottom: 24px solid #19ABD8 !important;
}
ul.realize-share-list > li a:hover:before{
    color: #19ABD8 !important;
}

.realize-share-keyword{

}
.realize-share-keyword img{
    display: block;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    section#realize{
        padding-top: 80px;
    }
    #realize-copy:before{
        left: -15px;
        font-size: 32px;
    }
    #realize-copy:after{
        font-size: 32px;
        right: -15px;
    }
    .realize-copy-text{
        font-size: 26px;
        font-size: 7vw;
    }
    #realize-share{
        margin-top: 40px;
    }
    .realize-share-caption{
        font-size: 17px;
    }
    ul.realize-share-list{
        display: block;
        margin: 0;
    }
    ul.realize-share-list > li{
        width: 100%;
        padding: 0;
    }
    ul.realize-share-list > li:not(:first-of-type){
        margin-top: 16px;
    }
    ul.realize-share-list > li a:before {
        top: -4px;
        left: 4px;
        font-size: 64px;
    }
    .realize-share-copy-main{
        margin-top: 12px;
        font-size: 20px;
    }
    .realize-share-copy{
        padding-bottom: 38px;
        padding-top: 24px;
    }
    .realize-share-title{
        height: 96px;
    }
    .realize-share-title-text{
        font-size: 20px;
    }
    ul.realize-share-list > li a{
        box-shadow: none;
    }

}







/*------------------------------------------------------------
    #three-goals-parts
------------------------------------------------------------*/

#three-goals-parts{
    background: linear-gradient(0deg, rgba(245, 245, 247, 1) 0%, rgba(244, 244, 246, 1) 80%, rgba(242, 242, 242, 1) 100%);
    background: #f2f2f2;
    position: relative;
    padding: 120px 0 200px;
}
.three-goals-caption{
    margin-bottom: 56px;
}
#three-goals-parts > section{
    position: relative;
}
#three-goals-parts > section:not(:first-of-type){
    margin-top: 80px;
}

.three-goals-parts-head{
    padding: 80px 0 48px;
}
.three-goals-parts-head .unicom-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.three-goals-parts-body {
    position: relative;
}
.three-goals-text{
    position: relative;
    padding-left: 32px;
}
.three-goals-text:before {
    content: "";
    display: block;
    position: absolute;
    top: -24px;
    left: -48px;
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    transition: all .3s;
    color: #fff;
}
section#one .three-goals-text:before{
    content: "1";
}
section#two .three-goals-text:before{
    content: "2";
}
section#three .three-goals-text:before{
    content: "3";
}


.three-goals-title {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
}
.three-goals-title .three-goals-title-sm{
    font-size: 32px;
}
.three-goals-description {
    font-size: 20px;
    margin-top: 20px;
    position: relative;
    padding-left: 24px;
}
.three-goals-description:before{
    content: "「";
    position: absolute;
    top: 0;
    left: 0;
}
.three-goals-description:after{
    content: "」";
}

.three-goals-point{
    position: relative;
}
ul.point-list{

}
ul.point-list > li{
    font-size: 18px;
    line-height: 1.25;
    background: #fff;
    border-radius: 2px;
    width: 400px;
    height: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
}
ul.point-list > li:not(:first-of-type){
    margin-top: 8px;
}

.three-goals-figure-box{
    background: #fff;
    border-radius: 32px;
    height: 568px;
    box-sizing: border-box;
    padding: 32px 64px;
    position: relative;
}
.three-goals-figure{
    text-align: center;
}
.three-goals-figure img{
    margin: 0 auto;
}

#three-goals-parts > section:before{
    content: "";
    display: block;
    width: calc(100% - 48px);
    height: calc(100% - 284px);
    position: absolute;
    top: 0;
}
section#one:before{
    left: 0;
    background: #DEE8ED;
    border-radius: 0 32px 32px 0;
}
section#two:before{
    right: 0;
    background: #CDE4E2;
    border-radius: 32px 0 0 32px;
}
section#three:before{
    left: 0;
    background: #DEE3ED;
    border-radius: 0 32px 32px 0;
}
.three-goals-subtitle {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* ボタンクリック箇所 */
ul.three-goals-link{

}
ul.three-goals-link > li{
    position: relative;
    z-index: 1;
}
ul.three-goals-link > li:not(:first-of-type){
    margin-top: 8px;
}
ul.three-goals-link > li a{
    line-height: 1.5;
    font-weight: 500;
    padding: 8px 24px 8px 24px;
    color: #1a1a1a;
    background: #999;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
}
ul.three-goals-link > li a:after{
    font-family: 'Material Symbols Outlined';
    content: '\e89e'; /* ← chevron_left の Unicode */
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    vertical-align: middle;
    margin-left: 8px;
    margin-right: -4px;
}
ul.three-goals-link > li.no-link a{
    pointer-events: none;
}
ul.three-goals-link > li.no-link a:after{
    content: none;
}

/* 1 */
section#one ul.three-goals-link > li a{
    background: #DEE8ED;
}
section#one ul.three-goals-link > li a:hover{
    background: #3CAADC;
    color: #fff;
}
ul#one01 {
    position: absolute;
    top: 64px;
    left: 32px;
}
ul#one01:after {
    content: "";
    display: block;
    height: 1px;
    width: 212px;
    background: #666666;
    position: absolute;
    top: 67px;
    right: -164px;
    transform: rotate(26deg);
}
ul#one02 {
    position: absolute;
    top: 210px;
    left: 32px;
}
ul#one02:after {
    content: "";
    display: block;
    height: 1px;
    width: 320px;
    background: #666666;
    position: absolute;
    top: 54px;
    right: -280px;
    transform: rotate(8deg);
}
ul#one03{
    position: absolute;
    bottom: 32px;
    left: 32px;
}
ul#one03:after {
    content: "";
    display: block;
    height: 1px;
    width: 72px;
    background: #666666;
    position: absolute;
    top: -28px;
    right: 4px;
    transform: rotate(-45deg);
}
ul#one04 {
    position: absolute;
    top: 64px;
    right: 32px;
}
ul#one04:after {
    content: "";
    display: block;
    height: 1px;
    width: 132px;
    background: #666666;
    position: absolute;
    top: 52px;
    left: -132px;
    transform: rotate(-26deg);
}
ul#one04:before {
    content: "";
    display: block;
    height: 1px;
    width: 132px;
    background: #666666;
    position: absolute;
    bottom: -52px;
    right: 28px;
    transform: rotate(-57deg);
}
ul#one04 li:nth-of-type(2){
    text-align: right;
}
ul#one05 {
    position: absolute;
    bottom: 96px;
    right: 32px;
}
ul#one05:after {
    content: "";
    display: block;
    height: 1px;
    width: 90px;
    background: #666666;
    position: absolute;
    top: 25px;
    left: -82px;
    transform: rotate(-8deg);
}
ul#one05 li:nth-of-type(2){
    text-align: right;
}
ul#one06{
    position: absolute;
    bottom: 32px;
    right: 32px;
}
ul#one06:after {
    content: "";
    display: block;
    height: 1px;
    width: 88px;
    background: #666666;
    position: absolute;
    top: -30px;
    left: 30px;
    transform: rotate(45deg);
}
ul#one07 {
    position: absolute;
    top: 112px;
    left: 32px;
}
ul#one07:after {
    content: "";
    display: block;
    height: 1px;
    width: 164px;
    background: #666666;
    position: absolute;
    top: 60px;
    right: -148px;
    transform: rotate(28deg);
}
ul#one08{
    position: absolute;
    bottom: 135px;
    left: 32px;
}
ul#one08:after {
    content: "";
    display: block;
    height: 1px;
    width: 180px;
    background: #666666;
    position: absolute;
    top: 42px;
    right: -175px;
    transform: rotate(-3deg);
}
ul#one08-2{
    position: absolute;
    bottom: 35px;
    left: 32px;
}
ul#one08-2:after {
    content: "";
    display: block;
    height: 1px;
    width: 212px;
    background: #666666;
    position: absolute;
    top: 30px;
    right: -190px;
    transform: rotate(4deg);
}
ul#one09 {
    position: absolute;
    top: 64px;
    right: 64px;
}
ul#one09:after {
    content: "";
    display: block;
    height: 1px;
    width: 120px;
    background: #666666;
    position: absolute;
    top: 52px;
    left: -102px;
    transform: rotate(-32deg);
}
ul#one10 {
    position: absolute;
    top: 132px;
    right: 32px;
}
ul#one10:after {
    content: "";
    display: block;
    height: 1px;
    width: 160px;
    background: #666666;
    position: absolute;
    top: 52px;
    left: -154px;
    transform: rotate(-20deg);
}
ul#one11{
    position: absolute;
    bottom: 35px;
    right: 32px;
}
ul#one11:after {
    content: "";
    display: block;
    height: 1px;
    width: 160px;
    background: #666666;
    position: absolute;
    bottom: 74px;
    left: -130px;
    transform: rotate(45deg);
}
ul#one12{
    position: absolute;
    bottom: 70px;
    left: 64px;
}
ul#one12:after {
    content: "";
    display: block;
    height: 1px;
    width: 240px;
    background: #666666;
    position: absolute;
    top: -68px;
    right: -178px;
    transform: rotate(-53deg);
}
ul#one13 {
    position: absolute;
    top: 120px;
    right: 32px;
    width: 256px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}
ul#one13 li{
    box-sizing: border-box;
    padding: 0 4px;
}
ul#one13 li a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
ul#one13 li:first-of-type{
    width: 100%;
}
ul#one13 li:not(:first-of-type){
    width: 50%;
}
ul#one13:after {
    content: "";
    display: block;
    height: 1px;
    width: 180px;
    background: #666666;
    position: absolute;
    top: 112px;
    left: -104px;
    transform: rotate(-78deg);
}

.point-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100px; /* 適切な高さを指定 */
}

.point-container > .point-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.point-container > .point-list.active {
  opacity: 1;
  visibility: visible;
  position: relative; /* 表示する要素のみ relative に */
}
.btn-prev{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    padding: 32px;
}
.btn-prev img{
    display: block;
}
.btn-prev:hover{
    opacity: 0.6;
}
.btn-next{
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    padding: 32px;
}
.btn-next img{
    display: block;
}
.btn-next:hover{
    opacity: 0.6;
}
.btn-prev.swiper-button-disabled{
    border: none;
    cursor: auto;
    opacity: 0.2;
}
.btn-next.swiper-button-disabled{
    border: none;
    cursor: auto;
    opacity: 0.2;
}
/* ページネーションのスタイル */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.6;
  margin: 0 5px;
  transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #007bff; /* アクティブなページネーションの色 */
}



/* 2 */
section#two ul.three-goals-link > li a{
    background: #CDE4E2;
    text-align: center;
}
section#two ul.three-goals-link > li a:hover{
    background: #599ca5;
    color: #fff;
}

ul#two01 {
    position: absolute;
    top: 100px;
    left: 64px;
}
ul#two01:after {
    content: "";
    display: block;
    height: 1px;
    width: 200px;
    background: #666666;
    position: absolute;
    top: 108px;
    right: -172px;
    transform: rotate(45deg);
}
ul#two02 {
    position: absolute;
    top: 50px;
    left: 400px;
}
ul#two02:after {
    content: "";
    display: block;
    height: 1px;
    width: 140px;
    background: #666666;
    position: absolute;
    top: 70px;
    right: -118px;
    transform: rotate(43deg);
}

.cps-box {
    max-width: 720px;
    margin: -32px auto 0;
    position: relative;
}
.cps-box-caption {
    line-height: 1.5;
    font-weight: 500;
    padding: 6px 24px 6px 24px;
    color: #1a1a1a;
    background: #CDE4E2;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
section#two ul.three-goals-link.cps-link{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px 0;
}
section#two ul.three-goals-link.cps-link > li{
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 0 4px;
    margin-top: 8px;
}
section#two ul.three-goals-link.cps-link > li a{
    display: block;
    border: 1px solid #599ca5;
    color: #599ca5;
    background: #fff;
    font-weight: 600;
}
section#two ul.three-goals-link.cps-link > li a:after{
    font-weight: 600;
    position: relative;
    bottom: 2px;
}
section#two ul.three-goals-link.cps-link > li a:hover{
    background: #599ca5;
    color: #fff;
}



/* 3 */
section#three .three-goals-figure{
    margin-top: 24px;
}
section#three ul.three-goals-link > li a{
    background: #DEE3ED;
    text-align: center;
}
section#three ul.three-goals-link > li a:hover{
    background: #2E7DA4;
    color: #fff;
}
ul#three01 {
    position: absolute;
    top: 64px;
    left: 64px;
}
ul#three01:after {
    content: "";
    display: block;
    height: 1px;
    width: 190px;
    background: #666666;
    position: absolute;
    top: 94px;
    right: -180px;
    transform: rotate(30deg);
}
ul#three02 {
    position: absolute;
    top: 80px;
    right: 64px;
}
ul#three02:after {
    content: "";
    display: block;
    height: 1px;
    width: 190px;
    background: #666666;
    position: absolute;
    top: 186px;
    left: -36px;
    transform: rotate(-70deg);
}
ul#three02 li{
    text-align: right;
}
ul#three03 {
    position: absolute;
    bottom: 40px;
    left: 300px;
}
ul#three03:after {
    content: "";
    display: block;
    height: 1px;
    width: 190px;
    background: #666666;
    position: absolute;
    bottom: 112px;
    left: 72px;
    transform: rotate(-28deg);
}

.three-goals-splink{
    display: none;
}


@media only screen and (max-width:1320px){

    #three-goals-parts > section:before{
        width: 100%;
    }

}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    #three-goals-parts{
        padding: 80px 0 80px;
    }
    #three-goals-parts > section:not(:first-of-type){
        margin-top: 64px;
    }
    .three-goals-caption{
        margin-bottom: 40px;
    }

    .three-goals-parts-head{
        padding: 64px 0 32px;
    }
    .three-goals-parts-head .unicom-container{
        display: block;
    }
    .three-goals-parts-body .unicom-container-md{
        padding: 0;
    }
    .three-goals-text{
        margin-bottom: 24px;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .three-goals-text:before{
        top: -60px;
        left: -8px;
        font-size: 64px;
    }
    .three-goals-title {
        font-size: 26px;
        letter-spacing: 0.05em;
        position: relative;
    }
    .three-goals-title .three-goals-title-sm{
        font-size: 22px;
    }
    .three-goals-description {
        font-size: 16px;
        margin-top: 12px;
        padding-left: 20px;
    }
    ul.point-list > li{
        font-size: 15px;
        width: 100%;
        height: 48px;
        line-height: 1.35;
    }

    .three-goals-subtitle{
        font-size: 20px;
        margin-bottom: 16px;
    }

    section#two:before{
        border-radius: 0 32px 32px 0;
    }

    .three-goals-figure-box{
        padding: 24px 15px;
        height: auto;
    }

    .three-goals-btnarea{
        display: none;
    }
    .btn-prev{
        padding: 15px;
        width: 24px;
    }
    .btn-next{
        padding: 15px;
        width: 24px;
    }

    section#three .three-goals-figure{
        margin-top: 0;
    }

    .three-goals-splink{
        display: block;
        margin-top: 24px;
    }
    .three-goals-splink-title {
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .three-goals-splink-title-text{
        display: inline-block;
        margin: 0 20px;
    }
    .three-goals-splink-title:before{
        content: "";
        display: block;
        width: 24px;
        height: 1px;
        background: #1a1a1a;
    }
    .three-goals-splink-title:after{
        content: "";
        display: block;
        width: 24px;
        height: 1px;
        background: #1a1a1a;
    }
    ul.three-goals-splink-list {
        max-width: 300px;
        margin: auto;
    }
    ul.three-goals-splink-list li{

    }
    ul.three-goals-splink-list li:not(:first-of-type){
        margin-top: 8px;
    }
    ul.three-goals-splink-list li a{
        line-height: 1.5;
        font-weight: 500;
        padding: 11px 24px 11px 24px;
        color: #1a1a1a;
        background: #999;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }
    ul.three-goals-splink-list > li a:after {
        font-family: 'Material Symbols Outlined';
        content: '\e89e';
        font-size: 18px;
        font-weight: 500;
        line-height: 1;
        vertical-align: middle;
        margin-left: 8px;
        margin-right: -4px;
    }

    section#one ul.three-goals-splink-list > li a {
        background: #DEE8ED;
        text-align: center;
    }
    section#one ul.three-goals-splink-list > li a:hover {
        background: #3CAADC;
        color: #fff;
    }
    section#two ul.three-goals-splink-list > li a {
        background: #CDE4E2;
        text-align: center;
    }
    section#two ul.three-goals-splink-list > li a:hover {
        background: #599ca5;
        color: #fff;
    }
    section#three ul.three-goals-splink-list > li a {
        background: #DEE3ED;
        text-align: center;
    }
    section#three ul.three-goals-splink-list > li a:hover {
        background: #2E7DA4;
        color: #fff;
    }

    #three-goals-parts > section:before{
        height: calc(100% - 100px);
    }

}









/*------------------------------------------------------------
    section#common-technology
------------------------------------------------------------*/

section#common-technology{

}
#common-technology-whitebox {
    position: relative;
    background: #fff;
    padding: 80px 0 0;
    border-radius: 32px;
    bottom: 80px;
    margin-bottom: -80px;
    overflow: hidden;
}
.common-technology-whitebox-main{
    padding-bottom: 56px;
}
.common-technology-whitebox-sub {
    background: #F5F5F7;
    padding: 32px 0 40px;
    position: relative;
}
.common-technology-whitebox-sub-caption{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 12px;
}
ul.common-technology-text-link{

}
ul.common-technology-text-link > li{
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
    position: relative;
    padding-left: 16px;
}
ul.common-technology-text-link > li:before{
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
ul.common-technology-text-link > li a{
    color: #1a1a1a;
    text-decoration: underline;
}
ul.common-technology-text-link > li:not(:first-of-type){
    margin-top: 8px;
}
ul.common-technology-text-link > li a:hover{
    opacity: 0.6;
    text-decoration: none;
}
ul.common-technology-text-link > li:after {
    font-family: 'Material Symbols Outlined';
    content: '\e89e';
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    vertical-align: middle;
    margin-left: 4px;
    position: relative;
    bottom: 2px;
}

section#common-technology .future-vision-section-head{
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
#common-technology-figure {
    position: relative;
    padding-bottom: 48px;
}
#common-technology-figure img{
    display: block;
    margin: 0 auto;
}
#common-technology-movie {
    position: relative;
    width: auto;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    bottom: 28px;
    height: auto;
    display: block;
    margin: -72px 0 -88px;
}
#common-technology-movie:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#common-technology-movie video {
    width: 100%;
    display: block;
}

.common-technology-figure-box{
    position: relative;
}
.common-technology-text p{
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    padding: 6px 20px;
    border: 1px solid #1a1a1a;
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 1;
}
ul.common-technology-list{

}
ul.common-technology-list > li:not(:first-of-type){
    margin-top: 8px;
}
ul.common-technology-list > li{
    line-height: 1.5;
    font-weight: 500;
    padding: 8px 24px 8px 24px;
    color: #1a1a1a;
    background: #e0dfed;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    position: relative;
    z-index: 1;
}


#common-technology01 {
    position: absolute;
    top: 0;
    left: 0;
}
#common-technology01:after {
    content: "";
    display: block;
    height: 1px;
    width: 72px;
    background: #666666;
    position: absolute;
    top: 32px;
    right: -32px;
    transform: rotate(8deg);
}

#common-technology02 {
    position: absolute;
    top: 120px;
    left: 0;
}
#common-technology02:after {
    content: "";
    display: block;
    height: 1px;
    width: 120px;
    background: #666666;
    position: absolute;
    top: 72px;
    right: -72px;
    transform: rotate(64deg);
}
#common-technology03 {
    position: absolute;
    bottom: 24px;
    left: 100px;
}
#common-technology03:after {
    content: "";
    display: block;
    height: 1px;
    width: 56px;
    background: #666666;
    position: absolute;
    top: -5px;
    right: -24px;
    transform: rotate(-64deg);
}
#common-technology04 {
    position: absolute;
    bottom: 0;
    right: 380px;
}
#common-technology04:after {
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    background: #666666;
    position: absolute;
    top: -10px;
    right: 50px;
    transform: rotate(90deg);
}
#common-technology05 {
    position: absolute;
    top: 120px;
    right: 0;
}
#common-technology05:after {
    content: "";
    display: block;
    height: 1px;
    width: 120px;
    background: #666666;
    position: absolute;
    top: 65px;
    left: -72px;
    transform: rotate(-45deg);
}

#common-technology06 {
    position: absolute;
    bottom: 0;
    right: 0;
}
#common-technology06:after {
    content: "";
    display: block;
    height: 1px;
    width: 72px;
    background: #666666;
    position: absolute;
    top: 32px;
    left: -32px;
    transform: rotate(28deg);
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    section#common-technology{
        padding: 80px 0;
    }
    #common-technology-whitebox{
        bottom: 0;
        margin-bottom: 0;
        padding: 56px 0 0;
    }
    section#common-technology .unicom-container-md {
        padding: 0;
    }
    #common-technology-movie{
        margin: -24px 0 -64px;
    }

    .common-technology-whitebox-sub{
        padding: 28px 0 32px;
    }
    .common-technology-whitebox-sub-caption{
        font-size: 18px;
        margin-bottom: 16px;
    }
    ul.common-technology-text-link > li:not(:first-of-type){
        margin-top: 12px;
    }
    ul.common-technology-text-link > li a{
        font-size: 15px;
    }

}








/*------------------------------------------------------------
    section#relation-topics
------------------------------------------------------------*/

section#relation-topics{
    background: #F5F5F7;
    padding: 108px 0 48px;
    position: relative;
    margin-top: 80px;
}
section#relation-topics .future-vision-section-head {
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

#relation-topics-slider ul.sm-topics-list{
    flex-wrap: nowrap;
    margin: 0;
    margin: 0;
}
#relation-topics-slider ul.sm-topics-list li{
    width: auto;
    padding: 0;
}
.relation-topics-swiper {
    overflow: visible;
}



@media only screen and (max-width:640px) and (max-device-width:1280px){

    article#top-article section#top-topics .top-section-description {
        margin-top: 12px;
    }
    section#relation-topics{
        padding: 64px 0;
        position: relative;
        margin-top: 0;
    }
    section#relation-topics .future-vision-section-head{
        margin-bottom: 40px;
    }
    #relation-topics-slider ul.sm-topics-list li{
        width: 320px;
    }
    .topics-list-thumb img{
        height: 198px;
    }
    .topics-list-thumb iframe {
        height: 198px;
    }
    ul#relation-topics-list .topics-list-content {
        padding: 16px 16px 24px;
    }

}








