@charset "utf-8";



/* **********************************************************
	common
********************************************************** */

/* company_block
--------------------------------------------------------------------*/


.company_block + .company_block{
    margin-top: 50px;
}
.company_block .title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.company_block .title::before{
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    height: 2px;
    background-color: #000;
    width: 100%;
}
.company_block h3{
    font-weight: bold;
    padding: 0 10px;
    position: relative;
    background-color: #fff;
    z-index: 2;
}
.company_block .company_list{
    display: flex;
    gap: 0 20px;
    flex-wrap: wrap;
}
.company_block .company_list li{
    width: calc((100% - 40px)/3);
}


.company_block .rows2{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.company_block .rows2 .rows2_item{
    width: calc((100% - 40px)/2);
}
.company_block .rows2 .company_list {
    justify-content: center;
}
.company_block .rows2 .company_list li{
    width: calc(200%/3);
}

@media screen and (max-width: 768px) {

.company_block + .company_block,
.rows2_item + .rows2_item{
        margin-top: 60px;
    }
.company_block .title{
        margin-bottom: 5px;
    }

    .company_block .company_list li,
    .company_block .rows2 .company_list li{
        width: calc((100% - 20px)/2);
    }
    .company_block .rows2{
        display: block;
    }
    .company_block .rows2 .rows2_item{
        width: 100%;
    }
    .company_block .rows2 .company_list {
        justify-content: unset;
    }

}




/* Company Spotlight
--------------------------------------------------------------------*/


.spotlight {
    margin-top: 95px;
  }
  
  .spotlight__container {
    position: relative;
    border: 1px solid #0A326D;
    padding: 37px 30px;
    min-height: 338px;
  }
  .spotlight + .spotlight{
    margin-top: 65px;
  }
  
  .spotlight__en-title {
    position: absolute;
    display: flex;
    line-height: 1;
    font-size: 13px;
    background-color: var(--main_color);
    color: #fff;
    border-radius: 9999px;
    height: 30px;
    align-items: center;
    justify-content: center;
    text-indent: 0.3em;
    top: -16px;
    padding: 0 12px;
  }
  
  .spotlight__img {
    float: right;
    margin-left: 33px;
  }
  .communication.spotlight__img {
        float: right;
        margin-left: 33px;
        margin-top: 5px;
  }

  .spotlight__img img{
    width: auto;
  }

  .spotlight__img figcaption{
    font-size: 12px;
    margin-top: 7px;
  }

  .spotlight__title{
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.046em;
  }
  
  .marketing .spotlight__title,
  .innovation .spotlight__title{
    padding: 15px 0;
    }

  .spotlight__text-wrap{
    margin-top: 22px;
  }
  .spotlight__post{
    line-height: 1.5;
  }
  .spotlight__sign{
    font-size: 16px;
    margin-top: 11px;
  }
  .u-md{
    display: none;
  }


  .spotlight .bottom__img{
    max-width: 100%;
    margin: 50px auto 13px;
  }
  .communication .spotlight .bottom__img{
    width: 577px;
  }
  .innovation .spotlight .bottom__img{
    width: 590px;
  }
  .marketing .spotlight .bottom__img:nth-of-type(2){
    width: 460px;
  }
  .marketing .spotlight .bottom__img:nth-of-type(3){
    width: 320px;
  }


  @media screen and (max-width: 768px) {

    .spotlight{
      margin-top: 71px;
    }
    .spotlight__en-title {
      font-size: 11px;
      height: 26px;
      top: -13px;
      left: 14px;
  }
  .spotlight__container{
    display: flex;
    flex-direction: column;
    padding: 24px 15px 15px;
  }
  .spotlight__img{
  float: none;
  max-width: 162.5px;
  order: 2;
  margin-left: auto;
  margin-right: auto;
  }
  .spotlight__img img{
    width: 100%;
    height: auto;
  }
  .spotlight__title{
    order: 1;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    }

    .marketing .spotlight__title,
    .innovation .spotlight__title{
        padding: 0;
      }

  .spotlight__text-wrap{
    order: 3;
    margin-top: 10px;
  }

  .spotlight + .spotlight{
    margin-top: 52px;
  }
  .u-md{
    display: block;
  }

  .spotlight__sign{
    font-size: 14px;
    margin-top: 2px;
  }
  .spotlight .bottom__img{
    margin: 20px auto 0;
    order: 4;
  }
  .marketing .spotlight .bottom__img:nth-of-type(3){
    margin-top: 40px;
  }
  }


/* bf_bottom
--------------------------------------------------------------------*/

 .bf_bottom {
    width: calc(100% - 30px);
    max-width: 840px;
    margin: 80px auto 0;
    display: flex;
    gap: 20px;
}

 .bf_bottom .link {
    width: calc((100% - 40px)/3);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    height: 90px;
    border:4px solid transparent;
}

.bf_bottom .link img{
    display: block;
    font-size: 0;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
}
.bf_bottom .link .txt_area {
    background-color: #f2fafe;
    padding: 15px;
    flex: auto;
    display: flex;
    align-items: center;
}
 .bf_bottom .link .txt_area h3{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}

.bf_bottom .link.active{
    border:4px solid #0288c7;
}

@media (hover: hover) {

.bf_bottom .link:hover{
        border:4px solid #0288c7;
    }
}

@media screen and (max-width: 920px) {
.tab_hidden{
        display: none;
    }
.bf_bottom .link .txt_area h3{
        font-size: 1.3rem;
    }
}


@media screen and (max-width: 768px) {

 .bf_bottom {
        width: 300px;
        flex-direction: column;
    }
    
 .bf_bottom .link {
        width: 100%;
        height: 80px;
    }
    
 .bf_bottom .link img{
        width: 85px;
        height: 80px;
    }
.bf_bottom .link .txt_area {
        padding: 15px;
    }

}


/* **********************************************************
	index
********************************************************** */

.sec01.index #section01 .img_area{
    margin: 40px auto 0;
    width: 480px;
}


@media screen and (max-width: 768px) {

    .sec01.index #section01 .lower_container {
        margin-top: 40px;
    }

    .sec01.index #section01 .img_area{
        width: 300px;
    }

}



/* kv
--------------------------------------------------------------------*/

.sec01 #page_kv {
    margin-top: 20px;
}

.sec01 #page_kv .page_kv_head {
    position: relative;
}

.sec01 #page_kv figure {
    position: relative;
}

.sec01 #page_kv figure::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: calc(370 / 1200 * 100%);
}

.sec01 #page_kv figure picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.sec01 #page_kv figure picture img {
    height: 100%;
    object-fit: cover;
}

.sec01 #page_kv .text_area {
    position: absolute;
    background: linear-gradient(60deg, rgba(199,232,250,1) 0%, rgba(199,232,250,1) 24%, rgba(111,194,165,1) 100%);
    position: absolute;
    right: 100px;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    z-index: 2;
}

.sec01 #page_kv .page_title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.2;
}
.sec01 #page_kv .copy {
    font-size: 1.4rem;
    font-weight: 500;
}
.sec01.index #page_kv .copy {
    margin-left: 24px;
}


@media screen and (max-width: 768px) {

    .sec01 #page_kv {
        margin-top: 10px;
    }

    .sec01 #page_kv figure::before {
        padding-top: calc(450 / 750 * 100%);
    }
    .sec01 #page_kv .text_area {
        top: -10px;
        right: 10px;
        width: 160px;
        height: 160px;

    }
    .sec01 #page_kv .page_title {
        margin-bottom: 0;
        font-size: 2rem;
        margin-left: 32px;
    }
    .sec01 #page_kv .copy {
        display: none;
    }
    .sec01 #page_kv .sp_copy {
        margin-top: 20px;
    }
    .sec01 #page_kv .sp_copy p{
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.6;
    }

}


/* .marker
--------------------------------------------------------------------*/
.sec01 .marker{
    background:linear-gradient(transparent 60%, #b2e2f8 60%);
    font-weight: 700;
}


/* .note
--------------------------------------------------------------------*/

    .sec01 .note {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    @media screen and (max-width: 768px) {
        .sec01 .note {
            font-size: 1.1rem;
        }
    
    }


/* .catch .view
--------------------------------------------------------------------*/

.sec01 .catch {
    margin-top: 50px;
    text-align: center;
}
.sec01 .catch img{
    width: auto;
    display: inline-block;
    max-width: 100%;
}


.sec01 .view .lower_h2 {
    margin-bottom: 15px;
}

.sec01 .view .img_area {
    max-width: 480px;
    margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {

    .sec01 .catch {
        margin-top: 40px;
    }
    .sec01 .catch img{
        max-width: 345px;
    }

    .sec01 .view .lower_h2 {
        margin-bottom: 20px;
    }
    
    .sec01 .view .img_area {
        max-width: 300px;
    }
}



/* .sign
--------------------------------------------------------------------*/
.sec01.index .sign{
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}
.sec01.index .wrapper{
    text-align: left;
}
.sec01.index  .term{
    font-size: 1.4rem;
    margin-top: 20px;
    line-height: 1;
}
.sec01.index  .sign img{
    width: 266px;
    display: block;
}
@media screen and (max-width: 768px) {

    .sec01.index  .term{
        font-size: 1rem;
        margin-top: 10px;
    }
    .sec01.index  .sign img{
        width: 190px;
    }
}


/* **********************************************************
	policy
********************************************************** */

/* 経営理念
--------------------------------------------------------------------*/


.policy #section01 .list{
    margin-top: 30px;
}

.policy #section01 .item{
    display: flex;
    margin-bottom: 30px;
}
.policy #section01 .item:last-child{
    margin-bottom: 0;
}
.policy #section01 .num{
    width: 30px;
    flex-shrink: 0;
}


@media screen and (max-width: 768px) {

    .policy #section01 {
        margin-top: 40px;
    }

    .policy #section01 .list{
        margin-top: 40px;
    }
    .policy #section01 .item{
        margin-bottom: 10px;
    }
    .policy #section01 .item:last-child{
        margin-bottom: 0;
    }
    .policy #section01 .num{
        width: 20px;
    }

}

/* ポリシー
--------------------------------------------------------------------*/

.policy #section02 .txt_block{
    margin-top: 40px;
}
.policy #section02 .txt_block h3{
    margin-bottom: 20px;
    line-height: 1;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .policy #section02 .txt_block{
        margin-top: 20px;
    }
    .policy #section02 .txt_block h3{
        margin-top: 40px;
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
}


/* **********************************************************
	business_field
********************************************************** */

/* 事業領域の拡大
--------------------------------------------------------------------*/

.business_field .lower_fv h1{
    margin-bottom: 40px;
}

.business_field .text_intro {
    margin-bottom: 50px;
    font-size: 1.6rem;
    text-align: center;
}

.business_field .view_contents {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: grab;
    width: 903px;
}
.business_field .view_contents img{
    width: 706px;
    height: auto;
}
.business_field .text_area {
    padding-right: 20px;
    white-space: nowrap;
}

.business_field .text_area .copy{
    font-family: "Hiragino Mincho Pro","Hiragino Mincho ProN", "HG明朝E", serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.business_field .text_area .sub{
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.business_field .text_area .link03{
    font-size: 1.4rem;
    text-decoration: underline;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.business_field .text_area .link03::after{
    content: "";
    display: block;
    width: 16px;
    height: 14px;
    background-image: url(/english/csr/ir/online/2023/01/img/business_field/p_arrow.png);
    background-size: contain;
}
.business_field .text_area .link03:hover{
    text-decoration: unset;
}


@media screen and (max-width: 768px) {

    .business_field .text_intro {
        font-size: 1.4rem;
        margin-bottom: 40px;
        text-align: left;
    }

}

@media screen and (max-width: 520px) {

    .business_field .view_contents {
        gap: 10px;
        width: 505px;
    }
    
    .business_field .view_contents img {
        width: 375px;
    }
    .business_field .text_area {
        padding-right: 10px;
    }
    .business_field .text_area .copy{
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .business_field .text_area .sub{
        font-size: 1rem;
    }
    .business_field .text_area .link03{
        font-size: 1rem;
        gap: 5px;
    }
    .business_field .text_area .link03::after{
        width: 8px;
        height: 7px;
    }

}


/* **********************************************************
	communication
********************************************************** */

.communication .text_intro{
    margin-bottom: 50px;
}
.communication .text_copy{
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.5;
}


@media screen and (max-width: 768px) {
    .communication .text_intro{
        margin-bottom: 60px;
    }
    .communication .text_copy{
        margin-bottom: 40px;
        font-size: 1.4rem;
        text-align: left;
    }
  
}

/* **********************************************************
	marketing
********************************************************** */

.marketing .text_intro{
    margin-bottom: 50px;
}
.marketing .text_copy{
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.5;
}


@media screen and (max-width: 768px) {
    .marketing .text_intro{
        margin-bottom: 60px;
    }
    .marketing .text_copy{
        margin-bottom: 40px;
        font-size: 1.4rem;
        text-align: left;
    }
  
}


/* **********************************************************
	innovation
********************************************************** */

.innovation .text_intro{
    margin-bottom: 50px;
}
.innovation .text_copy{
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.5;
}


@media screen and (max-width: 768px) {
    .innovation .text_intro{
        margin-bottom: 60px;
    }
    .innovation .text_copy{
        margin-bottom: 40px;
        font-size: 1.4rem;
        text-align: left;
    }
  
}


/* **********************************************************
	key_figures
********************************************************** */

.key_figures {
    
}
.key_figures .lower_fv h1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.key_figures .lower_fv h1 .sub {
    font-size: 1.4rem;
    font-weight: normal;
}

.key_figures .fs0{
    flex-shrink: 0;
}

.key_figures .lower_h2{
    margin-bottom: 30px;
}

.key_figures .graph_list{
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;

}
.key_figures .graph_list > li{
    width: 50%;
}
.key_figures .graph_list > .wide{
    width: 100%;
}
.key_figures .graph_list h3{
    position: relative;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    min-height: 40px;
}
.key_figures .graph_list h3.mh_unset{
    min-height: unset;
}
.key_figures .graph_list h3 span{
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: -.4em;
}
.key_figures .graph_list h3 span.nosup{
    margin-top: -.2em;
}
.key_figures .graph_list h3::before{
    content: "";
    display: block;
    background-color: var(--main_color);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.key_figures .graph_list .img_area{
    max-width: 370px;
}

.key_figures .graph_note{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.key_figures .graph_note li{
    display: flex;
    gap: 4px;
    position: relative;
}
.key_figures .graph_note li span{
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: -.2em;
}
.key_figures .graph_note li::before{
    content: "";
    display: block;
    background-color: var(--main_color);
    width: 10px;
    height: 10px;
}
.key_figures .graph_note li.gray::before{
    background-color: #9fa0a0;
    width: 16px;
    height: 4px;
    margin-top: 5px;
}
.key_figures .graph_txt {
    display: flex;
    gap: 30px;
    align-items: center;
    line-height: 1;
}
.key_figures .graph_txt p{
    font-size: 1.8rem;
    white-space: nowrap;
}
.key_figures .graph_txt .txt_l{
    font-weight: bold;
    font-size: 3.2rem;
}
.key_figures .graph_txt .txt_m{
    font-size: 2.4rem;
}

.key_figures .graph_list > .note_item{
    font-size: 1.4rem;
}
.key_figures .graph_list .t_note{
    font-size: 1.4rem;
    padding-left: 5em;
    text-indent: -5.35em;

}

.key_figures .note_area{
    margin-top: 20px;
    font-size: 1.4rem;
}


@media screen and (max-width: 768px) {
    .key_figures .lower_fv h1 .sub {
        font-size: 1.2rem;
    }
    .key_figures .lower_h2{
        margin-bottom: 20px;
    }
    
    .key_figures .graph_list{
        gap: 40px 0;

    }
    .key_figures .graph_list > li{
        width: 100%;
    }
    .key_figures .graph_list h3{
        gap: 10px;
        min-height: unset;
    }

    .key_figures .graph_list .img_area{
        margin: auto;
    }
    .key_figures .graph_note li span{
        font-size: 1.2rem;
    }
    .key_figures .graph_note li.gray::before{
        margin-top: 2px;
    }

    .key_figures .graph_txt {
        gap: unset;
        align-items: flex-start;
    }
    .key_figures .graph_txt p{
        width: 50%;
        font-size: 1.6rem;
    }
    .key_figures .graph_txt .txt_m{
        font-size: 1.6rem;
    }

    .key_figures .graph_list > .note_item{
        font-size: 1.2rem;
    }
    .key_figures .graph_list .t_note{
        font-size: 1.2rem;
    }
    .key_figures .note_area{
        font-size: 1.2rem;
    }
}

/* section03
--------------------------------------------------------------------*/

.key_figures #section03 h3{

}
.key_figures #section03 h3{
    position: relative;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.key_figures #section03 h3 span{
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: -.2em;
}

.key_figures #section03 h3::before{
    content: "";
    display: block;
    background-color: var(--main_color);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.key_figures #section03 .table {
    width: 840px;
}
.key_figures #section03 .table tr{
    border-bottom: 1px solid #61696e;
}
.key_figures #section03 .table thead{
    border-top: 1px solid #61696e;
}
.key_figures #section03 .table th{
    font-weight: normal;
}
.key_figures #section03 .table th,
.key_figures #section03 .table td{
    padding: 10px;
    vertical-align:middle;
    font-size: 1.4rem;
    line-height: 1.4;
    background-color: #dff2fc;
}
.key_figures #section03 .table td:first-child{
    font-weight: bold;
}
.key_figures #section03 .table th:nth-child(4),
.key_figures #section03 .table th:nth-child(5),
.key_figures #section03 .table td:nth-child(4),
.key_figures #section03 .table td:nth-child(5){
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .key_figures #section03 h3{
        gap: 10px;
    }
    .key_figures #section03 .table {
        width: 100%;
        min-width: 704px;
    }

    .key_figures #section03 .table th,
    .key_figures #section03 .table td{
        font-size: 1.2rem;
    }
}



/* section04
--------------------------------------------------------------------*/
.key_figures #section04 .graph_list h3 {
    margin-bottom: 30px;
    min-height: unset;
}

.key_figures #section04 .sec04_list{
    display: flex;
    flex-wrap: wrap;
}

.key_figures #section04 .sec04_list li{
    width: 50%;
}
.key_figures #section04 h4{
    display: inline-flex;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
}

.key_figures #section04 .txt_s{
    margin-left: 15px;
    font-size: 1.8rem;
}
.key_figures #section04 .logo01{
    max-width: 246px;
}
.key_figures #section04 .logo02{
    max-width: 266px;
}
.key_figures #section04 .logo03{
    max-width: 302px;
}

@media screen and (max-width: 768px) {
    .key_figures #section04 .graph_list h3 {
        margin-bottom: 20px;
    }
    .key_figures #section04 .sec04_list {
        gap: 40px;
    }
    .key_figures #section04 .sec04_list li{
        width: 100%;
    }
    .key_figures #section04 .txt_s{
        font-size: 1.4rem;
    }
    .key_figures #section04 .img_area{
        margin: auto;
    }
    .key_figures #section04 .logo01{
        max-width: 239px;
    }
    .key_figures #section04 .logo02{
        max-width: 248px;
    }
    .key_figures #section04 .logo03{
        max-width: 294px;
    }

}



/* section05
--------------------------------------------------------------------*/
.key_figures #section05 h3 {
    position: relative;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    min-height: unset;
}

.key_figures #section05 h3::before {
    content: "";
    display: block;
    background-color: var(--main_color);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.key_figures #section05 h3 span {
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: -0.2em;
}


.key_figures #section05 .table {
    width: 840px;
}
.key_figures #section05 .table tr{
    border-bottom: 1px solid #61696e;
}
.key_figures #section05 .table tr:first-child{
    border-top: 1px solid #61696e;
}

.key_figures #section05 .table td{
    padding: 10px;
    vertical-align:middle;
    font-size: 1.4rem;
    line-height: 1.4;
    background-color: #dff2fc;
}
.key_figures #section05 .table td:first-child{
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    .key_figures #section05 h3 {
        margin-bottom: 20px;
        gap: 10px;
    }
    

    .key_figures #section05 .table {
        width: 100%;
        min-width: 626px;
    }
    .key_figures #section05 .table td{
        font-size: 1.2rem;
    }
}
