@charset "UTF-8";
/* _main.scss */
/*
pc:1300px↑
tab:768px~
sp:375px~
*/
* {
  box-sizing: border-box;
  font-size: 100%;
  line-height: 125%;
}

html {
  scroll-padding-top: 80px;
}

html,
body,
div,
h1,
h2,
h3,
ul,
li,
table,
tr,
td,
form {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

h1,
h2,
h3 {
  font-weight: unset;
}

li {
  list-style-type: none;
}

/************************/
* {
  font-family: "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
}

div.wrapper > div {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
div.wrapper h2 {
  position: relative;
  color: #1a4e8e;
  font-size: 20px;
  padding: 12.5px 0;
  text-align: center;
  margin: 1.5em auto 2em;
  font-weight: bold;
}
div.wrapper h2::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 160px;
  height: 58px;
  border-radius: 50%;
  border: 4px dotted rgba(26, 78, 142, 0.4);
  border-left-color: transparent;
  border-right-color: transparent;
  transform: translateX(-50%);
}

header {
  position: relative;
}
header .slide {
  width: 100%;
  height: 300px;
  position: relative;
}
header .slide div {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow 30s linear infinite 0s;
  height: 100%;
  background-size: cover;
}
header .slide div:nth-of-type(1) {
  background-image: url(/pf01/image/header01.jpg);
  background-position-y: -80px;
}
header .slide div:nth-of-type(2) {
  background-image: url(/pf01/image/header02.jpg);
  animation-delay: 10s;
}
header .slide div:nth-of-type(3) {
  background-image: url(/pf01/image/header03.jpg);
  animation-delay: 20s;
}
header .slide div:nth-of-type(4) {
  background-image: url(/pf01/image/header04.jpg);
  animation-delay: 30s;
}
header .slide-caption {
  position: absolute;
  font-size: 120%;
  font-weight: bold;
  z-index: 10;
  top: 20px;
  left: 4vw;
  text-shadow: 1px 1px 2px #ccc;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
nav {
  width: 100%;
  background-color: #fff;
  border-top: 8px solid #1a4e8e;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  align-items: stretch;
  margin-bottom: 20px;
  z-index: 20;
}
nav .nav_link {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 10px auto;
}
nav .nav_link h1 {
  margin-top: 0;
  padding-left: 0;
  text-align: left;
  border-right: 0px;
  font-weight: bold;
  color: #1a4e8e;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  display: inline;
}
nav .nav_link ul {
  display: flex;
  padding-left: calc((100% - 1100px) * 0.5);
  padding-right: calc((100% - 1100px) * 0.5);
  padding-top: 4px;
  padding-bottom: 4px;
  align-items: center;
  flex: 1;
  justify-content: left;
}
nav .nav_link ul li {
  height: 24px;
  padding: 0 16px;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  border-right: 1px solid #333;
}
nav .nav_link ul li:first-of-type {
  flex-grow: 1;
  text-align: left;
}
nav .nav_link a {
  color: #333;
  text-decoration: none;
}
nav .nav_link a:hover {
  text-decoration: underline;
}

.wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding-bottom: 80px;
  box-sizing: content-box;
}
.wrapper > div {
  width: auto;
}

.tabList {
  height: 100%;
  min-height: 300px;
}
.tabList input {
  display: none;
}

.tabPage {
  width: 90vw;
  display: flex;
  flex-wrap: wrap;
}
.tabPage label {
  width: calc((100% - 3px) / 4);
  height: 50px;
  background-color: aqua;
  order: -1;
  font-size: 24px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
  transition: all linear 0.5s;
  background-color: #fff;
  color: #ddd;
  border: 2px solid #ddd;
  border-bottom: none;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: 1px;
}
.tabPage label:nth-of-type(1) {
  margin-left: 0px;
}
.tabPage .tab-content {
  display: none;
  width: 100%;
  height: 400px;
  padding: 26px 30px 30px 30px;
}
.tabPage input:checked + label {
  background-color: #3b7bbf;
  color: #fff;
  border: 2px solid #3b7bbf;
  border-bottom: none;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tabPage input:checked + label:nth-of-type(1) {
  background-color: #ff6e61;
  color: #fff;
  border: 2px solid #ff6e61;
  border-bottom: none;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tabPage input:checked + label:nth-of-type(2) {
  background-color: #00ac97;
  color: #fff;
  border: 2px solid #00ac97;
  border-bottom: none;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tabPage input:checked + label:nth-of-type(3) {
  background-color: #ffcb5c;
  color: #fff;
  border: 2px solid #ffcb5c;
  border-bottom: none;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tabPage input:checked + label:nth-of-type(4) {
  background-color: #3b7bbf;
  color: #fff;
  border: 2px solid #3b7bbf;
  border-bottom: none;
  opacity: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tabPage input:checked + label + .tab-content {
  display: inline-block;
  transition: all linear 0.5s;
  min-height: 240px;
  border: 4px solid #3b7bbf;
  border-top: 2px solid #3b7bbf;
}
.tabPage input:checked + label + .tab-content:nth-of-type(1) {
  border: 4px solid #ff6e61;
  background: #aaa url(image/header01.jpg) no-repeat;
  background-blend-mode: screen;
  background-size: cover;
}
.tabPage input:checked + label + .tab-content:nth-of-type(2) {
  border: 4px solid #00ac97;
  background: #aaa url(image/header02.jpg) no-repeat;
  background-blend-mode: screen;
  background-size: cover;
}
.tabPage input:checked + label + .tab-content:nth-of-type(3) {
  border: 4px solid #ffcb5c;
  background: #aaa url(image/header03.jpg) no-repeat;
  background-blend-mode: screen;
  background-size: cover;
}
.tabPage input:checked + label + .tab-content:nth-of-type(4) {
  border: 4px solid #3b7bbf;
  background: #aaa url(image/header04.jpg) no-repeat;
  background-blend-mode: screen;
  background-size: cover;
}

.tabImage {
  width: 1000px;
  height: 240px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.tabImage input:checked + label + .tab-content {
  display: block;
}
.tabImage label {
  width: 112px;
  height: 67px;
  margin: 0 0 8px 8px;
}
.tabImage label span {
  display: inline-block;
  width: 112px;
  height: 67px;
}
.tabImage .tab-content {
  display: none;
  width: 880px;
  height: 240px;
  border-left: 1px solid Gray;
  background-color: #ccc;
  order: -1;
  flex-grow: 1;
}
.tabImage .tab-content img {
  width: 60%;
  height: 100%;
}
.tabImage .tab-content .text {
  float: right;
  width: 400px;
  max-width: 55%;
  padding: 2%;
  margin: 1vw;
  background-color: #fff;
  opacity: 0.6;
  height: calc(100% - 2vw);
  border-radius: 4px;
  color: #000;
}
.tabImage .tab-content:nth-of-type(1) {
  background-image: url(image/header01.jpg);
  background-size: cover;
}
.tabImage .tab-content:nth-of-type(2) {
  background-image: url(image/header02.jpg);
  background-size: cover;
  background-position: 50% 50%;
}
.tabImage .tab-content:nth-of-type(3) {
  background-image: url(image/header03.jpg);
  background-size: cover;
}
.tabImage div.sampleColor01 {
  background-color: rgba(255, 203, 92, 0.4);
}
.tabImage div.sampleColor02 {
  background-color: rgba(90, 199, 226, 0.4);
}
.tabImage div.sampleColor03 {
  background-color: rgba(255, 110, 97, 0.4);
}
.tabImage span.sampleColor01 {
  background-color: #ffcb5c;
}
.tabImage span.sampleColor02 {
  background-color: #5ac7e2;
}
.tabImage span.sampleColor03 {
  background-color: #ff6e61;
}

.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.product > div {
  width: calc((100% - 30px) / 4);
  height: auto;
}
.product > div .photo {
  margin-bottom: 8px;
  background-color: #ccc;
}
.product > div .photo img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 100%;
  display: block;
  max-height: 190px;
}
.product > div .text {
  height: calc(100% - 190px + 24px);
  background-color: #ddebf1;
  padding: 12px 16px;
}

.company {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
}
.company table {
  width: 50%;
  margin-right: 30px;
}
.company table tr td {
  border-top: 2px solid #1a4e8e;
  padding-top: 16px;
  padding-bottom: 16px;
}
.company table tr td:nth-of-type(1) {
  border-right: 2px solid #1a4e8e;
  text-align: center;
  padding: 12px;
  white-space: nowrap;
  font-weight: bold;
  color: #1a4e8e;
}
.company table tr td:nth-of-type(2) {
  padding: 12px 0px 12px 20px;
}
.company table tr:first-of-type td {
  border-top: none;
}
.company div {
  width: calc(50% - 30px);
  background-color: #fff;
}
.company div img.index-map {
  width: 100%;
  height: auto;
}

.contact-form table {
  width: 700px;
  margin: 0 auto;
  padding: 0;
  border: 2px solid #1a4e8e;
}
.contact-form table tr {
  border-bottom: 2px solid #1a4e8e;
}
.contact-form table tr td {
  border: 1px solid #1a4e8e;
  padding: 8px;
  width: 70%;
}
.contact-form table tr td:first-of-type {
  width: 30%;
  margin-right: 3%;
  border-right: 1px solid #1a4e8e;
  color: #1a4e8e;
  font-weight: bold;
}
.contact-form input {
  width: 80%;
}
.contact-form input[type~=text] {
  height: 38px;
}
.contact-form input[name~=mail] {
  width: 80%;
}
.contact-form input.send {
  display: block;
  width: 180px;
  height: 40px;
  font-size: 24px;
  background-color: #ffcb5c;
  color: black;
  border: 0;
  margin: 20px auto;
}
.contact-form textarea {
  width: 100%;
  max-width: 713px;
  height: 141px;
}

.must::after {
  content: "必須";
  width: 40px;
  height: 20px;
  background-color: #ff6e61;
  color: white;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  float: right;
  margin-top: 0px;
  margin-right: 10px;
}

.contact-form ul {
  display: flex;
  flex-wrap: wrap;
}
.contact-form ul li {
  width: 25%;
}

footer {
  width: auto;
  background-color: #3b7bbf;
  color: #fff;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
footer div {
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 10px;
  text-align: right;
}

.pageTop {
  position: fixed;
  width: 80px;
  height: 80px;
  padding: 20px;
  bottom: 0px;
  right: 0px;
}

.pageTop__inner {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #00ac97;
  text-align: center;
  color: #fff;
  line-height: 40px;
  font-size: 30px;
  box-shadow: 2px 2px 4px #333;
  text-decoration: none;
}
.pageTop__inner:hover {
  opacity: 0.9;
}

/* _responsive.scss */
@media screen and (max-width: 769px) {
  html {
    scroll-padding-top: 70px;
  }
  div {
    font-size: 75%;
  }
}
@media screen and (max-width: 480px) {
  html {
    scroll-padding-top: 60px;
  }
}
@media screen and (max-width: 1200px) {
  header {
    font-size: 100%;
    width: 100%;
  }
  header .slide {
    height: calc(300px - 1vh);
  }
  header .slide-caption {
    left: 5%;
  }
}
@media screen and (max-width: 1000px) {
  header .slide {
    height: 30vw;
  }
  header .slide-caption {
    bottom: 3.4vw;
  }
}
@media screen and (max-width: 769px) {
  header .slide-caption {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 1200px) {
  nav {
    width: 100%;
    font-size: 100%;
  }
  nav .nav_link {
    padding-left: 4%;
    padding-right: 4%;
    max-width: none;
  }
  nav .nav_link ul {
    height: auto;
  }
}
@media screen and (max-width: 1100px) {
  nav .nav_link {
    padding-left: 4%;
    padding-right: 4%;
    margin: 0.6vw auto;
  }
  nav .nav_link ul li {
    height: auto;
    padding-left: 2%;
    padding-right: 2%;
    white-space: nowrap;
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 769px) {
  nav .nav_link h1 {
    height: 6.37vw;
  }
  nav .nav_link h1 img {
    height: 100%;
    width: auto;
  }
}

@media screen and (max-width: 1200px) {
  div.wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  div.wrapper {
    max-width: none;
    width: 84%;
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media screen and (max-width: 769px) {
  div.wrapper {
    padding-bottom: 40px;
    font-size: 75%;
  }
}
@media screen and (max-width: 480px) {
  div.wrapper h2 {
    font-size: 4vw;
    padding: 2.5vw 0;
  }
  div.wrapper h2::before {
    width: 34vw;
    height: 12vw;
  }
}

@media screen and (max-width: 1200px) {
  .wrapper_gray {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .wrapper_gray {
    padding: 30px 8vw;
  }
}

@media screen and (max-width: 769px) {
  .tabList {
    min-height: auto;
  }
}
@media screen and (max-width: 769px) {
  .tabPage label {
    font-size: 2.4vw;
    height: 4vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 480px) {
  .tabPage label {
    font-size: 4vw;
    height: 8vw;
    line-height: 8vw;
  }
}
@media screen and (max-width: 1100px) {
  .tabPage .tab-content {
    display: none;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1100px) {
  .tabPage input:checked + label + .tab-content:nth-of-type(1) {
    padding: 4% 4% 4%;
  }
  .tabPage input:checked + label + .tab-content:nth-of-type(1) img {
    width: 50%;
    height: auto;
    margin-left: 4%;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 1100px) {
  .tabPage input:checked + label + .tab-content:nth-of-type(2) {
    padding: 4% 4% 4%;
  }
  .tabPage input:checked + label + .tab-content:nth-of-type(2) img {
    width: 50%;
    height: auto;
    margin-right: 4%;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 1100px) {
  .tabPage input:checked + label + .tab-content:nth-of-type(3) {
    padding: calc(5vw - 4px) 5vw 5vw;
    height: auto;
    background-position-x: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .tabPage input:checked + label + .tab-content:nth-of-type(4) {
    padding: 4% 4% 4%;
  }
  .tabPage input:checked + label + .tab-content:nth-of-type(4) div {
    width: 50%;
    margin-left: 4%;
    margin-bottom: 8px;
    display: block;
    height: 30vw;
  }
  .tabPage input:checked + label + .tab-content:nth-of-type(4) div img {
    width: 24.5vw;
  }
  .tabPage input:checked + label + .tab-content:nth-of-type(4) div img:nth-of-type(2) {
    top: calc(14.7vw + 2px);
  }
}
@media screen and (max-width: 769px) {
  .tabPage input:checked + label + .tab-content:nth-of-type(4) div {
    min-height: auto;
    max-height: 240px;
  }
}

@media screen and (max-width: 1200px) {
  .tabImage {
    width: 100%;
  }
  .tabImage .tab-content {
    width: calc(100% - 120px - 0px);
  }
  .tabImage .tab-content .text {
    max-width: 70%;
  }
}
@media screen and (max-width: 769px) {
  .tabImage .tab-content {
    height: 100%;
  }
  .tabImage .tab-content .text {
    max-width: 100%;
    width: auto;
    font-size: 200%;
  }
}
@media screen and (max-width: 480px) {
  .tabImage {
    width: 100%;
    height: calc(60% + 90px);
    padding-bottom: 30px;
    flex-direction: row;
  }
  .tabImage label {
    width: calc((100% - 16px) / 3);
    padding: 0;
    margin: 8px 8px 0px 0px;
  }
  .tabImage label span {
    width: 100%;
    height: 100%;
  }
  .tabImage label span img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tabImage label:last-of-type {
    margin-right: 0px;
  }
  .tabImage .tab-content {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .product > div {
    box-sizing: content-box;
  }
  .product > div .text {
    box-sizing: content-box;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .product {
    font-size: 75%;
  }
  .product > div .text {
    box-sizing: content-box;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 769px) {
  .product {
    justify-content: space-between;
    height: auto;
    font-size: 3vw;
  }
  .product > div {
    width: 48%;
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
  }
  .product > div .photo {
    width: 100%;
    max-height: 30.962962963vw;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .product > div ul {
    margin-bottom: 8px;
  }
  .product > div .text {
    box-sizing: border-box;
    height: 21vw;
    padding: 2vw;
  }
}
@media screen and (max-width: 480px) {
  .product {
    flex-direction: column;
  }
  .product > div {
    width: 84vw;
    max-width: none;
  }
  .product > div .photo {
    width: 84vw;
    height: 56.2314049587vw;
    max-height: none;
  }
  .product > div .photo img {
    max-height: none;
  }
  .product > div .text {
    font-size: 2.6vw;
  }
}

@media screen and (max-width: 480px) {
  .company {
    flex-direction: column;
  }
  .company table {
    width: 100%;
    margin-bottom: 20px;
  }
  .company div {
    width: 100%;
  }
  .company div img.index-map {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 300px;
  }
}

@media screen and (max-width: 1000px) {
  .contact-form {
    margin: 0 auto;
  }
}
@media screen and (max-width: 769px) {
  .contact-form {
    width: 100%;
    margin: 0;
  }
  .contact-form table {
    width: 100%;
    font-size: 2vw;
  }
  .contact-form input[type~=text] {
    width: 100%;
    height: 2.2vh;
  }
}

@media screen and (max-width: 769px) {
  .must::after {
    width: 32px;
    height: 16px;
    font-size: 10px;
    line-height: 18px;
    margin-right: 0px;
    margin-top: -4px;
  }
}
@media screen and (max-width: 480px) {
  .must::after {
    width: 5.4vw;
    height: 3.6vw;
    font-size: 1.8vw;
    line-height: 3.6vw;
  }
}

@media screen and (max-width: 1100px) {
  footer div {
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 480px) {
  footer {
    font-size: 75%;
  }
}/*# sourceMappingURL=style.css.map */