@charset "UTF-8";

/*-------------------------------------------------------------*/
/* common */

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

img {
  width: 100%;
}

a {
  color: #000;
}

.contents-inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
	.contents-inner {
	  max-width: 96%;
	  margin: auto;
	}
}

@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 100%;
  }

  .contents-inner {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }
}

/*-------------------------------------------------------------*/
/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .9);
  width: 100%;
  padding-top: 40px;
  padding-bottom: 35px;
  z-index: 2;
}

.header-inner {
  position: relative;
  max-width: 940px;
  margin: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 940px) {
	.header-inner {
		  max-width: 90%;
	}
}
.header-logo {
  width: 140px;
  margin-right: auto;
}

.header-logo a {
  transition: .3s;
}

.header-logo a:hover {
  opacity: .7;
}

.header-icon-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-right: 58px;
}

.header-icon-list > li {
  display: block;
  width: 28px;
}

.header-icon-list > li span {
  cursor: pointer;
}

.header-bubble {
  display: none;
  list-style: none;
  position: absolute;
  top: 55px;
  right: 103px;
  background: #000;
  width: 125px;
  padding: 18px;
  text-align: center;
  opacity: 0;
  transition: .3s;
}

.header-bubble.show {
  opacity: 1;
}

.header-bubble.facebook {
  right: 56px;
}

.header-bubble::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  width: 23px;
  height: 20px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.header-bubble li {
  margin-bottom: 5px;
}

.header-bubble li a {
  color: white;
}

@media screen and (max-width: 767px) {
  .header {
    background: none;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 0px;
    transition: .3s;
  }

  .header-logo img {
    filter: brightness(0) invert(1);
  }

  .header.header-scroll {
    background: rgba(255, 255, 255, .9);
  }

  #company .header .header-logo img,
  #contact .header .header-logo img,
  .header.header-scroll .header-logo img {
    filter: brightness(1);
  }
}

/*-------------------------------------------------------------*/
/* hamburger */

.header-menu {
  z-index: 99999;
  width: 46px;
  height: 14px;
  margin-top: -5px;
  cursor: pointer;
  transition-duration: .5s;
}

.header-menu-trigger,
.header-menu-trigger span {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
}

.header-menu-trigger {
  position: relative;
  width: 46px;
  height: 30px;
  display: block;
}

.header-menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #070102;
}

.header-menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.header-menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
}

.header-menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 46px;
}

.header-menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #312725;
  border-radius: 3px;
  transition: all 0.4s;
}

.header-menu-trigger.active span {
  background-color: #312725;
}

.header-menu-trigger.active span:nth-of-type(1) {
  transform: scale(0) translateY(20px);
  background-color: #312725;
}

.header-menu-trigger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: #312725;
}

.header-menu-trigger.active span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: #312725;
}

.header-menu-trigger.active span:nth-of-type(3) {
  transform: scale(0) translateY(-20px);
  background-color: #312725;
}

.header-menu-trigger.active span:nth-of-type(2) {
  width: 28px;
}

@media screen and (max-width: 767px) {
  .header-menu {
    top: -2px;
    right: 40px;
    z-index: 99999;
    width: 46px;
    height: 28px;
  }

  .header-menu-trigger span {
    background-color: white;
  }

  .header-menu-trigger span:nth-of-type(2)::after {
    background-color: white;
  }

  .header-menu-trigger.active span:nth-of-type(2) {
    width: 36px;
  }

  #company .header .header-menu-trigger span,
  #contact .header .header-menu-trigger span,
  .header.header-scroll .header-menu-trigger span {
    background-color: #312725;
  }

  #company .header .header-menu-trigger span:nth-of-type(2)::after,
  #contact .header .header-menu-trigger span:nth-of-type(2)::after,
  .header.header-scroll .header-menu-trigger span:nth-of-type(2)::after {
    background-color: #312725;
  }
}

/*-------------------------------------------------------------*/
/* drawer */

.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, .9);
  z-index: 100;
  padding: 15px;
  overflow-y: scroll;
}

.sp-menu .header-nav-wrap {
  display: grid;
  place-items: center;
  height: 100%;
}

.sp-menu .header-nav-inner {
  display: flex;
  gap: 342px;
  max-width: 800px;
  margin: auto;
}

.sp-menu .header-nav-logo {
  width: 222px;
}

.sp-menu .header-nav ul {
  list-style: none;
}

.sp-menu .header-nav-item {
  font-size: 18px;
  font-weight: 900;
  letter-spacing : 3.6px;
  margin-bottom: 25px;
}

.sp-menu .header-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.sp-menu .header-icon-text {
  position: relative;
  font-size : 12px;
  font-weight: 900;
  letter-spacing : 2.4px;
  padding-right: 65px;
  white-space: nowrap
}

.sp-menu .header-icon-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-bottom: solid 1px #000;
  width: 32px;
  margin: 0 18px 0 15px;
}

.sp-menu .header-icon-list {
  display: flex;
  gap: 10px;
  margin-right: 0;
}

.sp-menu .header-icon-list > li {
  width: 28px;
}

.sp-menu .header-icon-list > li span {
  cursor: pointer;
}

.sp-menu .header-bubble {
  display: none;
  position: absolute;
  top: 50px;
  right: -10px;
  background: #000;
  width: 125px;
  padding: 18px;
  text-align: center;
}

.sp-menu .header-bubble.facebook {
  right: -48px;
}

.sp-menu .header-bubble::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  width: 23px;
  height: 20px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.sp-menu .header-bubble li {
  margin-bottom: 5px;
}

.sp-menu .header-bubble li a {
  color: white;
}

@media screen and (max-width: 920px) {
  .sp-menu .header-nav-inner {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sp-menu .header-nav-wrap {
    display: block;
    padding-top: 50px;
  }

  .sp-menu .header-nav-inner {
    display: block;
  }

  .sp-menu .header-nav-logo {
    width: 115px;
    margin: 0 auto 45px;
  }

  .sp-menu .header-nav-item {
    font-size: 24px;
  }

  .sp-menu .header-icon {
    margin-top: 35px;
  }

  .sp-menu .header-icon-text {
    position: relative;
    font-size : 12px;
    font-weight: 900;
    letter-spacing : 2.4px;
    padding-right: 65px;
  }

  .sp-menu .header-icon-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-bottom: solid 1px #000;
    width: 32px;
    margin: 0 18px 0 15px;
  }

  .sp-menu .header-icon-list {
    position: relative;
    display: flex;
    gap: 10px;
  }

  .sp-menu .header-icon-list > li {
    width: 28px;
  }

  .sp-menu .header-icon-list > li span {
    cursor: pointer;
  }

  .sp-menu .header-bubble {
    display: none;
    position: absolute;
    top: 50px;
    right: -10px;
    background: #000;
    width: 125px;
    padding: 18px;
    text-align: center;
  }

  .sp-menu .header-bubble.facebook {
    right: -48px;
  }

  .sp-menu .header-bubble::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    width: 23px;
    height: 20px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }

  .sp-menu .header-bubble li {
    margin-bottom: 5px;
  }
}

/*-------------------------------------------------------------*/
/* footer */

.footer {
  padding: 135px 0 25px;
	background:#fff;
}

#home .footer{
	background:#EFEFEF;
}

.footer-inner {
  display: flex;
  gap: 175px;
  max-width: 550px;
  margin: 0 auto 165px;
}

.footer-logo {
  width: 145px;
}

.footer-logo a {
  transition: .3s;
}

.footer-logo a:hover {
  opacity: .7;
}

.footer-nav {
  padding: 0 0px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav-item {
  font-size: 18px;
  font-weight: 900;
  letter-spacing : 3.6px;
  margin-bottom: 25px;
}

.footer-nav-item a {
  transition: .3s;
}

.footer-nav-item a:hover {
  opacity: .7;
}

.footer-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.footer-icon-text {
  position: relative;
  font-size : 12px;
  font-weight: 900;
  letter-spacing : 2.4px;
  padding-right: 65px;
}

.footer-icon-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-bottom: solid 1px #000;
  width: 32px;
  margin: 0 18px 0 15px;
}

.footer-icon-list {
  display: flex;
  gap: 10px;
}

.footer-icon-list > li {
  width: 28px;
}

.footer-icon-list > li span {
  cursor: pointer;
}

.footer-bubble {
  display: none;
  position: absolute;
  top: 50px;
  right: -10px;
  background: #000;
  width: 125px;
  padding: 18px;
  text-align: center;
  opacity: 0;
  transition: .3s;
}

.footer-bubble.show {
  opacity: 1;
}

.footer-bubble.facebook {
  right: -48px;
}

.footer-bubble::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  width: 23px;
  height: 20px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.footer-bubble li {
  margin-bottom: 5px;
}

.footer-bubble li a {
  color: white;
}

.footer-copyright {
  display: block;
  font-size : 12px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 80px 0 35px;

  }

  .footer-inner {
    display: block;
    margin: 0 auto 200px;
				width:80%;
  }

  .footer-logo {
    margin: 0 auto 80px;
  }

  .footer-nav-item {
    margin-bottom: 30px;
  }

  .footer-nav ul {
    position: relative;
    align-items: flex-start;
  }

  .footer-icon-list > li {
    height: 28px;
  }

  .footer-bubble {
    top: 25px;
    right: 48px;
  }

  .footer-bubble.facebook {
    right: 48px;
  }
}

/*-------------------------------------------------------------*/
/* animation */

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(30%, 0);
  transition: 1s;
}

.fadeIn_right.is-show {
  transform: translate(20%,-50%);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-15%, 0);
  transition: 1s;
}

.fadeIn_left.is-show {
  transform: translate(0%, 0);
  opacity: 1;
}

.fade_delay {
  transition-delay: 0.1s; 
}

.fade_delay.is-show {
  opacity: 1;
  transform: translateY(0px); 
}

.fade_delay02 {
  transition-delay: 0.2s; 
}

.fade_delay02.is-show {
  opacity: 1;
  transform: translateY(0px); 
}

/*-------------------------------------------------------------*/
/* kv */

.kv-inner {
  position: relative;
}

.kv-name {
  position: absolute;
  left: 40px;
  top: 150px;
  font-weight: 900;
  color: white;
  letter-spacing : 3.2px;
  writing-mode: vertical-rl;
}

.kv-name-img {
  display: block;
  width: 12px;
  height: auto;
}

.kv-title {
  position: absolute;
  left: 23.43vw;
  top: 50%;
  transform: translate(0,-50%);
  width: 407px;
}



.kv-slide .slick-next {
  right: 0;
}

@media screen and (max-width: 767px) {
  .kv-title-wrap {
		position:absolute;
    max-width: 256px;
		top:50%;
		
  }

  .kv-title {
    position: static;
    width: 256px
  }
}

/*-------------------------------------------------------------*/
/* design */

.home-design {
  position: relative;
  background: #EFEFEF;
  padding: 280px 0 130px;
}

.home-design-logo {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 184px;
  z-index: 1;
}

.home-design-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1380px;
  margin-left: auto;
}

.home-design-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing : 7.6px;
  margin-bottom: 60px;
}

.home-design-text {
  font-weight: 600;
  line-height : 34px;
}

.home-design-slide {
  flex: 1;
  max-width: 940px;
  overflow: hidden;
}
.slick-slider div { 
	transition: none;
}
.home-design-slide .slick-list {
  padding: 0 30% 0 0!important;
}

.home-design-slide-item {
  margin: 0 10px;
}

.home-design-slide .slick-dots {
  bottom: -60px;
  margin: 0;
}

.home-design-slide .slick-dots li {
  margin: 0;
}

.home-design-slide .slick-dots li button::before {
  font-size: 10px;
}

@media screen and (max-width: 1410px) {
  .home-design-inner {
    max-width: calc(100% - 30px);
  }
}

@media screen and (max-width: 767px) {
  .home-design {
    padding: 250px 0 105px;
  }

  .home-design-inner {
    display: block;
    max-width: 100%;
  }

  .home-design-logo {
    top: -50px;
    width: 139px;
  }

  .home-design-main {
    padding: 0 25px;
    margin-bottom: 75px;
  }

  .home-design-title {
    font-size : 33px;
    letter-spacing : 6.6px;
  }

  .home-design-text {
    font-size : 15px;
  }

  .home-design-slide {
    width: calc(100% - 35px);
    margin-left: auto;
  }

  .home-design-slide-item {
    margin: 0 7px;
  }

  .home-design-slide .slick-dots {
    bottom: -50px;
    margin: 0;
  }
}

/*-------------------------------------------------------------*/
/* brand */

.home-brand {
  padding-top: 205px;
  padding-bottom: 160px;
}

.home-brand-title {
  font-size : 38px;
  font-weight: 900;
  letter-spacing : 7.6px;
  text-align: center;
  margin-bottom: 20px;
}

.home-brand-note {
  font-size : 12px;
  font-weight: 600;
  text-align: center;
}

.home-brand-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  max-width: 832px;
  margin: 112px auto 45px;
}

.home-brand-list li {
  width: 208px;
}

.home-brand-list li.lg {
  width: 416px;
}

.home-brand-list li a {
  transition: .3s;
}

.home-brand-list li a:hover {
  opacity: .6;
}

.home-brand-link {
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

.home-brand-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1460px;
  margin-top: 255px;
  margin-right: auto;
}

.home-brand-slide {
  flex: 1;
  max-width: 940px;
  overflow: hidden;
}

.home-brand-slide .slick-list {
  padding: 0 0 0 30% !important;
}

.home-brand-slide-item {
  margin: 0 15px;
}

.home-brand-slide .slick-dots {
  bottom: -60px;
  margin: 0;
}

.home-brand-slide .slick-dots li {
  margin: 0;
}

.home-brand-slide .slick-dots li button::before {
  font-size: 10px;
}

.home-brand-main-title {
  font-size : 34px;
  font-weight : 700;
  letter-spacing : 6.8px;
  margin-bottom: 55px;
}

.home-brand-text {
  font-weight: 600;
  line-height : 34px;
}

@media screen and (max-width: 1410px) {
  .home-brand-main {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .home-brand {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home-brand-title {
    font-size : 33px;
    letter-spacing : 6.6px;
  }

  .home-brand-list {
    margin: 70px auto 50px;
  }

  .home-brand-list li {
    width: 50%;
  }

  .home-brand-list li.lg {
    width: 100%;
  }

  .home-brand-inner {
    display: block;
    margin-top: 95px;
  }

  .home-brand-slide {
    width: calc(100% - 35px);
  }

  .home-brand-slide-item {
    margin: 0 7px;
  }

  .home-brand-slide .slick-dots {
    bottom: -50px;
  }

  .home-brand-main {
    padding: 0 25px;
    margin-top: 110px;
  }

  .home-brand-main-title {
    font-size : 28px;
    letter-spacing : 5.6px;
  }

  .home-brand-text {
    font-size : 15px;
  }
}

/*-------------------------------------------------------------*/
/* shop */

.home-shop {
  background: #EFEFEF;
  padding-top: 110px;
  padding-bottom: 135px;
}

.home-shop-title {
  font-size : 38px;
  letter-spacing : 7.6px;
  font-weight: 900;
  text-align: center;
}

.home-shop-list {
  display: flex;
  gap: 20px;
  max-width: 1130px;
  margin: 85px auto 0;
}

.home-shop-item {
  background: white;
  width: calc((100% - 40px) / 3);
  padding: 30px;
}

.home-shop-main {
  position: relative;
}

.home-shop-name {
  font-weight : 700;
  font-size : 17px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.home-shop-text {
  font-size : 15px;
  font-weight: 600;
  line-height : 24px;
}

.home-shop-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 600;
  letter-spacing : 3.2px;
  border: solid 1px #000;
  padding: 7px 16px;

  background-color: #fff;
  background-image: linear-gradient(135deg, #000 50%, transparent 50%);
  background-position: 100%;
  background-size: 300%;
  transition: 200ms ease-in-out;

	
}
.home-shop-btn:after{
	display:block;
	content:'';
	width:15px;
	height:19px;

	  background-image:url(../images/home/pin.svg);
}

.home-shop-btn:hover::after{
	display:block;
	content:'';
	width:15px;
	height:19px;
  transition:5s;
	animation: home-shop-btn-anime 0.5s ease;
	animation-fill-mode: forwards;
  animation-delay:0s; 
}

@keyframes home-shop-btn-anime {
  100% {

    background-image: url(../images/home/pin_hover.svg); 
  }
}
.home-shop-btn > img {
  width: 11px;
  transition: 500ms ease-in-out;
}

.home-shop-btn:hover {
  background-position: 0;
  color: white;
}


@media screen and (max-width: 920px) {
  .home-shop-list {
    display: block;
    padding: 0 10px;
  }
  .home-shop-item {
    width: 100%;
  }

  .home-shop-item + .home-shop-item {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .home-shop {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .home-shop-title {
    font-size : 33px;
    letter-spacing : 6.6px;
  }

  .home-shop-name {
    font-size : 16px;
    margin-bottom: 10px;
  }

  .home-shop-text {
    font-size : 14px;
    line-height : 23px;
  }

  .home-shop-btn {
    font-size: 15px;
    letter-spacing : 3px;
    border: solid 1px #000;
    padding: 9px 15px;
  }
}

/*-------------------------------------------------------------*/
/* staff */

.home-staff {
  background: #F3BB43;
  padding-top: 58px;
  padding-bottom: 58px;
}

.home-staff-inner {
  display: flex;
  gap: 60px;
  max-width: 650px;
  margin: auto;
}

.home-staff-img {
  width: 219px;
}

.home-staff-title {
  font-size : 70px;
  font-weight: 900;
  color : #25394D;
}

.home-staff-text {
  font-size : 15px;
  font-weight: 600;
  line-height : 24px;
  color : #25394D;
  margin-bottom: 36px;
}

.home-staff-btn {
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 2px;
  color : #25394D;
  background: white;
  border-radius: 30px;
  max-width: 200px;
  padding: 13px 10px;
  transition: .3s;
}

.home-staff-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 12px;
  aspect-ratio: 1;
  background-color: #25394D;
  transition: .3s;
}

.home-staff-btn:hover {
  color : white;
  background: #25394D;
}

.home-staff-btn:hover::after {
  background-color: white;
}

@media screen and (max-width: 767px) {
  .home-staff {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  .home-staff-inner {
    display: block;
  }

  .home-staff-img {
    width: 189px;
    margin: 0 auto 30px;
  }

  .home-staff-title {
    font-size : 53px;
    text-align: center;
  }

  .home-staff-text {
    margin-top: 35px;
    margin-bottom: 55px;
  }

  .home-staff-btn {
    margin: auto;
  }
}

.main.company,
.main.contact {
  padding-top: 100px;
}

.title-h1{
	font-size:36px;
	font-weight:bold;
	letter-spacing:0.2em;
	margin-bottom:40px;
	position:relative;
}

.title-h1:after{
	content:'';
	width:160px;
	display:block;
	border-top:1px solid #666;
	position:absolute;
	top:30px;
	left:250px;
	
}
.title-ja{
	font-size:16px;
	letter-spacing:0.05em;
}
.title-box{

}

body#company,
body#contact{
	background:#efefef;
}

.main{
	/* padding-top:100px; */
	padding-bottom:100px;
}
#home .main{
	padding-bottom:0;
}
.title-box{
	padding-top:130px;
}


.company-logo-box{
	text-align:center;
}

.company-logo{
	max-width:140px;
	margin:0 auto 20px auto;
}
.company-mission{
	font-size:36px;
	letter-spacing:0.2em;
	font-weight:bold;
}

.company-mission-sub{
	font-size:16px;
	letter-spacing:0.1em;
	margin-bottom:30px;
}

.company-mission-text{
	font-size:18px;
	letter-spacing:0.05em;
	line-height:1.8;
	margin-bottom:80px;
}
.company-table{
	max-width:580px;
	margin:0 auto;
	border-bottom:1px solid #666;
}
.company-table dl{
	border-top:1px solid #666;
	padding:40px 0;
	letter-spacing:0.05em;
}
.company-table dl dt{
	color:#666;
}




.contact-contents-inner .error{
	color:#ff0000;
	margin-top:5px;
	display:inline-block;
}

.contact-contents-inner .selectbox .error{
	display:none;
}
.contact-contents-inner{
	max-width:640px;
}

.contact-sub{
	font-size:30px;
	font-weight:600;
	margin-bottom:40px;
}
.contact-sub-text{
	font-size:16px;
	line-height:1.8;
	margin-bottom:100px;
}

.contact-kome{
	color:#ff0000;
	font-size:20px;

	display:inline-block;
	padding-top:8px;
}
.contact-table select{
	width:100%;
	background:#fff;
	border-radius:0;
	padding:15px;
	color:#333;
}
.contact-table input{
	width:100%;
	padding:15px;
}
.contact-table textarea{
	width:100%;
	padding:15px;
	background:#fff;
	border-radius:0;
	border:0;
	height:234px;
	
}
.contact-table .selectbox {
	display: block;
	position:relative;
	border-radius: 5px;

	padding-right: 15px;
	width:100%;
	background:#fff;
	border-radius:0;
	
}
.contact-table .selectbox::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 48%;

	right: 15px;

  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
}
.contact-table sup{
	color:#ff0000;
	font-size:20px;
}
.contact-input-name{
	display:flex;
	justify-content: space-between;
}

.contact-input-name li{
	width:48%;
	
}

.contact-table dl{
	margin-bottom:30px;
}
.contact-table dt{
	margin-bottom:10px;
}
.contact-btn-box{
		text-align:center;
}
.contact-btn{
	background:transparent;
	border:1px solid #333;
	color:#333;
	padding:10px 0;
	display:inline-block;
	width:200px;
	border-radius:100vw;
	cursor: pointer;
	position:relative;
}

.contact-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.contact-btn-text{
	margin-top:50px;
	margin-bottom:40px;
	text-align:center;
	line-height:1.6;
}
.contact-thanks-contents-inner{
	text-align:center;
	margin-top:100px;
}
.contact-thanks-image-box{
	margin-bottom:45px;
}

.contact-thanks-image-box img{
	max-width:92px;
}



.contact-thanks-btn-box a{
	background:transparent;
	border:1px solid #333;
	color:#333;
	padding:10px 0;
	display:inline-block;
	width:200px;
	border-radius:100vw;
	cursor: pointer;
	position:relative;
}


.contact-thanks-btn-box a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .main.company,
  .main.contact {
    padding-top: 150px;
  }

	.contact-sub {
	  font-size: 24px;

	}
	.company-mission-text{
		margin-bottom:30px;
	}
	.contact-sub-text {

	  margin-bottom: 20px;
	}


.contact-thanks-contents-inner{
	text-align:center;
	margin-top:0px;
}
}
/*-------------------------------------------------------------*/
/* lower */



@media screen and (max-width: 767px) {
	.title-h1{
		font-size:24px;

	}
	.title-h1:after{
		content:'';
		width:80px;
		display:block;
		border-top:1px solid #666;
		position:absolute;
		top:20px;
		left:150px;
		
	}

	body#company .title-box,
	body#contact .title-box{
		padding-top:0px;
	}


}







/*-------------------------------------------------------------*/
/*  */

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

/*-------------------------------------------------------------*/
/*  */

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

/*-------------------------------------------------------------*/
/*  */

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

