@charset "UTF-8";
/*Reset
---------------------------------------------------------------------*/
/*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,
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%;
  font-style: normal;
  background: transparent;
}

article, nav, section, header, footer, aside, main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:after, *:before {
  box-sizing: border-box;
}

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

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --header-height:100px;
  --header-height-fixed:70px;
  --header-height-sp:70px;
  --radius:5vw;
  --main-rgb:41,110,255; /*ロゴ*/
  --sub-rgb: 144,0,158; /*紫*/
  --back-rgb: 232,243,252; /*水色*/
  --text-rgb: 51,51,51; /*#333*/
  --link-rgb: 243,91,164; /**/
  --grd: linear-gradient(90deg,rgb(41,110,255) 0%, rgb(144,0,158) 100%);
  --red: 245,40,40;
  --orange: 255,64,0; /*オレンジ*/
  /*--main-rgb:0,120,228;青*/
}

/*共通
---------------------------------------------------------------------*/
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
}

.inner {
  width: 96%;
  margin: 0px auto;
  padding: 5%;
}
@media (min-width: 768px) and (orientation: portrait) {
  .inner {
    max-width: 720px;
  }
}
@media (min-width: 768px) {
  .inner {
    max-width: 1280px;
  }
}

/*body
---------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFF;
  color: rgb(var(--text-rgb));
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-family: "Arial", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  overflow-wrap: break-word;
}

/*wrapper
---------------------------------------------------------------------*/
#WRAPPER {
  margin: 0px;
  padding: 0px;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: rgb(var(--back-rgb));
}

#overlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgba(255, 255, 255, 0.8);
}
#overlay.open {
  opacity: 1;
  visibility: visible;
}

/*header
---------------------------------------------------------------------*/
#header {
  width: 100vw;
  overflow: hidden;
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
  z-index: 100;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  background-color: rgb(var(--back-rgb));
  height: var(--header-height-sp);
}
@media (min-width: 768px) {
  #header {
    height: var(--header-height);
  }
}
#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: 0px 2% 0;
}
@media (min-width: 768px) {
  #header .header_inner {
    padding: 0px 5% 0;
  }
}
#header #headerlogo {
  transition: all 0.5s;
  margin: 0;
  z-index: 100;
  width: 240px;
}
@media (min-width: 768px) {
  #header #headerlogo {
    width: 380px;
  }
}
#header #headerlogo h1#logo {
  margin: 0;
  padding: 0;
}
#header #headerlogo .logo_iyotetsu {
  margin: 0;
  padding: 0 0 5px;
  line-height: 0.1;
  width: 55%;
}
@media (min-width: 768px) {
  #header #headerlogo .logo_iyotetsu {
    max-width: 200px;
  }
}
#header.headerfixed {
  background-color: rgba(255, 255, 255, 0.8);
  height: var(--header-height-sp-fixed);
}
@media (min-width: 768px) {
  #header.headerfixed {
    height: var(--header-height-fixed);
  }
}
@media (min-width: 768px) {
  #header.headerfixed #headerlogo {
    width: 300px;
  }
}
#header.headerfixed .logo_iyotetsu {
  display: none;
}

/*PC*/
#pc_nav {
  display: none;
}
@media screen and (min-width: 1281px) {
  #pc_nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    flex-grow: 2;
    gap: 10px;
  }
  #pc_nav .mainmenu {
    display: flex;
    position: relative;
    text-align: center;
    justify-content: end;
    gap: 2em;
  }
  #pc_nav .mainmenu > li {
    margin: 0;
    font-size: clamp(0.8rem, 0.6378435518rem + 0.422832981vw, 0.9rem);
    font-weight: normal;
    position: relative;
  }
  #pc_nav .mainmenu > li a {
    padding: 0px;
    position: relative;
    color: rgb(var(--main-rgb));
  }
  #pc_nav .mainmenu > li > a:after {
    transition: all 0.4s;
    content: "";
    height: 3px;
    width: 0%;
    display: block;
    background: var(--grd);
    border-radius: 5px;
  }
}

#body_about .mainmenu li.navi_about a:after,
#body_contact .mainmenu li.navi_contact a:after,
#body_recruit .mainmenu li.navi_recruit a:after,
#pc_nav .mainmenu li a:hover:after,
#pc_nav .mainmenu li a.current:after {
  width: 100%;
}

#menu_btn {
  position: relative;
  cursor: pointer;
  padding: 0 0px;
  width: 55px;
  height: 55px;
  z-index: 25;
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
  font-size: 15px;
}
#menu_btn span:not(:nth-of-type(3)) {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 5%;
  height: 2px;
  border-radius: 5px;
  background: rgb(var(--main-rgb));
  width: 90%;
}
#menu_btn span:nth-of-type(1) {
  top: 14px;
}
#menu_btn span:nth-of-type(2) {
  top: 26px;
}
#menu_btn span:nth-of-type(3) {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: rgb(var(--main-rgb));
}
#menu_btn.active span:nth-of-type(1) {
  top: 12px;
  transform: translateY(6px) rotate(-155deg);
}
#menu_btn.active span:nth-of-type(2) {
  top: 24px;
  transform: translateY(-6px) rotate(155deg);
}

#mainnavi {
  background-color: rgb(var(--back-rgb));
  z-index: 20;
  height: 100vh;
  width: 30vw;
  min-width: 320px;
  padding: var(--header-height-sp) 0;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  #mainnavi {
    padding: var(--header-height) 0;
  }
}
#mainnavi.active {
  opacity: 1;
  visibility: visible;
  right: 0px;
}
#mainnavi ul {
  margin: 0 3% 30px;
  border-top: dotted 1px rgb(var(--main-rgb));
}
#mainnavi li {
  margin: 0;
  padding: 0 0;
  font-size: 1rem;
}
#mainnavi li a {
  display: block;
  padding: 1rem 0.5rem;
  text-decoration: none;
  color: rgb(var(--main-rgb));
  border-bottom: dotted 1px rgb(var(--main-rgb));
}
#mainnavi .mainnavilogo {
  text-align: center;
  margin: 0;
}
#mainnavi .mainnavilogo img {
  height: 20px;
}

/*main
---------------------------------------------------------------------*/
#main {
  padding: 0px 0 0 0;
  position: relative;
  margin-top: var(--header-height-sp);
}
@media (min-width: 768px) {
  #main {
    margin-top: var(--header-height);
  }
}

.topmainimage {
  background: url(../img/h1.webp) no-repeat center center;
  background-size: cover;
}

#main h1 {
  font-size: clamp(2.25rem, 0.0608879493rem + 5.7082452431vw, 3.6rem);
  color: #FFF;
  position: relative;
  text-align: center;
  align-items: center;
  letter-spacing: 0;
  line-height: 1.1;
}
#main h1 small {
  position: relative;
  display: block;
  padding: 0 0em 0 0;
  font-weight: normal;
  font-size: 1rem;
}

#body_top #topicpath {
  display: none;
}

#topicpath {
  padding: 0;
  font-size: 0.7rem;
  margin: 1em auto 1em;
}

/*sidecol
---------------------------------------------------------------------*/
/*footer
---------------------------------------------------------------------*/
#footer {
  margin: 0px;
  position: relative;
}
#footer #copyright {
  margin: 2em auto;
  padding: 0px 0px;
  text-align: center;
  font-size: 0.8rem;
  color: rgb(var(--main-rgb));
}

#footer article {
  position: relative;
  z-index: 1;
  color: #FFF;
}
#footer article::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  height: 100%;
  width: 94%;
  max-width: 1400px;
  transform: translateX(-50%);
  z-index: -1;
  background: var(--grd);
  border-radius: var(--radius);
}
#footer article a {
  color: #FFF;
}
#footer article a:hover {
  color: rgb(var(--link-rgb));
}
@media (min-width: 768px) {
  #footer article .contact_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#footer article .contact_wrap dt {
  margin: 0;
  padding: 0;
}
#footer article .contact_wrap dd {
  margin: 1em;
  padding: 0;
  text-align: center;
}
#footer article .contact_wrap .tel a {
  position: relative;
  font-size: clamp(2.25rem, 0.0608879493rem + 5.7082452431vw, 3.6rem);
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer article .contact_wrap .tel a::before {
  content: "";
  height: 1em;
  width: 1em;
  margin-right: 0.2em;
  background: url(../img/tel.svg) no-repeat left center;
  background-size: 1em;
}

/*common
---------------------------------------------------------------------*/
#maincol {
  z-index: 10;
  position: relative;
  padding: 0px 0 0 0;
}

#maincol article {
  margin: calc(3vw + 40px) 0;
  position: relative;
  padding: 0;
}

#maincol article::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 97%;
  max-width: calc(100% - (100% - 1400px) / 2);
  z-index: -1;
}

#maincol article.r_right::before {
  background-color: #FFF;
  left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

#maincol article.r_left::before {
  background-color: #FFF;
  right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.fadein {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity, transform;
  transform: translate(0, 50px);
}

.fadein-down {
  transform: translate(0, -50px);
}

.r_right {
  transform: translate(-50px, 0);
}

.r_left {
  transform: translate(50px, 0);
}

#maincol article:nth-of-type(1),
.view {
  opacity: 1;
  transform: translate(0, 0);
}

#maincol h2,
#footer h2 {
  font-size: clamp(2.25rem, 0.0608879493rem + 5.7082452431vw, 3.6rem);
  margin: 0 0 1rem 0;
  color: rgb(var(--main-rgb));
  line-height: 1.2;
}
#maincol h2 span,
#footer h2 span {
  display: inline-block;
  padding: 0;
  font-weight: bold;
  margin: 0;
  background: var(--grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#maincol h2 small,
#footer h2 small {
  font-size: 1rem;
  display: block;
}

#footer h2 {
  color: #FFF;
}
#footer h2 span {
  background: #FFF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#maincol h3 {
  margin: 2em 0 0.75em;
  padding: 0 0 0;
  font-size: clamp(1.2rem, 0.5513742072rem + 1.6913319239vw, 1.6rem);
  color: rgba(var(--main-rgb));
  position: relative;
}

#maincol h4 {
  margin: 1em 0 0.75em;
  padding: 0 0 0;
  font-size: 1.15em;
}

p {
  margin: 0 0 1em;
}

p.wiki_img {
  text-align: center;
  margin: 0 auto 1em;
  width: 80%;
  max-width: 720px;
  height: auto;
}
@media (min-width: 768px) {
  p.wiki_img {
    max-height: 640px;
  }
}
p.wiki_img img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
}

.serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.margin_top {
  margin-top: 50px !important;
}

.center {
  text-align: center !important;
}

.txtleft {
  text-align: left !important;
}

.txtright {
  text-align: right !important;
}

.small {
  font-size: 80%;
}

.large {
  font-size: 120%;
}

.widthmax {
  width: 100%;
}

img.image {
  border-radius: 20px;
  width: 80%;
  max-width: 640px;
}

strong {
  font-weight: bold;
  font-size: 110%;
}

em, .red {
  color: rgb(var(--red));
}

a {
  text-decoration: none;
  color: rgb(var(--link-rgb));
  transition: ease 0.2s;
}
a:hover {
  color: rgb(var(--main-rgb));
}
a img {
  transition: ease 0.2s;
}
a:hover img {
  opacity: 0.8;
}

.linkbtn {
  line-height: 0.1;
}

.linkbtn a {
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  position: relative;
  padding: 0.75em 1.5em;
  background-color: #FFF;
  color: rgb(var(--main-rgb)) !important;
  border: solid 2px rgb(var(--main-rgb)) !important;
  border-radius: 100px;
  min-width: 40%;
}
@media (min-width: 768px) {
  .linkbtn a:hover {
    background-color: rgb(var(--main-rgb));
    color: #FFF !important;
  }
}

a.pdf::after,
a.doc::after,
a.xls::after {
  display: inline-block;
  content: "";
  border-radius: 20px;
  font-size: 70%;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 0.2em;
  background-color: #FFF;
  border: solid 1px #000;
}

a.pdf {
  position: relative;
}
a.pdf::after {
  content: "PDF";
  border-color: red;
  color: red;
}

a.doc {
  position: relative;
}
a.doc::after {
  content: "Word";
  border-color: blue;
  color: blue;
}

a.xls {
  position: relative;
}
a.xls::after {
  content: "Excel";
  border-color: green;
  color: green;
}

a.blank:not(a:has(img)) {
  position: relative;
}
a.blank:not(a:has(img))::after {
  content: "　";
  display: inline-block;
  margin: 0 5px;
  width: 14px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

.chui {
  text-indent: -1em;
  padding-left: 1em;
}

#maincol li {
  margin-bottom: 0.5em;
}

ul.ul_default {
  list-style: none;
  margin: 0 0 1em;
  padding: 0 0 0 0em;
}
ul.ul_default li {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  position: relative;
}
ul.ul_default li:before {
  content: "";
  height: 1em;
  width: 1em;
  border-radius: var(--radius);
  background-color: rgb(var(--main-rgb));
  position: absolute;
  top: 0.15em;
  left: 0;
}

table.default {
  border-collapse: collapse;
  min-width: 50%;
  margin: 0 0 15px;
  border-top: solid 1px rgb(var(--main-rgb), 1);
}
table.default tr {
  border-bottom: solid 1px rgb(var(--main-rgb), 1);
}
table.default th, table.default td {
  padding: 0.5em 1em;
  font-weight: normal;
  background-color: rgb(255, 255, 255);
  text-align: left;
}
table.default th {
  font-weight: bold;
}
table.default thead th {
  text-align: center;
}
@media (max-width: 767px) {
  table.cellblock tr {
    display: block;
    margin-bottom: 3px;
  }
  table.cellblock th, table.cellblock td {
    display: block;
    padding: 0.5em;
  }
  .scroll {
    overflow: auto;
    margin: 0 0 2em;
  }
  .scroll table {
    position: relative;
    width: auto;
  }
  .scroll th, .scroll td {
    white-space: nowrap;
  }
}
dl.dl_default div {
  margin: 0 0 1em 0em;
}
dl.dl_default dt {
  margin: 0 0 0.5em;
  padding: 0 0 0;
  position: relative;
  font-weight: bold;
  font-size: clamp(0.95rem, 0.5446088795rem + 1.0570824524vw, 1.2rem);
}
dl.dl_default dd {
  margin: 0 0 1em 2em;
}

dl.whatsnew div {
  margin: 0 0 1em 0em;
  display: flex;
  gap: 0.5em;
}
dl.whatsnew dt {
  margin: 0 0 0.5em;
  padding: 0 0 0;
}
dl.whatsnew dd {
  margin: 0 0;
}

/*TOPページ*/
#body_top .topmainimage {
  background: none;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
#body_top .topmainimage .inner {
  position: absolute;
  z-index: 5;
  top: 36%;
  left: 50%;
  padding: 0;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1024px;
  transform: translate(-50%, 0);
}
#body_top .topmainimage .inner h1 {
  margin: 0;
  padding: 0;
}
#body_top .topmainimage .inner p {
  width: 80%;
  margin: 0;
}
#body_top .topmainimage .mainimage {
  margin-left: 3%;
}
#body_top .topmainimage .mainimage img {
  display: block;
  margin: auto;
  border-radius: var(--radius) 0 0 var(--radius);
}

.biz_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.biz_list li {
  margin: 0;
  padding: 0;
  width: 48%;
  position: relative;
}
.biz_list strong {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  text-shadow: 3px 3px 10px #000;
  font-size: clamp(1.4rem, -0.221564482rem + 4.2283298097vw, 2.4rem);
}
.biz_list img {
  border-radius: 10px;
}

.credo_dl {
  margin: 0 0 0 1em;
}
.credo_dl div {
  display: flex;
  margin: 0 0 0.5em;
}
.credo_dl dt {
  width: 3em;
  flex-shrink: 0;
}
.credo_dl dt::after {
  content: "：";
}
.credo_dl dd {
  margin: 0;
}

.credo_ol li {
  font-weight: bold;
  font-size: 1.15em;
  margin: 0 0 1em;
}
.credo_ol span {
  font-weight: normal;
  font-size: 1rem;
  display: block;
}

/**/
.iframe {
  margin: 30px auto;
}
.iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 720px;
  display: block;
  margin: auto;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .flex_box {
    display: flex;
    justify-content: space-around;
    gap: 2%;
  }
}
@media print {
  footer, #overlay, #menu_btn, #yoyaku_link_btn, #sidecol, #topicpath {
    display: none;
  }
  header {
    position: relative !important;
  }
}

/*# sourceMappingURL=base.css.map */
