@charset "utf-8";

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}


summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html{
  font-size: 62.5%;
}

/* common */
.font{
  font-family: EB Garamond;
}

.header_top{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header_left{
  text-align:center;
  width: 185px;
  height: 80px;
}

.header_left a{
  display: table;
  width: 100%;
  height: 100%;
}

.header-logo-pc{
  display: table-cell !important;
  vertical-align: middle;
  padding-left: 20px;
}

.header-logo-pc img{
  width: 185px;  
}

.header_right{
  margin: 0 0 0 auto;
}

.header_menu{
  display: flex;
  padding-top: 20px;
  padding-right: 20px;
  font-size: 1.6rem;
}

.header_menu li{
  margin-left: 15px;
  margin-right: 15px;
  display: table;
  white-space: nowrap;
}

.header_menu li a,
.header_menu_item {
  display: table-cell;
  vertical-align: middle;
}

.header_menu_item {
	position: relative;
}

.header_menu_item::after {
	content: '▼';
	font-size: 10px;
}

.header_menu_dropdown {
	position: absolute;
	bottom: 0;
	display: none;
	padding: 10px;
	box-shadow: 0px 3px 8px -2px #777;
	transform: translate(0, 100%);
}

.header_menu_item:hover > .header_menu_dropdown,
.header_menu_item:focus > .header_menu_dropdown {
	display: block;
}

.header_menu_dropdown_list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header_menu_dropdown_list a {
  font: initial;
  font-size: 1.4rem;
}

.button{
  color: #FFFFFF;
  background-color: #000;
  display: inline-block;
  width: 80px;
  line-height: 40px;
  text-align: center;
}

.sp-menu{
  display: none !important;
}

.copyright{
  color: #B5B5B5;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
.common-arrow{
  position: relative;
  display: inline-block;
  width: 40px;
}
.common-arrow::after{
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-top: 5px solid #C9CACA;
  border-right: 5px solid #C9CACA; 
  transform: rotate(45deg);
}
@media (max-width: 800px){
  /* common */
  .header_left{
    display: table;
    text-align:center;
    width: 168px;
    height: 40px;
    z-index: 2;
  }

  .header_top{
    background-color: #fff;
    height: 40px;
    border-bottom: solid 1px #c8c8c8;
  }

  .sp-menu{
    display: block !important;
  }

  .header_menu{
    display: none !important;
  }

  .sp-menu-box{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 100;
  }

  .sp-menu-box span,
  .sp-menu-box span::before,
  .sp-menu-box span::after{
    content: "";
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #707070;
    position: absolute;
  }

  .sp-menu-box span::before{
    bottom: 10px;
  }

  .sp-menu-box span::after{
    top: 10px;
  }

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

  #sp-menu-check:checked ~ .sp-menu-box span{
    background-color: rgba(255, 255, 255, 0);
  }

  #sp-menu-check:checked ~ .sp-menu-box span::before{
    bottom: 0;
    transform: rotate(45deg);
  }

  #sp-menu-check:checked ~ .sp-menu-box span::after{
    top: 0;
    transform: rotate(-45deg);
  }

  .sp-menu-content{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 90;
    background-color: #fff;
  }

  .sp-menu-list{
    padding: 70px;
    text-align: center;
  }

  .sp-menu-list li{
    margin: 35px;
  }

  .sp-menu-list a{
    font-size: 1.6rem;
    box-sizing: border-box;
    padding: 9px 0 10px;
  }

  .sp-menu-item{
    font-size: 1.6rem;
  }

  .sp-menu-dropdown li{
    margin: 10px 0 0 0;
  }

  .sp-menu-dropdown a{
    font: initial;
    font-size: 1.4rem;
  }

  .button{
    color: #fff;
    background-color: #000;
    display: inline-block;
    width: 120px;
    line-height: 30px;
    text-align: center;
  }

  #sp-menu-check:checked ~ .sp-menu-content{
    top: 0;
  }
  
  .sp-menu-content{
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    z-index: 0;
    background-color: #fff;
    transition: all 0.5s;
  }
}
@media (max-width: 750px){
  .common-arrow{
    width: 100%;
    height: 40px;
  }
  .common-arrow::after{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(135deg);
  }
}


/* index */
.first-view{
  width: 100%;
  display: flex;
}

.first-view-left{
  width: 50%;
}

.first-view-left img{
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.first-view-right{
  width: 50%;
  
}

.first-view-right_inner{
  background-color: #FBF5E9;
  height: 100%;
  width: 100%;
  text-align: center;
  display: table;
  padding: 20px;
}

.first-view-right_cont{
  display: table-cell;
  vertical-align: middle;
}

.first-view-logo{
  max-width: 500px;
  width: 100%;
}

.first-view-text{
  color: #585858;
  font-size: 1.6rem;
  line-height: 32px;
  padding-top: 59.6px;
}

.first-view-text p + p{
  margin-top: 40px;
}

.products{
  padding: 80px 0px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, .5);
}

.products_inner{
  width: 100%;
  margin: 0 auto;
}
.products-list{
  margin-top: 20px;
}
.products-list_slider{
  width:100%;
  margin:0 auto;
}

.products-list_item_img{
  width: 80%;
  height:auto;
}

.products-list_item_img img{
  max-width: 600px;
  width:80vw;
}

.products-list_slider .slick-slide{
  transform: scale(0.7);
  transition: all .5s;
  opacity: 0.5;
}

.products-list_slider .slick-slide.slick-center{
  transform: scale(1.0);
  opacity: 1;
}

.products-list h3{
  text-align: center;
  margin-top: 20px;
  font-size: 2.4rem;
}

.link-button-area,
.link-button-area2{
  text-align: center;
  margin-top: 40px;
}

.link-button,
.link-button2{
  font-size: 1.6rem;
  display: inline-block;
  width: 200px;
  line-height: 40px;
}

.link-button{
  color: #fff;
  background-color: #000;
}

.features-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 0 100px 0;
}

.features-texture{
  margin-top: 70px;
}

.features-texture h3{
  font-size: 3.0rem;
  text-align: center;
}

.fivelayer{
  margin-top: 70px;
}

.fivelayer h3{
  font-size: 3.0rem;
  line-height: 50px;
  text-align: center;
}

.features-texture-pc,
.fivelayer-img-pc{
  width: 100%;
  margin-top: 30px;
}

.features-texture-sp,
.fivelayer-img-sp{
  display: none;
}

.function{
  background-color: #FBF5E9;
}

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

.features-ttl,
.function-ttl{
  text-align: center;
}

.features-ttl img,
.function-ttl img{
  width: 300px;
}

.features-ttl h2,
.function-ttl h2{
  font-size: 4.0rem;
  margin-top: 25px;
}

.function-item-cont{
  margin-top: 70px;
}

.function-item-cont ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}

.function-item-cont li{
  width: calc((100% - 85px) / 2);
}

.function-item{
  display: flex;
}

.function-item-img img{
  width: 92px;
}

.function-item-txt{
  margin-left: 20px;
}

.function-item-txt h3{
  font-size: 3.0rem;
}

.function-item-txt p{
  font-size: 1.6rem;
  margin-top: 20px;
  line-height: 27px;
  text-align: justify;
}

.method{
  width: 100%;
  display: flex;
}

.method-left{
  width: 50%;
  height: 480px;
}

.method-left-inner{
  height: 100%;
  width: 100%;
  background-color: #FBF5E9;
  text-align: center;
  display: table;
}

.method-right{
  width: 50%;
  height: 480px;
  background-color: #C99456;
  display: table;
}

.method-left h2{
  margin-top: 120px;
}

.method-text{
  color: #585858;
  font-size: 1.6rem;
  line-height: 32px;
  padding-top: 40px;
}

.index-ttl{
  font-size: 4.8rem;
  text-align: center;
}

.news{
  background-color: #fff;
  padding-left: 90px;
  padding-right: 90px;
  margin-top: 80px;
}

.news-inner{
  background-color: #FBF5E9;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
}

.news-inner h2{
  font-size: 4.8rem;
  text-align: center;
}

.news-list li{
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 24px;
}

.news-list a{
  display: flex;
  font-size: 1.8rem;
}

.date{
  margin-left: 20px;
  margin-right: 20px;
}

.news-ttl{
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 750px){
  .first-view{
    display: block;
    margin-top: 40px;
    height: 100vh;
    max-height: 800px;
  }

  .first-view-left,
  .first-view-right{
    width: 100%;
  }
  .first-view-left{
    position: absolute;
    z-index: -2;
  }
  .first-view-right{
    position: relative;
    padding: 20px;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .first-view-right_inner{
    background-color: #f4f4f4cf;
    height: 100%;
  }

  .first-view-logo{
    max-width: 400px;
    width: 100%;
  }

  .index-ttl{
    font-size: 3.2rem;
  }

  .features-inner{
    padding: 80px 20px;
  }

  .features-texture h3,
  .fivelayer h3{
    font-size: 2.5rem;
  }

  .features-texture-pc,
  .fivelayer-img-pc{
    display: none;
  }
  
  .features-texture-sp,
  .fivelayer-img-sp{
    display: block;
    width: 100%;
    margin-top: 50px;
  }

  .function-inner{
    padding: 80px 20px;
  }

  .features-ttl img,
  .function-ttl img{
    width: 200px;
  }

  .features-ttl h2,
  .function-ttl h2{
    font-size: 2.5rem;
    margin-top: 10px;
  }

  .function-item-cont ul{
    display: block;
  }

  .function-item-cont li{
    width: 100%;
  }

  .function-item-cont li + li{
    margin-top: 50px;
  }

  .function-item-img img{
    width: 75px;
  }

  .function-item-txt h3{
    font-size: 2.5rem;
  }

  .function-item-txt p{
    margin-top: 10px;
  }

  .method{
    display: block;
  }

  .method-left,
  .method-right{
    width: 100%;
  }

  .method-left{
    position: absolute;
    padding: 20px;
    z-index: 0;
  }

  .method-left-inner{
    background-color: #f4f4f4dd;
  }
  
  .method-right{
    position: relative;
    z-index: -1;
  }
  
  .news{
  padding: 80px 20px;
  }

  .news-list a{
  display: block;
  }
}

/* products */
.page-ttl{
  font-size: 4.8rem;
  margin-top: 200px;
  text-align: center;
}

.page-ttl span{
  font-size: 3.0rem;
}

.page-products:nth-child(odd),
.page-data:nth-child(odd){
  background-color: #F4F4F4;
}

.page-products:nth-child(even),
.page-data:nth-child(even){
  background-color: #fff;
}

.products-list_slider a{
  display: block;
  width: 100%;
  height: 100%;
}

.page-products-inner,
.page-data-inner{
  max-width: 1140px;
  padding: 40px 20px;
  width: 100%;
  margin: 0 auto;
}

.page-products-ttl h2{
  font-size: 3.2rem;
}

.page-products-list-item + .page-products-list-item{
  margin-left: 40px;
}

.page-products-list{
  display: flex;
}

.page-products-list-item{
  width: calc(( 100% - 40px ) / 2);
  margin-top: 20px;
}

.page-products-list-item img{
  width: 100%;
  border: 1px solid #E2E2E2;
}

.page-products-list-item h3{
  font-size: 2.4rem;
  margin-top: 20px;
}

.page-products-list-item-txt{
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
}

.page-products-list-item-txt + .page-products-list-item-txt{
  border-top: none;
}

.page-products-list-item-txt th,
.page-products-list-item-txt td{
  font-size: 1.5rem;
  padding: 15px;
  line-height: 1.5;
}

.page-products-list-item-txt th{
  font-weight: normal;
  width: 100px;
}

@media (max-width: 750px){
  .page-ttl{
    margin-top: 100px;
  }

  .page-products-list-item img{
    border: none;
  }

  .page-products-list{
    display: block;
  }

  .page-products-list-item{
    width: 100%;
  }

  .page-products-list-item + .page-products-list-item{
    margin: 20px auto 0 auto;
  }

  .page-products-list-item-table{
    margin: 0 auto;
  }
/*
  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
*/
}

.page-products_slider_up{
	margin:0 0 5px 0;
}

.page-products_slider_btn{
  margin-top: 20px;
}

.page-products_slider_btn li{
	cursor: pointer;
	outline: none;
	background:#fff;
	width: calc((100% / 8) - 70px);
}
.page-products_slider_btn li + li{
  margin-left: 10px;
}
.page-products_slider_btn li img{
	opacity: 0.4;
}

.page-products_slider_btn li.slick-current img{
	opacity: 1;
}

.page-products_slider_btn .slick-track {
	transform: unset !important;
}

.page-products_slider_btn .slick-track{
  margin: 0px;
  width: 100% !important;
}
.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    height: 25px;
    width: 25px;
}

.slick-prev {
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right:2.5%;
    transform: rotate(45deg);
}

/* data */
.page-data{
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}
.page-data-txt h2{
  font-size: 3.2rem;
}
.page-data-txt p{
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 2.7rem;
}
.page-data-img-conts{
  margin-top: 60px;
}
.page-data-img-cont.s-width{
  margin: 0 auto;
}
.page-data-img-cont + .page-data-img-cont{
  margin-top: 60px;
}
.page-data-img-cont.s-width{
  max-width: 720px;
}
.page-data-img-cont h3{
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.page-data-img-attention{
  font-size: 1.6rem;
  text-align: center;
  margin-top: 10px;
}
.page-data-imgs{
  display: flex;
  margin-top: 20px;
}
.page-data-img.s-width{
  width: calc((100% - 40px) / 2);
}
.page-data-img.l-width{
  width: calc((100% - 80px) / 3);
}
.page-data-img + .page-data-img{
  margin-left: 40px;
}
.page-data-img img{
  width: 100%;
  /*aspect-ratio: 5 / 4;*/
  object-fit: cover;
}
.page-data-img-caption{
  font-size: 1.6rem;
}
.page-data-img-caption.bottom{
  margin-top: 10px;
}
.page-data-img-caption.top{
  margin-bottom: 10px;
}
.page-data-table{
  margin-top: 20px;
  width: 100%;
}
.page-data-table-txt th,
.page-data-table-txt td{
  font-size: 1.8rem;
  font-weight: normal;
  padding: 20px;
  border: solid 1px #000;
}
.page-data-table-txt th{
  background-color: #F4F4F4;
}
.page-data-inner.flex{
  display: flex;
}
 .page-data-txt.flex{
  width: 100%;
 }
.page-data-img.flex{
  width: 100%;
  max-width: 340px;
  margin-left: 40px;
}
.page-data-img-full{
  width: 100%;
}
.page-data-img-full img{
  width: 100%;
}
.page-data-img-full.sp{
  display: none;
}
@media (max-width: 750px){
  .page-data-imgs {
    display: block;
  }
  .page-data-img.s-width {
    width: 100%;
  }
  .page-data-img + .page-data-img {
    margin-left: 0;
    margin-top: 20px;
  }
  .page-data-table-txt th,
  .page-data-table-txt td{
    display: block;
    width: 100%;
    border-bottom: none;
    text-align: center;
  }
  .page-data-table-txt:last-child{
    border-bottom: solid 1px #000;
  }
  .page-data-img.l-width {
    width: 100%;
  }
  .page-data-inner.flex {
    display: block;
  }
  .page-data-img.flex {
    max-width: fit-content;
    margin-left: 0;
    margin-top: 20px;
  }
  .page-data-img-full.pc{
    display: none;
  }
  .page-data-img-full.sp{
    display: block;
  }
}

/* news */
.page-inner{
  max-width: 1100px;
  width: 100%;
  margin: 40px auto;
  padding: 0 20px;
}

.page-news-list .list-txt{
  transition: 0.3s;
  display: block;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 15px;
}

.page-news-list .list-txt:hover{
  background: #e5e5e5;
  transition: 0.3s;

}

.list-txt + .list-txt{
  border-top: none;
}

.list-txt-date,
.list-txt-head{
  font-size: 1.8rem;
  line-height: 1.8;
}

.list-txt-date{
  margin-right: 40px;
}

.list-txt a{
  display: flex;
}

.nav-links{
  text-align: center;
}

.page-numbers{
  background-color: #fff;
  border: 1px solid #091008;
  font-size: 1.6rem;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 20px 20px 20px 0px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px;
  transition: 0.3s;
  
}

.page-numbers:hover{
  background-color: #091008;
  color: #fff;
  transition: 0.3s;
}

.page-active{
  background-color: #091008 !important;
  color: #fff;
}

/* method */
.page-method1,
.page-method2,
.page-method3,
.page-method4{
  padding: 40px 20px;
}

.page-method1,
.page-method3{
  background-color: #fff;
}

.page-method2,
.page-method4{
  background-color: #F4F4F4;
}

.page-method-inner{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.page-method-ttl{
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: bold;
}

.page-method-txt{
  color: #585858;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.page-method-sub-txt{
  display: flex;
}

.page-method1-sub-txt-img,
.page-method3-sub-txt-img{
  width: 316px;
}

.page-method-sub-txt p,
.page-method-sub-txt2 p{
  color: #585858;
  font-size: 1.6rem;
}

.page-method-sub + .page-method-sub{
  margin-top: 40px;
}

.page-method-sub-txt p{
  margin-top: -4px;
  margin-left: 17px;
  line-height: 1.8;
}

.page-method-sub h3{
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-method-sub2{
  display: flex;
}

.page-method-sub-txt2 + .page-method-sub-txt2{
  margin-left: 75px;
}

.page-method-sub-txt2{
  width: calc(( 100% - 80px ) / 3);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.page-method-sub-txt2 p{
  line-height: 1.5;
  margin-bottom: 10px;
}

.page-method-sub-txt2 img{
  width: 100%;
  margin-top: auto;
}

.page-method4-sub-txt-img{
  max-width: 1100px;
  width: 100%;
}

@media (max-width: 750px){
  .page-method-sub-txt{
    display: block;
  }

  .page-method-sub-txt p{
    margin: 20px auto 0 auto;
  }

  .page-method1-sub-txt-img,
  .page-method3-sub-txt-img{
    width: 100%;
  }

  .page-method-sub2{
    display: block;
  }

  .page-method-sub-txt2{
    width: 100%;
  }

  .page-method-sub-txt2 + .page-method-sub-txt2{
    margin: 40px auto 0 auto;
  }
}

/* company */
.company-profile{
  width: 100%;
}

.company-profile .list-txt th{
  font-weight: normal;
  width: 200px;
}

.company-profile .list-txt{
  display: block;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 15px;
}

.company-profile .list-txt + .list-txt{
  border-top: none;
}

.company-profile .list-txt th,
.company-profile .list-txt td{
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 750px){
  .company-profile .list-txt th,
  .company-profile .list-txt td{
    display: block;
  }
}

/* contact */
.common__form--subttl {
  font-size: 1.8rem;
  line-height: 30px;
  border-bottom: 1px solid #c9c9c9;
}
@media (max-width: 768px) {
  .common__form--subttl {
    font-size: 1.6rem;
  }
}
.common-form dl{
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px){
  .common-form dl{
    display: block;
  }
}
.common-form dl dt{
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .common-form dl dt {
    width: 100%;
    padding-bottom: 20px;
  }
}
.common-form dl dt p{
  display: inline;
}
.common-form dl .required::before {
  content: "必須";
  padding: 6px 4px 4px;
  background-color: #ed2c2c;
  color: #fff;
  font-size: 1.2rem;
  line-height: 0;
  border-radius: 4px;
  position: relative;
  top: -2px;
}
@media (max-width: 768px) {
  .common-form dl .required::before {
    right: auto;
    font-size: 1.2rem;
  }
}
.common-form dl dd {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .common-form dl dd {
    width: 100%;
    margin-left: 0;
    padding-bottom: 40px;
  }
}
.common-form dl dd input[type=text],
.common-form dl dd input[type=email],
.common-form dl dd input[type=password],
.common-form dl dd input[type=tel],
.common-form dl dd input[type=date] {
  background-color: #f1f1f1;
  width: 100%;
  height: 48px;
  border-radius: 1px;
  padding: 4px 12px;
}
.common-form dl dd textarea {
  background-color: #f1f1f1;
  width: 100%;
  height: 240px;
  border-radius: 4px;
  padding: 8px;
}
@media (max-width: 500px) {
  .common-form dl dd textarea {
    padding: 12px;
    line-height: 1.4;
  }
}
.common-form dl dd select {
  background-color: #f1f1f1;
  width: 100%;
  max-width: 278px;
  height: 48px;
  border-radius: 1px;
  padding: 2px 8px;
  position: relative;
}
@media (max-width: 500px) {
  .common-form dl dd select {
    width: 100%;
    max-width: 200px;
  }
}
.common-form dl .business_kinds label {
  margin-left: 7px;
  margin-right: 33px;
  vertical-align: middle;
}
.common-form dl .kinds__ttl {
  vertical-align: middle;
}
.common-form dl .kinds__ttl label {
  margin-left: 7px;
  margin-right: 33px;
  margin-bottom: 15px;
  cursor: pointer;
}

.checkbox_cont{
  display: block;
}

.common-form dl .kinds__ttl input {
  vertical-align: middle;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  margin-bottom: 2px;
}
.common-form dl .form-job {
  position: relative;
}
.common-form dl .form-job::after {
  content: "▼";
  position: absolute;
  top: 25%;
  left: 250px;
  color: #000;
  font-size: 1.2rem;
  pointer-events: none;
}
@media (max-width: 500px) {
  .common-form dl .form-job::after {
    left: 174px;
  }
}
.common-form dl .form__contents {
  align-self: flex-start;
  margin-top: 14px;
}
.common-form dl .form__check--kinds {
  align-self: flex-start;
  margin-top: 14px;
}

.common-form dl .form__check--kinds span {
  font-size: 1.4rem;
  color: #757575;
  padding-left: 4px;
}

.common-form .form__common--check {
  margin-top: 17px;
  border-top: 1px solid #c9c9c9;
  padding-top: 90px;
  text-align: center;
}
@media (max-width: 768px) {
  .common-form .form__common--check {
    padding-top: 55px;
  }
}
.common-form .form__common--check label {
  vertical-align: middle;
}

.common-form .form__common--check label {
  font-size: 1.4rem;
}

.common-form .form__common--check label a {
  color: #227acc;
  text-decoration: underline;
}
@media (max-width: 425px) {
  .common-form .form__common--check label a {
    padding-left: 1.6em;
  }
}
.common-form .form__common--check label input {
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 3px;
  cursor: pointer;
}
.common-form .form__common--check input {
  display: block;
  width: 310px;
  height: 64px;
  line-height: 64px;
  color: #fff;
  background-color: #000;
  text-align: center;
  margin: 47px auto 117px;
  font-size: 1.9rem;
}
@media (max-width: 768px) {
  .common-form .form__common--check button {
    font-size: 1.6rem;
    margin: 40px auto 88px;
  }
}
@media (max-width: 374px) {
  .common-form .form__common--check button {
    width: 96%;
  }
}
.contact__form--subttl {
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .contact__form--subttl {
    padding-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .contact__form--subttl br {
    display: none;
  }
}
.contact__form {
  padding-top: 80px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact__form {
    padding-top: 40px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact__form .business_kinds {
    padding-bottom: 40px;
  }
}
.form__contact--check br {
  display: none;
}
@media (max-width: 425px) {
  .form__contact--check br {
    display: block;
  }
}
.common-form dl dt,
.common-form dl dd{
  font-size: 1.6rem;
}
.error{
  width : 100%;
  padding: 0;
  display: inline-block;
  font-size: 90%;
  color: #dc4343;
  box-sizing: border-box;
}

input[type=checkbox] {
  visibility:hidden;
}
.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.checkbox::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  content: '';
  display: block;
  height: 20px;
  left: 2px;
  margin-top: -8px;
  position: absolute;
  top: 45%;
  width: 20px;
}
.checkbox::after {
  border-right: 4px solid #586DCA;
  border-bottom: 4px solid #586DCA;
  content: '';
  display: block;
  height: 20px;
  left: 10px;
  margin-top: -12px;
  opacity: 0;
  position: absolute;
  top: 45%;
  transform: rotate(45deg);
  width: 12px;
}
.wpcf7-list-item {
  margin-top:10px;
  display: block;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
span.wpcf7-list-item {
  position: relative;
  margin: 0 50px 20px 0 !important;
  display: block;
  width: 100%;
}
.wpcf7-list-item-label {
  padding-left: 28px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
}
.has-free-text label::after{
  display: block;
  content: "※その他を選んだ場合は以下の入力欄にウェルタッチウッドを知ったきっかけをご入力ください";
  font-size: 1.4rem;
  color: #ed2d2c;
  margin-top: 10px;
  margin-bottom: 4px;
  margin-left: 34px;
}
.wpcf7-list-item-label {
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
}
.wpcf7-not-valid-tip{
  margin-top: 6px;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.wpcf7-list-item-label:before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  content: '';
  display: block;
  height: 20px;
  left: 2px;
  margin-top: -8px;
  position: absolute;
  top: 28%;
  width: 20px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  border-right: 4px solid #586DCA;
  border-bottom: 4px solid #586DCA;
  content: '';
  display: block;
  height: 20px;
  left: 10px;
  margin-top: -12px;
  opacity: 0;
  position: absolute;
  top: 28%;
  transform: rotate(45deg);
  width: 12px;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #666;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
input[type=radio] {
  visibility:hidden;
}
.radio {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.radio::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: '';
  display: block;
  height: 20px;
  left: 2px;
  margin-top: -8px;
  position: absolute;
  top: 42%;
  width: 20px;
}
.radio::after {
  background: #586DCA;
  border-radius: 50%;
  content: '';
  display: block;
  height: 14px;
  left: 5px;
  margin-top: -3px;
  opacity: 0;
  position: absolute;
  top: 35%;
  width: 14px;
}
input[type=radio]:checked + .radio::before {
  border-color: #666;
}
input[type=radio]:checked + .radio::after {
  opacity: 1;
}
.form_add + .form_add{
  padding-top: 20px;
}

.contact__confirm-btn{
  border-top: 1px solid #c9c9c9;
  padding: 80px 0 120px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact__confirm-btn {
    padding: 60px 0;
    display: block;
    width: 100%;
  }
}

.contact__confirm-btn p{
  display: flex;
}
@media (max-width: 768px) {
  .contact__confirm-btn p{
    display: block;
  }
}
.contact__confirm-btn .wpcf7-previous {
  width: 30%;
  height: 64px;
  line-height: 64px;
  background-color: #818181;
  text-align: center;
  font-size: 1.9rem;
  color: #fff;
}
@media (max-width: 768px) {
  .contact__confirm-btn .wpcf7-previous {
    width: 100%;
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
}

.contact__confirm-btn .wpcf7-submit {
  width: 30%;
  height: 64px;
  line-height: 64px;
  background-color: #000;
  text-align: center;
  font-size: 1.9rem;
  color: #fff;
}
@media (max-width: 768px) {
.contact__confirm-btn .wpcf7-submit {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* works */
.works-list{
  display: flex;
  flex-wrap: wrap;
}
.works-item{
  width: calc((100% - 80px) / 3);
  margin-left: 40px;
  margin-bottom: 50px;
}
.works-item:nth-child(3n+1){
  margin-left: 0;
}
.works-item img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.works-item-txt{
  font-size: 1.6rem;
  margin-top: 5px;
}
.page-inner-s{
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px 120px 20px;
}
.single_works-contents h2{
  font-size: 2.0rem;
  text-align: center;
}
.single_works-contents img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-top: 10px;
}
.single_works-contents p{
  font-size: 1.6rem;
  margin-top: 10px;
}
.single_works-button-area{
  margin-top: 60px;
}
.button-link_jump,
.button-back{
  display: block;
  width: 450px;
  line-height: 40px;
  border: solid 1px #000;
  margin: 0 auto;
  font-size: 1.6rem;
  text-align: center;
}
.button-link_jump{
  color: #fff;
  background-color: #000;
}
.button-back{
  margin-top: 20px;
}
@media (max-width: 768px) {
  .page-inner-s{
    padding-bottom: 0;
  }
  .works-list{
    display: block;
  }
  .works-item{
    width: 100%;
    margin-left: 0;
  }
  .button-link_jump,
  .button-back{
    width: 100%;
  }
}

/* Q&A */
.fap-parent,
.faq-child{
  width: 100%;
  background-color: #FBF5E9;
  padding: 20px;
}

.fap-parent{
  display: flex;
  align-items: center;

  position: relative;
}
.fap-parent span{
  content: "Q";
  font-family: EB Garamond;
  font-size: 3.5rem;
  font-weight: normal;
  color: #C99456;
}
.fap-parent h2{
  font-size: 2.0rem;
  margin-left: 10px;
  padding-right: 80px;
}
.faq-arrow{
  width: 15px;
  height: 15px;
  position: absolute;
  right: 20px;
}
.faq-arrow::after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-top: solid 1px #C99456;
  border-right: solid 1px #C99456;
  transform: rotate(135deg);
  transition: 0.5s;
}
.faq-child{
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}
.faq-child p{
  font-size: 1.6rem;
  line-height: 27px;
  text-align: justify;
  padding-left: 40px;
  padding-right: 40px;
}
.faq-child a{
  color: #227acc;
  text-decoration: underline;
}
.faq-contens > dl > dd.is-open{
  max-height: 1000px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faq-contens > dl > dt.is-open .faq-arrow::after{
  transform: rotate(-45deg);
  transition: 0.5s;
}
.faq-contens + .faq-contens{
  margin-top: 20px;
}
@media (max-width: 768px){
  .fap-parent span{
    font-size: 2.5rem;
  }
  .fap-parent h2{
    font-size: 1.6rem;
    padding-right: 35px;
  }
  .faq-child p{
    padding-left: 0;
    padding-right: 0;
  }
}

/* policy */
.policy__items .policy__item {
  padding-bottom: 45px;
}
.policy__items .policy__item h2 {
  font-size: 1.8rem;
  line-height: 36px;
  font-weight: bold;
  padding-bottom: 8px;
}
.policy__items .policy__item p {
  font-size: 1.6rem;
  line-height: 25px;
}



/* リニューアル */

.main__renewal{
  margin-top: 200px;
}
.renewal{
  text-align: center;
}
.renewal__title{
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.renewal__text{
  font-size: 1.6rem;
  line-height: 1.5;
}
.renewal__link{
  display: block;
  font-size: 1.6rem;
  background: #000;
  color: #fff;
  padding: 20px 0px;
  border-radius: 50px;
  max-width: 500px;
  margin: 40px auto 0;
  transition: all ease .5s;
}
.renewal__link:hover{
  opacity: .6;
}

@media (max-width: 768px){
  .renewal__title{
    font-size: 2.4rem;
  }
}