/*404ページ・準備ページ*/

.nopage{
  margin-bottom: 100px;
  padding-top: 300px;
  font-family:var(--body-font);
  color: #000;
  font-size: 2rem;
  text-align: center;
}
.nobutton.back{
  margin: 0 auto 100px auto;
}

/*ボタン*/
.nobutton{
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 270px;
  padding: 10px 20px;
  background: #000;
  border-radius: 30px;
  color: #fff;
  transition: 0.5s;
}
.nobutton:hover{
  background: #000;
  transition: 0.5s;
  opacity: 0.5;
}
.nobutton img{
  width: 15px;
  margin-left: 2rem;
}

@media screen and (max-width: 960px){
  .nobutton{
      width: 240px;
      margin: 0 auto;
  }
  .nobutton img{
      width: 15px;
      margin-left: 7px;
  }
}

/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/

/* Theme Colors */
:root {
  --accent-color       : #00A8A6;
  --body-text-color    : #000;
  --background-color   : #ffffff;
}
/* Fonts */
:root {
  --body-font     : YakuHanRP, YakuHanMP, "Zen Maru Gothic", sans-serif;
  --heading-font  : YakuHanRP,YakuHanMP,"Zen Maru Gothic", sans-serif;
}

/* General Styles
/*----------------------------------------------*/
*{
margin: 0;
padding: 0;
}

*::before, *::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: var(--body-font);
line-height: 32px;
color: var(--body-text-color);
background-color: var(--background-color);
}

body.no-scroll {
  overflow:com hidden;
}

a {
color: var(--body-text-color);
text-decoration: none;
transition: 0.3s color ease-out;
}

a:hover {
color: var(--accent-color);
text-decoration: none;
}

ul{
list-style-type: none;
}

ul, ol {
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
}
/* ul ul,
ol ul,
ul ol,
ol ol {
margin-top: 5px;
margin-bottom: 0;
}
ul li, ol li {
outline: 0;
} */

ul li:last-child,
ol li:last-child {
margin-bottom: 0;
}
dl {
margin-top: 0;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
button, input, select, textarea {
font-family: var(--body-text-color);
outline: 0;
}


/* Typography */
/*----------------------------------------------*/

h1, h3 {
margin: 10px 0;
/* text-transform: capitalize; */
}

small {
font-size: 85%;
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/

.row::after,
.clearfix::after {
display: block;
clear: both;
content: "";
}

/*------------------------------------------------
/*  Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*ul {
list-style: circle inside; }
ol {
list-style: decimal inside; }
ol, ul {
padding-left: 0;
margin-top: 0; }
ul ul,
ul ol,
ol ol,
 ol ul {
margin: 1.5rem 0 0 3rem;
font-size: 90%; } */
/* li {
margin-bottom: 1rem; } */


/*------------------------------------------------
/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/*====================================================================*/
/* CONTENT ELEMENTS */
/*====================================================================*/


/* ページ内リンク設定
------------------------------------------------------------- */

/*  Main Navigation メニュー部分
------------------------------------------------------------- */
#header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  position: fixed;
  z-index: 99;
}

.logo img{
  display:inline-block;
  width: 240px;
  margin: 0;
}

.logo img a{
  display:inline-block;
  width: 240px;
  margin: 0;
}

@media screen and (max-width: 960px) {
  #header {
    height: 80px;
  }

  .logo img {
    position: fixed;
    top: 14px;
    left: 10px;
  }
}

/* メニューのデザイン */

nav{
  margin: 0 auto;
}

.nav_content {
  width: 100%;
  background: #fff; /* メニューの背景色 */ 
  text-align: center;
}

@media screen and (max-width: 960px) {
  .nav_content {
    left:0%; /* メニューを画面の外に飛ばす */
  }
}

/* メニュー　*/

ul.header_menu {
  width: 100%;
  background: #fff; /* メニューの背景色 */
  display: flex;
  text-align: center;
  list-style: none;
  font-size: 16px;
  justify-content: space-around;
}

ul.header_menu li {
  display: inline-block;
  padding: 1em 1.2em;
}

.header_menu_pre{
  pointer-events: none;
  text-decoration: line-through;
}

ul.header_menu li a:hover {
  color: #00A8A6; /* ホバーした時の文字色 */
  border-bottom: 2px solid #00A8A6; /* 下線 なしにする場合は削除する*/
}

/* サブメニュー */

ul.mega_menu-second {
  width: 100%;
  display: flex;
  text-align: center;
  padding-left: 20px;
  background: #FFFAE2;
}

li.mega_menu
ul.mega_menu-second {
  width: 100%;
  position: absolute;
  top: 100%;
  right:0;
  left:0;
  display: inline-block;
  background: #FFFAE2; /* メガメニューの背景色 */
  padding: 20px;
  visibility: hidden; /* 下層メニューを非表示 */
  transition: all 0.1s 0s ease;
  -webkit-transition: all 0.1s 0s ease;
  transition-duration: 0.1s;
}

li.mega_menu:hover
ul.mega_menu-second {
  visibility: visible; /* 下層メニューを表示 */

}

/*　ページ準備中表示　*/
li.mega_menu_pre{
  pointer-events: none;
  text-decoration: line-through;
}



/* スマホ閲覧時のハンバーガーメニュー */
 
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #00A8A6;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check{
  display: none;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  line-height: 1.3em;
  background-color: #FFFAE2;
  transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
  padding: 70px 20px 0 20px;
}
.menu-content ul li {
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  box-sizing: border-box;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}

.menu-content li a:hover {
  color: #00A8A6; /* ホバーした時の文字色 */
}

ul.menu-inner-content{
  padding: 0 20px;
  font-weight: 400;
}

/*　ページ準備中表示　*/
li.menu_pre{
  pointer-events: none;
  text-decoration: line-through;
}

/* 画面サイズが960px以下の時はPC用メニューは非表示 */
@media screen and (max-width: 960px) {
  .nav_content {
    display: none;
  }
}
/* 画面サイズが961px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 961px) {
  .menu-btn {
    display: none;
  }
}


/*--------------------------------------------------------------
/** wrapper contents
--------------------------------------------------------------*/
#wrapper{
  position: relative;
  background-color: #fff;
}

#contents{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 0;
  z-index: -1;
}

@media screen and (max-width: 960px) {
  #contents{
  width: 85%;
  padding: 30px;
  margin: 0 ;
  }
}

/*----- セカンドページ　header共通
--------------------------------------------------------------*/

.page_head{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  height: 240px;
  padding-top: 90px;
  background-image:url(../images/page_head_v.png);
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  color: #000;
  font-weight: 500;
}

.ttl_head {
  margin: 20px 0 0 0;
  letter-spacing: 0.1em;
  text-indent: 0.2em;
  font-weight: 500;
}

.page_head small {
  position: relative;
  color: #00A8A6;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom:10px;
  letter-spacing: 0.2em;
  font-size: 18px;
}

.page_head small::before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;/*線の上下位置*/
  display: inline-block;
  width: 20px;/*線の長さ*/
  height: 3px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #00A8A6;/*線の色*/
  border-radius: 10px;
}

@media screen and (max-width: 960px) {
  .page_head{
    height: 160px;
}
  
  .ttl_head {
    margin: 14px 40px 0 40px;
    font-size: 22px;
    text-align: center;
    line-height: 1.2em;
  }

  .page_head small {
    padding-bottom:4px; 
  }
}

/* テキスト改行 */

.br-sp{
  display: none;
  }

@media screen and (max-width: 960px){
  .br-sp{
    display: block;
    }
  }

/* Hero section topメインイメージ
/*----------------------------------------------*/
/* #hero-section {
  color: #000;
  padding: 150px 0 30px 0;
  align-items: center;
  background-color:var(--background-color);
  position: relative;
}

#hero-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#hero-section h1 {
  position: absolute;
  top:0px;
  left: 40px;
  font-size: 2.8em;
  z-index: 99;
}

#hero-section .headline_content p{
  position: absolute;
  top:100px;
  left: 40px;
  font-size: 1em;
  line-height: 1.8;
  font-weight: 400;
  z-index: 99;
}

#hero-section img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  } */

#main_v img{
  position: relative;
  padding-top: 90px;
  max-width: 100%;
}


.pc-main-i{
    display: block !important;
    margin: 0 auto;
  }
.sp-main-i{
    display: none !important;
    margin: 0 auto;
  }

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

#wrapper{
    overflow: hidden;
  }

/* #hero-section {
    padding: 0;
  }

#hero-section h1 {
  position: absolute;
  left: 18px;
  font-size: 1.4em;
  margin: 14px 0 0 0;
 }

#hero-section .headline_content p{
  position: absolute;
  top:55px;
  left: 0px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  } */

.pc-main-i {
    display: none !important; 
  }
.sp-main-i {
    display: block !important;
  }
}


/*----- news-contaner newstopicsエリア
--------------------------------------------------------------*/
#nw-contaner {
  width: 100%;
  margin: 40px 0 0 0; 
}

.nw-wrap {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.nw-ttl{
  padding: 260px 0 260px 70px;
}

.nw-content {
  width: 60%;
  padding: 30px 50px 50px;
  transform:translate(0,-50px);
  background: #F5F5F5;
  border-radius: 15px 0 0 15px;
  box-sizing: border-box;
}

/* ニュース記事　*/

.categorytag{
  display: flex;
  flex-wrap: wrap;
}

.news{
   display: inline-block;
   text-align: center;
   color: #fff;
   margin-right: 5px;
   padding: 3px 10px 5px;
   border-radius: 8px;
   font-weight: 400;
   line-height: 1.2em;
   background-color: #E06B66;
}

.topics{
   display: inline-block;
   text-align: center;
   color: #fff;
   padding: 3px 10px 5px;
   border-radius: 8px;
   font-weight: 400;
   line-height: 1.2em;
   background-color: #00A8A6;
}

@media screen and (max-width: 960px){
  .categorytag{
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 960px){
#nw-contaner {
    margin: 0 ;
    padding: 10px 0 10px 20px;
  }

.nw-wrap {
    flex-direction: column;
    padding: 0 0 20px 0;
  }

.nw-ttl{
    padding: 20px 0px 30px;
  }

.nw-content {
    width: 100%;
    padding: 10px 70px 30px 30px;
    transform:translate(20px,0);
    border-radius: 15px 0 0 15px;
  }
}


/*----- 各共通タイトル、キャッチ
--------------------------------------------------------------*/

/*----- 各セクション
--------------------------------------------------------------*/

#newstopics,#casestudy,#service{
  position: relative;
   width: 100%;
  max-width: 1100px;
  padding: 0 0 60px;
  /* padding: 40px 70px; */
  margin: 60px auto 0;
  /* margin-top: 60px; */
  background: #fff;
}

@media screen and (max-width: 960px){
  #newstopics,#casestudy,#service{
    width: 85%;
    padding: 40px 30px 0 30px;
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

/*　サービス内容　*/

.thumb-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content:space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.thumb-content img{
  max-width: 100%;
}

.thumb-content .txt-b{
  margin: 10px 0;
}

.thumb-content .reverse{
  display: flex;
  flex-wrap: nowrap;
  justify-content:flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.thumb-content .reverse img{
  max-width: 100%;
  flex-direction: row-reverse;
}

.thumb-content .reverse .txt-b{
  margin: 10px 0;
}

.reverse{
  display: flex;
  flex-direction: row;
}

.ttl_t_service{
  color: #00A8A6;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 960px) {
  .thumb-content {
      display: flex;
      flex-direction: column-reverse;
      flex-wrap: wrap;
      justify-content:space-between;
      margin-bottom: 30px;
      gap: 20px;
    }
  
  .reverse{
      flex-direction: row-reverse;
    }
  }

/*　NIREPLUSについて　*/

#aboutnire{
  position: relative;
  padding: 60px 70px;
  background: #FFF7F6;
  text-align: center;
}

#aboutnire h2{
  font-weight: 200;
  font-size: 32px;
}

#aboutnire p{
  padding: 40px;
  line-height: 1.8em;
}

@media screen and (max-width: 960px) {
  #aboutnire{
    position: relative;
    padding: 30px 18px;
    background: #FFF7F6;
    text-align: center;
  }

  #aboutnire h2{
    font-size: 32px;
  }

  #aboutnire p{
    padding: 20px;
    line-height: 1.8em;
  }
      }

/*----- 各セクション タイトル
--------------------------------------------------------------*/

.element-logo-ttl {
  margin-bottom: 30px;
  padding: 0 ;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 3.8em;
}

.element-logo-ttl h2{
  font-size: 120px;
  margin: 30px 0;
  color: #E4F6F6;
}

.sub-ttl {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  color: #00A8A6;
}

/* .pc-i{
  display: block !important;
  margin: 0 auto;
}
.sp-i{
  display: none !important;
  margin: 0 auto;
} */

 @media screen and (max-width: 960px){
  .element-logo-ttl {
    margin-bottom: 15px;
  }

  .element-logo-ttl h2{
    font-size: 2.8em;
    margin: 0;
    padding: 0;
  }
  
  .sub-ttl {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
  }

  .logo-ttl{
    width: 160px;
  }
  
  /* .pc-i {
    display: none !important; 
  }
  .sp-i {
    display: block !important;
  } */
}


/*----- inquiry Section お問い合わせ
--------------------------------------------------------------*/
#inquiry{
  position: relative;
  padding: 60px;
  background: #fff;
}

#inquiry .telinfo{
  background: #FFF;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  background-image: url(../images/bg_inquiry.png);
  background-repeat: repeat;
}

.telinfo h2{
  font-family: var(--body-text-color);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}

.info-number{
  display: flex;
  flex-direction: row;
  justify-content:center;
  align-items:center;
  color: #E06B66;
  gap: 50px;
  margin-bottom: 30px;
}

.info-number dl{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.info-number dt{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 200;
  font-size: 32px;
}

.info-number dd{
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px){
  #inquiry{
    position: relative;
    padding: 20px;
    background: #fff;
  }

  #inquiry .telinfo{
    padding: 30px 0 ;
    border-radius: 20px;
  }

  .telinfo h2{
    font-size: 30px;
    margin-bottom: 30px;
  }

  .info-number{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    gap: 12px;
    margin-bottom: 30px;
  }

  .info-number dl{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

.info-number dt{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: 200;
    font-size: 28px;
  }

.info-number dd{
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.1em;
    }
  }

/*　ボタン　ピンク　お問い合わせ　*/

.btn_pnk a{
  background: #fff;
  border-radius: 120px;
  position: relative;
  display: flex;
  justify-content:center;
  align-items: center;
  margin: 0 auto;
  width:380px;
  padding: 15px 25px 15px 0;
  color: #000;
  border: #E06B66 solid 4px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size:20px;
}

.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size:32px;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.btn_pnk::before{
	box-sizing: border-box;
	width:  30px;
	height: 30px;
	border: 3px solid #E06B66;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.btn_pnk::after{
	right: 41px;
	width: 12px;
	height: 12px;
	border-top: 4px solid #E06B66;
	border-right: 4px solid #E06B66;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_pnk a:hover {
  background: #E06B66;
  color: #FFF;
}

.btn_pnk a:hover::before{
	box-sizing: border-box;
	width:  30px;
	height: 30px;
	border: 3px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.btn_pnk a:hover::after{
	right: 41px;
	width: 12px;
	height: 12px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 960px){
  .btn_pnk a{
    width: 280px;
    padding: 10px 18px 10px 0;
    font-size:16px;
  }

  .arrow::before,
  .arrow::after{
    right: 10px;
  }

  .btn_pnk::before{
    width:  28px;
    height: 28px;
    border: 3px solid #E06B66;
  }

  .btn_pnk::after{
    right: 20px;
    width: 12px;
    height: 12px;
  }

  .btn_pnk a:hover::before{
    width:  28px;
    height: 28px;
    border: 3px solid #fff;
  }
  
  .btn_pnk a:hover::after{
    right: 20px;
    width: 12px;
    height: 12px;
  }

}


/* ボタン　グリーン　*/

.btn_grn a{
  background: #fff;
  border-radius: 120px;
  position: relative;
  display: flex;
  justify-content:center;
  align-items: center;
  margin: 60px auto 0;
  width: 380px;
  padding: 15px 20px 15px 0;
  color: #000;
  border: #00A8A6 solid 4px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size:20px;
}

.arrow_g{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size:32px;
}
.arrow_g::before,
.arrow_g::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.btn_grn::before{
	box-sizing: border-box;
	width:  30px;
	height: 30px;
	border: 3px solid #00A8A6;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.btn_grn::after{
	right: 41px;
	width: 12px;
	height: 12px;
	border-top: 4px solid #00A8A6;
	border-right: 4px solid #00A8A6;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_grn a:hover {
  background: #00A8A6;
  color: #FFF;
}

.btn_grn a:hover::before{
	box-sizing: border-box;
	width:  30px;
	height: 30px;
	border: 3px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.btn_grn a:hover::after{
	right: 41px;
	width: 12px;
	height: 12px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width: 960px){
  .information .info-contents{
    margin: 40px 20px 20px;
    padding: 20px;
  }
  .info-contents h2{
    font-size: 1em;
  }

  .info-element{
    flex-direction: column;
  }

  .info-element p{
    font-size: 0.7em;
  }

  .btn_grn a{
    width: 280px;
    padding: 10px 18px 10px 0;
    font-size:16px;
    margin: 20px auto 10px;
  }

  .arrow_g::before,
  .arrow_g::after{
    right: 12px;
  }

  .btn_grn::before{
    width:  25px;
    height: 24px;
    border: 2px solid #00A8A6;
  }

  .btn_grn::after{
    right: 20px;
    width: 12px;
    height: 12px;
  }

  .btn_grn a:hover::before{
    box-sizing: border-box;
    width:  25px;
    height: 24px;
    border: 2px solid #fff;
  }
  
  .btn_grn a:hover::after{
    right: 20px;
    width: 12px;
    height: 12px;
  }
}


/*----- Footer Section
--------------------------------------------------------------*/
footer {
  width: 100%;
  font-size: 14px;
  min-height: 10vh;/* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
  color: #545454;
  background-color: #FFFAE2;
  text-align: left;
  position: relative;/* ←相対位置 */
  padding-bottom: 0px; /* ←フッターの高さを指定 */
  box-sizing: border-box;
}

.footer-logo {
  width: 300px;
  padding: 40px 0 0 40px;
}

.footer-menu {
  display: flex;
  text-align: left;
  margin: 20px 40px;
}

.footer-menu .menu-l {
	flex-grow: 1;
	position: relative;
  width: 50%;
	margin-right: 2em;
}

.footer-menu .menu-l::after {
	position: absolute;
	top: 0;
	left: 100%;
	margin: 0 1rem;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #00A8A6;
}

.footer-menu .menu-r {
	flex-grow: 1;
  width: 50%;
  margin-left: 2em;
}

.footer-menu ul{
  list-style-type: none;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-menu li{
  font-weight: 600;
  line-height: 2rem;
}

.ico li{
  list-style-type: none;
  margin: 25px 0;
}

.ico img{
  width: 50px;
  height: 50px;
}

.menu-sub li{
  display: inline-block;
  margin-left: 2rem;
  font-weight: 400;
}

.copyright {
  margin: 0;
  padding: 0 0 10px 0;
  color:#000;
  text-align: center;
  font-weight: 600;
  font-family: var(--body-font);
  font-size: 0.8em;
}

@media screen and (max-width: 960px) { 
  .footer-logo {
    padding: 20px;
    width: 90%;
  }

  .footer-menu {
    display: flex;
    text-align: left;
    margin: 20px;
    flex-direction: column;
  }

  .footer-menu .menu-l {
    width: 100%;
  }

  .footer-menu .menu-r {
    margin-left: 0em;
  }
  
  .footer-menu .menu-l::after {
    top: 100%;
    left: 0;
    height: 1px;
  }

  .copyright {
    padding: 10px 0;
    font-size: 0.6em;
  }
}