@charset "utf-8";

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

@media screen and (max-width: 767px){ 

  body {
    -webkit-text-size-adjust: 100%;
    font-size:1.4rem;
  }

  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }
   
  .pc_cont {
    display:none!important;
  } 
   
  figure {
    margin:0 auto 1em;
    text-align:center;
  } 
  
  figcaption {
    font-size:1em;
    margin:0.5em 0 0;
  }

  hr.anc {
    border:none!important;
    height:0!important;
    margin-top:-58px!important;
    padding-top:58px!important;
  }
  
  .box {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 5%;
    margin: auto;
  }

  .mb0 {margin-bottom:0 !important;}
  .mb5 {margin-bottom:5px !important;}
  .mb10 {margin-bottom:10px !important;}
  .mb20 {margin-bottom:20px !important;}
  .mb30 {margin-bottom:30px !important;}
  .mb40 {margin-bottom:40px !important;}
  .mb50 {margin-bottom:50px !important;}
  .mb60 {margin-bottom:60px !important;}
  .mb70 {margin-bottom:70px !important;}
  .mb80 {margin-bottom:80px !important;}
  .mb90 {margin-bottom:90px !important;}
  .mb100 {margin-bottom:100px !important;}
  .mb110 {margin-bottom:110px !important;}
  .mb120 {margin-bottom:120px !important;}
  .pt0 {padding-top:0 !important;}
  .pt10 {padding-top:10px !important;}
  .pt20 {padding-top:20px !important;}
  .pt30 {padding-top:30px !important;}
  .pt40 {padding-top:40px !important;}
  .pt50 {padding-top:50px !important;}
  .pt60 {padding-top:60px !important;}
  .pt70 {padding-top:70px !important;}
  .pt80 {padding-top:80px !important;}
  .pt90 {padding-top:90px !important;}
  .pt100 {padding-top:100px !important;}
  .pt110 {padding-top:110px !important;}
  .pt120 {padding-top:120px !important;}
  .pb0 {padding-bottom:0 !important;}
  .pb10 {padding-bottom:10px !important;}
  .pb20 {padding-bottom:20px !important;}
  .pb30 {padding-bottom:30px !important;}
  .pb40 {padding-bottom:40px !important;}
  .pb50 {padding-bottom:50px !important;}
  .pb60 {padding-bottom:60px !important;}
  .pb70 {padding-bottom:70px !important;}
  .pb80 {padding-bottom:80px !important;}
  .pb90 {padding-bottom:90px !important;}
  .pb100 {padding-bottom:100px !important;}
  .pb110 {padding-bottom:110px !important;}
  .pb120 {padding-bottom:120px !important;}
}

/* -----------------------------------------------------------
  template
----------------------------------------------------------- */

@media screen and (max-width: 767px){

  /* :::::::::: header :::::::::: */
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  header .header_box {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 5%;
  }
  header .header_box .logo {
    position: absolute;
    left: 5%;
    top: 8px;
    width: 155px;
  }
  header .header_box .logo > img {
    display: block;
    width: 100%;
  }

  header .header_box > .menu {
    position: absolute;
    display: block;
    width: 25px;
    height: 19px;
    top: 20px;
    right: 5%;
    z-index: 1;
    cursor: pointer;
  }
  header .header_box > .menu::before,
  header .header_box > .menu::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #00417B;
    margin: auto;
    left: 0;
    right: 0;
    transition: 0.5s;
  }
  header .header_box > .menu::before {
    box-shadow: 0 8px 0 0 #00417B;
    top: 0;
  }
  header .header_box > .menu::after {
    top: 17px;
  }
  header .header_box > .menu.open::before {
    box-shadow: none;
    transform: rotate(45deg);
    top: 8px;
  }
  header .header_box > .menu.open::after {
    transform: rotate(-45deg);
    top: 8px;
  }

  header .header_box nav {
    position: fixed;
    left: 0;
    top: 58px;
    width: 100%;
    height: calc(100vh - 58px);
    background: #00417b;
    padding: 55px 5% 100px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    overflow-y: auto;
  }
  header .header_box > .menu.open + nav {
    opacity: 1;
    visibility: visible;
  }
  header .header_box nav .contact_cont {
    line-height: 1;
    padding: 0 0 15px;
    border-bottom: 1px solid #8a8a8a;
  }
  header .header_box nav .contact_cont a {
    color: #fff;
    font-size: 16px;
  }
  header .header_box nav .contact_cont a::before {
    content: "";
    display: inline-block;
    width: 22.62px;
    height: 16.5px;
    background: url(../img/common/contact_sp.svg) no-repeat center center / 100% 100%;
    vertical-align: middle;
    margin: 0 5px 2px 0;
  }
  header .header_box nav .nav_cont {}
  header .header_box nav .nav_cont .nav_list {}
  header .header_box nav .nav_cont .nav_list > li {
    position: relative;
    padding: 10px 0;;
    border-bottom: 1px solid #8a8a8a;
  }
  header .header_box nav .nav_cont .nav_list > li::after {
    content: "▼";
    position: absolute;
    top: 19px;
    right: 23px;
    color: #8A8A8A;
    font-size: 12px;
    margin: auto;
    transform: rotate(-90deg);
    transition: 0.5s;
  }
	
  header .header_box nav .nav_cont .nav_list > li.sdgs::after{
    content: "";
    position: absolute;
    top: 25px;
    right: 23px;
    margin: auto;
    transform: rotate(0deg);
    transition: 1s;
	width: 15px;
	height: 14px;
	background: url(../img/common/blank_icon_w.svg) no-repeat center center/ 100% 100%;
  }
  li.sitemapsdgs span{
	  display: inline-block;
	  background: url(../img/common/blank_icon.svg) no-repeat center right/ 15px 14px;
	  padding-right: 20px;
  }
	
  header .header_box nav .nav_cont .nav_list > li.open::after {
    transform: rotate(0);
  }
  header .header_box nav .nav_cont .nav_list > li > a {
    display: block;
    line-height: 1.45;
    font-size: 18px;
    color: #fff;
  }
  header .header_box nav .nav_cont .nav_list > li.menu > a {
    pointer-events: none;
  }
  header .header_box nav .nav_cont .nav_list > li > a > span {
    display: block;
    font-size: 12px;
    color: #8A8A8A;
  }

  header .header_box nav .nav_cont .nav_list > li > .nav_menu {
    display: none;
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 5% 0;
    border-top: 1px solid #8a8a8a;
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box .title a {
    display: block;
    font-size: 14px;
    line-height: 2;
    color: #fff;
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box .title a > span {
    display: none;
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box ul {
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box ul:last-of-type {
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box ul li a {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 2;
  }
  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .nav_menu_box ul li a.pre {
    color: #8a8a8a;
  }

  header .header_box nav .nav_cont .nav_list > li > .nav_menu > .close {
    display: none;
  }

  header .hover_bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 65, 123, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1;
  }
  header .hover_bg.fadein {
    opacity: 1;
    visibility: visible;
  }
	
  /* :::::::::: main :::::::::: */

  main {
    display:block;
    width:100%;
    height:auto;
  }
  
  main.home {
  
  }
  
  main article {
    width:100%;
    height:auto;
    overflow:hidden;
  }
  
  /* :::::::::: aside :::::::::: */

  aside {
  }
  
  /* :::::::::: footer :::::::::: */
  
  footer {
    position: relative;
    background: #00417b;
    margin: 100px 0 0;
    padding: 0 0 35px;
  }
  footer::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
    background: url(../img/common/footer_before_sp.svg) no-repeat bottom center / 100% 100%;
    bottom: 100%;
    left: 0;
    right: 0;
    transform: translateY(30px);
    transition: transform 2s;
  }
  footer.active::before {
    transform: translateY(0);
  }

  .pagetop {
    position: fixed;
    bottom: 10px;
    right: 5%;
    width: 42px;
    height: 42px;
    z-index: 90;
  }
  footer .footer_top .page {margin: 0 0 70px;}
  footer .footer_top .page > li {
    position: relative;
    padding: 10px 0;;
    border-bottom: 1px solid #8a8a8a;
  }
  footer .footer_top .page > li::after {
    content: "▼";
    position: absolute;
    top: 19px;
    right: 23px;
    color: #8A8A8A;
    font-size: 12px;
    margin: auto;
    transform: rotate(-90deg);
    transition: 0.5s;
  }
  footer .footer_top .page > li.open::after {
    transform: rotate(0);
  }
  footer .footer_top .page > li > a {
    display: block;
    line-height: 1.45;
    font-size: 18px;
    color: #fff;
  }
  footer .footer_top .page > li.menu > a {pointer-events: none;}
  footer .footer_top .page > li > a > span {
    display: block;
    font-size: 12px;
    color: #8A8A8A;
  }
  footer .footer_top .page > li > .child {
    display: none;
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 5% 0;
    border-top: 1px solid #8a8a8a;
  }
  footer .footer_top .page > li > .child > li > a {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 2;
  }
  footer .footer_top .page > li > .child > li > a.pre {
    color: #8a8a8a;
  }


  footer .footer_top .other {
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
  }
  footer .footer_top .other > li {
    display: inline-block;
    margin: 0 20px 0 0;
  }
  footer .footer_top .other > li a {
    color: #b3b3b3;
  }
  
  footer .footer_bottom {
    border-top: 1px solid #8a8a8a;
    padding: 45px 0 0;
  }
  footer .footer_bottom .footer_logo {
    width: 300px;
    margin: 0 auto 25px;
  }
  footer .footer_bottom .footer_logo > img {
    display: block;
    width: 100%;
  }
  footer .footer_bottom .copyright {
    display: block;
    font-size: 10px;
    text-align: center;
    color: #fff;
  }
} 


/* -----------------------------------------------------------
 TOP
----------------------------------------------------------- */

@media screen and (max-width: 767px) {
  
  .top_kv::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 115px;
    background: url(../img/home/kv_after_sp.svg) no-repeat center bottom / 100% 100%;
  }
  .top_kv .video_cont {}
  .top_kv .video_cont > img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .top_kv .logo_box {}
  .top_kv .logo_box .logo {
    width: 35%;
    max-width: 140px;
  }
  
  .top_kv .scroll {
    bottom: 15px;
    z-index: 1;
  }
  .top_kv .scroll > p {
  }
  
  
  .news {
    padding: 60px 0 25px;
  }
  .news .ir_info {}
  .news h2 {}
  .news h2 span {}
  .news h2 + .index {}
  .news .irc_release {
    display: block;
    line-height: 1.5;
    padding: 18px 0;
  }
  .news .irc_release .irc_release_icon {
    display: inline-block;
    width: 80px;
    text-align: left;
    margin: 0 0 5px;
    padding: 0 0 0 3%;
  }
  .news .irc_release .irc_release_yyyymmdd {
    display: inline-block;
    width: auto;
    text-align: left;
    color: #8a8a8a;
    margin: 0 0 5px;
    padding: 0 3% 0 0;
  }
  .news .irc_release .irc_release_title {
    width: 100%;
    padding: 0 3%;
  }
  
  .top_ir {
    padding: 150px 0 115px;
    background: url(../img/home/top_ir_bg_sp.png) no-repeat center center / cover;
  }
  .top_ir::before {
    top: -5px;
    left: 0;
    height: 120px;
    background: url(../img/home/top_ir_before_sp.svg) no-repeat center top / 100% 100%;
  }
  .top_ir::after {
    bottom: -5px;
    left: 0;
    height: 120px;
    background: url(../img/home/top_ir_after_sp.svg) no-repeat center top / 100% 100%;
  }
  
  .top_ir h2 {
    font-size: 24px;
    line-height: 1.7;
    margin: 0 0 15px;
  }
  .top_ir ul {margin: 0 0 55px;}
  .top_ir ul > li {
    font-size: 16px;
    line-height: 2;
  }
  
  .top_ir .sw_img {
    position: static;
  }
  .top_ir .sw_img figure {
    margin: 0 0 15px;
  }
  .top_ir .sw_img figure img {
    display: block;
    width: 100%;
  }
  .top_ir .sw_img figure + p {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
  }
  
  /*bottom_banner*/
  .bottom_banner {
    padding: 30px 0;
  }
  .bottom_banner .img_list {
    display: block;
    margin: 0 0 55px;
  }
  .bottom_banner .img_list > li {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 200px;
    padding: 15px 5%;
    margin: 0 0 30px;
  }
  .bottom_banner .img_list > li:nth-last-of-type(-n+2) {
    margin: 0 0 30px;
  }
  .bottom_banner .img_list > li:last-of-type {
    margin: 0;
  }
  .bottom_banner .img_list > li > a h2 {
    font-size: 21px;
    line-height: 1.5;
    margin: 0 0 8px;
  }
  .bottom_banner .img_list > li > a h2 > span {
    font-size: 12px;
  }
  .bottom_banner .img_list > li > .link_list {
    bottom: 15px;
  }
  
  .bottom_banner .banner_list li {
    display: block;
    margin: 0 0 15px;
  }
  .bottom_banner .banner_list li > a {
    display: block;
  }
  .bottom_banner .banner_list li > p {
    color: #8a8a8a;
    line-height: 1.3;
  }
  .bottom_banner .banner_list.columns {
    display: block;
  }
  .bottom_banner .banner_list.columns li {
    display: flex;
    margin: 0;
  }
  .bottom_banner .banner_list.columns li:nth-of-type(1) {
    margin: 0 0 15px;
  }
  .bottom_banner .banner_list.columns li.privacy img {
    margin-right: 0;
  }
  
  
  /*common*/
  .btn_more {}
  .btn_more > a,
  .btn_more > span {
    font-size: 12px;
    line-height: 1.4;
    padding: 3px 8px;
  }
  

  
}



/* -----------------------------------------------------------
 subpage
----------------------------------------------------------- */

@media screen and (max-width: 767px) {
  
  .editor_contents a[target="_blank"] {} 
  .editor_contents a[href$=".pdf"] {}   
  
}
  
/* -----------------------------------------------------------
 IR TOP
----------------------------------------------------------- */

@media screen and (max-width: 767px) {
  
  /*KV*/
  .ir_kv {
    height: 810px;
    padding: 160px 0 130px;
  }
  .ir_kv::after {
    height: 120px;
    background: url(../img/ir/kv_after_sp.svg) no-repeat center top / 100% 100%;
  }
  .ir_kv .slider li {
    height: 810px;
  }
  .ir_kv .slider li span > img {
    height: 810px;
  }
  .ir_kv .box {padding: 0 5%;}
  .ir_kv .box .logo {
    width: 100%;
    max-width: 332px;
    margin: 0 0 13px;
  }
  .ir_kv .box h1 {
    font-size: 36px;
    line-height: 1.9;
    margin: 0 0 90px;
  }
  .ir_kv .box .sw_img {
    position: static;
  }
  .ir_kv .sw_img figure {
    text-align: left;
    max-width: 320px;
  }
  .ir_kv .sw_img figure > img {width: 100%;}
  .ir_kv .sw_img figure + p {
    font-size: 14px;
  }

  /*banner*/
  .bottom_banner.irtop {padding: 90px 0 50px;}
  .bottom_banner.irtop .img_list > li > .link_list {
    position: static;
    display: flex;
  }
  .bottom_banner.irtop .img_list > li > .link_list ul {margin: 0;}
  .bottom_banner.irtop .img_list > li > .link_list ul li a {
    display: block;
    line-height: 1.9;
    font-size: 12px;
  }
  
}

/* -----------------------------------------------------------
 IR
----------------------------------------------------------- */
@media screen and (max-width: 767px) {

  .kv_s {
    height: 180px;
    margin: 0 0 55px;
  }
  .kv_s #pankuzu_top {
    display: none;
  }

  .kv_s > .box {
    padding: 90px 5% 0;
  }
  .kv_s > .box h1 {
    font-size: 24px;
  }

  article.main_cont {
    float: none;
    width: 100%;
    padding: 25px 0 100px;
  }
  article.main_cont.single {
    padding: 25px 0 100px;
  }

  #sh_contents_btn_about {
    margin: 0 0 20px;
  }
  #sh_contents_btn_about a {
    padding: 20px 5% 60px;
    transition: 0.3s;
  }
  #sh_contents_btn_about a .title {
    font-size: 20px;
    margin: 0 0 10px;
  }
  #sh_contents_btn_about a .readmore {
    height: 30px;
  }
  #sh_contents_btn_about a:hover .readmore {
    background: #DAE4E5;
  }
  #sh_contents_btn_about a .readmore > span {
    bottom: 15px;
    right: 15px;
    font-size: 14px;
  }

  /*side nav*/
  nav.side {
    display: none;
  }

  /*bottom_banner*/
  .bottom_banner.ir {
    padding: 85px 0 100px;
  }
  .bottom_banner.ir .img_list > li.movie::before,
  .bottom_banner.ir .img_list > li.movie::after {
    width: 56px;
    height: 32.9px;
  }
  .bottom_banner.ir .img_list > li .btn_more {
    position: absolute;
    bottom: 20px;
    left: 5%;
  }

}

/* -----------------------------------------------------------
 Company
----------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .subpage_list li {
    width: 100%;
    margin: 0 0 50px;
  }
  .subpage_list li:last-of-type {
    margin-bottom: 80px;
  }
  .subpage_list li a figure {
    height: 235px;
    margin: 0 0 15px;
  }
  .subpage_list li a h2 {
    font-size: 20px;
    margin: 0 0 5px;
  }
  /*Message*/
  .message .main_cont figure.top {
    margin: 0 0 50px;
  }
  .message .main_cont p.ceo {
    margin: 40px 0 0;
  }
  .message .main_cont p.ceo img {
    margin: 15px 0 0;
  }
  /*philosophy*/
  .philosophy .main_cont h2 {
    font-size: 40px;
    margin: 0 auto 30px;
    line-height: 1;
  }
  .philosophy .main_cont h2 span {
    font-size: 20px;
    line-height: 2;
  }
  .philosophy .mission:first-of-type {
    margin: 0 0 40px;
  }
  .philosophy .mission .mission_cont h3 {
    font-size: 8vw;
    margin: 0 0 9%;
  }
  .philosophy .mission .mission_cont h3 span {
    font-size: 3.2vw;
  }
  .philosophy .mission .mission_cont p {
    font-size: 3.2vw;
    line-height: 1.9;
  }
  /*profile*/
  .profile .main_cont > table tr {
    display: block;
    padding: 15px 0;
  }
  .profile .main_cont > table tr.row {
    border-bottom: none;
    padding-bottom: 0;
  }
  .profile .main_cont > table tr th {
    display: block;
    width: 100%;
    line-height: 1.5;
    margin: 0 0 5px;
    padding: 0 5%;
  }
  .profile .main_cont > table tr td {
    display: block;
    width: 100%;
    line-height: 1.5;
    padding: 0 5%;
  }
  .profile .main_cont > table tr td .right {
    margin-top: 5px;
  }
  .profile .main_cont table.indent tr {
    display: table-row;
  }
  .profile .main_cont table.indent tr th {
    display: table-cell;
    width: auto;
    color: #696969;
    padding: 0 20px 0 0;
  }
  .profile .main_cont table.indent tr td {
    display: table-cell;
    width: auto;
    padding: 0;
  }
  /*history*/
  .history_table .history_list {
    margin-left: 30px;
  }
  .history .main_cont h2 {
    margin: 0 0 40px;
  }
  .history_table .history_list .month dl.month_cont {
    display: block;
  }
  .history_table .history_list .month dl.month_cont dt {
    width: 100%;
    text-align: left;
  }
  .history_table .history_list .month dl.month_cont dd {
    width: 100%;
    padding: 00;
  }

}
/* -----------------------------------------------------------
 SDGs
----------------------------------------------------------- */
@media screen and (max-width: 767px) {

  .sdgs .main_cont h3 {
    margin-top: 60px;
  }
  .main_cont .flex_cont {
    display: block;
  }
  .main_cont .flex_cont > div:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* -----------------------------------------------------------
 News
----------------------------------------------------------- */
@media screen and (max-width: 767px) {

  .news_page .main_cont.single {
    padding: 20px 0 70px;
  }
  .news_page .main_cont.single h3 {
    font-size: 21px;
    margin: 20px 0;
    padding: 0 0 8px;
    border-bottom: 1px solid #00417b;
  }
  .news_page .archive_link {
    font-size: 0;
    margin: 0 0 30px;
  }
  .news_page .archive_link li {
    margin: 0 25px 0 0;
  }
  .news_page .news_tab li {
    padding: 10px 5px;
  }
  .news_page .news_tab li:last-of-type {
    border-right: 1px solid #c8c8c8;
  }
  .news_page .news_tab li.active {
    background: #fff;
    border-bottom: none;
    color: #c43c84;
  }

  .news_page .news {
    padding: 20px 0 35px;
  }
  .news_page .tab_area {
    display: none;
  }
  .news_page .tab_area.active {
    display: block;
  }
  .news_page .news .news_more {
    top: 3px;
  }
  .news_page .main_cont.single .tab_area h3 {
    margin: 30px 0 0;
  }

  .news_page .gray > a {
    text-decoration: underline;
    color: #696969;
  }
  .news_page .gray > a:hover {
    color: #c43c84;
  }

}
/* -----------------------------------------------------------
 Contact
----------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .contact .form {
    padding: 50px 0 0;
  }
  .contact .form h3 {
    font-size: 20px;
  }
  .contact .form h3 span {
    font-weight: 400;
    margin-left: 0;
    display: block;
  }
  .contact .form ul {
    margin: 0 0 50px;
  }
  .contact .form ul li p.select::after {
    right: 20px;
  }
  .contact .form ul li select {
    padding: 0.8em 0.7em;
    font-size: 14px;
  }
  .contact .form ul li input,
  .contact .form ul li textarea {
    padding: 0.8em 0.7em;
    font-size: 14px;
  }
  .contact .form ul li textarea {
    min-height: 200px;
  }
  .contact .form .btn_contact {
    max-width: 300px;
    width: 100%;
  }
  .contact .form .row_btn li {
    display: block;
    margin: auto;
  }
  .contact .form .row_btn li:not(:last-of-type) {
    margin: 0 auto 25px;
  }


}


/* -----------------------------------------------------------
 irc_sitemap
----------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .irc_sitemap li {
    padding: 13px 0 13px 15px;
  }
  .irc_sitemap li.irc_sitemap_lv1 {
    margin: 0 0 0 15%;
  }
  .irc_sitemap li.irc_sitemap_lv2 {
    margin: 0 0 0 25%;
  }
  .irc_sitemap li.irc_sitemap_lv3 {
    margin: 0 0 0 35%;
  }
}
/* -----------------------------------------------------------
 sub
----------------------------------------------------------- */
@media screen and (max-width: 767px) {

.main_cont h2 {
  font-size: 24px;
}
.main_cont h3 {
  font-size: 20px;
}
.main_cont h4 {
  font-size: 18px;
  padding: 19px 5%;
}
.main_cont h5 {
  font-size: 16px;
}
.main_cont h6 {
  font-size: 14px;
}
.main_cont .box-attention {
  padding: 5%;
}
.main_cont .pdf a > p {
  font-size: 14px;
}
.main_cont .pdf a > p > span {
  display: block;
  font-size: 12px;
  margin: 0;
}

.main_cont .privacy_cont {
  display: block;
  padding: 5%;
}
.main_cont .privacy_cont > figure {
  margin: 0 auto 10px;
}
.main_cont .privacy_cont > p {
  width: 100%;
  line-height: 2;
  margin: 0;
}


}