@charset "UTF-8";
/*
Theme Name: 
Theme URI: https://www.rei-tech.co.jp/
Description: rei-techサイトテーマ
Version: 1.0
Author: TOKON ( masayoshi mizuho )
Author URI: https://tokon.co.jp/
*/
/* Box sizing rules */
/* Box sizingの定義 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

/* ------------------------------------------
ブレイクポイントの設定
↓ sample
@include mq(max-sp){ }
-------------------　mixin　-----------------*/
@media screen and (min-width: 768px) {
  .max-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .min-tab {
    display: none;
  }
}

[data-aos=fade-up] {
  opacity: 0;
  transform: translateY(50px);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}

[data-aos=fade-up].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 14px;
  line-height: 2rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}

a {
  color: #666;
  text-decoration: none;
}

a:hover {
  color: #999;
}

a:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
h2 {
  line-height: 1.3em;
}

p {
  margin: 15px 0px 15px 0px;
}

img {
  vertical-align: bottom; /*imgの隙間防止*/
  border: 0;
}

a:hover img { /*リンクされた画像*/
  opacity: 0.7;
  filter: alpha(opacity=60);
}

/* design
---------------------------*/
h1 a:hover {
  text-decoration: none;
}

article {
  margin: 70px 0;
}

.bluestripe {
  background-image: url(img/title.png);
}

.bluestripe2 {
  background-image: url(img/bluestripe2.png);
}

.whitebox {
  background-color: #ffffff;
}

header {
  padding: 0;
  height: 80px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

footer {
  padding-top: 3px;
  height: 6vw;
  min-height: 115px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 0.8rem;
  }
}
footer .footer_wrap {
  display: flex;
  justify-content: space-between;
  padding: 20px 44px 72px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  footer .footer_wrap {
    justify-content: center;
    padding: 20px 44px 20px;
  }
}
footer .footer_wrap ul.nav_ul {
  list-style: none;
  display: flex;
  margin-left: 30px;
}
@media screen and (max-width: 1024px) {
  footer .footer_wrap ul.nav_ul {
    display: none;
  }
}
footer .footer_wrap ul.nav_ul li.nav_li {
  position: relative;
}
footer .footer_wrap ul.nav_ul li.nav_li a {
  text-decoration: none;
  transition: all 0.3s;
  padding: 10px 15px;
  position: relative;
  color: #000;
}
footer .footer_wrap ul.nav_ul li.nav_li a.btn_drop::after {
  content: "\f054"; /* chevron-right の Unicode */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.3s ease; /* 回転のトランジションを設定 */
}
footer .footer_wrap ul.nav_ul li.nav_li a.btn_drop:hover::after {
  transform: rotate(90deg);
  color: #006AB7;
}
footer .footer_wrap ul.nav_ul li.nav_li ul.drop_ul {
  background-color: white;
  flex-direction: column;
  opacity: 0;
  width: fit-content;
  position: absolute;
  white-space: nowrap;
  bottom: 35px;
  right: 0;
  transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  box-shadow: 0px 5px 7px rgba(102, 102, 102, 0.6);
  z-index: 101;
}
footer .footer_wrap ul.nav_ul li.nav_li ul.drop_ul li.drop_li {
  position: relative;
}
footer .footer_wrap ul.nav_ul li.nav_li ul.drop_ul li.drop_li a {
  width: 100%;
  display: block;
}
footer .footer_wrap ul.nav_ul li.nav_li ul.drop_ul li.drop_li a:hover {
  background-color: #d5effc;
}
footer .footer_wrap ul.nav_ul li.nav_li:hover ul.drop_ul {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}
footer .copyright {
  color: #868686;
  font-size: 12px;
  padding-bottom: 20px;
}

.navwrap {
  background-color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px 30px;
  position: fixed;
  z-index: 90;
}
@media screen and (min-width: 1025px) {
  .navwrap {
    justify-content: space-between;
  }
}
.navwrap h1 a {
  display: block;
  width: fit-content;
  width: 177px;
  height: 48px;
  font-size: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .navwrap input {
    display: none;
  }
  .navwrap label {
    display: none;
  }
  .navwrap nav ul.nav_ul {
    list-style: none;
    display: flex;
    margin-left: 30px;
  }
  .navwrap nav ul.nav_ul li.nav_li {
    position: relative;
    letter-spacing: 1.4px;
  }
  .navwrap nav ul.nav_ul li.nav_li a {
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 15px;
    position: relative;
    color: #000;
  }
  .navwrap nav ul.nav_ul li.nav_li a:hover {
    color: #006AB7;
  }
  .navwrap nav ul.nav_ul li.nav_li a.btn_drop::after {
    content: "\f054"; /* chevron-right の Unicode */
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    display: inline-block;
    margin-left: 0.5em;
    transition: transform 0.3s ease; /* 回転のトランジションを設定 */
  }
  .navwrap nav ul.nav_ul li.nav_li a.btn_drop:hover::after {
    transform: rotate(90deg);
    color: #006AB7;
  }
  .navwrap nav ul.nav_ul li.nav_li ul.drop_ul {
    background-color: white;
    flex-direction: column;
    opacity: 0;
    width: fit-content;
    position: absolute;
    white-space: nowrap;
    top: 35px;
    left: -20px;
    transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
    visibility: hidden; /* 下層メニューを非表示 */
    box-shadow: 0px 5px 7px rgba(102, 102, 102, 0.6);
    z-index: 101;
  }
  .navwrap nav ul.nav_ul li.nav_li ul.drop_ul li.drop_li {
    position: relative;
  }
  .navwrap nav ul.nav_ul li.nav_li ul.drop_ul li.drop_li a {
    width: 100%;
    display: block;
  }
  .navwrap nav ul.nav_ul li.nav_li ul.drop_ul li.drop_li a:hover {
    background-color: #d5effc;
  }
  .navwrap nav ul.nav_ul li.nav_li:hover ul.drop_ul {
    opacity: 1; /* 不透明度を最大に */
    transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
    visibility: visible; /* 下層メニューを表示 */
  }
}
@media screen and (max-width: 1024px) {
  .navwrap {
    /* Hamburger menu button */
    /* Hamburger Menu Animation Start */
  }
  .navwrap .menu {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    top: 0;
    left: 0;
    margin: 0;
    padding: 18px 0 10px 16px;
    clear: both;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    background-color: rgba(0, 0, 0, 0.6);
    /* Hamburger menu text */
    /* 回転アニメーション */
  }
  .navwrap .menu a {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 1em;
    text-transform: capitalize;
    color: #ffffff;
    opacity: 0;
    transition: 0.5s;
  }
  .navwrap .menu .toggle_submenu {
    display: inline-block;
    cursor: pointer;
    position: relative;
  }
  .navwrap .menu .toggle_submenu::before {
    content: "\f078"; /* chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    display: inline-block;
    color: #ffffff;
    transition: transform 0.3s ease;
    transform-origin: center;
    padding: 5px 20px 5px 20px;
  }
  .navwrap .menu .nav_li.open .toggle_submenu::before {
    transform: rotate(-180deg);
  }
  .navwrap .menu .drop_ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease, opacity 0.8s ease;
    padding: 0 !important;
  }
  .navwrap .menu .nav_li.open .drop_ul {
    max-height: 1000px;
    opacity: 1;
  }
  .navwrap .menu ul {
    margin: 0;
    list-style: none;
  }
  .navwrap .menu ul li {
    padding: 10px 20px;
    margin: 0;
    opacity: 0;
    transition: 0.5s;
  }
  .navwrap .menu ul li.btn_entry a {
    display: none;
  }
  .navwrap .menu .nav_ul {
    padding: 50px 0 0 0;
  }
  .navwrap .menu .nav_oya {
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: space-between;
  }
  .navwrap .menu .drop_ul {
    border-left: solid 1px #ccc;
    margin-left: 10px;
  }
  .navwrap .menu .nav_insta a {
    background-image: url(img/insta-icon.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
    width: 45px;
    height: 46px;
  }
  .navwrap .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navwrap .menu-btn:checked ~ .menu a,
  .navwrap .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  .navwrap .menu-btn {
    display: none;
  }
  .navwrap .menu-icon {
    display: inline-block;
    position: absolute;
    z-index: 100;
    top: 7px;
    right: 15px;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .navwrap .navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navwrap .navicon:before,
  .navwrap .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .navwrap .navicon:before {
    top: 9px;
  }
  .navwrap .navicon:after {
    bottom: 9px;
  }
  .navwrap .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  .navwrap .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  .navwrap .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .navwrap .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  .navwrap .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
}

.footer_contact .flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #ffffff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer_contact .flex-box {
    display: block;
  }
}
.footer_contact .flex-box .front_form {
  border-right: solid 1px #ffffff;
}
.footer_contact .flex-box .front_form img {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .footer_contact .flex-box .front_form {
    border-right: none;
    border-bottom: solid 1px #ffffff;
  }
}
.footer_contact .flex-box .front_phone img {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .footer_contact .flex-box .front_phone img {
    margin-bottom: 28px;
  }
}
.footer_contact .flex-box div {
  display: flex;
  padding: 27px 0;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer_contact .flex-box div {
    width: 80%;
    margin: 0 auto;
  }
}
.footer_contact .flex-box div a {
  padding: 20px 70px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer_contact .flex-box div a:hover {
  background-color: #077acd;
}
@media screen and (max-width: 767px) {
  .footer_contact .flex-box div a {
    padding: 20px 30px;
    font-size: 14px;
  }
}
.footer_contact .flex-box div p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 2em;
  text-align: center;
}
.footer_contact .flex-box div p.phonenumber {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .footer_contact .flex-box div p.phonenumber {
    font-size: 22px;
  }
}

/* トップへ戻るボタン */
.page_top_btn {
  width: 90px;
  height: 90px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  transition: 0.3s0;
  background-image: url("img/btn_pagetop.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.wide_blue {
  background-color: #006AB7;
}
.wide_blue .footer_contact {
  padding: 23px 0 !important;
  max-width: 1140px !important;
}

a.bluebtn {
  background-color: #006AB7;
  position: relative;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 18px 40px;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: fit-content;
}
a.bluebtn::after {
  content: "";
  display: inline-block;
  padding-left: 15px;
  width: 10px;
  height: 10px;
  background-image: url("img/right-solid-white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
a.bluebtn.link_pdf::after {
  content: "";
  display: block;
  padding-left: 15px;
  width: 26px;
  height: 26px;
  background-image: url("img/pdf-white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 10px) !important;
}
a.bluebtn:hover {
  background-color: #077acd;
}

/* 柔軟なコンテンツ
---------------------------*/
.post-flexible h2 {
  font-size: 2rem;
  color: #006AB7;
  margin: 30px 0;
}
.post-flexible h3 {
  font-size: 1.5rem;
  color: #006AB7;
  margin: 30px 0;
}
.post-flexible .post-flexible {
  margin-top: 34px;
  padding: 30px 0;
}
.post-flexible .img_text {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .post-flexible .img_text {
    flex-direction: column;
  }
}
.post-flexible .img_text .img-wrapper {
  max-width: 360px;
  margin-bottom: 15px;
}
.post-flexible .img_text .text-wrapper {
  width: calc(100% - 416px);
}
.post-flexible .img_text .text-wrapper h3 {
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .post-flexible .img_text .text-wrapper {
    width: 100%;
  }
}
.post-flexible .right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .post-flexible .right {
    flex-direction: column;
  }
}
.post-flexible .caption {
  line-height: 1.6em;
}
.post-flexible .flex-img-col-2 {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .post-flexible .flex-img-col-2 {
    flex-direction: column;
  }
}
.post-flexible .flex-img-col-2 div {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .post-flexible .flex-img-col-2 div {
    width: 100%;
  }
}
.post-flexible .flex-img-col-3 {
  display: flex;
  flex-wrap: wrap;
  margin: 35px 0 20px;
  justify-content: space-between;
}
.post-flexible .flex-img-col-3 div {
  width: 31.5%;
}
@media screen and (max-width: 767px) {
  .post-flexible .flex-img-col-3 div {
    width: 46%;
    margin-bottom: 20px;
  }
  .post-flexible .flex-img-col-3 div .caption {
    line-height: 1.6em;
  }
}
.post-flexible .youtube {
  width: 100%;
  margin: 40px 0;
  aspect-ratio: 16/9;
}
.post-flexible .youtube iframe {
  width: 100%;
  height: 100%;
}
.post-flexible table {
  width: 100%;
  margin: 40px 0;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  .post-flexible table {
    line-height: 1.3em;
  }
}
.post-flexible table th {
  padding: 10px;
  background: #006AB7;
  border: solid 1px #B3B3B3;
  color: #ffffff;
}
.post-flexible table td {
  padding: 10px;
  border: solid 1px #B3B3B3;
}

/* frontpage
---------------------------*/
@keyframes zoomInSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
#frontpage header {
  height: 80px;
  background-color: #ffffff;
}
#frontpage .slick-track {
  display: flex !important;
  align-items: stretch;
}
#frontpage .slick-list {
  overflow: hidden;
  width: 100%;
}
#frontpage .slider {
  border-bottom: solid 8px #006AB7;
  padding-bottom: 15px;
  margin-bottom: 0;
}
#frontpage .slider .slick-slide {
  flex-shrink: 0;
  max-width: 920px;
  max-height: 400px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #frontpage .slider .slick-slide {
    width: 100vw;
    max-height: auto;
  }
}
#frontpage .slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: none;
  animation: none;
}
#frontpage .slider .slick-center img {
  animation: zoomInSlow 8s ease forwards;
}
@media screen and (max-width: 1024px) {
  #frontpage .slider .slick-arrow {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  #frontpage .slider .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #006AB7;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 180px;
    z-index: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }
  #frontpage .slider .slick-arrow::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border: 1px solid #ffffff;
    border-width: 2px 2px 0 0;
    position: absolute;
    top: 9px;
    transform: rotate(45deg);
  }
  #frontpage .slider .slick-next {
    right: calc(50vw - 520px);
  }
  #frontpage .slider .slick-prev {
    left: calc(50vw - 520px);
  }
  #frontpage .slider .slick-next::before {
    left: 9px;
  }
  #frontpage .slider .slick-prev::before {
    border-width: 0 0 2px 2px;
    right: 9px;
  }
}
#frontpage .dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 11px;
}
#frontpage .dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #C5C5C5;
  border-radius: 50%;
  cursor: pointer;
}
#frontpage .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
#frontpage .dots-wrap li:hover,
#frontpage .dots-wrap li.slick-active {
  background: #006AB7;
}
#frontpage .news {
  background-color: #7B7B7B;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  padding: 7px;
}
#frontpage .news a {
  color: #ffffff;
}
#frontpage .news p {
  margin: 0;
}
#frontpage .container {
  padding-top: 91px;
  padding-bottom: 67px;
}
@media screen and (max-width: 767px) {
  #frontpage .container {
    padding-top: 60px;
  }
}
#frontpage .container h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.9rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
#frontpage .container h2 span {
  font-size: 1rem;
  color: #72C9F2;
}
#frontpage .container p.setumei {
  text-align: center;
  margin-bottom: 49px;
}
#frontpage .front_toriatukai .flex-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #frontpage .front_toriatukai .flex-box {
    display: block;
  }
}
#frontpage .front_toriatukai .flex-box a {
  width: calc(33.3% - 20px);
  height: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  #frontpage .front_toriatukai .flex-box a {
    width: 100%;
    margin-bottom: 30px;
  }
}
#frontpage .front_toriatukai .flex-box a img {
  object-fit: contain;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
#frontpage .front_toriatukai .flex-box a .info_category {
  border: solid 1px #006AB7;
  color: #006AB7;
  padding: 0 8px;
}
#frontpage .front_toriatukai .flex-box a p {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  #frontpage .front_toriatukai .flex-box a p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #frontpage .front_service {
    padding: 30px;
  }
}
#frontpage .front_service h2 {
  color: #ffffff;
}
#frontpage .front_service h2 span {
  color: #ffffff;
}
#frontpage .front_service .flex-box {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #frontpage .front_service .flex-box {
    display: block;
  }
}
#frontpage .front_service .flex-box .serviceflex-2 {
  width: calc(50% - 25px);
}
@media screen and (max-width: 767px) {
  #frontpage .front_service .flex-box .serviceflex-2 {
    width: 100%;
  }
}
#frontpage .front_service .flex-box .serviceflex-3 {
  width: calc(33.3% - 33.3px);
}
@media screen and (max-width: 767px) {
  #frontpage .front_service .flex-box .serviceflex-3 {
    width: 100%;
  }
}
#frontpage .front_service .flex-box a {
  height: fit-content;
  background-color: #ffffff;
  color: #006AB7;
  font-size: 1.2857rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  display: block;
}
@media screen and (max-width: 767px) {
  #frontpage .front_service .flex-box a {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
#frontpage .front_service .flex-box a img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
#frontpage .front_service .flex-box a p {
  background-color: #ffffff;
  margin: 0;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  #frontpage .front_service .flex-box a p {
    margin-bottom: 20px;
  }
}
#frontpage .front_company {
  padding-bottom: 90px;
}
#frontpage .front_company .flex-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #frontpage .front_company .flex-box {
    display: block;
  }
}
#frontpage .front_company .flex-box a {
  width: calc(33.3% - 20px);
  height: fit-content;
}
@media screen and (max-width: 767px) {
  #frontpage .front_company .flex-box a {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
#frontpage .front_company .flex-box a img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
#frontpage .front_company .flex-box a p {
  background-color: #006AB7;
  background-image: url("img/right-solid-white.svg");
  background-position: center right 20px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 4px;
  margin: 0;
  padding: 15px 0;
}
#frontpage .wide_recruit {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#frontpage .wide_recruit .front_recruit {
  padding-top: 40px;
}
#frontpage .front-information {
  margin: 50px auto 0;
}
#frontpage .front-information .flex-box {
  width: 100%;
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #frontpage .front-information .flex-box {
    flex-direction: column;
  }
}
#frontpage .front-information h3 {
  margin-bottom: 10px;
}
#frontpage .front-information ul {
  list-style: none;
  font-size: 1rem;
  font-weight: 300;
  width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  #frontpage .front-information ul {
    width: 100%;
  }
}
#frontpage .front-information ul li {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 18px;
  margin-bottom: 18px;
  padding-right: 20px;
}
#frontpage .front-information ul li .info_category {
  margin: 0 20px;
  border: solid 1px #006AB7;
  color: #006AB7;
  padding: 0 8px;
}
#frontpage .front-information ul li .info_text {
  font-weight: 400;
}
#frontpage .front-information ul .has-pdf {
  background-image: url("img/pdf-red.svg");
  background-position: top 4px right;
  background-repeat: no-repeat;
}
#frontpage .front-information ul .btn_info {
  color: #006AB7;
  padding-right: 20px;
  background-image: url("img/right-solid-blue.svg");
  background-position: center right;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  text-align: right;
}

/* page
---------------------------*/
.page_title {
  padding: 37px 0;
  background-image: url(img/title.png);
}
.page_title h1 {
  display: block;
  height: 89px;
  border-left: 5px solid #006AB7;
  line-height: 1.2;
  padding: 13px 0 0 25px;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .page_title h1 {
    margin-left: 30px;
  }
}
.page_title h1 span {
  font-size: 20px;
  color: #006AB7;
  font-weight: 500;
}

/* home 新着情報 infomation
---------------------------*/
#home .container, #category .container {
  max-width: 935px;
}
#home .home_category, #category .home_category {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 67px 0;
}
#home .home_category a, #category .home_category a {
  margin: 0 11px 0 0;
  border: solid 1px #006AB7;
  color: #006AB7;
  padding: 0 8px;
}
#home .home_category .current-cat, #category .home_category .current-cat {
  background-color: #ccc;
}
#home ul.info_list, #category ul.info_list {
  list-style: none;
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 96px;
}
#home ul.info_list li, #category ul.info_list li {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
#home ul.info_list li .info_category, #category ul.info_list li .info_category {
  margin: 0 20px;
  border: solid 1px #006AB7;
  color: #006AB7;
  padding: 0 8px;
}
#home ul.info_list li .info_text, #category ul.info_list li .info_text {
  font-weight: 400;
}
#home ul.info_list .btn_info, #category ul.info_list .btn_info {
  color: #006AB7;
  padding-right: 20px;
  background-image: url("img/right-solid-blue.svg");
  background-position: center right;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  text-align: right;
}

/* #single #service
---------------------------*/
#single-post .has-thumbnail::after, #service .has-thumbnail::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 480px;
  background-image: url("img/title.png");
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #single-post .has-thumbnail::after, #service .has-thumbnail::after {
    height: 250px;
  }
}
#single-post .no-thumbnail::after, #service .no-thumbnail::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 150px;
  background-image: url("img/title.png");
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #single-post .no-thumbnail::after, #service .no-thumbnail::after {
    height: 130px;
  }
}
#single-post .single-wide, #service .single-wide {
  padding: 1px 0;
  position: relative;
}
#single-post .container, #service .container {
  max-width: 935px;
}
#single-post .container article, #service .container article {
  margin: 52px 0 70px;
}
#single-post .container .single_cate, #service .container .single_cate {
  margin: 8px 0;
  border: solid 1px #006AB7;
  color: #006AB7;
  background-color: #ffffff;
  padding: 0 8px;
  font-size: 12px;
  width: fit-content;
}
#single-post .container .single_cate a, #service .container .single_cate a {
  color: #006AB7;
}
#single-post .container h1.article-title, #service .container h1.article-title {
  font-size: 32px;
  color: #006AB7;
  margin: 38px 0 30px;
  line-height: 1.5em;
}
#single-post .bluebtn, #service .bluebtn {
  padding: 18px 130px;
  margin: 30px auto;
  position: relative;
}
#single-post .bluebtn::after, #service .bluebtn::after {
  background-position: center;
  position: absolute;
  top: 22px;
  right: 30px;
}

/* single 製品情報 シングルページ
---------------------------*/
#single-products .single-wide {
  padding: 1px 0;
  position: relative;
}
#single-products .single-wide::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 384px;
  background-image: url("img/title.png");
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #single-products .single-wide::after {
    height: 220px;
  }
}
#single-products .container {
  max-width: 935px;
}
#single-products article {
  margin: 52px 0 0;
}
#single-products article .single_cate {
  margin: 8px 0;
  border: solid 1px #006AB7;
  color: #006AB7;
  background-color: #ffffff;
  padding: 0 8px;
  font-size: 12px;
  width: fit-content;
}
#single-products article .single_cate a {
  color: #006AB7;
}
#single-products article h1.article-title {
  font-size: 32px;
  margin: 38px 0 30px;
  line-height: 1.3em;
}
#single-products article .products-contents {
  border-top: solid 1px #006AB7;
}
#single-products article .add-contents {
  margin-bottom: 100px;
}
#single-products article .products-contents, #single-products article .add-contents, #single-products article .products-info {
  margin-top: 59px;
}
#single-products article .products-contents h2, #single-products article .add-contents h2, #single-products article .products-info h2 {
  font-size: 2rem;
  text-align: center;
  margin: 20px 0 26px;
}
#single-products article .products-contents h3, #single-products article .add-contents h3, #single-products article .products-info h3 {
  font-size: 1.5rem;
}
#single-products article .products-contents .contents-title, #single-products article .add-contents .contents-title, #single-products article .products-info .contents-title {
  font-size: 1.5rem;
  margin: 35px 0;
}
#single-products article .products-contents .bluebtn, #single-products article .add-contents .bluebtn, #single-products article .products-info .bluebtn {
  padding: 18px 130px;
  position: relative;
  margin: 50px auto;
  display: block;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .bluebtn, #single-products article .add-contents .bluebtn, #single-products article .products-info .bluebtn {
    padding: 18px 50px 18px 30px;
  }
}
#single-products article .products-contents .bluebtn::after, #single-products article .add-contents .bluebtn::after, #single-products article .products-info .bluebtn::after {
  background-position: center;
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
}
#single-products article .products-contents .img_text, #single-products article .add-contents .img_text, #single-products article .products-info .img_text {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .img_text, #single-products article .add-contents .img_text, #single-products article .products-info .img_text {
    flex-direction: column;
  }
}
#single-products article .products-contents .img_text .img-wrapper, #single-products article .add-contents .img_text .img-wrapper, #single-products article .products-info .img_text .img-wrapper {
  max-width: 360px;
  margin-bottom: 15px;
}
#single-products article .products-contents .img_text .text-wrapper, #single-products article .add-contents .img_text .text-wrapper, #single-products article .products-info .img_text .text-wrapper {
  width: calc(100% - 416px);
}
#single-products article .products-contents .img_text .text-wrapper h3, #single-products article .add-contents .img_text .text-wrapper h3, #single-products article .products-info .img_text .text-wrapper h3 {
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .img_text .text-wrapper, #single-products article .add-contents .img_text .text-wrapper, #single-products article .products-info .img_text .text-wrapper {
    width: 100%;
  }
}
#single-products article .products-contents .right, #single-products article .add-contents .right, #single-products article .products-info .right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .right, #single-products article .add-contents .right, #single-products article .products-info .right {
    flex-direction: column;
  }
}
#single-products article .products-contents .youtube, #single-products article .add-contents .youtube, #single-products article .products-info .youtube {
  width: 100%;
  margin: 40px 0;
  aspect-ratio: 16/9;
}
#single-products article .products-contents .youtube iframe, #single-products article .add-contents .youtube iframe, #single-products article .products-info .youtube iframe {
  width: 100%;
  height: 100%;
}
#single-products article .products-contents .flex-img-col-2, #single-products article .add-contents .flex-img-col-2, #single-products article .products-info .flex-img-col-2 {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .flex-img-col-2, #single-products article .add-contents .flex-img-col-2, #single-products article .products-info .flex-img-col-2 {
    flex-direction: column;
  }
}
#single-products article .products-contents .flex-img-col-2 div, #single-products article .add-contents .flex-img-col-2 div, #single-products article .products-info .flex-img-col-2 div {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .flex-img-col-2 div, #single-products article .add-contents .flex-img-col-2 div, #single-products article .products-info .flex-img-col-2 div {
    width: 100%;
  }
}
#single-products article .products-contents .flex-img-col-3, #single-products article .add-contents .flex-img-col-3, #single-products article .products-info .flex-img-col-3 {
  display: flex;
  flex-wrap: wrap;
  margin: 35px 0 20px;
  justify-content: space-between;
}
#single-products article .products-contents .flex-img-col-3 div, #single-products article .add-contents .flex-img-col-3 div, #single-products article .products-info .flex-img-col-3 div {
  width: 31.5%;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .flex-img-col-3 div, #single-products article .add-contents .flex-img-col-3 div, #single-products article .products-info .flex-img-col-3 div {
    width: 46%;
    margin-bottom: 20px;
  }
  #single-products article .products-contents .flex-img-col-3 div .caption, #single-products article .add-contents .flex-img-col-3 div .caption, #single-products article .products-info .flex-img-col-3 div .caption {
    line-height: 1.6em;
  }
}
#single-products article .products-contents .hyou-contents dl, #single-products article .add-contents .hyou-contents dl, #single-products article .products-info .hyou-contents dl {
  border-bottom: solid 1px #000;
  display: flex;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .hyou-contents dl, #single-products article .add-contents .hyou-contents dl, #single-products article .products-info .hyou-contents dl {
    display: block;
  }
}
#single-products article .products-contents .hyou-contents dl dt, #single-products article .add-contents .hyou-contents dl dt, #single-products article .products-info .hyou-contents dl dt {
  width: 25%;
  color: #006AB7;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .hyou-contents dl dt, #single-products article .add-contents .hyou-contents dl dt, #single-products article .products-info .hyou-contents dl dt {
    width: 100%;
  }
}
#single-products article .products-contents .hyou-contents dl dd, #single-products article .add-contents .hyou-contents dl dd, #single-products article .products-info .hyou-contents dl dd {
  width: 75%;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents .hyou-contents dl dd, #single-products article .add-contents .hyou-contents dl dd, #single-products article .products-info .hyou-contents dl dd {
    width: 100%;
  }
}
#single-products article .products-contents table, #single-products article .add-contents table, #single-products article .products-info table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  #single-products article .products-contents table, #single-products article .add-contents table, #single-products article .products-info table {
    line-height: 1.3em;
  }
}
#single-products article .products-contents table th, #single-products article .add-contents table th, #single-products article .products-info table th {
  padding: 10px;
  background: #006AB7;
  border: solid 1px #B3B3B3;
  color: #ffffff;
}
#single-products article .products-contents table td, #single-products article .add-contents table td, #single-products article .products-info table td {
  padding: 10px;
  border: solid 1px #B3B3B3;
}
#single-products article .products-info {
  background-image: url("img/title.png");
  padding: 80px 0 170px;
}
#single-products article .products-info .h2-products {
  color: #006AB7;
  text-align: center;
  font-size: 36px;
  margin-bottom: 59px;
}
#single-products article .products-info .products-block {
  background-color: #ffffff;
  padding: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .products-block {
    margin-bottom: 70px;
    padding: 25px;
  }
}
#single-products article .products-info .product-image {
  max-width: 500px;
  margin: 0 auto;
}
#single-products article .products-info .product-title h3 {
  font-size: 48px;
  color: #006AB7;
  text-align: center;
  line-height: 1.2;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .product-title h3 {
    font-size: 32px;
  }
}
#single-products article .products-info .product-title p {
  font-size: 24px;
  color: #000;
  text-align: center;
  margin: 0 0 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .product-title p {
    font-size: 18px;
  }
}
#single-products article .products-info .tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .tag-group {
    width: 100%;
  }
}
#single-products article .products-info .tag-group .tag-item {
  background-color: #72C9F2;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
  padding: 4px 10px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .tag-group .tag-item {
    width: fit-content;
  }
}
#single-products article .products-info .contents-title {
  font-size: 1.5rem;
  margin: 35px 0;
}
#single-products article .products-info .hyou-contents dl {
  border-bottom: solid 1px #000;
  display: flex;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .hyou-contents dl {
    display: block;
  }
}
#single-products article .products-info .hyou-contents dl dt {
  width: 25%;
  color: #006AB7;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .hyou-contents dl dt {
    width: 100%;
  }
}
#single-products article .products-info .hyou-contents dl dd {
  width: 75%;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .hyou-contents dl dd {
    width: 100%;
  }
}
#single-products article .products-info table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  #single-products article .products-info table {
    line-height: 1.3em;
  }
}
#single-products article .products-info table th {
  padding: 10px;
  background: #006AB7;
  border: solid 1px #B3B3B3;
  color: #ffffff;
}
#single-products article .products-info table td {
  padding: 10px;
  border: solid 1px #B3B3B3;
}
#single-products article .products-info .img-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
#single-products article .products-info .img-group .img-item {
  width: calc(33.3% - 10px);
}
@media screen and (max-width: 767px) {
  #single-products article .products-info .img-group .img-item {
    width: calc(50% - 7.5px);
  }
}

/* company 会社案内
---------------------------*/
#company #message {
  padding-top: 90px;
  margin-top: -90px;
}
#company #about-company {
  padding-top: 90px;
  margin-top: -90px;
}
#company #history {
  padding-top: 90px;
}
#company .container {
  max-width: 890px;
}
#company .bluestripe {
  padding-bottom: 170px;
}
#company h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.9rem;
  margin-bottom: 40px;
  padding-top: 65px;
  letter-spacing: 2px;
}
#company h2 span {
  font-size: 1rem;
  color: #72C9F2;
}
#company .greeting-text {
  margin: 77px 0;
}
@media screen and (max-width: 767px) {
  #company .greeting-text {
    margin: 50px 0;
  }
}
#company .blue-message {
  border-top: solid 1px #006AB7;
  border-bottom: solid 1px #006AB7;
  color: #006AB7;
  padding: 31px 0;
  margin-bottom: 163px;
}
@media screen and (max-width: 767px) {
  #company .blue-message {
    margin-bottom: 63px;
  }
}
#company .blue-message h3 {
  text-align: center;
  font-size: 2rem;
}
#company .blue-message p {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 2.8em;
}
@media screen and (max-width: 767px) {
  #company .blue-message p {
    font-size: 16px;
  }
}
#company .philosophy h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #006AB7;
  margin: 48px 0 25px;
}
@media screen and (max-width: 767px) {
  #company .philosophy h3 {
    font-size: 1.8rem;
  }
}
#company .philosophy .whitebox {
  padding: 28px 56px;
}
@media screen and (max-width: 767px) {
  #company .philosophy .whitebox {
    padding: 28px 30px;
  }
}
#company .philosophy .whitebox h4 {
  font-size: 18px;
}
#company .company dl {
  display: flex;
  border-bottom: solid 1px #C5C5C5;
  padding: 31px 0;
}
@media screen and (max-width: 767px) {
  #company .company dl {
    padding: 25px 0;
    display: block;
  }
}
#company .company dl dt {
  width: 20%;
  color: #006AB7;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #company .company dl dt {
    padding-bottom: 5px;
    width: 100%;
  }
}
#company .company dl dd {
  width: 80%;
}
@media screen and (max-width: 767px) {
  #company .company dl dd {
    width: 100%;
  }
}
#company .company dl dd a {
  border: solid 1px #006AB7;
  border-radius: 50px;
  padding: 6px 42px;
  margin: 15px 15px 0 0;
  display: inline-block;
  background-color: #ffffff;
  background-image: url("img/right-solid-blue.svg");
  background-position: center right 15px;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  color: #006AB7;
}
@media screen and (max-width: 767px) {
  #company .company dl dd a {
    padding: 6px 35px 6px 25px;
  }
}
#company .company dl dd a:hover {
  background-color: #d0f0ff;
}
#company .company .h3-accessmap {
  font-size: 2rem;
  padding-top: 90px;
  margin: -14px 0 76px;
}
#company .company .map-wrap {
  margin-bottom: 40px;
}
#company .company .map-wrap h3 {
  font-size: 26px;
  color: #006AB7;
  border-top: solid 1px #006AB7;
  width: fit-content;
  margin-bottom: 32px;
  padding-top: 10px;
}
#company .company .map-wrap .map-flex {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 767px) {
  #company .company .map-wrap .map-flex {
    flex-direction: column;
    gap: 0;
  }
}
#company .company .map-wrap .map-flex .img-item {
  max-width: 360px;
}
#company .company .map-wrap .map-flex a {
  border: solid 1px #006AB7;
  border-radius: 50px;
  padding: 6px 42px;
  margin: 15px 15px 0 0;
  display: inline-block;
  background-color: #ffffff;
  background-image: url("img/right-solid-blue.svg");
  background-position: center right 15px;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  color: #006AB7;
}
#company .company .map-wrap .map-flex a:hover {
  background-color: #d0f0ff;
}
#company .history dl {
  display: flex;
  padding: 10px 10px;
  border-bottom: solid 1px #C5C5C5;
}
@media screen and (max-width: 767px) {
  #company .history dl {
    flex-direction: column;
    gap: 0;
  }
}
#company .history dl dt {
  width: 15%;
  color: #006AB7;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #company .history dl dt {
    width: 100%;
  }
}

/* product 取扱製品
---------------------------*/
#products .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 835px;
}
#products .product {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  #products .product {
    max-width: 46%;
  }
}
@media screen and (max-width: 767px) {
  #products .product {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
#products .product img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #products .product img {
    margin-bottom: 0;
  }
}
#products .product .info_category {
  margin: 15px 0;
  border: solid 1px #006AB7;
  color: #006AB7;
  padding: 0 8px;
  width: fit-content;
}
#products .product h2 {
  font-size: 18px;
  margin-top: 19px;
  flex-grow: 2;
}
@media screen and (max-width: 767px) {
  #products .product h2 {
    margin-top: 0;
  }
}
#products .product .p-text {
  flex-grow: 2;
}
@media screen and (max-width: 767px) {
  #products .product .p-text {
    line-height: 1.6em;
  }
}
#products .product .bluebtn {
  padding: 3px 30px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  #products .product .bluebtn {
    margin: 0 0 0 auto;
  }
}

/* service 事業内容
---------------------------*/
#service .service-block {
  background-image: url(img/bluestripe2.png);
  background-position: left top 140px;
  background-repeat: repeat-x;
  margin-top: -18px;
  padding-top: 90px;
  padding-bottom: 72px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #service .service-block {
    padding-bottom: 42px;
  }
}
#service .service-block .service-title {
  background-color: #006AB7;
  text-align: center;
  padding: 30px 0 20px;
}
#service .service-block .service-title h2 {
  font-size: 32px;
  letter-spacing: 3px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #service .service-block .service-title h2 {
    font-size: 24px;
  }
}
#service .service-block .service-title p {
  margin: 8px 0 0;
  letter-spacing: 3px;
}
#service .service-block h3 {
  font-size: 28px;
  margin: 53px 0 22px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #service .service-block h3 {
    font-size: 24px;
    line-height: 1.5;
    margin: 33px 0 22px;
  }
}
#service .service-block p {
  margin: 20px 0;
}
#service .service-block .btn {
  color: #ffffff;
  padding: 15px 86px;
  border: solid 1px #ffffff;
  border-radius: 50px;
  text-align: center;
  margin: 50px auto 10px;
  display: block;
  width: fit-content;
}
#service .service-block .btn:hover {
  background-color: #72C9F2;
}
#service .post-content {
  margin: 56px auto 91px;
}
#service .post-content h2 {
  color: #000;
  margin: 25px 0;
}
#service .post-content h3 {
  color: #000;
}
#service .post-content p {
  margin: 25px 0;
}
#service .post-content .flex-img-col-3 {
  margin: 50px 0;
}
#service .post-content .flex-img-col-3 img {
  margin-bottom: 20px;
}
#service .post-content .flex-img-col-3 p {
  margin: 5px 0;
}
#service .others-section {
  padding-bottom: 100px;
}
#service .others-section .container {
  padding: 50px 0 0;
}
#service .others-section .container h2 {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 20px;
  display: block;
  color: #006AB7;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  #service .others-section .container h2 {
    font-size: 28px;
  }
}
#service .others-section .container p {
  text-align: center;
  margin: 20px auto 30px;
  padding: 40px;
  width: fit-content;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  #service .others-section .container p {
    padding: 40px;
  }
}
#service .others-section .others-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1162px;
  margin: 0 auto;
  padding: 25px;
  justify-content: space-between;
  background-color: #ffffff;
}
#service .others-section .others-wrap .others-item {
  max-width: 268px;
}
@media screen and (max-width: 1024px) {
  #service .others-section .others-wrap .others-item {
    max-width: 31%;
  }
}
@media screen and (max-width: 767px) {
  #service .others-section .others-wrap .others-item {
    max-width: 46%;
  }
}
#service .others-section .others-wrap .others-item h3 {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #service .others-section .others-wrap .others-item p {
    line-height: 1.6em;
  }
}

/* recruit 採用情報
---------------------------*/
#recruit .title-wrap {
  position: relative;
}
#recruit .title-wrap .page_title {
  position: absolute;
  z-index: -2;
  width: 100%;
}
#recruit .title-wrap .title-img {
  position: absolute;
  z-index: -1;
  width: 65vw;
  height: 32vw;
  top: 0;
  right: 0;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #recruit .title-wrap .title-img {
    position: absolute;
    z-index: -1;
    top: 153px;
    width: 100vw;
    height: 50vw;
    background-size: 130%;
  }
}
#recruit .title-copy {
  padding-top: 16vw;
  padding-left: calc(50% - 36vw);
}
@media screen and (max-width: 767px) {
  #recruit .title-copy {
    padding-top: 220px;
    padding-left: 0;
  }
}
#recruit .title-copy h2 {
  background-color: #006AB7;
  color: #ffffff;
  padding: 14px 25px;
  width: fit-content;
  width: 72vw;
}
@media screen and (max-width: 767px) {
  #recruit .title-copy h2 {
    width: 65vw;
  }
}
#recruit .title-copy p {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 38px 46px;
  margin: 29px 0 0;
  width: 72vw;
}
@media screen and (max-width: 767px) {
  #recruit .title-copy p {
    width: 100vw;
  }
}
#recruit .container {
  max-width: 935px;
}
#recruit .qa-section {
  padding-top: 72px;
}
#recruit .qa-section h2 {
  text-align: center;
  color: #000;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #recruit .qa-section h2 {
    font-size: 1.8rem;
  }
}
#recruit .qa-section .sentence-wrap {
  margin-bottom: 100px;
}
#recruit .qa-section dl.qa-sentence {
  margin-bottom: 50px;
}
#recruit .qa-section dl.qa-sentence dt {
  font-size: 18px;
  font-weight: bold;
}
#recruit .qa-section dl.qa-sentence dd {
  padding: 0;
}
#recruit .qa-section dl.qa-item dt {
  padding: 17px 30px;
  color: #006AB7;
  border: solid 1px #006AB7;
  border-radius: 50px;
}
#recruit .qa-section dl.qa-item dt p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
#recruit .qa-section dl.qa-item dd {
  padding: 17px 25px;
}
#recruit .genzai {
  padding: 100px 0;
}
#recruit .genzai h2 {
  text-align: center;
  font-size: 2rem;
}
#recruit .genzai h3 {
  text-align: center;
  font-size: 32px;
  color: #006AB7;
  margin: 55px 0 30px;
  position: relative;
  padding-bottom: 40px;
  line-height: 1em;
}
#recruit .genzai h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 50px;
  border-bottom: solid 3px #006AB7;
  left: calc(50% - 25px);
  bottom: 0;
}
#recruit .genzai .part-time-image {
  max-width: 300px;
  margin: 0 auto 100px;
}
#recruit .genzai .part-time-text {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 100px;
}
#recruit .genzai .part-time-text p {
  font-size: 24px;
  font-weight: bold;
}

/* contact お問い合わせ
---------------------------*/
#contact {
  /* CF7ラジオボタンを縦並びに */
}
#contact .container {
  max-width: 935px;
}
#contact .bluestripe {
  padding-bottom: 93px;
}
#contact .phonebox {
  text-align: center;
  border-bottom: solid 1px #006AB7;
  padding: 0 0 35px;
}
#contact .phonebox h2 {
  font-size: 24px;
  color: #006AB7;
  margin: 0 auto 20px;
  padding-left: 40px;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #contact .phonebox h2 {
    font-size: 22px;
  }
}
#contact .phonebox h2::before {
  content: "";
  display: block;
  width: 31px;
  height: 30px;
  background-image: url("img/phone.svg");
  position: absolute;
  top: 0;
  left: 0;
}
#contact .phonebox .whitebox {
  padding: 22px 22px;
  max-width: 55vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #contact .phonebox .whitebox {
    max-width: 80vw;
  }
}
#contact .phonebox .whitebox p {
  font-size: 36px;
  font-weight: bold;
  color: #006AB7;
}
@media screen and (max-width: 767px) {
  #contact .phonebox .whitebox p {
    font-size: 24px;
  }
}
#contact .phonebox .whitebox p span {
  font-size: 14px;
}
#contact .phonebox .whitebox a {
  color: #006AB7;
}
#contact .formbox {
  text-align: center;
}
#contact .formbox h2 {
  font-size: 24px;
  color: #006AB7;
  margin: 35px auto 20px;
  padding-left: 40px;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #contact .formbox h2 {
    font-size: 22px;
  }
}
#contact .formbox h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 24px;
  background-image: url("img/mail.svg");
  position: absolute;
  top: 3px;
  left: 0;
}
#contact .formbox p {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #contact .formbox p {
    margin-bottom: 22px;
  }
}
#contact .formbox .wpforms-container .wpforms-field-label {
  display: flex;
  align-items: center;
  width: 185px;
  margin-bottom: 0;
  color: #5f5455;
  font-weight: 400;
}
#contact .formbox .wpforms-container .wpforms-field-label .wpforms-required-label {
  display: block;
  font-size: 12px;
  margin: 0 10px 0 auto;
  color: #ffffff;
  background-color: #006AB7;
  padding: 5px 7px;
}
@media screen and (max-width: 767px) {
  #contact .formbox .wpforms-container .wpforms-field-label {
    margin-bottom: 20px;
  }
}
#contact .formbox .wpforms-container .wpforms-field-email-primary, #contact .formbox .wpforms-container .wpforms-field-email-secondary, #contact .formbox .wpforms-container .wpforms-field-large, #contact .formbox .wpforms-container .wpforms-field-medium {
  border-color: #006AB7;
}
#contact .formbox .wpforms-container .wpforms-field-large, #contact .formbox .wpforms-container .wpforms-field-medium {
  width: calc(100% - 185px);
}
@media screen and (max-width: 767px) {
  #contact .formbox .wpforms-container .wpforms-field-large, #contact .formbox .wpforms-container .wpforms-field-medium {
    width: 100%;
  }
}
#contact .formbox .wpforms-container .wpforms-field-text, #contact .formbox .wpforms-container .wpforms-field-phone, #contact .formbox .wpforms-container .wpforms-field-textarea {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #contact .formbox .wpforms-container .wpforms-field-text, #contact .formbox .wpforms-container .wpforms-field-phone, #contact .formbox .wpforms-container .wpforms-field-textarea {
    flex-direction: column;
    align-items: flex-start;
  }
}
#contact .formbox .wpforms-container .wpforms-field-email fieldset legend {
  float: left;
}
@media screen and (max-width: 767px) {
  #contact .formbox .wpforms-container .wpforms-field-email fieldset legend {
    float: none;
  }
}
#contact .formbox .wpforms-container .wpforms-field-radio fieldset legend {
  float: left;
}
@media screen and (max-width: 767px) {
  #contact .formbox .wpforms-container .wpforms-field-radio fieldset legend {
    float: none;
  }
}
#contact .formbox .wpforms-container .wpforms-field-checkbox fieldset legend {
  float: left;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  #contact .formbox .wpforms-container .wpforms-field-checkbox fieldset legend {
    float: none;
  }
}
#contact .formbox .wpforms-container #wpforms-502-field_12 {
  box-sizing: border-box;
}
#contact .formbox .wpforms-container .wpforms-submit {
  display: block;
  padding: 10px 60px;
  background-color: #006AB7;
  color: #ffffff;
  border-radius: 50px;
  border: none;
  margin: 0 auto;
  letter-spacing: 2px;
}
#contact .formbox .wpforms-container .wpforms-submit:hover {
  background-color: #077acd;
}
#contact .formbox .whitebox {
  padding: 60px 95px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #contact .formbox .whitebox {
    padding: 50px 30px;
  }
}
#contact .formbox .whitebox dl {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #contact .formbox .whitebox dl {
    display: block;
  }
}
#contact .formbox .whitebox dl dt {
  width: 22%;
}
@media screen and (max-width: 767px) {
  #contact .formbox .whitebox dl dt {
    width: 100%;
  }
}
#contact .formbox .whitebox dl dt p {
  position: relative;
}
#contact .formbox .whitebox dl .hissu p::after {
  content: "必須";
  right: 0;
  top: calc(50% - 10px);
  position: absolute;
  padding: 4px;
  background-color: #006AB7;
  line-height: 1em;
  color: #ffffff;
  font-size: 12px;
}
#contact .formbox .whitebox dl dd {
  width: 76%;
}
@media screen and (max-width: 767px) {
  #contact .formbox .whitebox dl dd {
    width: 100%;
  }
}
#contact .formbox .whitebox dl dd .wpcf7-text {
  width: 100%;
  padding: 7px;
  border: solid 1px #006AB7;
}
#contact .formbox .whitebox .form-text {
  border-top: solid 1px #72C9F2;
  margin-top: 70px;
}
#contact .submitbtn {
  text-align: center;
}
#contact .wpcf7-submit {
  padding: 10px 60px;
  background-color: #006AB7;
  color: #ffffff;
  border-radius: 50px;
  border: none;
  margin: 0 auto;
}
#contact .wpcf7-submit:hover {
  background-color: #077acd;
}
#contact .wpcf7-submit:disabled {
  background-color: #999;
}
#contact div.wpcf7 .ajax-loader {
  margin: 5px auto 0;
}
#contact .wpcf7-radio .wpcf7-list-item {
  margin-top: 5px;
  display: block;
}

/* ページネーション
---------------------------*/
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.pagination-box {
  display: inline-block;
}

.pagination span, .pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 8px 11px 8px 11px;
  text-decoration: none;
  width: auto;
  background: #ffffff; /* 現在のページの文字色 */
  color: #72C9F2; /* 現在のページの背景色 */
  border: solid 1px #72C9F2;
}

.pagination a:hover {
  color: #006AB7; /* マウスホバー時の文字色 */
  background: #dedede; /* マウスホバー時の背景色 */
  border: solid 1px #006AB7;
}

.pagination .current {
  padding: 8px 11px 8px 11px;
  background: #ffffff; /* 現在のページの文字色 */
  color: #006AB7; /* 現在のページの背景色 */
  border: solid 1px #006AB7;
}

@media only screen and (max-width: 413px) {
  .pagination {
    font-size: 12px;
    line-height: 12px;
  }
  .pagination span, .pagination a {
    padding: 8px 10px 8px 10px;
  }
  .pagination .current {
    padding: 8px 10px 8px 10px;
  }
}
/* コンタクト
---------------------------*/
#contact .container {
  max-width: 1080px;
}

article .wpcf7 {
  margin: 50px 0;
}

article form {
  width: 100%;
  display: block;
  text-align: left;
}

article form input.wpcf7-text {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background: #eeeeee;
  border: none;
}

article form textarea.wpcf7-textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background: #eeeeee;
  border: none;
}

article form .wpcf7-confirm,
article form .wpcf7-back,
article form .wpcf7-submit {
  border: solid 1px #333;
  padding: 15px 30px;
  margin: 0 auto;
  text-transform: uppercase;
  color: #333;
  background-color: #ccc;
  cursor: pointer;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-align: center;
}

article form .wpcf7-confirm:hover {
  background-color: #fff;
  color: #000;
}

article form .wpcf7-back:hover {
  background-color: #fff;
  color: #000;
}

article form .wpcf7-submit:hover {
  background-color: #fff;
  color: #000;
}/*# sourceMappingURL=style.css.map */