@charset 'utf-8';


* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}
a,a:hover,a:visited,a:active,a:focus,a:focus-within {
    color: inherit;
}

ul {
    list-style: none;
}

img {
    vertical-align: bottom;
    max-width:   100%;
    height: auto;
    -webkit-backface-visibility: hidden;
}

main {
    display: block;
}

body {
    font-family:'Noto Sans JP','Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #333;
}

.barlow {
    font-family: 'Barlow', sans-serif!important;
}

.sp-none {
    display: block;
}

.pc-none {
    display: none;
}

.l-container {
    overflow: hidden;
}

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

    .sp-none {
        display: none;
    }
    
    .pc-none {
        display: block;
    }
}

.header {
    width: 100%;
    height: 120px;
    position: relative;
    background: #fff;
}

@media screen and (min-width: 769px) {
    .header.is-fixed .header-inner{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transform: translateY(0);
        margin-top: 0;
    }

    .header-is-fixed .nav-list-item .link::before {
        top: calc(100% + 7px);
    }
}
    

.header-inner {
    width: 100%;
    height: 80px;
    position: absolute;
    left: 0;
    top: 20px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-left: calc(60 / 1366 * 100%);
    padding-right: calc(60 / 1366 * 100%);
    transform: translateY(-80px);
    margin-top: 80px;
    transition: transform .5s ease;
}

.header-logo {
    width: 337px;
}

.header-logo .link {
    transition: opacity .3s ease;
}

@media screen and (min-width: 769px) {
    .header-logo .link:hover {
        opacity: 0.7;
    }
}

.header-logo h1 {
    width: 100%;
}

.header h1 .link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.header h1 .link img{
    width: 100%;
}


.nav-list {
    display: flex;
    align-items: center;
}

.nav-list-item {
    font-size: 14px;
    position: relative;
}



.nav-list-item .link{
    display: flex;
    transition: color .3s ease;
    cursor: pointer;
}

.nav-list-item .link::before{
   content: '';
   display: block;
   width: 0px;
   height: 2px;
   background: #30a9c1;
   position: absolute;
   left: 0;
   top: calc(100% + 10px);
   transition: width .3s ease;
}

.nav-list-item:not(:first-child) {
    margin-left: 48px;
}

.toggle {
    display: none;
}

.header .sp-close-btn {
    display: none;
}

.header .sp-btn-wrapper {
    display: none;
}

@media screen and (min-width: 768px) {
    .nav-list-item .link:hover{
        color: #2390a6;
    }
    .nav-list-item .link:hover::before{
        width: 100%;
     }
}

@media screen and (max-width: 850px) {
    .nav-list-item {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        position: relative;
        height: 55px;
    }
    
    .header-inner {
        width: 100%;
        height: 55px;
        position: fixed;
        left: 0;
        top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-left: calc(40 / 750 * 100%);
        padding-right: calc(40 / 750 * 100%);
        transform: none;
        margin-top: 0;
        z-index: 1000;
        box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    }
    
    .header-logo {
        width: 229px;
    }
    
    
    .nav-wrapper {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        width: 100%;
        left: 0;
        top: 55px;
        height: calc(100vh - 55px);
        background: rgba(48, 169, 193, 0.95);
        z-index: 1100;
        transition: opacity .3s ease, visibility .3s ease;
    }

    .nav-wrapper.is-active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
        margin-top: 60px;
       
    }

    .nav-list-item:first-child {
        border-top: 1px solid rgba(255,255,255,0.5);
    }    
    .nav-list-item {
        border-bottom: 1px solid rgba(255,255,255,0.5);
        width: 100%;
    }
    
    .nav-list-item .link{
        color: #fff;
        display: block;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
    }
    
    .nav-list-item .link::before{
       display: none;
    }
    
    .nav-list-item:not(:first-child) {
        margin-left: 0;
    }

    .header .sp-close-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #fff;
        font-size: 15px;
        width: 95px;
        height: 35px;
        color: #fff;
        line-height: 1;
        margin: 25px auto 0;
    }

    .header .sp-close-btn i{
        display: block;
        width: 15px;
        height: 15px;
        position: relative;
        margin-right: 8px;
        top: 1px
    }

    .header .sp-close-btn i::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        transform: rotate(45deg);
        margin: auto;
    }

    .header .sp-close-btn i::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        transform: rotate(-45deg);
        margin: auto;
    }
    
    .header .sp-btn-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    
    .header .sp-btn-wrapper .btn{
        width: 167px;
        height: 55px;
    }
    
    .header .sp-btn-wrapper .btn:not(:first-child){
        margin-left: 10px;
    }
    
    .header .sp-btn-wrapper .black-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #000;
        color: #fff;
        font-size: 12px;
    }
    
    .header .sp-btn-wrapper .black-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-right: 7px;
    }
    
    .header .sp-btn-wrapper .black-btn .link .circle::before{
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        position: relative;
        left: -1px;
    }
    
    .header .sp-btn-wrapper .white-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #fff;
        color: #30a9c1;
        font-size: 12px;
    }
    
    .header .sp-btn-wrapper .white-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 2px solid #30a9c1;
        margin-right: 7px;
    }
    
    .header .sp-btn-wrapper .white-btn .link .circle::before{
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-top: 2px solid #30a9c1;
        border-right: 2px solid #30a9c1;
        transform: rotate(45deg);
        position: relative;
        left: -1px;
    }

    .toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 25px;
    }

    .toggle .border-area {
        width: 25px;
        height: 15px;
        position: relative;
        margin-bottom: 5px;
    }

    .toggle .border-area::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        top: 0;
        background: #2390a6;
    }

    .toggle .border-area::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: #2390a6;
    }

    .toggle .border-area .border {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        height: 2px;
        background: #2390a6;
    }

    .toggle .text{
        font-size: 10px;
        line-height: 1;
        color: #2390a6;
    }
}

.l-container-header {
    position: relative;
}

.mainVisual {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.mainVisual-image {
    position: relative;
    width: calc(1065 / 1366 * 100%);
    height: 646px;
    overflow: hidden;
}

.mainVisual-image .swiper-slide {
    position: relative;
    width: 100%;
    height: 646px;
}

.mainVisual-image .wiper-slide {
    position: relative;
    width: 100%;
    height: 646px;
}

.mainVisual-image .visual01 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/main-visual.jpg) no-repeat  center / cover;
}

.mainVisual-image .visual02 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/main-visual02.jpg) no-repeat  center / cover;
}


.mainVisual-contents {
    width: 735px;
    position: absolute;
    left: 0;
    top: 50%;
    padding-top: 60px;
    padding-bottom: 60px;
    transform: translate(0, -50%);
    transition: transform .5s ease-in-out .3s;
    z-index: 2;
}

.mainVisual-contents::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
    background-image: linear-gradient( -64deg, rgb(48,169,193) 0%, rgb(24,149,174) 57%, rgb(0,129,155) 100%);
}

.mainVisual-contents .inner {
    position: relative;
    z-index: 2;
}

.mainVisual-contents .text-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.mainVisual-contents .text-wrapper.is-active {
    display: flex;
    animation: fade 1s ease .2s forwards;
}

.mainVisual-contents .border-title {
    border: 2px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 21px;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 28px;
    padding-right: 28px;
    line-height: 1;
}

.mainVisual-contents .heading  {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
    margin-top: 25px;
}

.mainVisual-contents .heading span {
    font-size: 50px;
}

.mainVisual-contents .text {
    font-size: 16px;
    text-align: center;
    line-height: 2;
    color: #fff;
    margin-top: 25px;
}
  
.mainVisual-contents .text span {
    font-weight: bold;
}

.mainVisual-contents .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.mainVisual-contents .btn-wrapper .btn{
    width: 280px;
    height: 70px;
}

.mainVisual-contents .btn-wrapper .btn:not(:first-child){
    margin-left: 20px;
}

.mainVisual-contents .btn-wrapper .black-btn .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    font-size: 16px;
    transition: background-color .3s ease;
}

@media screen and (min-width: 769px) {
    .mainVisual-contents .btn-wrapper .black-btn .link:hover {
        background-color: #2b2b2b;
    }
}

.mainVisual-contents .btn-wrapper .black-btn .link .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 15px;
}

.mainVisual-contents .btn-wrapper .black-btn .link .circle::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
}

.mainVisual-contents .btn-wrapper .white-btn .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #30a9c1;
    font-size: 16px;
    transition: background-color .3s ease, color .3s ease;
}

.mainVisual-contents .btn-wrapper .white-btn .link .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #30a9c1;
    margin-right: 15px;
    transition: border-color .3s ease;
}

.mainVisual-contents .btn-wrapper .white-btn .link .circle::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #30a9c1;
    border-right: 2px solid #30a9c1;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
    transition: border-color .3s ease;
}

@keyframes sdl {
	0% {
	  transform: translateY(-110px);
	}
	80%, 100% {
	  transform: translateY(110px);
	}
}

.border-frame {
    width: 2px;
    height: 110px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -70px;
    margin: auto;
    overflow: hidden;
    z-index: 2;
}

.border-frame .border {
    width: 2px;
    height: 110px;
    background: #30a9c1;
    position: absolute;
    right: 0;
    left: 0;
    animation: sdl 2s linear infinite;
}

@media screen and (min-width: 769px) {
    .mainVisual-contents .btn-wrapper .white-btn .link:hover {
        background-color: #e0faff;
    }
}

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

    .border-frame {
        display: none;
    }

    .mainVisual {
       display: block;
    }
    
    .mainVisual-image {
        width: 100%;
        height: 355px;
        background-image: url(../img/main-visual.sp.jpg);
        margin-bottom: 355px;
    }

    
    .mainVisual-contents {
        width: 325px;
        position: absolute;
        left: 0;
        top: 210px;
        right: 0;
        transform: none;
        padding-top: 30px;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        transform: none;
    }

    .mainVisual-contents::before {
        opacity: 0.95;
    }

    .mainVisual-contents .inner {
        opacity: 1;
    }

    .mainVisual-image .swiper-slide {
        position: relative;
        width: 100%;
        height: 355px;
    }
    
    .mainVisual-image .wiper-slide {
        position: relative;
        width: 100%;
        height: 355px;
    }
    
    .mainVisual-image .visual01 {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: url(../img/main-visual.sp.jpg) no-repeat  center / cover;
    }
    
    .mainVisual-image .visual02 {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: url(../img/main-visual02.sp.jpg) no-repeat  center / cover;
    }
    
    .mainVisual-contents .border-title {
        border: 2px solid #fff;
        color: #fff;
        font-size: 13px;
        border-radius: 14px;
        padding-top: 7px;
        padding-bottom: 8px;
        padding-left: 14px;
        padding-right: 14px;
        line-height: 1;
    }
    
    .mainVisual-contents .heading  {
        color: #fff;
        font-size: 19px;
        margin-top: 20px;
        line-height: 1.4;
    }
    
    .mainVisual-contents .heading span {
        font-size: 23px;
    }
    
    .mainVisual-contents .text {
        font-size: 13px;
        text-align: center;
        line-height: 2;
        margin-top: 20px;
        color: #fff;
    }
      
    .mainVisual-contents .text span {
        font-weight: bold;
    }
    
    .mainVisual-contents .btn-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
    }
    
    .mainVisual-contents .btn-wrapper .btn{
        width: 275px;
        height: 60px;
    }
    
    .mainVisual-contents .btn-wrapper .btn:not(:first-child){
        margin-left: 0;
        margin-top: 20px;
    }
    
    .mainVisual-contents .btn-wrapper .black-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #000;
        color: #fff;
        font-size: 15px;
    }
    
    .mainVisual-contents .btn-wrapper .black-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-right: 10px;
    }
    
    .mainVisual-contents .btn-wrapper .black-btn .link .circle::before{
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        position: relative;
        left: -2px;
    }
    
    .mainVisual-contents .btn-wrapper .white-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #fff;
        color: #30a9c1;
        font-size: 15px;
    }
    
    .mainVisual-contents .btn-wrapper .white-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 2px solid #30a9c1;
        margin-right: 10px;
    }
    
    .mainVisual-contents .btn-wrapper .white-btn .link .circle::before{
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: 2px solid #30a9c1;
        border-right: 2px solid #30a9c1;
        transform: rotate(45deg);
        position: relative;
        left: -2px;
    }
}


.about {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 120px;
    padding-bottom: 120px;
}



.about .about-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about .about-heading img {
    width: 285px;
}

.about .about-heading span  {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #2b9eb5;
    line-height: 1;
    margin-top: 30px;
}

.about .inner {
    max-width: 1080px;
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about .inner.is-active .thumb {
    transform: translateY(0);
    opacity: 1;
}

.about .inner.is-active .contents {
    transform: translateY(0);
    opacity: 1;
}

.about .inner .thumb {
    width: calc(536 / 1080 * 100%);
    transform: translateY(80px);
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
}

.about .inner .contents {
    width: calc(540 / 1080 * 100%);
    background: #f5f5f5;
    padding-top: 90px;
    padding-bottom: 80px;
    padding-left: 70px;
    padding-right: 70px;
    font-size: 18px;
    line-height: 2;
    margin-top: 50px;
    transform: translateY(80px);
    opacity: 0;
    transition: opacity .5s ease .5s, transform .5s ease .5s;
}

@media screen and (max-width: 768px) {
    .about {
        position: relative;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .about .about-border {
        display: none;
    }
    
    .about .about-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .about .about-heading img {
        width: 167px;
    }
    
    .about .about-heading span  {
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        color: #2b9eb5;
        line-height: 1;
        margin-top: 15px;
    }
    
    
    .about .inner {
        max-width: 1080px;
        margin: 25px 0 0;
        display: block;
        position: relative;
        margin-bottom: 180px;
    }
    
    .about .inner .thumb {
        width: 100%
    }
    
    .about .inner .contents {
        width: calc(325 / 375 * 100%);
        background: #f5f5f5;
        padding-top: calc(30 / 375 * 100%);
        padding-bottom: calc(30 / 375 * 100%);
        padding-left: calc(25 / 375 * 100%);
        padding-right: calc(25 / 375 * 100%);
        font-size: 13px;
        line-height: 1.6;
        margin-top: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(150 / 230 * 100%);
        margin: auto;
    }
}


.lineup {
    padding-top: 120px;
    padding-bottom: 160px;
    padding-left: 10px;
    padding-right: 10px;
    background: url(../img/lineup.png) no-repeat center / cover;
}

.lineup .lineup-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.lineup .lineup-heading img {
    width: 417px;
}

.lineup .lineup-heading span {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    line-height: 1;
    color: #fff;
}

.lineup-panel {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
   
}

.lineup-panel .item {
    width: calc(520 / 1080 * 100%);
    background: #fff;
    transition: opacity .5s ease, transform .5s ease;
    opacity: 0;
}

@media screen and (min-width: 769px) {
    .lineup-panel .item.is-active:nth-child(1){
        transform: translateY(0);
        opacity: 1;
    }
    
    .lineup-panel .item.is-active:nth-child(2){
        transform: translateY(7.56%);
        opacity: 1;
    }
    
    .lineup-panel .item.is-active:nth-child(3){
        transform: translateY(7.56%);
        opacity: 1;
    }
    
    .lineup-panel .item.is-active:nth-child(4){
        transform: translateY(15.12%);
        opacity: 1;
    }
}



.lineup-panel .item:not(:nth-child(2n+1)) {
    margin-left: calc(40 / 1080 * 100%);
}

.lineup-panel .item:nth-child(1) {
    transform: translateY(100px);
}

.lineup-panel .item:nth-child(2) {
   transform: translateY(100px);
}

.lineup-panel .item:nth-child(3) {
    transform: translateY(100px);
}

.lineup-panel .item:nth-child(4) {
    transform: translateY(100px);
}

.lineup-panel .item01 .thumb{
   background-image: url(../img/lineup-image01.jpg);
}

.lineup-panel .item02 .thumb{
    background-image: url(../img/lineup-image02.jpg);
}

.lineup-panel .item03 .thumb{
    background-image: url(../img/lineup-image03.jpg);
}

.lineup-panel .item04 .thumb{
    background-image: url(../img/lineup-image04.jpg);
}

.lineup-panel .item .thumb {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.lineup-panel .item .thumb::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: calc(440 / 1040 * 100%);
}

.lineup-panel .item .contents {
   
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: calc(40 / 520 * 100%);
    padding-right: calc(40 / 520 * 100%);
}

.lineup-panel .item .contents .title {
    display: flex;
    align-items: flex-end;
}


.lineup-panel .item .contents .num img{
   height: 34px;
   margin-right: 15px;
}

.lineup-panel .item .contents .title-text {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.lineup-panel .item .contents .text {
    margin-top: 30px;
    font-size: 16px;
}

.lineup-panel .item .contents .text .bold {
    font-weight: bold;
}

.lineup-panel .item .contents .notice {
    font-size: 12px;
    margin-top: 20px;
}


@media screen and (max-width: 768px) {
    .lineup {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
        background-image: url(../img/lineup.sp.png);
    }
    
    .lineup .lineup-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .lineup .lineup-heading img {
        width: 244px;
    }
    
    .lineup .lineup-heading span {
        font-size: 13px;
        font-weight: bold;
        margin-top: 15px;
        line-height: 1;
        color: #fff;
    }
    
    .lineup-panel {
        max-width: 1080px;
        margin-top: 40px;
        display: block;
    }
    
    .lineup-panel .item {
        width: 100%;
        background: #fff;
        transform: translateY(50px)!important;
        opacity: 0;
        transition: opacity .5s ease, transform .5s ease;
    }

    .lineup-panel .item.is-active {
        opacity: 1;
        transform: translateY(0)!important;
    }
    
    .lineup-panel .item:not(:first-child) {
        margin-top: 25px;
    }

    .lineup-panel .item:not(:nth-child(2n+1)) {
        margin-left: 0
    }

    
    .lineup-panel .item01 .thumb{
       background-image: url(../img/lineup-image01.sp.jpg);
    }
    
    .lineup-panel .item02 .thumb{
        background-image: url(../img/lineup-image02.sp.jpg);
    }
    
    .lineup-panel .item03 .thumb{
        background-image: url(../img/lineup-image03.sp.jpg);
    }
    
    .lineup-panel .item04 .thumb{
        background-image: url(../img/lineup-image04.sp.jpg);
    }
    
    .lineup-panel .item .thumb {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .lineup-panel .item .thumb::before {
        content: '';
        display: block;
        width: 100%;
        padding-top: calc(274 / 650 * 100%);
    }
    
    .lineup-panel .item .contents {
       
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: calc(50 / 650 * 100%);
        padding-right: calc(50 / 650 * 100%);
    }
    
    .lineup-panel .item .contents .title {
        display: flex;
        align-items: flex-end;
    }
    
    
    .lineup-panel .item .contents .num img{
       height: 24px;
       margin-right: 15px;
    }
    
    .lineup-panel .item .contents .title-text {
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
    }
    
    .lineup-panel .item .contents .text {
        margin-top: 20px;
        font-size: 13px;
    }
    
    .lineup-panel .item .contents .text .bold {
        font-weight: bold;
    }
    
    .lineup-panel .item .contents .notice {
        font-size: 11px;
        margin-top: 10px;
    }
}

.field {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 10px;
    padding-left: 10px;
}

.field .field-heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.field .field-heading img {
    width: 142px;
}

.field-heading span {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-top: 30px;
}

.field .intro-text {
    font-size: 16px;
    text-align: center;
    margin-top: 55px;
}

.field .notice {
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
}

.field-list {
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    margin: 130px auto 0;
}

.field-list-item {
    width: calc(334 / 1080 * 100%);
    border: 2px solid #eee;
    position: relative;
    padding-top: 27px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.field-list-item:not(:nth-child(3n+1)) {
    margin-left: calc(36 / 1080 * 100%);
}

.field-list-item:not(:nth-child(-n+3)) {
    margin-top: calc(80 / 1080 * 100%);
}

.field-list-item .icon {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    margin: auto;
    transform: translateY(-75%);
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
    box-sizing: content-box;
}

.field-list-item .title {
    font-size: 18px;
    text-align: center;
    color: #30a9c1;
    font-weight: bold;
}

.field-list-item .list {
    font-size: 14px;
    line-height: 1.8;
    font-weight: bold;
    margin-top: 25px;
}

.field-list-item .list .item {
    text-indent: -1em;
    padding-left: 1em;
}
.field-list-item .icon01 {
    width: 74px;   
}
.field-list-item .icon02 {
    width: 65px;   
}
.field-list-item .icon03 {
    width: 62px;   
}
.field-list-item .icon04 {
    width: 78px;   
}
.field-list-item .icon05 {
    width: 69px;   
}
.field-list-item .icon06 {
    width: 63px;   
}
.field-list-item .icon07 {
    width: 62px;   
}
.field-list-item .icon08 {
    width: 41px;   
}
.field-list-item .icon09 {
    width: 74px;   
}
.field-list-item .icon10 {
    width: 68px;   
}
.field-list-item .icon11 {
    width: 39px;   
}
.field-list-item .icon12 {
    width: 63px;   
}

.field .other {
    border: 2px solid #eee;
    max-width: 800px;
    height: 105px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 60px auto 0;
    padding-left: 70px;
}

.field .other .title {
    font-size: 18px;
    font-weight: bold;
    color: #30a9c1;
    padding-right: 45px;
    margin-right: 50px;
    position: relative;
    line-height: 1;
}

.field .other .title::before {
    content: '';
    display: block;
    width: 2px;
    height: 48px;
    position: absolute;
    right: 0;
    top: -70%;
    background: #eee;
}

.field .other .wrapper {
    display: flex;
    align-items: flex-start;
}

.field .other .list {
    font-size: 14px;
    font-weight: bold;
}

.field .other .list:not(:first-child) {
    margin-left: 25px;
}

.field .other .item:not(:first-child) {
    margin-top: 5px;
}

.field .other .text {
    position: absolute;
    right: 65px;
    bottom: 25px;
}

@media screen and (max-width: 768px) {
    .field {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-right: 0;
        padding-left: 0;
    }
    
    .field .field-heading {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .field .field-heading img {
        width: 83px;
    }
    
    .field-heading span {
        font-size: 13px;
        font-weight: bold;
        display: block;
        margin-top: 20px;
    }
    
    .field .intro-text {
        font-size: 13px;
        text-align: left;
        margin-top: 40px;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
    }
    
    .field .notice {
        font-size: 11px;
        margin-top: 10px;
        text-align: left;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
    }
    
    .field-list {
        display: block;
        margin-top: 60px;
        padding-left: calc(75 / 750 * 100%);
        padding-right: calc(75 / 750 * 100%);
    }
    
    .field-list-item {
        width: 100%;
        border: 1px solid #eee;
        position: relative;
        padding-top: 15px;
        padding-bottom: 15px;
        justify-content: center;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    

    .field-list-item:not(:nth-child(3n+1)) {
        margin-left: auto;
    }
    
    .field-list-item:not(:nth-child(-n+3)) {
        margin-top: 0;
    }

    .field-list-item:not(:first-child) {
        margin-top: 40px;
    }
    
    .field-list-item .icon {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        margin: auto;
        transform: translateY(-75%);
        padding-left: 20px;
        padding-right: 20px;
        background: #fff;
        box-sizing: content-box;
    }
    
    .field-list-item .title {
        font-size: 16px;
    }
    
    .field-list-item .list {
        font-size: 13px;
        line-height: 1.6;
        font-weight: bold;
        margin-top: 15px;
    }
    
    .field-list-item .list .item {
        text-indent: -1em;
        padding-left: 1em;
    }
    .field-list-item .icon01 {
        width: 44px;   
    }
    .field-list-item .icon02 {
        width: 38px;   
    }
    .field-list-item .icon03 {
        width: 38px;   
    }
    .field-list-item .icon04 {
        width: 43px;   
    }
    .field-list-item .icon05 {
        width: 40px;   
    }
    .field-list-item .icon06 {
        width: 37px;   
    }
    .field-list-item .icon07 {
        width: 38px;   
    }
    .field-list-item .icon08 {
        width: 23px;   
    }
    .field-list-item .icon09 {
        width: 41px;   
    }
    .field-list-item .icon10 {
        width: 39px;   
    }
    .field-list-item .icon11 {
        width: 19px;   
    }
    .field-list-item .icon12 {
        width: 34px;   
    }
    
    .field .other {
        width: calc(300 / 375 * 100%);
        height: auto;
        border: 1px solid #eee;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 10px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 40px;
    }
    
    .field .other .title {
        font-size: 14px;
        font-weight: bold;
        color: #30a9c1;
        padding-right: 0;
        margin-right: 0;
        position: relative;
        line-height: 1;
        text-align: center;
    }
    
    .field .other .title::before {
       display: none;
    }
    
    .field .other .wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-top: 15px;
    }
    
    .field .other .list {
        font-size: 14px;
        font-weight: bold;
    }
    
    .field .other .list:not(:first-child) {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .field .other .item:not(:first-child) {
        margin-top: 5px;
    }
    
    .field .other .text {
        position: static;
        margin-top: 15px;
    }
}


.cta {
    padding-top: 75px;
    padding-bottom: 90px;
    padding-left: 10px;
    padding-right: 10px;
    background: url(../img/gra-bg.png) no-repeat center / cover;
}

.cta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.cta-title .small{
    font-size: 22px;
}

.cta-title .large {
    font-size: 28px;
}

.cta .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 125px;
}

.cta .btn-wrapper .btn{
    width: 280px;
    height: 70px;
}

.cta .btn-wrapper .btn:not(:first-child){
    margin-left: 20px;
}

.cta .btn-wrapper .black-btn .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    font-size: 16px;
    position: relative;
    transition: background-color .3s ease;
}



.cta .btn-wrapper .black-btn .link::before {
    content: '';
    display: block;
    width: 239px;
    height: 53px;
    background: url(../img/popup01.png) no-repeat center / cover;
    position: absolute;
    right: 0;
    left: 0;
    bottom: calc(100% + 15px);
    margin: auto;
    transition: background-image .3s ease;
}

@media screen and (min-width: 769px) {
    .cta .btn-wrapper .black-btn .link:hover {
        background-color: #2b2b2b;
    }
    .cta .btn-wrapper .black-btn .link:hover::before {
        background: url(../img/popup01-hover.png) no-repeat center / cover;
    }
}

.cta .btn-wrapper .black-btn .link .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 15px;
}

.cta .btn-wrapper .black-btn .link .circle::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
}

.cta .btn-wrapper .white-btn .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #30a9c1;
    font-size: 16px;
    position: relative;
    transition: background-color .3s ease, color .3s ease;
}

.cta .btn-wrapper .white-btn .link::before {
    content: '';
    display: block;
    width: 239px;
    height: 53px;
    background: url(../img/popup02.png) no-repeat center / cover;
    position: absolute;
    right: 0;
    left: 0;
    bottom: calc(100% + 15px);
    margin: auto;
    transition: background-image .3s ease;
}

.cta .btn-wrapper .white-btn .link .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #30a9c1;
    margin-right: 15px;
    transition: border-color .3s ease;
}

.cta .btn-wrapper .white-btn .link .circle::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #30a9c1;
    border-right: 2px solid #30a9c1;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
    transition: border-color .3s ease;
}

@media screen and (min-width: 769px) {
    .cta .btn-wrapper .white-btn .link:hover {
        background-color: #e0faff;
    }
    .cta .btn-wrapper .white-btn:hover .link::before {
        background: url(../img/popup02-hover.png) no-repeat center / cover;
    }
    /* .cta .btn-wrapper .white-btn .link:hover .circle {
        border-color: #fff;
    }
    .cta .btn-wrapper .white-btn .link:hover .circle::before {
        border-top-color: #fff;
        border-right-color: #fff;
    } */
}

@media screen and (max-width: 768px) {
    .cta {
        padding-top: 40px;
        padding-bottom: 45px;
        background: url(../img/gra-bg.png) no-repeat center / cover;
    }
    
    .cta-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }
    
    .cta-title .small{
        font-size: 13px;
    }
    
    .cta-title .large {
        font-size: 16px;
    }
    
    .cta .btn-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 75px;
    }
    
    .cta .btn-wrapper .btn{
        width: 275px;
        height: 60px;
    }
    
    .cta .btn-wrapper .btn:not(:first-child){
        margin-left: 0;
        margin-top: 60px;
    }
    
    .cta .btn-wrapper .black-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #000;
        color: #fff;
        font-size: 16px;
        position: relative;
    }
    
    .cta .btn-wrapper .black-btn .link::before {
        content: '';
        display: block;
        width: 161px;
        height: 36px;
        background: url(../img/popup01.sp.png) no-repeat center / cover;
        position: absolute;
        right: 0;
        left: 0;
        bottom: calc(100% + 10px);
        margin: auto;
    }
    
    .cta .btn-wrapper .black-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 1px solid #fff;
        margin-right: 10px;
    }
    
    .cta .btn-wrapper .black-btn .link .circle::before{
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        position: relative;
        left: -2px;
    }
    
    .cta .btn-wrapper .white-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #fff;
        color: #30a9c1;
        font-size: 15px;
        position: relative;
        font-weight: bold;
    }
    
    .cta .btn-wrapper .white-btn .link::before {
        content: '';
        display: block;
        width: 161px;
        height: 36px;
        background: url(../img/popup02.sp.png) no-repeat center / cover;
        position: absolute;
        right: 0;
        left: 0;
        bottom: calc(100% + 10px);
        margin: auto;
    }
    
    .cta .btn-wrapper .white-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 2px solid #30a9c1;
        margin-right: 10px;
    }
    
    .cta .btn-wrapper .white-btn .link .circle::before{
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: 2px solid #30a9c1;
        border-right: 2px solid #30a9c1;
        transform: rotate(45deg);
        position: relative;
        left: -2px;
    }
}

.strength {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 10px;
    padding-right: 10px;
}

.strength-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.strength-heading img {
    width: 271px;
}

.strength-heading span {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

.strength .inner {
    max-width: 1080px;
    margin: 0 auto;
}

.strength-column01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 125px;
}

.strength-column01 .contents {
    max-width: 390px;
    margin-right: 20px;
}

.strength-column01 .contents .title {
    font-size: 26px;
    font-weight: bold;
    position: relative;
    margin-bottom: 45px;
}

.strength-column01 .contents .title::before {
    content: '';
    display: block;
    width: 133px;
    height: 116px;
    background: url(../img/strength-num01.png) no-repeat center / cover;
    position: absolute;
    right: 0;
    bottom: 0;
}

.strength-column01 .contents .title span {
    position: relative;
    z-index: 2;
}

.strength-column01 .contents .text {
    font-size: 14px;
    line-height: 2;
}

.strength-column01 .contents .text span {
    font-weight: bold;
}


.strength-column01 .image {
    max-width: 632px;
}

.strength .blue-block01 {
    background: #ebf7f9;
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength .blue-block01 img {
    width: 100%;
}

.strength-column02 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: 120px;
}

.strength-column02 .contents {
    max-width: 410px;
    margin-left: 20px;
}

.strength-column02 .contents .title {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 60px;
    position: relative;
}

.strength-column02 .contents .title span {
    position: relative;
    z-index: 2;
}

.strength-column02 .contents .title::before {
    content: '';
    display: block;
    width: 154px;
    height: 116px;
    background: url(../img/strength-num02.png) no-repeat center / cover;
    position: absolute;
    right: calc(60 / 410 * 100%);
    bottom: 0;
    z-index: -1;
}


.strength-column02 .contents .text span {
    font-weight: bold;
}

.strength-column02 .image {
    max-width: 535px;
}

@media screen and (max-width: 768px) {
    .strength {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 0;
        padding-right:0;
    }
    
    .strength-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .strength-heading img {
        width: 159px;
    }
    
    .strength-heading span {
        font-size: 13px;
        font-weight: bold;
        margin-top: 20px;
    }
    
    .strength .inner {
        max-width: 1080px;
        margin: 0 auto;
    }
    
    .strength-column01 {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin-top: 55px;
    }
    
    .strength-column01 .contents {
        max-width: none;
        width: 100%;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
        margin-right: 0;
    }
    
    .strength-column01 .contents .title {
        font-size: 18px;
        font-weight: bold;
        position: relative;
        margin-bottom: 35px;
        text-align: center;
        color: #32aac2;
    }
    
    .strength-column01 .contents .title::before {
        content: '';
        display: block;
        width: 75px;
        height: 66px;
        background: url(../img/strength-num01.png) no-repeat center / cover;
        position: absolute;
        right: 0;
        left: 0;
        bottom: -15px;
        margin: auto;
    }
    
    .strength-column01 .contents .title span {
        position: relative;
        z-index: 2;
    }
    
    .strength-column01 .contents .text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .strength-column01 .contents .text span {
        font-weight: bold;
    }
    
    
    .strength-column01 .image {
        max-width: none;
        width: 100%;
        padding-right: calc(50 / 750 * 100%);
        margin-top: 30px;
    }
    
    .strength .blue-block01 {
        background: transparent;
        max-width: 800px;
        margin: 30px auto 0;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
    }
    
    .strength-column02 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-items: center;
        margin-top: 30px;
        padding-top: 60px;
        position: relative;
    }

    .strength-column02::before {
        content: '';
        display: block;
        width: calc(650 / 750 * 100%);
        height: 1px;
        background: #eee;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
    }
    
    .strength-column02 .contents {
        max-width: none;
        margin-left: 0;
    }
    
    .strength-column02 .contents .title {
        width: 100%;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 40px;
        position: relative;
        color: #32aac2;
    }
    
    .strength-column02 .contents .title span {
        position: relative;
        z-index: 2;
    }
    
    .strength-column02 .contents .title::before {
        content: '';
        display: block;
        width: 85px;
        height: 66px;
        background: url(../img/strength-num02.png) no-repeat center / cover;
        position: absolute;
        right: 0;
        left: 0;
        bottom: -15px;
        margin: auto;
        z-index: -1;
    }
    
    .strength-column02 .contents .text{
        line-height: 1.6;
        font-size: 13px;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
        margin-bottom: 30px;
    }
    
    .strength-column02 .contents .text span {
        font-weight: bold;
    }
    
    .strength-column02 .image {
        max-width: none;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
    }

}

.evidence {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 10px;
    padding-right: 10px;
    background: url(../img/evidence-bg.png) no-repeat center / cover;
    letter-spacing: 0;
}

.evidence .odometer-formatting-mark {
    position: relative;
    top: 0.15em;
}

.evidence-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.evidence-heading img {
    width: 251px;
}

.evidence-heading span {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

.evidence .notice {
    text-align: center;
    font-size: 13px;
    margin-top: 35px;
    margin-bottom: 55px;
}

.evidence .inner {
    max-width: 1080px;
    margin: 0 auto;
}

.evidence .column {
    display: flex;
    justify-content: space-between;
}

.evidence .column .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
    min-height: 100%;
}

.evidence .engineer {
    width: 702px;
    background: #fff;
    padding-top: 45px;
    padding-bottom: 50px;
    min-height: 100%;
}


.evidence .engineer .image {
    width: calc(463 / 702 * 100%);
    margin: 0 auto;
    position: relative;
}

.evidence .engineer .image img {
    position: relative;
    z-index: 2;
}


.evidence .engineer .contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evidence .engineer .contents .sub-ttl {
    font-size: 16px;
    border: 2px solid rgba(0,0,0,0.4);
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
}

.evidence .engineer .number-wrapper {
    display: flex;
    align-items: flex-end;
}

.evidence .engineer .number-wrapper .num {
    font-size: 120px;
    font-weight: bold;
    color: #279bb2;
    line-height: 1;
}

.evidence .engineer .number-wrapper .text {
    font-size: 50px;
    font-weight: bold;
}

@media screen and (max-width: 940px) {
    .evidence .engineer .number-wrapper .num {
        font-size: 100px;
    }
    
    .evidence .engineer .number-wrapper .text {
        font-size: 30px;
    }
}

.evidence .company {
    background: #fff;
    width: 348px;
    padding-top: 40px;
    padding-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0%;
}

.evidence .company .sub-ttl-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.evidence .company .sub-ttl-wrap .sub-ttl {
    font-size: 16px;
    border: 2px solid rgba(0,0,0,0.4);
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1;
    font-weight: bold;
}

.evidence .company .sub-ttl-wrap .text {
    font-size: 22px;
    font-weight: bold;
    margin-left: 10px;
    display: block;
}

.evidence .company .image {
    width: calc(80 / 348 * 100%);
    margin-left: 20px;
    position: relative;
}

.evidence .company .image img{
    z-index: 2;
    position: relative;
}


.evidence .company .number-wrapper  {
    display: flex;
    align-items: flex-end;
}

.evidence .company .number-wrapper .num {
    font-size: 70px;
    font-weight: bold;
    color: #279bb2;
    line-height: 1;
}

.evidence .company .number-wrapper .text {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    top: -2px;
    margin-left: 10px;
}

.evidence .company .number-wrapper .sp-text {
    display: none;
}

@media screen and (max-width: 940px) {
    .evidence .company .number-wrapper .num {
        font-size: 50px;
    }
}

.evidence .base {
    background: #fff;
    width: 348px;
    padding-top: 40px;
    padding-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-height: 0%;
}

.evidence .base .sub-ttl-wrap {
    display: flex;
    align-items: center;
}

.evidence .base .sub-ttl {
    font-size: 16px;
    border: 2px solid rgba(0,0,0,0.4);
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}


.evidence .base .image {
    width: calc(99 / 348 * 100%);
    margin-right: 20px;
    position: relative;
}

.evidence .base .image img {
    position: relative;
    z-index: 2;
}


.evidence .base .number-wrapper  {
    display: flex;
    align-items: flex-end;
}

.evidence .base .number-wrapper .num {
    font-size: 70px;
    font-weight: bold;
    color: #279bb2;
    line-height: 1;
}

.evidence .base .number-wrapper .text {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    top: -3px;
    margin-left: 10px;
}

@media screen and (max-width: 940px) {
    .evidence .base .number-wrapper .num {
        font-size: 50px;
    }
}

.evidence .reverse-column {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.evidence .reverse-column .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 20px;
    min-height: 0%;
}

.evidence .project {
    width: 702px;
    background: #fff;
    padding-top: 45px;
    padding-bottom: 50px;
    min-height: 0%;
}

.evidence .project .image {
    width: calc(463 / 702 * 100%);
    margin: 0 auto;
    position: relative;
}

.evidence .project .image img {
    position: relative;
    z-index: 2;
}

.evidence .project .contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evidence .project .contents .sub-ttl {
    font-size: 16px;
    border: 2px solid rgba(0,0,0,0.4);
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
}

.evidence .project .number-wrapper {
    display: flex;
    align-items: flex-end;
}

.evidence .project .number-wrapper .num {
    font-size: 120px;
    font-weight: bold;
    color: #279bb2;
    line-height: 1;
}

.evidence .project .number-wrapper .text {
    font-size: 50px;
    font-weight: bold;
}

.evidence .project .number-wrapper .left {
    margin-right: 10px;
}

.evidence .project .number-wrapper .right {
    margin-left: 10px;
}

@media screen and (max-width: 940px) {
    .evidence .project .number-wrapper .num {
        font-size: 90px;
    }
    
    .evidence .project .number-wrapper .text {
        font-size: 20px;
    }
}

.evidence .sex {
    background: #fff;
    width: 348px;
    padding-top: 40px;
    padding-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0%;
}

.evidence .sex .sub-ttl {
    font-size: 16px;
    border: 2px solid rgba(0,0,0,0.4);
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
}


.evidence .sex .image {
    width: calc(115 / 348 * 100%);
    margin-left: 20px;
    position: relative;
}

.evidence .sex .image img{
    position: relative;
    z-index: 2;
}


.evidence .sex .number-wrapper  {
    display: flex;
    align-items: flex-end;
}

.evidence .sex .number-wrapper .num {
    font-size: 70px;
    font-weight: bold;
    color: #279bb2;
    line-height: 1;
}

.evidence .sex .number-wrapper .text {
    font-size: 22px;
    font-weight: bold;
}


.evidence .science {
    background: #fff;
    width: 348px;
    padding-top: 40px;
    padding-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    min-height: 0%;
}

.evidence .science .sub-ttl-wrap {
    display: flex;
    align-items: center;
}

.evidence .science .sub-ttl {
    font-size: 16px;
    border: 2px solid rgba(0,0,0,0.4);
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}


.evidence .science .image {
    width: calc(77 / 348 * 100%);
    margin-right: 20px;
    position: relative;
}

.evidence .science .image  img{
    z-index: 2;
    position: relative;
}



.evidence .science .number-wrapper  {
    display: flex;
    align-items: flex-end;
}

.evidence .science .number-wrapper .num {
    font-size: 70px;
    font-weight: bold;
    color: #279bb2;
    line-height: 1;
}

.evidence .science .number-wrapper .text {
    font-size: 22px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .evidence {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
        background: url(../img/evidence-bg.sp.png) no-repeat center / cover;
    }
    
    .evidence-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    
    .evidence-heading img {
        width: 147px;
    }
    
    .evidence-heading span {
        font-size: 13px;
        font-weight: bold;
        margin-top: 20px;
    }
    
    .evidence .notice {
        text-align: center;
        font-size: 11px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .evidence .inner {
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
    }
    
    .evidence .column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .evidence .column .wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }
    
    .evidence .engineer {
        width: 100%;
        background: #fff;
        padding-top: 30px;
        padding-bottom: 35px;
    }
    
    
    .evidence .engineer .image {
        width: calc(235 / 325 * 100%);
        margin: 0 auto;
        position: relative;
    }
    
    .evidence .engineer .image img {
        position: relative;
        z-index: 2;
    }
    
    .evidence .engineer .image::before  {
        display: none;
    }
    
    .evidence .engineer .contents {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .evidence .engineer .contents .sub-ttl {
        font-size: 14px;
        border: 1px solid rgba(0,0,0,0.4);
        padding-top: 4px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .evidence .engineer .number-wrapper {
        display: flex;
        align-items: flex-end;
    }
    
    .evidence .engineer .number-wrapper .num {
        font-size: 50px;
        font-weight: bold;
        color: #279bb2;
        line-height: 1;
    }
    
    .evidence .engineer .number-wrapper .text {
        font-size: 20px;
        font-weight: bold;
        margin-left: 5px;
    }
     
    .evidence .company {
        background: #fff;
        width: calc(155 / 325 * 100%);
        padding-top: 20px;
        padding-bottom: 35px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    
    .evidence .company .sub-ttl-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }
    
    .evidence .company .sub-ttl-wrap .sub-ttl {
        font-size: 14px;
        border: 1px solid rgba(0,0,0,0.4);
        padding-top: 4px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1;
        font-weight: bold;
    }
    
    .evidence .company .sub-ttl-wrap .text {
        display: none;
    }
    
    .evidence .company .image {
        width: calc(85 / 310 * 100%);
        margin-left: 0;
        position: relative;
        margin-bottom: 10px;
    }
    
    .evidence .company .image img{
        z-index: 2;
        position: relative;
    }
    
    .evidence .company .image::before  {
        display: none;
    }
    
    .evidence .company .number-wrapper  {
        display: flex;
        align-items: flex-end;
    }
    
    .evidence .company .number-wrapper .num {
        font-size: 35px;
        font-weight: bold;
        color: #279bb2;
        line-height: 1;
    }
    
    .evidence .company .number-wrapper .text {
        font-size: 13px;
        font-weight: bold;
        margin-left: 5px;
    }
    .evidence .company .number-wrapper .sp-text {
        display: block;
        font-size: 13px;
        font-weight: bold;
        margin-right: 5px;
    }
 
    .evidence .base {
        background: #fff;
        width: calc(155 / 325 * 100%);
        padding-top: 20px;
        padding-bottom: 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
    
    .evidence .base .sub-ttl-wrap {
        display: flex;
        align-items: center;
    }
    
    .evidence .base .sub-ttl {
        font-size: 14px;
        border: 2px solid rgba(0,0,0,0.4);
        padding-top: 4px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }
    
    
    .evidence .base .image {
        width: calc(60 / 155 * 100%);
        margin-right: 0;
        position: relative;
        margin-bottom: 10px;
    }
    
    .evidence .base .image img {
        position: relative;
        z-index: 2;
    }
    
    .evidence .base .image::before  {
        display: none;
    }
    
    .evidence .base .number-wrapper  {
        display: flex;
        align-items: flex-end;
    }
    
    .evidence .base .number-wrapper .num {
        font-size: 35px;
        font-weight: bold;
        color: #279bb2;
        line-height: 1;
    }
    
    .evidence .base .number-wrapper .text {
        font-size: 13px;
        font-weight: bold;
    }

    .evidence .reverse-column {
        display: flex;
        flex-direction: column-reverse;
        justify-content:center;
        margin-top: 30px;
    }
    
    .evidence .reverse-column .wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-right: 0;
        margin-top: 15px;
    }
    
    .evidence .project {
        width: 100%;
        margin: 0 auto;
        width: 100%;
        background: #fff;
        padding-top: 30px;
        padding-bottom: 35px;
    }
    
    .evidence .project .image {
        width: calc(463 / 702 * 100%);
        margin: 0 auto;
        position: relative;
    }
    
    .evidence .project .image img {
        position: relative;
        z-index: 2;
    }
    
    .evidence .project .image::before  {
        display: none;
    }
    
    .evidence .project .contents {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .evidence .project .contents .sub-ttl {
        font-size: 14px;
        border: 1px solid rgba(0,0,0,0.4);
        padding-top: 4px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1;
        font-weight: bold;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .evidence .project .number-wrapper {
        display: flex;
        align-items: flex-end;
    }
    
    .evidence .project .number-wrapper .num {
        font-size: 50px;
        font-weight: bold;
        color: #279bb2;
        line-height: 1;
    }
    
    .evidence .project .number-wrapper .text {
        font-size: 20px;
        font-weight: bold;
    }
  
    .evidence .sex {
        background: #fff;
        width: calc(155 / 325 * 100%);
        padding-top: 20px;
        padding-bottom: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    
    .evidence .sex .sub-ttl {
        font-size: 14px;
        border: 1px solid rgba(0,0,0,0.4);
        padding-top: 4px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1;
        font-weight: bold;
    }
    
    
    .evidence .sex .image {
        width: calc(120 / 310 * 100%);
        margin-left: 0;
        margin-bottom: 13px;
        position: relative;
    }
    
    .evidence .sex .image img{
        position: relative;
        z-index: 2;
    }
    
    .evidence .sex .image::before  {
        display: none;
    }
    
    .evidence .sex .number-wrapper  {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-top: 10px;
    }
    
    .evidence .sex .number-wrapper .num {
        font-size: 35px;
        font-weight: bold;
        color: #279bb2;
        line-height: 1;
    }
    
    .evidence .sex .number-wrapper .text {
        font-size: 13px;
        font-weight: bold;
    }
    
    
    .evidence .science {
        background: #fff;
        width: calc(155 / 325 * 100%);
        padding-top: 20px;
        padding-bottom: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: 0;
    }
    
    .evidence .science .sub-ttl-wrap {
        display: flex;
        align-items: center;
    }
    
    .evidence .science .sub-ttl {
        font-size: 14px;
        border: 2px solid rgba(0,0,0,0.4);
        padding-top: 4px;
        padding-bottom: 5px;
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }
    
    
    .evidence .science .image {
        width: calc(81 / 310 * 100%);
        margin-right: 0;
        margin-bottom: 13px;
        position: relative;
    }
    
    .evidence .science .image  img{
        z-index: 2;
        position: relative;
    }
    
    .evidence .science .image::before  {
        display: none;
    }
    
    .evidence .science .number-wrapper  {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-top: 10px;
    }
    
    .evidence .science .number-wrapper .num {
        font-size: 35px;;
        font-weight: bold;
        color: #279bb2;
        line-height: 1;
    }
    
    .evidence .science .number-wrapper .text {
        font-size: 13px;
        font-weight: bold;
    }
}


.flow {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
    background: #ebf7f9;
}

.flow .inner {
    max-width: 1080px;
    margin: 0 auto;
    background: #fff;
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flow-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.flow-title img {
    width: 145px;
}

.flow-title span {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    color: #279bb2;
}

.step-list {
    padding-left: 10px;
    padding-right: 10px;
}

.step-list-item {
    display: flex;
    align-items: center;
}


.step-list-item:not(:first-child) {
    margin-top: 60px;
}

.step-list-item .step {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #279bb2;
    flex-shrink: 0;
    margin-right: 45px;
    position: relative;
}

.step-list-item .step::before {
    content: '';
    display: block;
    width: 13px;
    height: 9px;
    background: url(../img/step-arrow.png) no-repeat center / cover;
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 20px);
    margin: auto;
}

.step-list-item:last-child .step::before {
    display: none;
}

.step-list-item dl {
    display: flex;
    align-items: center;
}

.step-list-item dt {
    font-size: 26px;
    font-weight: bold;
    padding-right: 35px;
    width: 240px;
    position: relative;
    flex-shrink: 0;
}

@media screen and (max-width: 860px) {
    .step-list-item dt {
        font-size: 20px;
        font-weight: bold;
        padding-right: 35px;
        width: 180px;
        position: relative;
    }
}

.step-list-item dt::before {
    content: '';
    display: block;
    width: 2px;
    height: 96px;
    background: #ddd;
    position: absolute;
    right: 35px;
    top: -50%;
}

.step-list-item dd {
    max-width: 410px;
    font-size: 16px;
}

.step-list-item dd .notice {
    font-size: 12px;
}

.step-list-item .large {
    font-size: 24px;
    font-weight: bold;
    color: #279bb2;
}

.step-list-item .red {
    font-size: 12px;
    color: #ff0000;
}

.step01 img {
    width: 52px;
}

.step02 img {
    width: 59px;
}

.step03 img {
    width: 60px;
}

.step04 img {
    width: 62px;
}

.step05 img {
    width: 60px;
}

@media screen and (max-width: 768px) {
    .flow {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: calc(50 / 750 * 100%);
        padding-right: calc(50 / 750 * 100%);
        background: #ebf7f9;
    }
    
    .flow .inner {
        max-width: 1080px;
        margin: 0 auto;
        background: #fff;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: calc(35 / 600 * 100%);
        padding-right: calc(35 / 600 * 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .flow-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    
    .flow-title img {
        width: 84px;
    }
    
    .flow-title span {
        font-size: 13px;
        font-weight: bold;
        margin-top: 20px;
        color: #279bb2;
    }
    
    .step-list {
        padding: 0;
    }
    
    .step-list-item {
        display: flex;
        align-items: center;
    }
    
    
    .step-list-item:not(:first-child) {
        margin-top: 50px;
    }
    
    .step-list-item .step {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #279bb2;
        flex-shrink: 0;
        margin-right: 15px;
        position: relative;
    }
    
    .step-list-item .step::before {
        content: '';
        display: block;
        width: 9px;
        height: 6px;
        background: url(../img/step-arrow.sp.png) no-repeat center / cover;
        position: absolute;
        right: 0;
        left: 0;
        top: calc(100% + 40px);
        margin: auto;
    }
    
    .step-list-item:last-child .step::before {
        display: none;
    }
    
    .step-list-item dl {
        display: block;
    }
    
    .step-list-item dt {
        font-size: 14px;
        padding-right: 0;
        width: auto;
        position: relative;
        flex-shrink: 0;
    }
    
    .step-list-item dt::before {
        display: none;
    }
    
    .step-list-item dd {
        max-width: none;
        font-size: 13px;
    }
    
    .step-list-item dd .notice {
        font-size: 10px;
    }
    
    .step-list-item .large {
        font-size: 15px;
        font-weight: bold;
        color: #279bb2;
    }
    
    .step-list-item .red {
        font-size: 10px;
        color: #ff0000;
    }
    
    .step01 img {
        width: 24px;
    }
    
    .step02 img {
        width: 24px;
    }
    
    .step03 img {
        width: 24px;
    }
    
    .step04 img {
        width: 24px;
    }
    
    .step05 img {
        width: 24px;
    }
}

.engineers {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 10px;
    padding-right: 10px;
}

.engineers-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.engineers-title img {
    width: 291px
}

.engineers-title span {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}

.engineers .notice {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
}

.engineers .inner {
    max-width: 960px;
    width: 100%;
    margin: 50px auto 0;
}

@media screen and (max-width: 768px) {
    .engineers {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .engineers-title {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .engineers-title img {
        width: 170px
    }
    
    .engineers-title span {
        font-size: 13px;
        font-weight: bold;
        margin-top: 20px;
    }
    
    .engineers .notice {
        text-align: center;
        margin-top: 20px;
        font-size: 11px;
    }
}

.l-container-footer {
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

.l-container-footer .page-top-frame {
    width: 76px;
    height: 76px;
    position: absolute;
    top: -38px;
    right: 50px;
}

.l-container-footer .page-top-frame .page-top {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 76px;
    z-index: 11;
    cursor: pointer;
}

.l-container-footer .page-top-frame .page-top.is-fixed {
    position: fixed;
    right: 50px;
    bottom: 48px;
}


.l-container-footer .inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.l-container-footer .inner .wrapper {
    display: flex;
    flex-direction: column;
}

.footer-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-list .item {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-right: 25px;
}

@media screen and (min-width: 769px) {
    .footer-list .item .link {
        transition: color .3s ease;
    }
    
    .footer-list .item .link:hover {
        color: #30a9c1;
    }
}


.footer-list .item::before {
    content: '';
    display: block;
    width: 6px;
    height: 8px;
    background: url(../img/footer/footer-arrow.png) no-repeat center / cover;
    margin-right: 4px;
}

.footer-logo {
    width: 337px;
    margin-top: 45px;
}

.footer-logo .link {
    transition: opacity .3s ease;
}

@media screen and (min-width: 769px) {
    .footer-logo .link:hover {
        opacity: 0.7;
    }
}

.footer-text {
    font-size: 14px;
    margin-top: 15px;
}

.footer-banner {
    width: calc(472 / 1080 * 100%);
}

.footer-banner .link {
    transition: opacity .3s ease;
}

@media screen and (min-width: 769px) {
    .footer-banner .link:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 768px) {
    .l-container-footer {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: calc(45 / 750 * 100%);
        padding-right: calc(45 / 750 * 100%);
    }

    .l-container-footer .page-top-frame {
        width: 60px;
        height: 60px;
        position: absolute;
        top: -25px;
        right: 20px;
    }
    
    .l-container-footer .page-top-frame .page-top {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 60px;
        z-index: 11;
        cursor: pointer;
    }
    
    .l-container-footer .page-top-frame .page-top.is-fixed {
        position: fixed;
        right: 20px;
        bottom: 65px;
    }
    
    
    .l-container-footer .inner {
        max-width: 1080px;
        margin: 0 auto;
        display: block;
    }
    
    .l-container-footer .inner .wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .footer-list {
        display: block;
        align-items: center;
        font-size: 13px;
        margin-top: 30px;
        border-top: 1px solid #ddd;
    }
    
    .footer-list .item {
        display: flex;
        align-items: center;
        height: 50px;
        margin-top: 0;
        padding-left: 25px;
        border-bottom: 1px solid #ddd;
    }
    
    .footer-list .item:not(:first-child) {
        margin-right: 0;
    }
    
    
    .footer-list .item::before {
        content: '';
        display: block;
        width: 6px;
        height: 8px;
        background: url(../img/footer/footer-arrow.png) no-repeat center / cover;
        margin-right: 4px;
    }
    
    .footer-logo {
        width: 252px;
        margin-top: 30px;
    }
    
    .footer-text {
        font-size: 12px;
        margin-top: 15px;
    }
    
    .footer-banner {
        width:100%;
    }
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 51px;
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .copyright {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        background: #000;
        text-align: center;
        color: rgba(255,255,255,0.5);
        font-size: 10px;
    }
}

  
.fixed-area {
    width: 100%;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}
.fixed-area::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
    background-image: linear-gradient( -64deg, rgb(48,169,193) 0%, rgb(24,149,174) 57%, rgb(0,129,155) 100%);
    z-index: 1;
}

.fixed-area.is-fixed {
    opacity: 1;
    visibility: visible;
}

.fixed-area .btn-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fixed-area .btn-wrapper .btn{
    width: 280px;
    height: 50px;
}

.fixed-area .btn-wrapper .btn:not(:first-child){
    margin-left: 20px;
}

.fixed-area .btn-wrapper .black-btn .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    font-size: 16px;
    border: 2px solid #fff;
    transition: background-color .3s ease;
}

@media screen and (min-width: 769px) {
    .fixed-area .btn-wrapper .black-btn .link:hover {
        background-color: #2b2b2b;
    }
}

.fixed-area .btn-wrapper .black-btn .link .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 15px;
}

.fixed-area .btn-wrapper .black-btn .link .circle::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
}

.fixed-area .btn-wrapper .white-btn .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #30a9c1;
    font-size: 16px;
    transition: background-color .3s ease, color .3s ease;
}

.fixed-area .btn-wrapper .white-btn .link .circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #30a9c1;
    margin-right: 15px;
    transition: border-color .3s ease;
}

.fixed-area .btn-wrapper .white-btn .link .circle::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #30a9c1;
    border-right: 2px solid #30a9c1;
    transform: rotate(45deg);
    position: relative;
    left: -2px;
    transition: border-color .3s ease;
}

@media screen and (min-width: 769px) {
    .fixed-area .btn-wrapper .white-btn .link:hover {
        background-color: #e0faff;
    }
}

@media screen and (max-width: 768px) {
    .fixed-area {
        width: 100%;
        height: 85px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0,0,0,0.6);
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease, visibility .5s ease;
    }
    
    .fixed-area.is-fixed {
        opacity: 1;
        visibility: visible;
    }
    
    .fixed-area .btn-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-left: calc(30 / 750 * 100%);
        padding-right: calc(30 / 750 * 100%);
    }
    
    .fixed-area .btn-wrapper .btn{
        width: 100%;
        height: 55px;
    }
    
    .fixed-area .btn-wrapper .btn:not(:first-child){
        margin-left: calc(20 / 750 * 100%);
    }
    
    .fixed-area .btn-wrapper .black-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #000;
        color: #fff;
        font-size: 12px;
        border: 1px solid #fff;
    }
    
    .fixed-area .btn-wrapper .black-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid #fff;
        margin-right: 7px;
    }
    
    .fixed-area .btn-wrapper .black-btn .link .circle::before{
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        position: relative;
        left: -1px;
    }
    
    .fixed-area .btn-wrapper .white-btn .link{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #fff;
        color: #30a9c1;
        font-size: 12px;
    }
    
    .fixed-area .btn-wrapper .white-btn .link .circle{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid #30a9c1;
        margin-right: 7px;
    }
    
    .fixed-area .btn-wrapper .white-btn .link .circle::before{
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-top: 1px solid #30a9c1;
        border-right: 1px solid #30a9c1;
        transform: rotate(45deg);
        position: relative;
        left: -1px;
    }
}

.js-anime[data-anime="fadeup"] {
    transform: translateY(80px);
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
}

.js-anime[data-anime="fadeup"].is-active {
    transform: translateY(0);
    opacity: 1;
}

.g-modal-frame {
    width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2001;
	overflow: auto;
    display: none;
}

.g-modal-table {
    display: table;
    width: 100%;
    height: 100%;
    pointer-events: none;
    max-width: 940px;
    margin: 0 auto;
}

.g-modal-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    pointer-events: none;
}

.g-modal {
    pointer-events: none;
    padding-left: 30px;
    padding-right: 30px;
}

.g-modal >.inner {
    pointer-events: auto;
    width: 100%;
    z-index: 2;
    position: relative;
    padding-bottom: calc(530 / 940 * 100%);
}

.g-modal .inner iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.g-modal-frame .overlay {
    pointer-events: auto;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.g-modal-frame .close {
    width: 35px;
    height: 35px;
    position: absolute;
    right: -35px;
    top: -35px;
    cursor: pointer;
}

.g-modal-frame .close::before,
.g-modal-frame .close::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.g-modal-frame .close::before {
    transform: rotate(45deg);
}

.g-modal-frame .close::after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .g-modal-frame {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 2001;
        overflow: auto;
        display: none;
    }
    
    .g-modal-table {
        display: table;
        width: 100%;
        height: 100%;
        pointer-events: none;
        max-width: 940px;
        margin: 0 auto;
    }
    
    .g-modal-cell {
        display: table-cell;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        pointer-events: none;
    }
    
    .g-modal {
        pointer-events: none;
        padding: 0;
    }
    
    .g-modal >.inner {
        pointer-events: auto;
        width: 100%;
        z-index: 2;
        position: relative;
        padding-bottom: calc(530 / 940 * 100%);
    }
    
    .g-modal .inner iframe {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    
    .g-modal-frame .overlay {
        pointer-events: auto;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1;
    }
    
    .g-modal-frame .close {
        display: none;
    }
}