@charset "utf-8";

html, body {
  height: 100%;
  font-family: 'Noto Serif JP', serif;
}

body, text {
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 1.6;
  font-size: 17px;
  margin: 0;
  color: #282828;
  background-color: #f7f7f7;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

label, button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a:hover {
  color: #282828;
}

::-moz-focus-inner {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

h1, h2, h3, h4, p {
  margin: 0;
  font-size: 100%;
  font-weight: 500;
}

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

input, input [type="text"], textarea {
  font-size: 16px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}


/* Common
-----------------------------------------------------*/
.contents_wrap {
  padding: 130px 0;
  overflow: hidden;
}

.subpage .contents_wrap {
  padding: 200px 0 130px;
  overflow: hidden;
}

.contents_wrap2 {
  padding: 0 0 130px;
  overflow: hidden;
}

.contents_inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
/* under 1200 ------------------------- */
@media (max-width: 1200px) {
.contents_wrap {
padding: 100px 0;
}

.subpage .contents_wrap {
  padding: 160px 0 100px;
}

.contents_wrap2 {
padding: 0 0 100px;
}
}

/* under 800 ------------------------- */
@media (max-width: 800px) {
.contents_wrap {
padding: 50px 0;
}

.subpage .contents_wrap {
  padding: 100px 0 50px;
}

.contents_wrap2 {
padding: 0 0 50px;
}
}


/* main visual area
-----------------------------------------------------*/
.mv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url(https://mitoyojuki.com/image/mv.jpg);
  background-position: center center;
  background-size: cover;
}

.main_logo {
  position: absolute;
  width: 400px;
  top: 40px;
  left: 60px;
}

/* under 800 ------------------------- */
@media (max-width: 800px) {
.main_logo {
  width: 280px;
  top: 20px;
  left: 20px;
}
}


/* Scroll down ------------------------- */
.hero__scroll {
  position: absolute;
  color: #fff;
  text-align: center;
  font-size: 80%;
  font-weight: 600;
  letter-spacing: 3px;
  text-indent: 3px;
  display: block;
  top: auto;
  right: 0;
  bottom: 50px;
  left: 0;
  margin: auto;
  text-transform: uppercase;
  font-family: 'Noto Serif JP', serif;
}

.hero__scroll img {
  width: 20px;
}

.hero__scroll .chevron {
  display: block;
  margin-top: 10px;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
50% {
-webkit-transform: translate(0, 10px);
transform: translate(0, 10px); }
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }}

@keyframes pulse {
0% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);}
50% {
-webkit-transform: translate(0, 10px);
transform: translate(0, 10px);}
  100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);}}

/* under 800 ------------------------- */
@media screen and (max-width : 800px) {
.hero__scroll {
  bottom: 30px;
}
}


/* top page
-----------------------------------------------------*/
.message_bg {
  background-image: url(https://mitoyojuki.com/image/juki.jpg);
  background-position: center center;
  background-size: cover;
}

.subpge .message_bg {
  background-image: url(https://mitoyojuki.com/image/juki.jpg);
  background-position: center center;
  background-size: cover;
  height: 500px;
}
@media screen and (max-width : 800px) {
.subpge .message_bg {
  height: 300px;
}
}

.message {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.block_title {
  background-color: #282828;
  color: #fff;
  margin-bottom: 70px;
  padding: 15px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
}

.box_wrap {
  overflow: hidden;
}

.box_left {
  float: left;
  width: 50%;
}

.box_right {
  float: right;
  width: 45%;
}

.company_list li {
  overflow: hidden;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #000;
}

.company_list li:first-child {
  padding: 0 0 10px;
}

.li_title {
  width: 120px;
}

.li_text {
  flex: 1;
}

.juki_list li {
  padding: 10px 0;
  border-bottom: 1px solid #000;
}

.juki_list li:first-child {
  padding: 0 0 10px;
  font-weight: 700;
}


.maker, .number, .work {
  display: inline-block;
  width: 32%;
  text-align: center;
}

/* under 800 ------------------------- */
@media screen and (max-width : 800px) {
.message {
  font-size: 18px;
}

.block_title {
  margin-bottom: 30px;
  padding: 10px 0;
  font-size: 18px;
}

.box_left, .box_right {
  float: none;
  width: 100%;
}

.box_right {
  margin-top: 30px;
}

.company_list li {
  display: block;
}

.li_title {
  width: 100%;
  font-weight: 700;
}
}


/* contact area
-----------------------------------------------------*/
#formWrap {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  padding: 1px;
}

input#formbutton {
  cursor: pointer;
  -webkit-appearance: none;
  width: 140px;
  padding: 15px 0;
  margin: 0 5px;
  background-color: #282828;
  border: 1px solid #282828;
  border-radius: 50px;
  letter-spacing: 2px;
  text-indent: 2px;
  text-align: center;
  transition: .2s;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
}

#formbutton:hover {
  background-color: #fff;
  color: #282828;
}

.input_area {
  width:100%;
  background-color: #fff;
  border: none;
  height: 60px;
  padding: 10px 20px;
  margin: 5px 0 40px;
  -webkit-appearance: none;
  border-radius: 10px;
  border: 1px solid #b6b6b6;
}

.input_area2 {
  width:100%;
  background-color: #fff;
  border: none;
  padding: 20px 20px;
  -webkit-appearance: none;
  border-radius: 10px;
  border: 1px solid #b6b6b6;
}

input[type="text"]:focus {
  outline: none;
  border: 1px solid #282828;
}

textarea:focus {
  outline: none;
  border: 1px solid #282828;
}

::placeholder {
  letter-spacing: 2px;
  color: #4f483b;
  font-family: 'Noto Serif JP', serif;
}

.hissu {
  color: #cf4e0e;
  font-size: 14px;
}

.policy {
  margin-top: 50px;
}

.policy1 {
  margin-bottom: 10px;
  text-align: center;
}

.policy2 {
  font-size: 90%;
  text-align: center;
}

.error_messe {
  margin:5px 0;
  color:#d79555;
  font-weight: 600;
}

.gotop a {
  background-color: #282828;
  border: 1px solid #282828;
  display: block;
  margin: 60px auto 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 250px;
  padding: 20px 0;
  border-radius: 50px;
}

.gotop a:hover {
  background-color: #fff;
  border: 1px solid #282828;
  color: #282828;
}

/* under 800
-----------------------------------------------------*/
@media (max-width: 800px) {
#formWrap {
  padding-bottom: 0;
}

::placeholder {
  font-size: 14px;
}

.input_area {
  margin: 5px 0 20px;
}

.hissu {
  font-size: 13px;
}

.policy {
  margin-top: 30px;
}

.policy2 {
  text-align: left;
}
}


/* footer
-----------------------------------------------------*/
footer {
  background-color: #282828;
  color: #fff;
  padding: 80px 0;
}

.foot_logo {
  width: 350px;
  margin: 0 auto 30px;
}

address {
  font-style: normal;
}

.map a {
  margin: 10px 0 0;
  font-size: 13px;
  text-decoration: underline;
  display: block;
  color: #fff;
}

.map a:hover {
  color: #fff;
}

.copy {
  font-size: 13px;
  text-align: center;
  margin-top: 50px;
}

/* under 800 ------------------------- */
@media screen and (max-width : 800px) {
footer {
  padding: 40px 0 100px;
}

.foot_logo {
  width: 280px;
}
}


/* Other ------------------------- */
.block_ttl {
  color: #01153a;
  margin-bottom: 20px;
  font-size: 90px;
  letter-spacing: 15px;
  line-height: 70px;
}

.center {
  text-align: center;
}

.cta {
bottom: -100px;
  opacity: 0;
  position: fixed;
  z-index: 100;
  width: 250px;
  right: 20px;
  padding: 0 0 20px;
}
@media (max-width: 800px) {
.cta {
  width: 200px;
}
}

.cta img {
  width: 100%;
}

.link_btn a {
  display: block;
  width: 250px;
  margin: 30px 0 0;
}
@media (max-width: 800px) {
.link_btn a {
  width: 200px;
}
}

.link_btn2 a {
  display: block;
  width: 250px;
  margin: 10px 0 0;
  background-color: #ff9d02;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  padding: 15px 0;
}
@media (max-width: 800px) {
.link_btn2 a {
  width: 200px;
  font-size: 18px;
  padding: 10px 0;
}
}

.accordion-content {
    display: none;
}

.accordion-header {
    background-color: #e8e8e4;
    position: relative;
    padding: 15px 40px 15px 25px;
    margin: 10px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
@media (max-width: 800px) {
.accordion-header {
    padding: 15px 50px 15px 15px;
}
}

.question-icon {
    color: #686350;
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 0 15px 0 0;
}
@media (max-width: 800px) {
.question-icon {
    margin: 0 8px 0 0;
}
}

.accordion-header::before,
.accordion-header::after{
    position: absolute;
    content:'';
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 12px;
    height: 2px;
    margin: auto;
    background: #686350;
}

.accordion-header::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
    background-color: #fff;
    padding: 12px 20px;
}

.accordion-header:hover {
    background-color: #ddddd7;
}

.contact_message {
  margin: 0 0 30px;
}

.largefont {
  font-size: 118%;
}

/* under800
----------------------------------------------------- */
@media screen and (max-width: 800px) {
body,text {
  font-size: 15px;
}

.pc {
  display: none;
}
}

/* over 800 ------------------------- */
@media (min-width : 801px) {
  .spbr, .sp {display: none;}
}

