@charset "UTF-8";
/* CSS Document */

/* iOSでのデフォルトスタイルをリセット */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}
body{
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	color: #595757;
	letter-spacing: 0.2em;
	background-color: #f5f5f5;
	-webkit-font-smoothing: none;
-webkit-font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;
}
.spOnly {
    display: none !important;
}
.pcOnly {
    display: block !important;
}
@media screen and (max-width: 768px){
body{
	letter-spacing: 0.1em;
}
.spOnly {
    display: block !important;
}
.pcOnly {
    display: none !important;
}
}

.p__cont_common_wrap {
    padding-bottom: 200px;
}
.top-p100{
    padding-top: 200px;
}
.l_mainTit {
    text-align: left;
    font-size: 14px;
	font-weight: bold;
    margin: 0 auto 20px;
}
.flex-min-height-box p, .fz-ss,.in_text,.htd--contents-text p,.permission_checkmark li,.qa_menu .detail {
	font-size: 16px;
	line-height: 35px;
    margin: 0;
}
@media screen and (max-width: 768px){
.p__cont_common_wrap {
    padding-bottom: 80px;
}
.top-p100{
    padding-top: 80px;
}
.l_mainTit {
    font-size: 12px;
}
.flex-min-height-box p, .fz-ss,.in_text,.htd--contents-text p,.permission_checkmark li,.qa_menu .detail {
	font-size: 14px;
	line-height: 30px;
    margin: 0;
}
}
/*アニメーション要素のスタイル*/
.f-animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.f-active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/*--------------------------------------------------------------
button ボタン
--------------------------------------------------------------*/
.button-link a {
    background: #f5f5f5;
	border: 2px solid #595757;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
	margin-top: 20px;
    max-width: 280px;
    padding: 10px 25px;
    color: #595757;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}
.button-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button-link a:hover {
  background: #595757;
  color: #FFF;
}
.button-link a:hover:after {
  right: 1.4rem;
}
.c-button-link a {
    background: #f5f5f5;
	border: 2px solid #595757;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
	margin: 20px auto 0;
    max-width: 280px;
    padding: 10px 25px;
    color: #595757;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}
.c-button-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.c-button-link a:hover {
  background: #595757;
  color: #FFF;
}
.c-button-link a:hover:after {
  right: 1.4rem;
}
@media screen and (max-width: 768px){
.button-link a {
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}
}
/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.site-header{
    width: 100%;
    height: 95px;
    position: fixed;
    display: block;
    z-index: 10;
}
.site-header .logo{
	position: fixed;
	top: 30px;
    left: 2%;
	z-index: 12;
}
.site-header .logo img{
    width: 200px;
}

/*transition & delay*/
.transition10{transition:all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);}
.delay01{transition-delay: .1s;}
.delay02{transition-delay: .2s;}
.delay03{transition-delay: .3s;}
.delay04{transition-delay: .4s;}
.delay05{transition-delay: .5s;}
.delay06{transition-delay: .6s;}
.delay07{transition-delay: .7s;}
.delay08{transition-delay: .8s;}
.delay09{transition-delay: .9s;}
.delay10{transition-delay: 1s;}
.delay11{transition-delay: 1.1s;}
.delay12{transition-delay: 1.2s;}
.delay13{transition-delay: 1.3s;}

.menu{
    height: 20px;
    position: fixed;
    right: 2%;
    top: 35px;
    width: 30px;
    z-index: 99;
}
.menu__line{
    background: #595757;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.on .menu__line--top{
    top: 8px;
    transform: rotate(45deg);
}
.on .menu__line--center{
    transform:scaleX(0);
}
.on .menu__line--bottom{
    bottom: 10px;
    transform: rotate(135deg);
}

/*fullnav*/
.fullnav{
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11;
}
/*fullnav__nav*/
.fullnav__nav{
    align-items: center;
    background: #fff;
    display: flex;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 0;
}
/*gnav*/
.gnav{
    margin: 60px auto 0;
    width: 50%;
}
.gnav__menu__item{
    margin:15px 0;
    opacity: 0;
    transform: translateY(100px);
	font-size: 20px;
	font-weight: bold;
}
.gnav a{
    color: #000;
    text-decoration: none;
}
/*fullnav__cnt*/
.fullnav__cnt{
    align-items: center;
    background: url("../images/menu_bkdog.jpg") no-repeat center center;
	background-size:cover;
    color: #fff;
    display: flex;
    height: 100%;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 0;
}
.fullnav__cnt__inner{
    margin: 0 auto;
    width: 80%;
}
.fullnav__cnt__title{
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(100px);
	font-size: 12px;
	font-weight: bold;
}
.fullnav__cnt__title:nth-child( n + 2 ){
	margin-top: 30px;
}
.fullnav__cnt__menu{
    list-style: none;
}
.fullnav__cnt__menu__item{
    margin:20px 0;
    opacity: 0;
    transform: translateY(100px);
}
.fullnav__cnt__menu__item a{
    color: #fff;
}
/*on fullnav__nav*/
.fullnav.on .fullnav__nav{
    opacity: 1;
    width: 50%;
}
/*on gnav*/
.fullnav.on .gnav li{
    opacity: 1;
    transform: translateY(0);  
	font-size: 14px;
}
/*on fullnav__cnt*/
.fullnav.on .fullnav__cnt{
    opacity: 1;
    width: 50%;
}
.fullnav.on .fullnav__cnt__title{
    opacity: 1;
    transform: translateY(0);
	color: #ddd;
}
.fullnav.on .fullnav__cnt__menu__item{
    opacity: 1;
    transform: translateY(0);
	font-size: 30px;
}
.header-right {
    position: absolute;
    top: 30px;
    right: 5%;
	z-index: 12;
}

.h_icons li {
    float: left;
    padding: 0 10px;
}
@media only screen and (max-width: 767px) {
.site-header {
    height: 70px;
}
.site-header .logo {
    top: 25px;
}
.header-right {
    top: 20px;
    right: 11%;
}
.site-header .logo img {
    width: 135px;
}
.menu {
    top: 25px;
}
.fullnav.on .fullnav__nav{
    width: 100%;
}
.gnav{
    width: 80%;
}
.gnav__menu__item {
    margin: 15px 0 25px;
    font-size: 18px;
}
.fullnav.on .fullnav__cnt{
    display: none;
}
.fullnav__nav {
    background: #fff;
	color: #595757;
}
.gnav a {
    color: #595757;
}
}

/*FVスライダーアニメーション*/
/*========= 背景動画設定のCSS ===============*/
#fvslider-contet {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
.fvtext-wrap{
    position:absolute;
	width: 95%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color:#fff;
}
h1.fvslider-text{
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-size: 50px;
	text-align: center;
	line-height: 50px;
}

.fvslider-wrapper{
	position: relative;
}
@media screen and (max-width: 1024px){
h1.fvslider-text{
	font-size: 25px;
	text-align: center;
	line-height: 40px;
}
}
/*concept コンセプト*/
.p__brand--blc {
    max-width: 924px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0!important;
    text-align: center;
}

.p__ttl {
    text-align: center;
    font-size: 14px;
	font-weight: bold;
    margin: 0 auto 20px;
}
.p__brand--txt {
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    display: block;
    position: relative;
    margin: 0 0 10px!important;
}
.p__brand--img01 {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 30px;
}
.p__brand--img01 img,.p__brand--img02 img,.p__brand--img03 img {
    width: 100%;
}
.p__brand--img02 {
    position: absolute;
    width: 254px;
    height: 350px;
    top: 76px;
    right: -10px;
}
.p__brand--img03 {
    position: absolute;
    width: 190px;
    height: 244px;
    top: 198px;
    left: 60px;
}
@media screen and (max-width: 924px){
.p__brand--blc {
    max-width: 827px;
}
}
@media screen and (max-width: 826px){
.p__brand--blc {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    height: 140vw;
    position: relative;
    padding: 0!important;
    text-align: center;
}

.p__brand--img01 {
    position: absolute;
    width: 23.73vw;
    height: 0;
    left: 15vw;
    top: auto;
    bottom: 88vw;
}
.p__brand--img02 {
    width: 49.86vw;
    height: 39.8vw;
    top: auto;
    right: 0px;
    bottom: 39vw;
}
.p__brand--img03 {
    position: absolute;
    width: 33.6vw;
    height: 20.2vw;
    top: auto;
    bottom: 33.33vw;
    left: 5.3vw;
}	
}
@media screen and (max-width: 768px){

.p__ttl {
    font-size: 12px;
}
.p__brand--txt {
    font-size: 14px;
    line-height: 30px;
}
.p__brand--img01 {
    position: absolute;
    width: 23.73vw;
    height: 0;
    left: 15vw;
    top: auto;
    bottom: 88vw;
}
.p__brand--img02 {
    width: 49.86vw;
    height: 26.8vw;
    top: auto;
    right: 0px;
    bottom: 39vw;
}
.p__brand--img03 {
    position: absolute;
    width: 33.6vw;
    height: 20.2vw;
    top: auto;
    bottom: 33.33vw;
    left: 5.3vw;
}	
}
@media screen and (max-width: 568px){
.p__brand--blc {
    height: 169vw;
}
.p__brand--img02 {
    height: 30.8vw;
}
}
/*about アバウト*/
.flex-min-height-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
}
.about-content-inner {
    min-height: 80vh;
}
.about-content .pro_con {
    position: static;
}
.about_flex-container .reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: wrap-reverse;
    flex-flow: wrap-reverse;
}
.reverse .about-content-bg-box {
    left: 0;
}
.content-left-margin-70 {
    margin-left: 70px;
}
.wp1240 {
    max-width: 1240px;
	padding: 0 50px;
}
.about_flex-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}
.about_flex-min-height-inner{
    width: 100%;
    height: 100%;
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
}
.about_con{
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    height: auto;
}
.about-content .about_con{
    position: static;
}
.about-content-bg-box {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
    display: inline-block;
    z-index: 2;
}
.about-content-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.six-columns{
    position: static;
}
.six-columns {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

@media screen and (max-width:768px) {
.wp1240{
    padding: 0 20px;	
}
.about_con {
    width: calc(100% - 0px);
	position: relative;
}
.six-columns {
    position: relative;
    flex-basis: 100%;
}
.six-columns-img{
	flex-basis: 25% !important;
}
.about_flex-container.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: wrap-reverse;
    flex-flow: wrap-reverse;
}
.content-left-margin-70{
	margin-left: 0;
	margin-bottom: 30px;;
}
.about-content-bg-box {
    position: static;
    width: 100%;
    left: 0;
}
.about-content-bg {
    height: 40vh;
}
.about_con p{
	font-size: 14px;
}
}
/*product 商品*/
.explain {
    background: url(../images/productbk2.jpg) no-repeat right center/cover;
    height: 750px;
}
.explain .explain-inner {
    display: flex;
    align-items: center;
    height: 100%;
}
.page-width {
    margin-inline: auto;
    width: 100%;
}
.page-width.padding-inner {
    max-width: calc(1240px + 0px);
}
.padding-inner {
    padding: 0 50px;
}
@media (max-width: 1000px){
.explain {
    background: url(../images/productbk2.jpg) no-repeat 50% center/cover;
}
}
@media (max-width: 768px){
.explain {
    background: url(../images/sp/sp_productbk2.jpg) no-repeat 50% center/cover;
	height: 860px;
}
.padding-inner {
    padding: 0 20px;
}
.explain .explain-inner {
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

}
/*project*/
.pro_explain {
    background: url(../images/projectbk.jpg) no-repeat right center/cover;
    height: 750px;
}
.pro_explain .explain-inner {
    display: flex;
    align-items: center;
    height: 100%;
}
.page-width {
    margin-inline: auto;
    width: 100%;
}
.page-width.padding-inner {
    max-width: calc(1240px + 0px);
}
.padding-inner {
    padding: 0 50px;
}
@media (max-width: 1000px){
.pro_explain {
    background: url(../images/projectbk.jpg) no-repeat 50% center/cover;
}
}
@media (max-width: 768px){
.pro_explain {
    background: url(../images/sp/sp_project.jpg) no-repeat 50% center/cover;
	height: 860px;
}
.padding-inner {
    padding: 0 20px;
}
.pro_explain .explain-inner {
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

}

/* NEWS */
.tp--ns__list {
    max-width: 1240px;
	margin: 0 auto;
    padding: 0 50px;
}
.tp--ns__one {
    width: 100%;
    border-top: 1px solid #CCC;
}
.tp--ns__one:last-of-type {
    border-bottom: 1px solid #CCC !important;
}
.tp--ns__one__a {
    padding: 34px 2.5% 35px;
    display: block;
    width: 100%;
    position: relative;
}

.tp--ns__one__in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.tp--ns__one__tbx {
    width: calc(100% - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.tp--ns__one__time {
    width: 17.64706%;
    font-size: 15px;
    line-height: 1.7;
}
.tp--ns__one__ttl {
    width: 82.35294%;
    font-size: 15px;
	line-height: 1.7;
    margin: 0;
    padding: 0 50px 0 0;
}
.tp--ns__one__tag{
    font-size: 14px;
    color: #fff;
}
.tp--ns__one__cat{
    background: #595757;
    padding: 5px;
}
@media screen and (max-width: 768px){
.tp--ns__list {
    padding: 0 20px;
}
.news_wrapper{
	padding: 70px 20px;
}
.tp--ns__one__tbx {
    width: calc(100% - 0px);
}
.tp--ns__one__tag{
    display: none;
}
.tp--ns__one__a {
    padding: 20px 0 20px;
}
	
.tp--ns__one__time {
    padding: 2px 0 0 0;
	font-size: 12px;
    line-height: 1.2;
	width: 100%;
}
.tp--ns__one__ttl {
    font-size: 12px;
    line-height: 1.7;
    margin: 13px 0 0;
	width: 100%;
    padding: 0;
}
}

/* image slider */
.img_slider_area{
	overflow: hidden;
}
.technology__about--images {
	overflow: hidden;
    width: calc(2734 / 1366 * 100vw);
}
.technology__about--images {
	overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: loopslide 35s linear infinite;
    animation: loopslide 35s linear infinite;
}
.technology__about--col {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.technology__about--image {
    margin-right: calc(30 / 1366 * 100vw);
}
@-webkit-keyframes loopslide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes loopslide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (max-width: 768px){
.technology__about--images {
	overflow: hidden;
    width: calc(1782 / 390 * 100vw);
}
}
/* line cv */
.p-externalView {
    padding: 0;
}
.u-content__width {
    max-width: 1240px;
    margin: 0 auto;
	padding: 0 50px;
}
.p-externalView__block {
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    padding: 12px 16px 0;
}
.u-reverse {
    flex-direction: row-reverse;
}
.p-externalView__block--content {
    width: 50%;
    display: flex;
    align-items: center;
}
.p-externalView__block--content .content_heading {
    color: #07b53b;
    font-size: 25px;
    font-weight: bold !important;
    line-height: 1.2;
    margin: 0 0 24px;
}
.p-externalView__block--content .content_text {
    color: #595757;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 24px;
}
.p-externalView__block--content .content_button {
    width: 325px;
    height: 56px;
    background-color: #07b53b;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-externalView__block--content .content_button p {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold !important;
    letter-spacing: 0.06rem;
    margin: 0;
}
.p-externalView__block--img {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 0;
}
.p-externalView__block--img img{
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: top;
}
@media screen and (max-width: 768px){
.u-content__width {
	padding: 0 20px;
}
.p-externalView__block {
    display: block;
    padding: 28px 24px 0;
}
.p-externalView__block--content {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.p-externalView__block--content--inner {
    width: 100%;
}
.p-externalView__block--content .content_heading {
    font-size: 20px;
    margin: 0 0 24px;
    text-align: center;
}
.p-externalView__block--content .content_text {
    font-size: 14px;
    margin: 0 0 24px;
    text-align: center;
}
.p-externalView__block--content .content_button {
    width: 100%;
    height: 48px;
}
.p-externalView__block--content .content_button p {
    font-size: 14px;
    letter-spacing: 0.1rem;
}
.p-externalView__block--img {
    width: 60%;
    margin: 0 auto;
}
}
.insta span{
	text-align: center;
    margin: 70px 0 0;
}
/* page contents*/

.hero_title_wrap{
    display: block;
    position: absolute;
    top: 20%;
    left: 50%;
    -ms-transform: translate(-50%,-20%);
    -webkit-transform: translate(-50%,-20%);
    transform: translate(-50%,-20%);
    margin: 0;
    padding: 0;
	width: 90%;
}

.header_hero_title {
    font-size: 50px;
    padding: 0 0 20px;
	line-height: 50px;
    font-weight: bold !important;
    color: #595757;
	text-align: center;
}
.jp_firast_text {
    text-align: center;
    margin: 0px auto;
    color: #595757;
    font-size: 16px;
}
.jp_firast_text span {
    position: relative;
    display: inline-block;
    padding: 0 0.5em;
    color: #595757;
}
.jp_firast_text span::before {
    left: 100%;
}
.jp_firast_text span::before, .jp_firast_text span::after {
    position: absolute;
    top: 50%;
    content: '';
    width: 1.5em;
    height: 1px;
    background-color: #595757;
}
.jp_firast_text span::after {
    right: 100%;
}
.page_conwrap{
	width: 100%;
	margin: 0 auto;
	padding: 100px 0;
}
.en_l_mainTit{
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    margin: 0 auto 10px;
}
.jp_mainTit{
	font-size: 40px;
	font-weight: bold;
}
.text_all_area, .img_commv_area{
	margin-top: 30px;
}
@media screen and (max-width: 767px){
.about_hero_cover,.qa_hero_cover,.contact_hero_cover,.privacy_hero_cover,.news_hero_cover,.news_hero_cover,.term_hero_cover,.company_hero_cover,.law_hero_cover,.project_hero_cover {
    height: 450px !important;
}
.header_hero_title {
	font-size: 25px;
    line-height: 28px;
    padding: 0;
    margin-bottom: 10px;
}
.jp_firast_text {
    font-size: 12px;
}
.page_conwrap{
    padding: 80px 0;	
}
.en_l_mainTit{
    font-size: 12px;
}
.jp_mainTit {
    font-size: 25px;
}
.about_feature_allwrap {
    padding: 0 20px !important;
}
}
.about_hero_cover {
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/about_hero.jpg) no-repeat center center;
    background-size: cover;
}
.privacy_hero_cover {
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/privacy_hero.jpg) no-repeat center center;
    background-size: cover;
}
.news_hero_cover {
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/news_hero.jpg) no-repeat center center;
    background-size: cover;
}
.qa_hero_cover {
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/qa_hero.jpg) no-repeat center center;
    background-size: cover;
}
.contact_hero_cover {
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/contact_hero.jpg) no-repeat center center;
    background-size: cover;
}
.guide_hero_cover {
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/guide_hero.jpg) no-repeat center center;
    background-size: cover;
}
.term_hero_cover{
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/term_hero.jpg) no-repeat center center;
    background-size: cover;
}
.company_hero_cover{
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/company_hero.jpg) no-repeat center center;
    background-size: cover;
}
.law_hero_cover{
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/law_hero.jpg) no-repeat center center;
    background-size: cover;
}
.project_hero_cover{
    position: relative;
    color: #fff;
    width: 100%;
    height: 600px;
    background: url(../images/hero_bg/project_hero.jpg) no-repeat center center;
    background-size: cover;
}
/* about page*/
.about_feature_allwrap{
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 50px;
}
ul.ingredient_item_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin-top: 30px;
}
.ingredient_item_list li {
    width: 32%;
    margin: 0 0 10px 0;
    font-size: 14px;
    position: relative;
}
.in_name{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.ingredient_item_list li img {
    width: 100%;
    margin-bottom: 20px;
}

.bk_gc{
	background: #FFF7EF;
}
.htd--contents-wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 60px;
	align-items: center;
}
.htd--contents-wrap:nth-child(even) {
	flex-direction: row-reverse;
}

.htd--contents-text {
	width: 45%; /*flex: 2;*/
}
.htd--contents-img {
	width: 50%; /*flex: 1;*/
}

.htd--contents-text h4 {
    text-align: left;
    font-size: 12px;
	font-weight: bold;
    margin: 0 auto 5px;
}
.htd--contents-text h5 {
    text-align: left;
    font-size: 18px;
	font-weight: bold;
    margin: 0 auto 20px;
}

.htd--contents-img img {
	display: block;
	width: 100%;
	height: auto;
}
ul.permission_checkmark {
    margin-top: 10px;
    padding-left: 20px;
}
.permission_checkmark li {
    position: relative;
}
.permission_checkmark li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 10px;
    border-right: 2px solid #ff9600;
    border-bottom: 2px solid #ff9600;
    display: inline-block;
    left: -15px;
    top: 12px;
    transform: rotateZ(45deg);
}
ul.sas_item_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	width: 80%;
    margin: 0 auto;
}
.sas_item_list li {
    width: 17%;
    margin-bottom: 10px;
    position: relative;
}
.sas_item_list::before {
    content: "";
    display: block;
    width: 17%;
    order: 1;
}
.sas_item_list::after {
    content: "";
    display: block;
    width: 17%;
}

.p_b-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.p_b-img {
    width: 50%;
}
.p_b-img img {
    display: block;
    width: 100%;
    height: auto;
}
.p_b {
    width: 50%;
    padding: 20px;
}
@media screen and (max-width: 767px){
ul.ingredient_item_list,.htd--contents-wrap,.p_b-wrap{
	display: block;
}
.ingredient_item_list li,.htd--contents-img,.htd--contents-text,.p_b-img,.p_b {
    width: 100%;
}
.ingredient_item_list li:nth-child(1) {
    margin: 0 0 50px 0;
}
.ingredient_item_list li:nth-child(2) {
    margin: 0 0 50px 0;
}
.htd--contents-img {
    margin-bottom: 20px;;
}
.htd--contents-text h4 {
    font-size: 10px;
}
.htd--contents-text h5 {
    font-size: 16px;
}
.about_feature_allwrap .htd--contents-wrap{
    margin-bottom: 50px;
}
.sas_item_list li{
	width: 31%;
}
ul.sas_item_list{
	width: 100%;
}
}
/* よくあるご質問　Q & A page*/
.faq_mbtn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 0;
    font-size: 14px;
	line-height: 20px;
    padding-top: -80px;
    margin: 0px auto;
}
.faq_mbtn p + p {
    margin-left: 20px;
}
.faq_mbtn p:nth-child(2n + 1) {
    margin-left: 0;
}
.faq_mbtn p a {
    display: table-cell;
    vertical-align: middle;
}
.faq_mbtn p .Item-Content-Flg2 {
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #595757;
}
.faq_mbtn p {
    display: table;
    width: 48.66666%;
    height: 70px;
    border: 1px solid #595757;
    margin-bottom: 20px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}
.qa_conwrap{
	width: 100%;
	margin: 0 auto;
	padding: 0 0 100px 0;
}
.qa_content {
  max-width: 1240px;
  padding: 0 50px;
  margin: 0 auto;
}
.qa_title {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 20px;
}
.qa_menu li {
  border-top: solid 1px #000;
}
.qa_menu li:last-child {
  border-bottom: solid 1px #000;
}
.qa_menu .label {
  cursor:pointer;
  font-size: 14px;
  font-weight: bold;
  padding: 40px 30px;
  position: relative;
  transition: .5s;
}
.qa_menu .label:hover {
  background-color: #ff9600;
}
/*
ラベル右側のアイコン「＋」を設定
beforeが横棒
afterが縦棒
*/
.qa_menu .label::before,
.qa_menu .label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.qa_menu .label::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/*
アコーディオンメニューが開いている場合
*/
.qa_menu .label.open {
  /* ラベルの背景色を変更 */
  background-color: #ff9600;
}
.qa_menu .label.open::before {
  /* ラベルアイコンの横棒を非表示 */
  opacity: 0;
}
.qa_menu .label.open::after {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(180deg);
}
/*
アコーディオンメニューのコンテンツ部分は、「display: none;」で非表示にしておく。
ラベルクリック時にjQueryの「  $(this).next().slideToggle();」で表示に切り替わる
*/
.qa_menu .detail {
  border-top: solid 1px #ccc;
  padding: 35px 30px;
  display: none;
}
.qa_menu .detail dl {
  display: flex;
  flex-wrap: wrap;
}
.qa_menu .detail dt {
  width: 3%;
  font-weight: bold;
  margin-bottom: 0px;
  color: red;
}
.qa_menu .detail dd {
  width: 95%;
  margin-bottom: 0px;
}
@media screen and (max-width: 900px){
.faq_mbtn p {
    float: left;
    width: 48.8888%;
    height: 50px;
    border: 1px solid #595757;
    margin: 0 0 6px 0;
}
.faq_mbtn p + p {
    margin-left: 5px;
}
.qa_menu .label {
    padding: 20px 45px 20px 10px;
	line-height: 24px;
}
}
@media screen and (max-width: 767px){
.qa_content {
    padding: 0 20px;
}

.qa_menu .detail {
    padding: 10px;
}
.qa_menu .detail dl {
    flex-direction: column;
}
.qa_menu .detail dt {
    width: 100%;
    margin-bottom: 10px;
}
.qa_menu .detail dd {
    width: 100%;
}
}
/* 会社概要　company page*/
.page-f-cont {
    width: 100%;
    padding: 100px 0px 100px;
    margin: 0px auto;
    font-size: 15px;
	line-height: 35px
}
.company_container {
    max-width: 1240px;
    padding-right: 50px;
    padding-left: 50px;
    margin-right: auto;
    margin-left: auto;
}
.company-profile__table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
.company-profile__table tr {
    border-top: solid 1px #CCC;
}
.company-profile__table th {
    width: 240px;
    text-align: left;
    vertical-align: top;
    font-weight: normal;
    font-weight: 700;
}
.company-profile__table th, .company-profile__table td {
    padding: 23px 0;
}
@media screen and (max-width: 767px){
.page-f-cont {
    padding: 80px 0px 80px;
    font-size: 14px;
	line-height: 30px;
}
.company_container {
    padding-right: 20px;
    padding-left: 20px;
}
.company-profile__table tr, .company-profile__table th, .company-profile__table td {
    display: block;
}
.company-profile__table tr{
	padding: 10px 20px;
}
.company-profile__table th, .company-profile__table td {
    padding: 0;
}
.company-profile__table th{
	text-align: left;
}
}
/* 給仕量*/
.l-container-system {
    margin: 0 auto;
	padding: 100px 0;
}
#calc-box-wrapper{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 50px;
}

.calc-box {
    border-bottom: solid 1px #595757;
    border-left: solid 1px #595757;
    border-right: solid 1px #595757;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 5rem;
}

.select-box-container {
    display: flex;
}
.select-box-container-item {
    width: 50%;
    display: flex;
	align-items: center;
}
.select-box-container-age {
    justify-content: flex-end;
    padding-right: 5rem;
	align-items: center;
}
.select-box-label {
    margin-right: 1rem;
}
.select-box-outer-border{
    border: solid 1px #595757;
    border-radius: 5px;
    width: fit-content;
    padding: 5px 10px 10px;
    background: #FFF9F3;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #595757;
    font-size: 15px;
}
.select-box-outer-border select {
    height: auto;
    background: #FFF9F3;
}
.button-container {
    width: 100%;
    text-align: center;
    margin-top: 4rem;
}
#caluculate-dogfood-button {
    border: solid 1px #595757;
    color: #595757;
    padding: 1rem 3rem;
}

.triangle-container {
    margin: 3rem 10%;
}
.triangle-container #result-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 2.8rem solid transparent;
    border-left: 2.8rem solid transparent;
    border-top: 3.5rem solid #595757;
    border-bottom: 0;
    margin: 0 auto;
}

.text-about-day {
    font-size: 2.5rem;
}
.text-important {
    background: linear-gradient(transparent 75%, #FFB200 75%);
    font-size: 3rem;
}
.text-about-day .text-bold {
    font-weight: bold;
    font-size: 3.5rem;
}
.text-important .text-jp {
    font-size: 2.5rem;
}
.text-about-month {
    margin-top: 1rem;
}

.text-about-month .text-bold {
    font-weight: bold;
    font-size: 2.2rem;
}


.text-attention-box {
    margin: 2rem 10% 8rem 10%;
    font-size: 14px;
	line-height: 30px;
}

.br-sp {
    display: none;
}

.calc-box-tab {
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: #595757;
    color: #fff;
}


div#calc-box-wrapper.small div.calc-box-tab.small {
    border-top: solid 1px #595757;
    border-left: solid 1px #595757;
    border-right: solid 1px #595757;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}


div#calc-box-wrapper.small select#dog-age-small {
    display: inline-block;
}


div#calc-box-wrapper.small select#dog-weight-small {
    display: inline-block;
}

div#calc-box-wrapper.small div.calc-result-box {
    background: #595757;
    padding: 3rem 0 4rem;
    margin: 2rem 10%;
    text-align: center;
    color: #ffffff;
}

div#calc-box-wrapper.small div.calc-result-box.small {
    display: block;
}

div#calc-box-wrapper.small div.calc-result-box.all-stage {
    display: none;
}


div#calc-box-wrapper.all-stage div.calc-box-tab.small {
    background-color: #595757;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    color: #ffffff;
}


div#calc-box-wrapper.all-stage select#dog-age-small {
    display: none;
}

div#calc-box-wrapper.all-stage select#dog-age-all-stage {
    display: inline-block;
}

div#calc-box-wrapper.all-stage select#dog-weight-small {
    display: none;
}

div#calc-box-wrapper.all-stage select#dog-weight-all-stage {
    display: inline-block;
}

div#calc-box-wrapper.all-stage div.calc-result-box {
    background: #E8EED3;
    padding: 3rem 0 4rem;
    margin: 2rem 10%;
    text-align: center;
    color: #595757;
}

div#calc-box-wrapper.all-stage div.calc-result-box.all-stage {
    display: block;
}

div#calc-box-wrapper.all-stage div.calc-result-box.small {
    display: none;
}


  

  
@media screen and (max-width: 767px) {
.l-container-system {
    padding: 80px 0;
}
#calc-box-wrapper {
    padding: 0 20px;
}
.calc-box {
	margin: 0;
	padding: 40px 20px;
}
.select-box-container {
	display: block;
}
.button-container {
    margin-top: 30px;
}
.select-box-container-item {
	width: 100%;
	display: block;
}
.select-box-label {
	margin-right: 0;
	margin-bottom: 10px;
	font-size: 20px;
}
.select-box-container-age {
    justify-content: initial;
    padding-right: 0;
}
.select-box-outer-border {
	width: 100%;
	padding: 0.2rem 1rem;
	margin-bottom: 1rem;
 }
.select-box-outer-border select {
    height: 4.5rem;
	width: 100%;
}
#caluculate-dogfood-button {
    padding: 1rem 4rem;
    font-size: 1.5rem;
}
.calc-result-box {
    margin: 2rem 0!important;
}
.text-about-day {
	font-size: 20px;
}
.text-important {
    font-size: 40px;
}
.text-about-day .text-bold {
    font-size: 55px;
}
.text-about-month {
	margin-top: 1rem;
	font-size: 20px;
	line-height: 45px;
}
.text-important {
	line-height: 55px;
}
.text-about-month .text-bold {
    font-weight: bold;
    font-size: 30px;
}
.text-attention-box {
	margin: 0;
}
.br-sp {
	display: block;
}
#calc-box-tab-container {
	margin: 0;
	display: flex;
}
.calc-box-tab {
	font-size: 18px;
}
}
/* footer bar*/
.f_info {
    clear: both;
}
.f_info {
    width: 100%;
    margin: 0px auto;
    padding: 21px;
    background-color: #000000;
}
.f_info ul {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    font-size: 0;
}
.f_info ul li {
    width: 24%;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 2px;
}
.f_info ul li a {
    display: block;
    color: #fff !important;
}
.f_info ul li img {
    width: 30px;
    margin-bottom: -8px;
    margin-right: 5px;
}
.cnter_line {
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
}
@media screen and (max-width: 1024px){
.f_info {
    padding: 1rem 0;
}
.f_info ul li {
    width: 28%;
    display: inline-block;
    font-size: 11px;
}
.f_info ul li img {
    width: 35px;
    margin: 0 auto 5px;
    display: block;
}
.f_info ul li span {
    margin-left: -13px;
}
}

/* footer */
.Footer_main__qrJN1 {
    align-items: center;
    background-color: #595757;
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    position: relative;
}
.Footer_logo__r7CGy {
    margin-bottom: 50px;
    position: relative;
    width: 216px;
}
.Footer_linkItems__B0OAh {
    color: #fff;
    display: flex;
    margin-bottom: 50px;
}
.Footer_linkItem__EuIWb {
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-style: normal;
    margin: 0 20px;
}
.Footer_snsItems__YxSxU {
    display: flex;
    margin-bottom: 50px;
}
.Footer_snsItem__OGdeN {
    height: 32px;
    margin: 0 16px;
    position: relative;
    width: 32px;
}
.Footer_snsItem__OGdeN img{
    width: 100%;
}
.Footer_copyRight__SiwoZ {
    font-feature-settings: "palt" on;
    font-size: 11px;
    color: #fff;
}
@media screen and (max-width: 768px){
.Footer_linkItems__B0OAh {
    display: block;
    margin-bottom: 40px;
    text-align: center;
}
.Footer_linkItem__EuIWb {
	font-size: 14px;
    margin-bottom: 16px;
}
.Footer_snsItem__OGdeN {
    height: 24px;
    width: 24px;
}
}