@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%; /*10px*/
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-size: 1.4rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #514327;
  background: #ffffff;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}
.contents_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
h1, h2, h3, h4, h5, h6, p, span, th, td {
  transform: rotate(0.05deg); /*指定フォントの崩れ防止*/
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited {
  display: block;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
  transform: rotate(0.05deg); /*指定フォントの崩れ防止*/
}
a[href^='tel:'] {
    pointer-events: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* device */
.pc {
  display: block;
}
.sp {
  display: none;
}
/* flexbox */
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  a[href^='tel:'] {
    pointer-events: auto;
  }
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}	
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
  position: relative;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
  width: 100vw;
  padding: 0 40px;
	margin: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
header .contents_inner {
  width: 100%;
  max-width: initial;
}
header .logo_box {
  width: 167px;
  margin-top: 30px;
}
header .header_logo a {
  display: block;
  width: 100%;
  transition: 0.1s;
}
header .header_logo a:hover {
  opacity: 0.9;
}
header #nav_pc {
  width: calc(100% - 167px);
  margin-top: 34px;
  justify-content: flex-end;
  gap: 20px;
}
header #nav_pc .header_nav {
  background: #ffffff;
  width: 680px;
  padding: 0 35px 0 36px;
  border-radius: 50vw;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.08);
}
header #nav_pc .header_nav ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #514327;
  padding: 23px 5px 23px 24px;
  transition: 0.1s;
  position: relative;
}
header #nav_pc .header_nav ul li a:hover {
  color: #F5773C;
}
header #nav_pc .header_nav ul li a:hover::after {
  display: block;
}
header #nav_pc .header_nav ul li a::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
header #nav_pc .header_nav ul li:nth-of-type(1) a::before {
  background: url(../img/common/home_icon.svg) no-repeat center / cover;
  width: 14.3px;
  height: 13.4px;
  left: 4px;
}
header #nav_pc .header_nav ul li:nth-of-type(2) a::before {
  background: url(../img/common/product_icon.svg) no-repeat center / cover;
  width: 15px;
  height: 13.3px;
  left: 3px; 
}
header #nav_pc .header_nav ul li:nth-of-type(3) a::before {
  background: url(../img/common/product_icon_02.svg) no-repeat center / cover;
  width: 15px;
  height: 13.3px;
  left: 3px; 
}
header #nav_pc .header_nav ul li:nth-of-type(4) a::before {
  background: url(../img/common/process_icon.svg) no-repeat center / cover;
  width: 14.3px;
  height: 11px;
  left: 4px; 
}
header #nav_pc .header_nav ul li:nth-of-type(5) a::before {
  background: url(../img/common/company_icon.svg) no-repeat center / cover;
  width: 16.1px;
  height: 12.8px;
  left: 3px; 
}
header #nav_pc .header_nav ul li:nth-of-type(6) a::before {
  background: url(../img/common/news_icon.svg) no-repeat center / cover;
  width: 16px;
  height: 12.2px;
  left: 2px; 
}
header #nav_pc .header_nav ul li a::after {
  content: "";
  display: none;
  background: #F5773C;
  width: 100%;
  height: 2px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
header #nav_pc .header_nav ul li.current a {
  color: #F5773C;
}
header #nav_pc .header_nav ul li.current a::after {
  display: block;
}
header #nav_pc .ct_btn {
  text-align: center;
  width: 160px;
  padding: 23.35px 0 21.35px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.08);
}
header #nav_pc .ct_btn::after {
  display: none;
}
@media screen and (max-width: 1180px) {
  header #nav_pc .header_nav {
    width: 640px;
  }
}
@media screen and (max-width: 1100px) {
  header {
    padding: 0 20px;
  }
  header #nav_pc {
    gap: 10px;
  }
  header #nav_pc .header_nav ul li a {
    font-size: 14px;
  }
  header #nav_pc .ct_btn {
    font-size: 16px;
    padding: 22.35px 0 21.35px;
  }
}
@media screen and (max-width: 1024px) {
  header {
    background: #FFFFFF;
    padding: 0 20px 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
  }
  header .logo_box {
    margin-top: 10px;
  }
  header #nav_pc {
    display: none;
  }  
}
@media screen and (max-width: 640px) {
  header {
    background: #FFFFFF;
    padding: 9px 15px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
  }
  header .logo_box {
    width: 111px;
    margin-top: 0;
  }
}
/*-----------------------------------
	nav_sp
-----------------------------------*/
#nav_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  #nav_sp {
    display: block;
    position: relative;
  }
  #nav_sp .btn_container,
  #nav_sp .overlay {
    display: block;
  }
}
/*-----------------------------------
  btn_container
-----------------------------------*/
@media screen and (max-width: 1024px) {
  #nav_sp .btn_container {
    background: #FFFFFF;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(81, 67, 39, 0.75);
    border-radius: 50vw;
    position: fixed;
    top: 13px;
    right: 20px;
    z-index: 1000;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  #nav_sp .btn_container:after {
    content: "MENU";
    font-size: 11px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    color: #514327;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    transition: ease 0.2s;
  }
  #nav_sp .btn_container.active:after {
    content: "CLOSE";
    color: #514327;
    bottom: 10px;
    transition: ease 0.2s;
  }
  #nav_sp .btn_container span {
    background: #514327;
    width: 50%;
    height: 1px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #nav_sp .btn_container .tp {
    top: 20px;
  }
  #nav_sp .btn_container .bm {
    top: 31px;
  }
  #nav_sp .btn_container.active .tp {
    top: 15px;
    transform: translateY(11px) translateX(0) rotate(45deg);
  }
  #nav_sp .btn_container.active .bm {
    top: 27px;
    transform: translateY(-1px) translateX(0) rotate(-45deg);
  }
}
@media screen and (max-width: 640px) {
  #nav_sp .btn_container {
    width: 52px;
    height: 52px;
    top: 9px;
    right: 15px;
  }
  #nav_sp .btn_container:after {
    font-size: 10px;
    font-weight: 500;
    bottom: 8.5px;
  }
  #nav_sp .btn_container.active:after {
    bottom: 6px;
  }
  #nav_sp .btn_container span {
    height: 1px;
  }
  #nav_sp .btn_container .tp {
    top: 13px;
  }
  #nav_sp .btn_container.active .tp {
    top: 7px;
  }
  #nav_sp .btn_container .bm {
    top: 21px;
  }
  #nav_sp .btn_container.active .bm {
    top: 19px;
  }
}
/*-----------------------------------
  overlay
-----------------------------------*/
@media screen and (max-width: 1024px) {
  #nav_sp .overlay {
    background: #FBF7EF;
    width: 100vw;
    min-height: 100vh;
    height: 100svh;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    transition: opacity 0.3s, visibility 0.3s;
  }
  #nav_sp .overlay.open {
    opacity: 1;
    visibility: visible;
  }
  #nav_sp .overlay .overlay_menu {
    width: 80%;
    margin: auto;
    position: relative;
    top: 120px;
    left: 0;
    right: 0;
  }
  #nav_sp .overlay .main_box li {
    width: 100%;
    margin-bottom: 55px;
  }
  #nav_sp .overlay .main_box li a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #514327;
    width: max-content;
    padding-left: 30px;
    margin: 0 auto;
    position: relative;
    transition: 0.1s;
  }
  #nav_sp .overlay .main_box li a::before {
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  #nav_sp .overlay .main_box li:nth-of-type(1) a::before {
    background: url(../img/common/home_icon.svg) no-repeat center / cover;
    width: 14.3px;
    height: 13.4px;
    left: 4px;
  }
  #nav_sp .overlay .main_box li:nth-of-type(2) a::before {
    background: url(../img/common/product_icon.svg) no-repeat center / cover;
    width: 15px;
    height: 13.3px;
    left: 3px; 
  }
  #nav_sp .overlay .main_box li:nth-of-type(3) a::before {
    background: url(../img/common/product_icon_02.svg) no-repeat center / cover;
    width: 15px;
    height: 13.3px;
    left: 3px; 
  }
  #nav_sp .overlay .main_box li:nth-of-type(4) a::before {
    background: url(../img/common/process_icon.svg) no-repeat center / cover;
    width: 14.3px;
    height: 11px;
    left: 4px; 
  }
  #nav_sp .overlay .main_box li:nth-of-type(5) a::before {
    background: url(../img/common/company_icon.svg) no-repeat center / cover;
    width: 16.1px;
    height: 12.8px;
    left: 3px; 
  }
  #nav_sp .overlay .main_box li:nth-of-type(6) a::before {
    background: url(../img/common/news_icon.svg) no-repeat center / cover;
    width: 16px;
    height: 12.2px;
    left: 2px; 
  }  
  #nav_sp .overlay .overlay_menu .ct_btn {
    text-align: center;
    width: 220px;
    margin: 0 auto;
  }
  #nav_sp .overlay .overlay_menu .ct_btn::after {
    right: 22px;
  }
}
@media screen and (max-width: 640px) {
  #nav_sp .overlay .main_box li {
    margin-bottom: 33px;
  }
  #nav_sp .overlay .main_box li a {
    font-size: 16px;
  }
}
/*-----------------------------------

	common_class

-----------------------------------*/
.clr_bg {
  padding-top: 60px;
  position: relative;
}
.clr_bg::before {
  content: "";
  display: block;
  background: #FBF7EF;
  width: 854px;
  height: 505px;
  margin: auto;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.clr_bg::after {
  content: "";
  display: block;
  background: #FBF7EF;
  width: 100%;
  height: calc(100% - 140px);
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  z-index: -1;
}
/* ttl */
.sec_ttl {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.39;
  letter-spacing: 0.08em;
  color: #88CC2E;
}
.sec_ttl.tl_ct {
  text-align: center;
}
.sec_ttl .en {
  display: block;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F5773C;
  margin-bottom: 20px;
}
.sec_ttl_02 {
  display: inline-block;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.37;
  letter-spacing: 0.08em;
  background-size: 9px 3px;
  background-image: linear-gradient(to right, #F5773C 3px, #FFFFFF 0);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 13.3px;
}
.sec_ttl_02.lw {
  font-size: 24px;
  letter-spacing: 0;
  padding-bottom: 11.3px;
}
.sec_ttl_point {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.375;
	padding-left: 13px;
	position: relative;
}
.sec_ttl_point::before {
	content: "";
	display: block;
	background: #F5773C;
	width: 8px;
	height: 8px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
/* txt */
.sec_txt {
  font-size: 17px;
  font-weight: 400;
  line-height: 2.23;
}
/* btn */
.btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38;
  color: #FFFFFF !important;
  background: #F5773C;
  padding: 18.1px 0 16.1px;
  border-radius: 50vw;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
}
.btn:hover {
  opacity: 0.9;
}
.btn::after {
  content: "";
  display: block;
  background: url(../img/common/btn_icon.png) no-repeat center / cover;
  width: 19.5px;
  height: 19.5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .clr_bg::before {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .clr_bg {
    padding-top: 50px;
  }
  .clr_bg::before {
    width: 160%;
    left: -30%;
  }
  .sec_ttl {
    font-size: 25px;
    letter-spacing: 0.04em;
  }
  .sec_ttl .en {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .sec_ttl_02 {
    display: block;
    font-size: 22px;
    background-size: 6px 2px;
    background-image: linear-gradient(to right, #F5773C 3px, #FFFFFF 0);
    padding-bottom: 7.3px;
  }
  .sec_ttl_02.lw {
    font-size: 18px;
    padding-bottom: 6.3px;
  }  
  .sec_ttl_point {
		font-size: 14px;
		padding-left: 10px;
	}
	.sec_ttl_point::before {
		width: 5px;
		height: 5px;
	}
  .sec_txt {
    font-size: 15px;
    line-height: 2;
  }
  .btn {
    font-size: 16px;
    padding: 14.6px 0 13.6px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.08);
  }
  .btn::after {
    width: 16.5px;
    height: 16.5px;
  }
}
/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block {
  text-align: center;
  color: #FFFFFF;
  background: url(../img/common/ct_bg.jpg) no-repeat center / cover;
  padding: 80px 0;
}
#contact_block h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.41;
  letter-spacing: 0.08em;
  margin-bottom: 27.6px;
}
#contact_block .sec_txt {
  margin-bottom: 38.6px;
}
#contact_block .btn {
  text-align: left;
  width: 260px;
  padding-left: 26px;
  margin: 0 auto;
}
#contact_block .btn::after {
  right: 24.7px;
}
@media screen and (max-width: 640px) {
  #contact_block {
    padding: 50px 0;
  }
  #contact_block h2 {
    font-size: 26px;
    margin-bottom: 17px;
  }
  #contact_block .sec_txt {
    margin-bottom: 28.6px;
  }
  #contact_block .btn {
    width: 240px;
    padding-left: 26px;
  }
  #contact_block .btn::after {
    right: 19.7px;
  }  
}
/*-----------------------------------

	footer

-----------------------------------*/
footer {
  padding-top: 50px;
}
footer .contents_inner {
  max-width: 1064px;
}
footer .logo_box {
  width: 215px;
  margin: 0 auto 40px;
}
footer .footer_logo a {
  display: block;
  width: 100%;
  transition: 0.1s;
}
footer .footer_logo a:hover {
  opacity: 0.9;
}
footer .footer_nav {
  padding-bottom: 70px;
}
footer .footer_nav a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  color: #514327;
  padding-left: 20px;
  position: relative;
}
footer .footer_nav a:hover {
  color: #F5773C;
}
footer .footer_nav a::before {
  content: "";
  display: block;
  background: #F5773C;
  width: 10px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  footer .footer_nav ul {
    row-gap: 20px;
  }
  footer .footer_nav li {
    width: calc(100% / 3);
  }
  footer .footer_nav a {
    width: max-content;
    margin-left: 27.5%;
  }
}
@media screen and (max-width: 640px) {
  footer {
    padding-top: 45px;
  }
  footer .logo_box {
    width: 185px;
    margin: 0 auto 30px;
  }
  footer .footer_nav {
    padding-bottom: 50px;
  }
  footer .footer_nav li {
    width: 100%;
  }
  footer .footer_nav a {
    font-size: 14px;
    margin-left: 30.5%;
  }
  footer .footer_nav a::before {
    height: 1px;
  }
}
@media screen and (max-width: 425px) {
  footer .footer_nav a {
    margin-left: 26.5%;
  }
}
/*-----------------------------------
	copy
-----------------------------------*/
footer #copy {
  text-align: center;
  background: #FBF7EF;
  padding: 25px 0;
}
footer #copy small {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.42;
}
@media screen and (max-width: 640px) {
  footer #copy {
    padding: 15px 0;
  }
  footer #copy small {
    font-size: 12px;
  }
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 60px;
  bottom: 49px;
  cursor: pointer;
  z-index: 998;
  transition: 0.3s;
}
#pagetop:hover {
  opacity: 0.9;
}
#pagetop img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.08));
	transform: translateZ(0);
}
@media screen and (max-width: 640px) {
  #pagetop {
    width: 52px;
    height: 52px;
    right: 15px;
    bottom: 20px;
  }
}