@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Outfit:wght@600&family=Roboto+Condensed:wght@100..900&display=swap');


.outfit{
    font-family: "Outfit", serif;
}

/* 検証用
* {
	outline: 1px solid magenta;
}
*/
/*---------------------------------

  追加リセット

---------------------------------*/

html, body {
    min-width: 375px;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}

body{
    color: #000;
    font-size: 16px;
    font-family: "IBM Plex Sans JP", serif;
    font-weight: 500;
    font-style: normal;
}
a{
    text-decoration: none;
}

ul{
    list-style: none;
}
p, li{
    line-height: 1.5;
}
img {
    max-width: 100%;
}

/*---------------------------------

  基本設定

---------------------------------*/

.inner{
    width: 92%;
    max-width: 1240px;
    margin: auto;
}
.pc{
    display: inline-block;
}
.sp{
    display: none;
}

@media screen and (max-width:767px) {
    .pc{
        display: none;
    }
    .sp{
        display: inline-block;
    } 
}

/* モーダル開時に背景のスクロールを防ぐ 
body:has(.overlay.open){
  overflow: hidden;
}
body:has(.overlay.open) main{
  overflow: auto;
  scrollbar-gutter: stable;
}
*/
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex.re{
    flex-direction: row-reverse;
}

/*---------------------------------

  共通

---------------------------------*/


.button{
    display: block;
    width: 320px;
    height: 80px;
    padding: 26px 0 0 30px;
    background: #3C45A5;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
}
.button_w{
    display: block;
    width: 320px;
    height: 80px;
    padding: 26px 0 0 30px;
    background: #fff;
    border-radius: 4px;
    color: #3C45A5;
    font-size: 20px;
}
.arrow_r{
    position: relative;
}
.arrow_r::after{
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    right: 30px;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.button_w.arrow_r::after{
    border-right: 2px solid #3C45A5;
    border-bottom: 2px solid #3C45A5;
}

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

    .button{
        width: 100%;
        max-width: 350px;
        height: 60px;
        padding: 20px 0 0 30px;
        font-size: 16px;
    }
    .button_w{
        width: 100%;
        max-width: 350px;
        height: 60px;
        padding: 20px 0 0 30px;
        font-size: 16px;
    }
    
}

/*---------------------------------

  中身

---------------------------------*/
.main{
    margin: 0 0;
    width: 100%;
    background: #fff;
}

.breadcrumb{
    width: 92%;
    max-width: 1000px;
    margin: 0 auto 60px; 
}
.breadcrumb li{
    display: inline-block;
    color: #fff;
}
.breadcrumb li::before{
    content: '／';
}
.breadcrumb li:first-child::before{
    content: '';
}
.breadcrumb li a{
    color: #fff;
}
.breadcrumb li a:hover{
    color: #007EFF;
}
@media screen and (max-width:767px){

    .main{
        width: 100%;
    }
    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header{
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 84px;
    margin: 0;
    z-index: 5;
}

.header > .flex{
    justify-content: space-between;
    height: 100%;
}
.header .logo{
    width: 232px;
    height: 100%;
    margin: 0;
    padding: 24px;
    background: #fff;
    border-radius: 4px;
}
.header .header_nav{
    width: calc(100% - 237px);
    background: #fff;
    border-radius: 4px;
}
.header .header_nav li a{
    display: block;
    height: 84px;
    padding: 30px 15px 0 18px;
}
.header .header_nav li{
    position: relative;
    padding: 0 15px 0 0;
}
.header .header_nav li::after{
    content: '／';
    position: absolute;
    top: 30px;
    right: 0;
    display: block;
    margin: 0 0 0 18px;
    color: #A5A5A5;
}
.header .header_nav li:first-child a{
    margin: 0 0 0 20px;
    color: #1B55A6;
    font-weight: 700;
}

.header .header_nav li.tel{
    position: absolute;
    right: 84px;
    padding: 0;
}
.header .header_nav li.tel a{
    width: 84px;
    padding: 22px 22px 0;
    background: #222;
}
.header .header_nav li.contact{
    position: absolute;
    right: 0;
    padding: 0;
}
.header .header_nav li.contact a{
    width: 84px;
    padding: 22px 22px 0;
    background: #1B55A6;
    border-radius: 0 4px 4px 0;
}
.header .header_nav li.tel::after,
.header .header_nav li.contact::after{
    content: '';
    display: none;
}

@media screen and (max-width:1100px){
    .header .header_nav li:first-child a{
        margin: 0;
    }
}

@media screen and (max-width:1024px){
    .header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 68px;
        margin: 0;
        background: #fff;
        z-index: 5;
    }
    .header .logo{
        width: 232px;
        height: 100%;
        margin: 0;
        padding: 15px 15px 0;
        background: #fff;
        border-radius: 4px;
    }
    .header .header_nav{
        display: none;
    }
}

/*---------------------------------

  ハンバーガー周り

---------------------------------*/

.header_nav_sp{
    display: none;

}

.header .nav_trigger {
    display: none;
}

@media screen and (max-width:1024px){
    .header_nav_sp{
        display: block;
        position: fixed;
        top: 68px;
        right: -375px;
        width: 375px;
        max-height: calc(100% - 68px);
        padding: 30px;
        background: #151B54;
        z-index: 5;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        overflow-y: scroll;
    }
    /* サイドメニューオープン */
    .side_open .header_nav_sp{
        -webkit-transform: translate3d(-375px, 0, 0);
        transform: translate3d(-375px, 0, 0);
    }

    .header_nav_sp > ul{
        padding: 10px 30px 30px;
        background: #fff;
        border-radius: 8px;
    }
    .header_nav_sp > ul > li:not(.tel,.contact){
        border-bottom: 1px dotted #000000;
    }
    .header_nav_sp > ul > li:not(.tel,.contact) > a{
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    .header_nav_sp > ul > li:not(.tel,.contact) > a::before{
        content: '／';
        display: inline-block;
        margin: 0 18px 0 8px;
        color: #A5A5A5;
    }
    .header_nav_sp > ul > li:first-child a{
        color: #1B55A6;
        font-weight: 700;
    }
    .header_nav_sp ul li .tel_button{
        width: 250px;
        height: 48px;
        margin: 50px 0 0;
        padding-top: 14px;
        padding-left: 70px;
        font-size: 19px;
    }
    .header_nav_sp ul li .contact_button{
        width: 250px;
        height: 48px;
        margin: 20px 0 0;
        padding-top: 13px;
        padding-left: 90px;
        font-size: 16px;
    }
    .header_nav_sp ul li .tel_button::before{
        content: ''; 
        position: absolute;
        top: 7px;
        left: 10px;
        display: block; 
        width: 32px;
        height: 32px;
        background: url('../img/common/icon_tel.svg') no-repeat center / contain;
    }
    .header_nav_sp ul li .contact_button::before{
        content: ''; 
        position: absolute;
        top: 8px;
        left: 10px;
        display: block; 
        width: 32px;
        height: 32px;
        background: url('../img/common/icon_mail.svg') no-repeat center / contain;
    }
    .header_nav_sp .product_nav{
        margin: 0 0 15px;
    }
    .header_nav_sp .product_nav li a{
        position: relative;
        display: block;
        width: 260px;
        height: 44px;
        padding: 8px 58px 8px 70px;
        margin: 2px 0 0;
        text-align: center;
    }
    .header_nav_sp .product_nav li:nth-child(1) a{
        background: url(../img/aiterra/img-ec50s.png) no-repeat top 11px left 22px;
        background-size: 45px;
        background-color: #F4F4F4;
    }
    .header_nav_sp .product_nav li:nth-child(2) a{
        background: url(../img/aiterra/img-cr60s.png) no-repeat top 11px left 22px;
        background-size: 45px;
        background-color: #F4F4F4;
    }
    .header_nav_sp .product_nav li:nth-child(3) a{
        background: url(../img/aiterra/img-wa70s.png) no-repeat top 11px left 22px;
        background-size: 45px;
        background-color: #F4F4F4;
    }
    .header_nav_sp .product_nav li a::after {
        content: '';
        position: absolute;
        right: 22px;
        top: 13px;
        display: block;
        width: 18px;
        height: 18px;
        background: url(../img/aiterra/icon_arrow.svg);
        background-size: 18px;
    }
    .header_nav_sp .product_nav .product_list_logo{
        justify-content: center;
    }
    .header_nav_sp .product_nav .product_list_logo span{
        display: inline-block;
        margin: 0 0 0 5px;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 15px;
        font-style: italic;
        line-height: 1;
        font-weight: 600;
    }
    .header_nav_sp .product_nav li a p{
        margin: 3px 0 0;
        font-size: 8px;
    }
    
    
    .header .nav_trigger {
        position: fixed;
        right: 0px;
        top: 0px;
        display: block;
        width: 68px;
        height: 68px;
        background: #1B55A6;
        cursor: pointer;
        z-index: 10;
        transition: all .4s;
    }

    .header .nav_trigger span{
        position: absolute;
        top: 48px;
        right: 22px;
        display: block;
        width: 24px;
        height: 4px;
        background: rgba(255,255,255,0);
        border-radius: 2px;
        color: #73654F;
        font-size: 13px;
        letter-spacing: 0.01em;
        line-height: 28px;
        text-align: center;
        transition: all .4s;
    }
    .header .nav_trigger span::before,
    .header .nav_trigger span::after {
        position: absolute;
        display: block;    
        height: 3px;
        margin: auto;
        background: #fff;
        border-radius: 0;
        transition: all .4s;
    }
    .header .nav_trigger span::before {
        content: '';
        top: -11px;
        width: 24px;
    }
    .header .nav_trigger span::after {
        content: '';
        top: -20px;
        width: 24px;
    }
    .nav_trigger.active{
        right: 0px;
        width: 68px;
        height: 68px;
    }
    .nav_trigger.active span::before {
        width: 24px;
        height: 3px;
        -webkit-transform: translateY(-3px) rotate(-45deg);
        transform: translateY(-3px) rotate(-45deg);
    }
    .nav_trigger.active span {
        background: rgba( 0, 0, 0, 0);
    }
    .nav_trigger.active span::after {
        width: 24px;
        height: 3px;
        -webkit-transform: translateY(6px) rotate(45deg);
        transform: translateY(6px) rotate(45deg);
    }
    
}



/*---------------------------------

  aside

---------------------------------*/

.aside{
    padding: 80px 0;
    background: #000C4D;
    color: #fff;
}
.aside dt{
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
}
.aside dd{
    line-height: 26px;
}

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

    
}

/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    width: 100%;
}
.footer .footer_mbox{
    width: 100%;
    padding: 40px 0;
    background: #121212;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.footer .footer_mbox img{
    width: 300px;
    margin: 0 0 20px;
}    
.footer .footer_mbox p{
    line-height: 26px;
}
.footer .copy{
    display: block;
    width: 100%;
    height: 42px;
    padding: 14px 0 0;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

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


}

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

}

/*---------------------------------

  その他

---------------------------------*/

#err404 .btn{
    margin: 50px auto 0;
}

/* utility
--------------------------------------------------------------*/

.bg-black {
    background: #333;
}

.bg-gray {
    background: #8D8D8D;
}
.bg-green {
    background: #0C7947;
}
.ta-center {
    text-align: center;
}
.px12 {
    font-size: 12px;
}
.px18 {
    font-size: 18px;
}
.fw-light {
   font-weight: 300; 
}
.fw-bold {
   font-weight: 700; 
}
.fw-black {
   font-weight: 900; 
}
.lh2{
    line-height: 2;
}
.mt10 {
    margin-top: 10px;
}
.mt50 {
    margin-top: 50px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb100 {
    margin-bottom: 100px;
}
.ml10 {
    margin-left: 10px;
}
.mr10 {
    margin-right: 10px;
}
