@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  box-sizing: border-box;
  font-size: 1.4em;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: rgb(65, 65, 65);
}

h1 {
  font-size: 2.4rem;
}

a {
  cursor: pointer;
}

a:hover {
  color: rgb(0, 95, 219);
}

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

.btn_df {
  display: block;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 250px;
  margin: 10px;
  font-size: 1.6rem;
  background-color: rgb(0, 115, 192);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  color: azure;
  border-radius: 10px;
}

.btn_df:hover {
  transition: 0.5s;
  filter: brightness(120%);
  color: white;
}

main {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(250, 250, 250, 0.8);
}

.wrapper {
  width: 100%;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}

header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
  display: none;
}
@media screen and (max-width: 767px) {
  header {
    display: block;
  }
}

/*　↓スマホメニュー↓　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 20px;
  top: 8px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 4px;
  left: 2px;
  background: #5f5f5f;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  left: 2px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 60px;
  right: 0;
  color: #000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 40%;
}
nav.globalMenuSp span {
  margin-right: 5px;
  vertical-align: -5px;
  color: rgb(36, 119, 235);
}

nav.globalMenuSp ul {
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px dashed #000000;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  color: rgb(225, 100, 20);
  background-color: rgba(254, 255, 239, 0.4);
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
}

nav.globalMenuSp.active {
  transform: translateX(0%);
}

/*　↑スマホメニュー↑　*/
.side_bar {
  width: 250px;
  height: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(250, 250, 250, 0.7);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .side_bar {
    width: 70%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
  }
}
.side_bar .top_menu {
  width: 100%;
  height: 60%;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-flow: column;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .side_bar .top_menu {
    display: none;
  }
}
.side_bar .top_menu li {
  height: 60px;
  font-size: 1.6rem;
  border-bottom: 1px dashed rgb(160, 160, 160);
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
.side_bar .top_menu li a {
  width: 100%;
  height: 100%;
  display: block;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
}
.side_bar .top_menu li a span {
  font-size: 24px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: rgb(36, 119, 235);
}
.side_bar .top_menu a:hover {
  transition: 0.3s;
  padding-left: 80px;
  color: rgb(225, 100, 20);
  background-color: #f1ece1;
}
.side_bar .top_menu a:hover a,
.side_bar .top_menu a:hover span {
  color: rgb(225, 100, 20);
}
.side_bar .logo {
  height: 30% !important;
  text-align: center;
  border: none !important;
  margin-bottom: 80px;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-flow: column;
  justify-content: center;
  -webkit-justify-content: center;
}
@media screen and (max-width: 767px) {
  .side_bar .logo {
    height: 60px !important;
    margin: 0;
    flex-flow: row-reverse;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.side_bar .logo a {
  display: inline-block;
  padding-left: 0 !important;
  justify-content: center !important;
}
@media screen and (max-width: 767px) {
  .side_bar .logo a {
    width: 40%;
  }
}
.side_bar .logo img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .side_bar .logo img {
    margin-left: 5px;
    margin-top: 5px;
    max-height: 60px;
  }
}
.side_bar .logo .catch_copy {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 5px;
  background: linear-gradient(to left, rgb(0, 0, 168) 20%, rgb(0, 68, 255) 30%, green 50%, yellow 60.666%, orange 70%, red 80%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .side_bar .logo .catch_copy {
    margin-left: 10px;
    margin-top: 30px;
    font-size: 1rem;
  }
}

.container {
  width: 100%;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
.container .content {
  margin-left: 250px;
  box-sizing: border-box;
  width: calc(100vw - 250px);
  overflow-x: hidden;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .container .content {
    margin: 0 auto;
    width: 100%;
  }
}
.container .content .top_slider {
  position: relative;
  width: 100%;
  filter: brightness(120%);
  z-index: 9997;
}
.container .content .top_slider img {
  width: 100%;
  height: 400px !important;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .container .content .top_slider img {
    height: 200px !important;
  }
}
.container .content .top_slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 9998;
}
.container .content .slick-track {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
.container .content .slick-slide {
  height: auto !important;
  max-height: 800px !important;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.container .content .add-animation {
  animation: zoomUp 15s linear 0s normal both;
}
.container .content .service_container {
  background-color: rgba(250, 250, 250, 0.8);
}
.container .content .service {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}
.container .content .service .service_inner {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner {
    width: 90%;
    padding-bottom: 40px;
  }
}
.container .content .service .service_inner .service_title {
  font-size: 3rem;
  padding-top: 60px;
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(to left, #353535, #ffd620, #c93900);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .service_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .container .content .service .service_inner .service_title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-top: 40px;
  }
}
.container .content .service .service_inner .service_title span {
  font-size: 36px;
  vertical-align: -4px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .container .content .service .service_inner .service_title span {
    font-size: 2.4rem;
    margin-right: 0;
  }
}
.container .content .service .service_inner .inner_box {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container .content .service .service_inner .inner_box {
    max-width: 100%;
    margin: 0 auto 0 auto;
  }
}
.container .content .service .service_inner .box_title {
  font-size: 2.6rem;
  margin-top: 40px;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(to left, #353535, #838383, #a5a5a5);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_title {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.container .content .service .service_inner .box_title span {
  font-size: 3.6rem;
  margin-right: 5px;
  vertical-align: -7px;
}
@media screen and (max-width: 767px) {
  .container .content .service .service_inner .box_title span {
    font-size: 2.8rem;
  }
}
.container .content .service .service_inner .box_sub_title {
  margin-left: 20px;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2.6rem;
  margin-top: 40px;
  padding-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_sub_title {
    font-size: 1.6rem;
    margin-left: 10px;
    margin-top: 0;
  }
}
.container .content .service .service_inner .box_list {
  position: relative;
  margin-top: 20px;
  margin-left: 0;
}
.container .content .service .service_inner .box_list .list_title {
  position: absolute;
  left: 3%;
  top: 5%;
  color: rgb(255, 255, 255);
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2.8rem;
  padding-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_list .list_title {
    font-size: 1.6rem;
  }
}
.container .content .service .service_inner .box_list .list_title span {
  font-size: 4rem;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_list .list_title span {
    font-size: 2rem;
  }
}
.container .content .service .service_inner .box_list .service_text {
  position: absolute;
  top: 20%;
  left: 3%;
  padding: 20px;
  color: white;
  font-size: 2.4rem;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_list .service_text {
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .container .content .service .service_inner .box_list .service_text {
    font-size: 1.2rem;
    padding: 5px;
    display: -webkit-flex;
    align-items: start;
    justify-content: flex-start;
  }
}
.container .content .service .service_inner .box_list .item_list {
  margin-top: 20px;
}
.container .content .service .service_inner .box_list .item_list .item_card {
  margin-bottom: 50px;
  background-color: #d6ebff;
}
.container .content .service .service_inner .box_list .item_list .item_card .card_box {
  margin: 0 auto;
  padding: 10% 0 5% 0;
  width: 85%;
}
.container .content .service .service_inner .box_list .item_list .item_card .card_image {
  width: 100%;
  height: auto;
}
.container .content .service .service_inner .box_list .item_list .item_card .card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.container .content .service .service_inner .box_list .card_title {
  position: absolute;
  width: 50%;
  height: 15%;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  top: 8%;
  left: 0;
  border-radius: 10px;
  font-size: 2.4rem;
  background-color: #d6ebff;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_list .card_title {
    width: 60%;
    height: 20%;
    font-size: 1.2rem;
  }
}
.container .content .service .service_inner .box_list .card_description {
  position: absolute;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  height: 15%;
  bottom: 3%;
  right: 0;
  padding: 0% 10% 3% 3%;
  text-align: right;
  border-radius: 10px;
  background-color: #d6ebff;
  margin-top: 5px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_list .card_description {
    font-size: 1rem;
  }
}
.container .content .service .service_inner .box_list .initial {
  color: white;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.container .content .service .service_inner .box_list .initial p {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .container .content .service .service_inner .box_list .initial p {
    padding: 5px;
  }
}
.container .content .service .service_inner .box_list .initial img {
  border-radius: 0 !important;
}
.container .content .service .service_inner .box_list .list_image {
  width: 100%;
}
.container .content .service .service_inner .box_list .list_image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
}
.container .content .service .service_inner .box_list span {
  font-size: 3rem;
  margin-bottom: 3px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .container .content .service .service_inner .box_list span {
    font-size: 2.6rem;
    margin-right: 3px;
  }
}
.container .content .service .service_inner .slide_box {
  margin-left: 0;
}
.container .content .service .btn_area {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.content_inner {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0 auto;
  box-sizing: border-box;
}
.content_inner .inner_area {
  width: 90%;
  min-height: 600px;
  padding: 0 10px;
  margin: 5px auto;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area {
    margin-top: 100px;
  }
}
.content_inner .inner_area .inner_container {
  width: 90%;
  margin: 0 auto;
  min-height: 550px;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container {
    width: 95%;
  }
}
.content_inner .inner_area .inner_container .breadcrumbs {
  margin-top: 10px;
  color: rgb(110, 110, 110);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .breadcrumbs {
    margin-top: 0;
    font-size: 1.2rem;
  }
}
.content_inner .inner_area .inner_container .breadcrumbs span {
  vertical-align: -7px;
}
.content_inner .inner_area .inner_container .inner_title {
  font-size: 3.2rem;
  padding-top: 60px;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(to left, #353535, #ffd620, #c93900);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .inner_title {
    font-size: 2.6rem;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .inner_title {
    font-size: 2.2rem;
  }
}
.content_inner .inner_area .inner_container .inner_title span {
  font-size: 36px;
  vertical-align: -6px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .inner_title span {
    font-size: 2.4rem;
    vertical-align: -4px;
  }
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .detail {
    font-size: 1.8rem;
  }
}
.content_inner .inner_area .inner_container .inner_text {
  width: 95%;
  font-size: 1.8rem;
  margin: 20px 0;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .inner_text {
    margin: 5px 0;
    width: 100%;
    font-size: 1.2rem;
  }
}
.content_inner .inner_area .inner_container .inner_text .post_title {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  width: 100%;
  border-bottom: 1px solid rgb(107, 107, 107);
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .inner_text .post_title {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .inner_text .post_title {
    font-size: 1.4rem;
  }
}
.content_inner .inner_area .inner_container .inner_text .post_title .post_date {
  font-size: 1.4rem;
  margin-right: 20px;
}
.content_inner .inner_area .inner_container .inner_text .post_title .title_text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.content_inner .inner_area .inner_container .inner_head_text {
  margin: 40px 0 30px 40px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .inner_head_text {
    font-size: 1.4rem;
    margin: 20px 0 20px 10px;
  }
}
.content_inner .inner_area .inner_container .business_text {
  font-size: 1.8rem;
  margin-left: 50px;
  margin-top: 0px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .business_text {
    font-size: 1.2rem;
    margin-left: 20px;
  }
}
.content_inner .inner_area .inner_container .about_text {
  font-size: 2rem;
  margin-top: 60px;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .about_text {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}
.content_inner .inner_area .inner_container .about_text p {
  width: 100%;
  line-height: 1.5;
}
.content_inner .inner_area .inner_container .about_text .text_head {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .about_text .text_head {
    width: 50%;
  }
}
@media screen and (max-width: 350px) {
  .content_inner .inner_area .inner_container .about_text .text_head {
    width: 32%;
  }
}
.content_inner .inner_area .inner_container hr {
  width: 95%;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container hr {
    width: 100%;
    margin-top: 0;
  }
}
.content_inner .inner_area .inner_container .about_image {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .about_image {
    margin-top: 40px;
  }
}
.content_inner .inner_area .inner_container .about_image .street_view {
  width: 95%;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .about_image .street_view {
    width: 100%;
  }
}
.content_inner .inner_area .inner_container .about_image .street_view iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .about_image .street_view iframe {
    height: 250px;
  }
}
.content_inner .inner_area .inner_container .message_title {
  font-size: 3.2rem;
  padding-top: 60px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .message_title {
    font-size: 2.6rem;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .message_title {
    font-size: 2.2rem;
  }
}
.content_inner .inner_area .inner_container .message_box {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .message_box {
    margin-top: 20px;
  }
}
.content_inner .inner_area .inner_container .message_box .message_text {
  font-family: "Noto Serif JP", serif;
  width: 90%;
  margin: 0 auto;
  padding-right: 10px;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .message_box .message_text {
    width: 100%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .message_box .message_text {
    line-height: 1.5;
  }
}
.content_inner .inner_area .inner_container .message_name {
  font-family: "Noto Serif JP", serif;
  width: 100%;
  text-align: right;
  margin-top: 60px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .message_name {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .content_inner .inner_area .inner_container .message_name {
    font-size: 1.4rem;
  }
}
.content_inner .inner_area .inner_container .inner_sub_title {
  color: #363636;
  font-size: 2.4rem;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .inner_sub_title {
    font-size: 1.4rem;
  }
}
.content_inner .inner_area .inner_container .inner_sub_title span {
  vertical-align: -5px;
  margin-right: 5px;
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .inner_sub_title span {
    font-size: 2.4rem;
    margin-right: 0;
    vertical-align: -6px;
  }
}
.content_inner .inner_area .inner_container .etc_title {
  min-width: 40%;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .etc_title {
    min-width: 85%;
  }
}
.content_inner .inner_area .inner_container .item_title {
  font-size: 1.8rem;
  min-width: 40%;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .item_title {
    min-width: 85%;
    margin-top: 5px;
    font-size: 1.2rem;
  }
}
.content_inner .inner_area .inner_container .product_list {
  flex-wrap: wrap;
  font-size: 2.2rem;
  margin-top: 40px;
}
@media screen and (min-width: 1025px) {
  .content_inner .inner_area .inner_container .product_list {
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .product_list {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
.content_inner .inner_area .inner_container .product_list li {
  cursor: pointer;
  position: relative;
  width: 50%;
  margin: 5px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .product_list li {
    width: 65%;
  }
}
.content_inner .inner_area .inner_container .product_list .drop_item {
  transition: 0.3s;
  height: 0;
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 0;
  text-align: left;
  align-items: center;
  font-size: 1.8rem;
  position: absolute;
  top: 100%;
  left: 20%;
  padding: 20px 10px;
  background-color: rgb(0, 115, 192);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  color: azure;
  border-radius: 10px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .product_list .drop_item {
    left: 50%;
    font-size: 1.2rem;
    gap: 3px 0;
    padding: 10px 5px;
  }
}
.content_inner .inner_area .inner_container .product_list .drop_item a {
  visibility: hidden;
}
.content_inner .inner_area .inner_container .product_list .drop_item a:hover {
  transition: 0.2s;
  color: rgb(225, 100, 20);
}
.content_inner .inner_area .inner_container .product_list li:hover {
  color: rgb(0, 95, 219);
}
.content_inner .inner_area .inner_container .product_list li:hover a {
  visibility: visible;
}
.content_inner .inner_area .inner_container .product_list li:hover .drop_item {
  transition: 0.2s;
  opacity: 0.8;
  height: auto;
  z-index: 1;
  white-space: nowrap;
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .product_list li:hover .drop_item {
    min-width: 150px;
  }
}
.content_inner .inner_area .inner_container .product_item {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .product_item {
    margin-top: 10px;
  }
}
.content_inner .inner_area .inner_container .product_item hr {
  width: 100%;
}
.content_inner .inner_area .inner_container .product_item .item_box {
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.content_inner .inner_area .inner_container .product_item .image_box {
  display: -webkit-flex;
  align-items: start;
  justify-content: flex-start;
}
.content_inner .inner_area .inner_container .product_image {
  margin-top: 10px;
  margin-right: 20px;
  width: 40%;
  min-width: 40%;
  height: auto;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  filter: brightness(95%);
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .product_image {
    margin-top: 0px;
    margin-right: 5px;
  }
}
.content_inner .inner_area .inner_container .pdf_btn {
  font-size: 1.4rem;
  margin-left: 20px;
  margin-bottom: 0;
  width: 60px;
  height: 25px;
  border-radius: 5px;
  vertical-align: -5px;
}
@media screen and (max-width: 1024px) {
  .content_inner .inner_area .inner_container .pdf_btn {
    margin: 0 0 2px 5px;
    width: 40px;
    height: 20px;
    font-size: 1rem;
  }
}

.post_content {
  margin-top: 30px;
  font-size: 1.6rem;
}
.post_content iframe {
  aspect-ratio: 16/9;
  height: auto;
  max-width: 100%;
}
.post_content img {
  max-width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

.pagenation {
  width: 90%;
  margin: 0 auto;
}

.page-numbers {
  font-size: 1.6rem;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}
.page-numbers li {
  margin-right: 10px;
}

.post_pagenation {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  width: 90%;
  margin: 0 auto;
}
.post_pagenation .post_pagenation_inner {
  margin-top: 30px;
  margin-right: 20px;
}
.post_pagenation span {
  vertical-align: -7px;
}
.post_pagenation .left_arrow {
  transform: scale(-1, 1);
}

@media screen and (max-width: 767px) {
  .sdgs_main_title {
    padding-top: 0px !important;
  }
}

.sdgs_main_box {
  width: 80%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sdgs_main_box {
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .sdgs_main_box {
    width: 95%;
    grid-template-columns: repeat(2, 1fr);
    margin: 20px auto;
  }
}
.sdgs_main_box .sdgs_card {
  position: relative;
  margin: 0 auto;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .sdgs_main_box .sdgs_card {
    width: 100px;
  }
}
.sdgs_main_box .sdgs_card a {
  display: block;
}
.sdgs_main_box .sdgs_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sdgs_main_box .sdgs_card img:hover {
  scale: 1.1;
  filter: brightness(105%);
  transition: 0.3s;
}

.sdgs_box_list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
}
@media screen and (max-width: 1024px) {
  .sdgs_box_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .sdgs_box_list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
    gap: 40px 30px;
  }
}

.sdgs_box {
  width: 100%;
}

.sdgs_image img {
  width: 100%;
}

.sdgs_title {
  margin-top: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .sdgs_title {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}

.sdgs_description {
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .sdgs_description {
    font-size: 1.4rem;
  }
}

.privacy_h2 {
  padding-top: 20px !important;
  font-size: 2.2rem !important;
}
@media screen and (max-width: 767px) {
  .privacy_h2 {
    font-size: 1.6rem !important;
  }
}

.privacy_p {
  margin-top: 10px !important;
  font-size: 1.6rem !important;
}
@media screen and (max-width: 767px) {
  .privacy_p {
    font-size: 1.2rem !important;
  }
}

.top_bg {
  background-image: url("static/images/bg_top.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.about_bg {
  background-image: url("static/images/bg_002.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.message_bg {
  background-image: url("static/images/bg_003.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.recruit_bg {
  background-image: url("static/images/bg_004.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.business_bg {
  background-image: url("static/images/bg_005.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.products_bg {
  background-image: url("static/images/bg_001.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.info_bg {
  background-image: url("static/images/bg_001.jpg");
  background-attachment: fixed;
  background-size: cover;
}

footer {
  font-size: 1.8rem;
  height: auto;
  padding-top: 100px;
  padding-bottom: 60px;
  margin-left: 250px;
  text-align: left;
  background-color: rgba(250, 250, 250, 0.8);
}
@media screen and (max-width: 767px) {
  footer {
    margin-left: 0;
    padding-top: 60px;
  }
}
footer .footer_inner {
  margin-left: 40px;
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  footer .footer_inner {
    display: -webkit-flex;
    align-items: start;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner {
    margin: 0 auto;
    width: 80%;
  }
}
footer .company_info {
  font-size: 1.4rem;
  line-height: 1.5;
}
footer .site_map {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  footer .site_map {
    margin-top: 40px;
  }
}
footer .site_map_list {
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  footer .site_map_list {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  footer .site_map_list {
    font-size: 1.2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
footer .copy {
  font-size: 1.4rem;
  color: #616161;
  text-shadow: 1px 1px 0 rgb(200, 200, 200);
  padding-right: 5%;
  text-align: right;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  footer .copy {
    padding-top: 40px;
    font-size: 1rem;
    text-align: center;
  }
}

.swiper {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .swiper {
    margin-bottom: 40px;
  }
}

.swiper-pagination-bullet {
  background-color: rgb(50, 50, 50) !important;
  border-radius: 0px !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: rgb(180, 180, 180) !important;
  scale: 120%;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    scale: 80%;
  }
}

.swiper-button-prev {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    margin: 0;
  }
}

.swiper-button-next {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    margin: 0;
  }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transition: 0.5s;
  color: rgb(50, 50, 50) !important;
}

#page_top {
  cursor: pointer;
  background-color: rgb(0, 115, 192);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  border-radius: 5px;
  color: azure;
  width: 60px;
  height: 60px;
  text-align: center;
  transition: all 0.3s;
  font-size: 1.4rem;
}
#page_top span {
  font-size: 36px;
}

#page_top:hover {
  filter: brightness(120%);
}
#page_top:hover a {
  color: white;
}

#page_top {
  position: fixed;
  right: 60px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 1024px) {
  #page_top {
    right: 20px;
  }
}

#page_top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page_top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}/*# sourceMappingURL=style.css.map */