
@charset "utf-8";
/* ========================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
/* ========================================== */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
  line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;  
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

*{
	box-sizing: border-box;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ========================================== */
/* Loading */
/* ========================================== */

#loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loader {
  width: 56px;
  height: 56px;
  border: 4px solid #000000;
  border-radius: 50%;
  position: relative;
  animation: loader-scale 1s ease-out infinite;
  top: 50%;
  margin: -28px auto 0; }

@keyframes loader-scale {
  0% {
    transform: scale(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; } }

/* ========================================== */
/* ベース */
/* ========================================== */


body{
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

body, p {
  color: #333;
  font-size: 13px;
  font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  line-height: 2;
  color: #333;
  letter-spacing: 1px;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding:0;
}

a{
  color: #00bcd4;
  text-decoration: none;
}

input, textarea, select {
  font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

h1{
  text-shadow: 0 0 3px rgba(255,255,255,0.9);
  text-align: center;
  font-size: 37px;
  padding-top: 100px;
  /*padding-bottom: 100px;*/
 /* margin-bottom: 80px;*/

  font-weight: bold;
  letter-spacing: 1px;
}
h2{
  font-size: 20px;
  letter-spacing: 1px;
}
h3{
  letter-spacing: 1px;
}

/* ========================================== */
/* ヘッダー */
/* ========================================== */

header {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 1;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
  border-bottom: solid 1px rgba(200,200,200,0);
}

@media screen and (min-width: 1101px){
  header.scrolled{
    height: 65px;
    transform: translateY(-19px);
    border-bottom: solid 1px rgba(230,230,230,1);
  }
}

.header__btn {
  display: none;
  float: right;
  padding: 15px;
  z-index: 202;
}
.header__btn span {
  display: block;
  border-bottom: 2px solid #A7A7A7;
  width: 26px;
  margin-bottom: 8px;
}
.sidr {
  position: fixed;
  top: 0;
  background: #f9f9f9;
  overflow-x: none;
  overflow-y: auto;
  width: 160px;
  height: 100%;
}
.header__navigation {
  display: none;
  padding-top: 14px;
  margin: 0;
  }

.global-nav{
  display: inline-block;
}

.global-nav li{
  display: inline-block;
  margin-left: 35px;
  font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  letter-spacing: 2px;
  font-size: 13px;
  list-style: none;
  margin-top: 19px;
  position: relative;
  padding: 5px 0 5px 0;
  line-height: 1;
}

.global-nav li a {
  color:#000000;
}

/*.pc .global-nav li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid #333;
  width: 0;
  transition: 0.5s;
}*/
.pc .global-nav li:hover a:after {
  width: 100%;
}

.globalMenuPc{
  position: absolute;
  right: 30px;
  z-index: 100;
  /*margin-right: 140px;*/
}
.logo {
  display:flex;
  position: absolute;
  margin-top: 27px;
  z-index: 100;
  width:160px;
  left: 30px;
  transition: 0.5s;
}
.logo:hover{
  opacity: 0.7;
}

.menu-trigger {
  display: none;
  /*display: inline-block;*/
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 23px;
  right: 30px;
  z-index: 100;
  transform: translateX(0);
  transition: transform .5s;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #908f8f;
  transition: all .5s;
}
.menu-trigger.active {
  transform: translateX(-200px);
}
.menu-trigger.active span {
  /*background-color: #ddd;*/
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
bottom: 12px;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-1px) rotate(45deg);
}

.globalMenuSP{
  display: none;
}
.globalMenuSP a:hover{
  opacity: 0.5;
  transition: 0.2s linear;
}
  
.globalMenuSP nav {
  width: 200px;
  height: 100vh;
  padding-top: 30px;
  background-color: rgba(99, 99, 99, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
.globalMenuSP nav.open {
  transform: translateZ(0);
}

.globalMenuSP nav li {
  color: #fff;
  padding-bottom: 32px;
  text-align: left;
  font-size: 18px;
  font-weight: 200;
  position: relative;
  font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  line-height: 1;
}

.globalMenuSP li a {
  color: #fff;
}

.spicon1{
  padding-right:24px;
}
.spicon2{
  padding-right:22px;
  margin-left: -2px;
}
.spicon3{
  padding-right:26px;
  margin-left: -1px;
}
.spicon4{
  padding-right:20px;
  margin-left: -4px;
}
.spicon5{
  padding-right:26px;
  margin-left: -1px;
}
.spicon6{
  padding-right:27px;
  margin-left: -1px;
}
.spicon7{
  padding-right:24px;
  margin-left: -2px;
}
.spicon8{
  padding-right:24px;
      width: 42px;
}


.globalMenuSP ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 15%;
}
.icon_sp{
  position: absolute;
  top: 100px;
  left: 20px;
}

/* ========================================== */
/* 共通 */
/* ========================================== */
  br.br_rt{
    display: none;
  }

.content{
  margin: 0 auto;
  padding: 0;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

.btnbar{
      height: 110px;
      background-color: #e6e6e6;
}

.subtitle{
  text-align: center;
  font-size: medium;
  margin-bottom: 60px;
}

.u-center{
  text-align: center!important;
}

.u-justify {
  text-align: justify;
}

#container{
  height:100%;
  width:100%;
}

.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: none;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

#wrap {
  position: absolute;
  width: 100%;
  overflow:hidden;
}

footer {
  position: fixed;
  transform: rotate(-90deg) scale(.6);
  transform-origin: left;
  letter-spacing: 0;
  left: 7px;
  bottom: -15px;
  text-align: left;
  font-style: italic;
}
footer .copy{
  font-size: 1.6em;
  position: relative;
  top: 0.2em;
}
#footer__bottom .u-inner{
  display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 95%;
}
.u-inner{
  zoom: 1;
  /*  width-content: width;
    width-margin: 0;*/
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}
#footer__bottom{
  background: #bbbbbb;
  color: #fff;
}
.footer__navigation{
  width: 60%;
  text-align: left;
}
.footer__navigation ul{
      padding: 10px 0;
}
.footer__navigation ul li:not(:last-of-type){
  margin-right: 15px;
}
.footer__navigation ul li{
      display: inline-block;
}
.footer__navigation ul li a{
  color: #fff;
}
.footer__copy{
    width: 80%;
    text-align: right;
    color: #fff;
}

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

  #footer__bottom .u-inner{
  display: block;
}
.footer__navigation{
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.footer__copy{
    width: 100%;
    /* padding: 10px 0; */
    padding-bottom: 10px;
    text-align: center;
}
}

#pagetop {
  /*display: none;*/
  position: fixed;
  bottom: 0px;
  right: 12px;
}

#pagetop a {
  display: block;
  z-index: 999;
/*  padding: 14px 0 0 0px;*/
  width: 40px;
  height: 40px;
  background-color: #6cccc6;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

#pagetop a::before{
    content: '';
    width: 15px;
    height: 15px;
    border: 0px;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 55%;
    left: 12px;
    margin-top: -4px;
}





/*.arrow{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow::before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #5bc0de;
  border-right: solid 2px #5bc0de;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}

/* ========================================== */
/* ボックス */
/* ========================================== */

#mainvisual{
/*  background-image: url(../images/bg_mainvisual.jpg);*/
    z-index: -2;
    position: relative;
    text-align: center;
/*    background-color: rgba(60, 60, 60, 0.3);*/
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
video{
  height: 110%;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 600px){
  video{
    transform: translate(-43.8%);
    height: 70%;
    margin-top: 30px;
    width: 180%;
    margin-bottom:10px;
}
}

@media screen and (max-width: 375px){
  video{
    height: 70%;
    width: 180%;
    transform: translate(-43.8%);
  }
}

.boxes{
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}
.boxes__box{
  position: relative;
  flex: 0 0 100%;
  max-width: 33%;

}
#merit .boxes__box:hover{
  opacity: 0.5;
}

#merit .boxes__box{
  transition: 0.2s linear;
}

.merittext1{
    text-align: left;
    margin-top: 20px;  
}
.merittext2{
    text-align: left;
    margin-top: 14px;  
}
.merittext3{
    text-align: left;
    margin-top: 10px;  
}

#merit h1{
  padding-bottom: 40px;
}

.boxes__box img{
  width: 100%;
}

.boxes__box__title{
  position: absolute;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(50, 50, 50, 0.7);
  text-align: left;
  letter-spacing: 0;
  padding: 2px 0 2px 10px;
  /*transition: 0.2s linear;*/
}
.boxes__box__title img{
  position: absolute;
  width: 6px;
  right: 5%;
  top: 14px;
}


.boxes__box__title p{
  font-weight: normal;
  font-size: 11px;
  line-height: 1.5;
  color: #fff;
}

.boxes__box__title h2{
  color: #fff;
  padding: 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.5;
}


@media screen and (max-width: 600px){
  .boxes__box {
    max-width: 50%;
  }
  .boxes__box__title p{
    font-size: 9px;
    letter-spacing: 0;
  }
  .boxes__box__title h2 {
    font-size: 12px;
    letter-spacing: 0;
  }
  #merit h1 {
    padding-bottom: 10px;
  }
  h2{
  font-size: 17px;
  }
}


/* ========================================== */
/* ボタン */
/* ========================================== */

.btn {
    height: 50px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
    color: #ffffff;
    user-select: none;
    transition: 1s;
    cursor: pointer;
    border-radius: 60px;
    padding: 12px 12px;
    display: block;
    margin: 5px auto 5px;
    border: none;
    box-shadow: 0 2px 3px rgba(50,50,50,0.5);
    font-weight: bold;
    width: 230px;
    max-width: 100%;
    text-align: center;
    font-size: 18px;
    background: linear-gradient(130deg, rgb(55 171 154 / 70%),rgb(71 140 137 / 70%)49%, #69d2c8 51%, #6CCAC5);
    background-size: 300%;
    background-position-x: 100%;
    transition: 1s;
    user-select: none;
}

.btn:hover{
  color: white;
  opacity: 1!important;
  background-position-x: 0%;
  color: white;
}

#demo_btn{
/*      position: absolute;*/
/*    top: 60%;
    left: 6%;*/
}

.btnbar #demo_btn{
  padding: 23px;
}

.globalMenuPc .btn{
    height: 32px;
    padding: 7px 10px;
    margin: 0;
    width: 120px;
    font-size: 12px;
    letter-spacing: 2px;
}

.globalMenuSP .btn{
      width: 140px;
      margin: 0;
}





/* ========================================== */
/* コンセプト */
/* ========================================== */

#hero{
  text-align:center;
  height: 100vh;
  position: relative;
}
.concept{
  position: absolute;
  top: 40%;
  left: 30px;
}

.mainvisual_btn{
  position: absolute;
    text-align: left;
    margin-top: 50px;
}


.sp,
.tablet{
  top: 47%;
}

.title{
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}
.title.animate{
  opacity: 1;
  transform: translateY(0);
}

.explanation{
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1px;
  font-weight: bold;
 /* opacity: 0;*/
  transform: translateY(30px);
  transition: all 1000ms ease;
}
.explanation.animate{
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width:   1024px){
  .concept{
  position: absolute;
  top: 15%;
  left: 30px;
}
}

@media screen and (max-width: 600px){
  .concept{
  position: static;
  margin-bottom: 30px;
  }
}

/* ========================================== */
/* コンテンツ別 */
/* ========================================== */



#usage_image {
  background-color: #f5f5f5;
}
#usage_image .example_image {
  padding-bottom: 100px;
}

.example_image{
display:flex;
}

.example_image>div{
width:calc(100% / 3);/* 3等分 */
text-align:center;
padding:5px;/* 必要に応じて */
}



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

.example_image{
display:block;
}

.example_image>div{
width:calc(100%);
}

/*.sim_image{
  display: block;
}
.sim_image01{
      height: 250px;
      width: calc(100%); 
}
.sim_image02_03{
      width: calc(100%); 
      padding-left: 0px;
    margin-left: 0px;
}*/

}



.example_image>div>img{
max-width:100%;
height:auto;
} 



#merit .example_image>div{
padding:26px;/* 必要に応じて */
}

.day{
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1;
  display: block;
  font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

#device {
 /* height: 700px;*/
}

.sim_image{
    margin: 0 auto;
    display: flex;
    margin-bottom: 100px;
}
/*.sim_image>div{
width: 100%;
    margin-left: 5px;
}*/
.sim_image>div>img{
margin-top: 5px;
}
.sim_image02_03 img{
  margin-top: 5px;
      width: 98%;
}
.sim_image01 div{
width: 100%;
    /*margin-left: 5px;*/
}
.sim_image01{
    width: calc(50%);
    background-size: cover;
    padding-top: 46%;
    background-image: url(../images/sim_01.png);
    background-position: center;
}
.sim_image02_03{
    width: calc(50%);
    padding-left: 10px;
/*    margin-left: 5px;*/
}
.sim_image02{
    background-image: url(../images/sim_02.png);
    background-size: cover;
    margin-bottom: 10px;
    background-position: center;
    padding-top: calc(50% - 5px);
}
.sim_image03{
    background-image: url(../images/sim_03.png);
    background-size: cover;
    padding-top: calc(50% - 5px);
    background-position: center;
}

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


.sim_image{
  display: block;
}
.sim_image01{
      width: calc(100%); 
      margin-bottom: 10px;
}
.sim_image02_03{
      width: calc(100%); 
      padding-left: 0px;
      margin-left: 0px;
}

}


#merit{
  background-color: #f5f5f5;
  padding-bottom: 80px;
}
.meritcontainer{
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.merit_link{
  position: relative;
  flex: 0 0 100%;
  max-width: 33%;
  transition: 0.2s linear;
  background: #000;
  cursor: pointer;
}
.merit_link:hover{
    -webkit-filter: brightness(0.8);

  -moz-filter: brightness(0.8);

  -o-filter: brightness(0.8);

  -ms-filter: brightness(0.8);

  filter: brightness(0.8);
}
.merit_link img{
  width: 100%;
  
}

.wroks_title{
  position: absolute;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.2s linear;
}

.production_range_sp{
  display: none;
  text-align: left;
  color: #fff;
  padding-top: 26px;
}
.production_range_sp p{
  font-weight: 300;
  padding-top: 7px;
  line-height: 19px;
}
.production_range_sp h3{
  font-weight: 500;
}
.production_range_sp h4{
  font-weight: 500;
  color: #00D8FF;
}
.production_range{
  text-align: left;
  color: #fff;
  padding-top: 35px;
}
.production_range h3{
  font-weight: 500;
}

.production_range p{
  font-weight: 300;
  padding-top: 7px;
  line-height: 23px;
}
.merit_about {
  text-align: left;
  color: #fff;
  width: 83%;
  position: absolute;
  z-index: 300;
  top: 0;
  margin: 0 123%;
}
.merit_about h3{
  font-weight: 500;
  color: #00D8FF;
}
.merit_about p{
  font-weight: lighter;
  padding-top: 7px;
  line-height: 23px;
}
.btn_detail_meritsp{
  width: 263px;
  background: #A7A7A7;
  text-align: center;
  margin-top: 20px;
}
.btn_meritsp {
  border-radius: 60px;
  padding: 9px 10px;
  display: none;
  margin: 0px auto;
  margin-top: 20px;
}
.btn_detail_merit{
  width: 263px;
  background: #A7A7A7;
  text-align: center;
  margin-top: 20px;
}
.btn_merit {
  border-radius: 60px;
  padding: 9px 10px;
  margin: 0px auto;
  margin-top: 20px;
}
.btn_merit p {
  padding-top: 0;
}

#function{
  background-color: #f5f5f5;
}

#function_details{
 font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}
.function_details{
  margin-bottom: 90px;
  max-width: 850px;
}
.function_details table {
/*  display: inline-block;*/
  margin: 0 auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.function_details table tr th {
  font-size: 14px;
  font-weight: bold;
  padding-right: 25px;
  text-align: left;
  padding-bottom: 34px;
}
.function_details table tr td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  text-align: left;
  padding: 39px;
  padding-right: 60px;

}
.function_details a{
  color: #000000
}

.function_details table tr {
      border-bottom: 1px dashed #dcdcdc;
}


.supportcontent{
  margin-top: 70px;
}

.support1{
  display: flex;
  margin-bottom: 50px;
  padding-bottom: 50px;
    border-bottom: 1px dashed #dcdcdc;
}
.support2{
  display: flex;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px dashed #dcdcdc;  
}
.support2_sp{
  display: none;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px dashed #dcdcdc;  
}
.support3{
  display: flex;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.article__flex__left{
  width: 100%;
}

.article__flex__right{
      width: 80%;
    margin-left: 90px;
}

.function_box{
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    align-content: flex-start;
    padding-bottom: 100px;
    max-width: 850px;
    margin: 0 auto;
}

.functiontext{
      text-align: center;
      padding-top: 9px;
}

.function_icon{
width: calc(100% / 4);
padding-bottom: 50px;
}
.icon_set{

}
.icon_detail{
    width: 70px;
    height: 70px;
}

.function_icon1{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 16px 14px 12px 17px;
    background-color: #5bd2de;
/*    margin: 60px 60px 15px 60px;*/
}

.function_icon2{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px;
    background-color: #50de90;
  /*  margin: 60px 60px 15px 60px;*/
}

.function_icon3{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px;
    background-color: #ebf372;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon4{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px;
    background-color: #f7a865;
   /* margin: 60px 60px 15px 60px;*/
}
.function_icon5{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 17px 17px 17px 17px;
    background-color: #7d92e0;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon6{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px;
    background-color: #f8a7fd;
   /* margin: 60px 60px 15px 60px;*/
}
.function_icon7{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px 14px 14px 17px;
    background-color: #ff8585;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon8{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px;
    background-color: #95ea8f;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon9{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px 14px 13px 15px;
    background-color: #fb5c5c;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon10{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 17px 14px 14px 16px;
    background-color: #70e6d1;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon11{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 16px 14px 14px 22px;
    background-color: #4d84ff;
    /*margin: 60px 60px 15px 60px;*/
}
.function_icon12{
    margin: 0 auto;
    color: #ffffff;
    border-radius: 6px;
    padding: 16px 14px 14px 15px;
    background-color: #e6c270;
    /*margin: 60px 60px 15px 60px;*/
}


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

.function_details {
  padding-top: 30px;
}

.function_box{
  margin: 0px 30px;
  padding-bottom: 0px; 
}
.function_icon{
      margin: 0 0;
      width: calc(100% / 2);
}


}




#contact{
  margin-bottom: 70px;
}
#contact small {
  display: block;
  font-size: 0.8rem;
}
/*.u-inner--740{
  text-align: center;
  font-weight: lighter;
   line-height: 1.4;

}*/
#contact h2{
  padding-top: 30px;
  padding-bottom: 30px;
}

#contact table {
  width: 100%;
  margin-top: 50px;
  margin: 0 auto;
}
#contact table th {
  width: 140px;
}
#contact table th, #contact table td {
  text-align: left;
  vertical-align: middle;
  /*padding-bottom: 30px;*/
  font-weight: normal;
  padding: 0px 6px 30px;
}
.contact__width--308 {
  width: 50%;
}
.u-inner--740 {
  position: relative;
  width: 70%;
  margin: 0 auto;
}
.contact__width--all {
  width: 100%;
  height: 204px;
}
#contact table{
  width: 100%;
}
#contact .inner{
  width: 770px;
}
.contact_form span{
  color: #ff0000;
}  



/* ========================================== */
/* フォーム */
/* ========================================== */

input {font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: -internal-light-dark-color(black, white);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: textfield;
  background-color: -internal-light-dark-color(white, black);
  -webkit-rtl-ordering: logical;
  cursor: text;
  margin: 0em;
  font: 400 11px system-ui;
  padding: 1px;
  border-width: 2px;
  border-style: inset;
  border-color: initial;
  border-image: initial;
}
textarea {font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: -internal-light-dark-color(black, white);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: textarea;
  background-color: -internal-light-dark-color(white, black);
  -webkit-rtl-ordering: logical;
  flex-direction: column;
  resize: auto;
  cursor: text;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  margin: 0em;
  font: 400 11px system-ui;
  border-width: 1px;
  border-style: solid;
  border-color: initial;
  border-image: initial;
  padding: 2px;
}
input, textarea, select {font-family:"Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  display: inline-block;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
  background: #fff;
  padding: 3px 6px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
/*  -webkit-appearance: none;
  appearance: none;*/
}


 .u-sp{
  display: none;
}



@media screen and (max-width: 1100px){
    br.br_rt{
    display: none;
  }
  .logo {
    left: 30px;
    margin-top: 19px;
  }
  .globalMenuPc{
    display: none;
  }
  .globalMenuSP{
    display: block;
    overflow:hidden;
  }
  .globalMenuSP nav{
    display: block;
  }
  .menu-trigger {
    display: block;
  }
  .header__btn {
    display: block;
  }
  .sidr {
    display: block;
  }
  .inner {
    max-width: 90%;
  }
  .inner2 {
    max-width: 90%;
  }
  #contact .inner{
    max-width: 80%;
  }
  
}


@media screen and (max-width: 600px){
  br.br_rt{
    display: none;
  }

  .u-sp{
    display: block;
  }
  body{
    font-size: 12px;
  }
  h1{
    font-size: 22px;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  .subtitle{
    max-width: 90%;
    margin: 14px auto;
  }
  .title{
   /* width: 250px;*/
    font-size: 17px;
    margin: 0 auto;
    text-align: center;
  }
  .explanation{
    font-size: 12px;
    text-align: center;
    margin-top: -15px;
  }
  .mainvisual_btn{
    position: relative;
  }
  .overlay {
    display: block;
  }
  .menu-trigger {
    display: block;
  }
  .inner {
    max-width: 90%;
  }
  .merit_link{
    max-width: 50%;
  }

  .merit_about {
    width: 76%;
    top: 0;
    margin-top: 507px;
    transform: translate(-50%,0px);
  }
  #merit .example_image>div{
    padding-top: 20px;
    padding-bottom: 20px;
  }
    #merit{
    padding-bottom: 50px;
  }

  .article__flex {
    display: block;
  }

  .article__flex__left {
/*    width: 100%;*/
    margin: 0 auto;
  }
  .article__flex__right{
margin: 0px auto;
margin-top: 40px;
}
h2{
  text-align: center;
}  

  .support1{
    display: block;
    margin-top: 50px;
  }

  .support2{
  display: none;


  }
    .support2_sp{
  display: block;
  
  }

    .support3{
  display: block;
  }

  .modal-content_sp{
    display: block;
  }
  .modal-content{
    display: none;
  }
  .production_range{
    display: none;
  }
  .production_range_sp{
    display: block;
  }
  .modal-content{
    display: none;
  }
  .modal-wrapper .modal-close {
    top: 14px;
    right: 16px;
    font-size: 27px;
  }
  .btn_detail_meritsp {
    width: 190px;
  }
  .btn_meritsp {
    border-radius: 60px;
    padding: 9px 10px;
    display: block;
    margin: 0px auto;
    margin-top: 20px;
  }

  .contact__width--308 {
    width: 70%;
    font-size: 14px;
  }

  .function_details{
    padding-top: 10px;
  }

  .function_details table tr th{
    padding-right: 0px; 
    width: 100px;
  }
  .function_details table tr td{
    padding-right:0px;
    padding-top: 20px;
    padding-bottom: 20px;

  }
  .th_sp{
  display: block;
  }
  .th_pc{
  display: none;
  }

  #contact p {
    font-size: 10px;
    letter-spacing: 0;
  }
  #contact table th, #contact table td {
    padding: 0px 0px 20px;
  }
  #contact table th {
    width: 100px;
  }
  #contact table{
    width: 100%;
  }

  #tell h3{
    font-size: 15px;
  }
}
@media screen and (max-width: 320px){
.title{
  font-size:16px;
}
  br.br_rt{
    display: block;
  }
}
