/*PC用css*/
/* Reset styles */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    min-height: 100%;
    overflow-x: hidden;
}

h5,
h4,
h2,
p,
a,
label {
    color: #666666;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main {
    position: relative;
    background: #fff;
}

.main_contents {
    position: relative;
    width: 80%;
    left: 10%;
    margin: 50px 0;
}


/*mainタイトル「機械加工関連」*/
.title h4 {
    position: relative;
    font-size: 2.5rem;
}

.title h5 {
    position: relative;
    font-size: 2.2rem;
}

.feedin {
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
    opacity: 0;
    transition-delay: 0.3s;
}

.feedin.show {
    opacity: 1;  
    transform: translateX(0);
}