@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap");
.cormorant-garamond-light {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: normal;
}

/* bootstrap.css基本の打消し（同じclass名での書き換え）


/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 50%;
}
@media (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #333;
  margin: 0px;
  font-family: "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  font-size: 1.4rem;
}

h1 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h2 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h3 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h4 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h5 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

img {
  border: 0px;
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

dl {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #000;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  padding: 0px 15px;
  transition: all 600ms 0s ease;
  height: 40px;
}
@media (min-width: 1200px) {
  #header {
    height: 100px;
  }
}
#header #logo {
  height: 30px;
}
@media (min-width: 1200px) {
  #header #logo {
    height: auto;
  }
}
#header.on {
  background: #fff;
  height: 40px;
}
#header.on #logo {
  filter: invert(90%);
  transform: translateZ(0);
  height: 30px;
}
#header.on #mainNavi a {
  color: #444;
}
#header.on #mainNavi a:after {
  content: "";
  display: block;
  background: #00a0b4;
  width: 0%;
  height: 1px;
  transition: all 600ms 0s ease;
}
#header.on #mainNavi a:hover:after {
  width: 100%;
}
#header.on #mainNavi li.active a:after {
  width: 100%;
}

#mainNavi {
  display: none;
  color: #fff;
  display: none;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  #mainNavi {
    display: flex;
  }
}
#mainNavi li {
  margin: 0px 1em;
}
#mainNavi li a {
  text-decoration: none;
  color: #fff;
}
#mainNavi li.active a:after {
  width: 100%;
  content: "";
  display: block;
  background: #fff;
  height: 1px;
  transition: all 600ms 0s ease;
}

/*-------------------------------------------------------------------------------------------*
   *
   * Navigation
   *  
   *-------------------------------------------------------------------------------------------*/
/* -------------------------------
      サイドメニュー
  -------------------------------- */
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 50px 30px 0px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -370px;
    width: 370px;
  }
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 1.4rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
  margin-bottom: 5px;
}
#sidebar .list-sidenav > li > a {
  color: #888888;
  line-height: 1.2;
  display: flex;
  padding: 1.5rem 0.5rem;
  position: relative;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #5f5f5f;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  display: inline-block;
  content: url(../images/icon_arrow.svg);
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5em;
  margin-right: 0.5em;
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  border-bottom: solid 1px #00a0b4;
  color: #00a0b4;
}
#sidebar .list-sidenav > li.active > a:after,
#sidebar .list-sidenav > li a:hover:after {
  filter: invert(43%) sepia(55%) saturate(4710%) hue-rotate(160deg) brightness(99%) contrast(103%);
}

body.side-open {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body.side-open::-webkit-scrollbar {
  display: none;
}

.sidebar-logo {
  width: 240px;
  filter: brightness(0);
}

#sidebarTel {
  display: flex;
  flex-direction: column;
  margin: 25px 0px 0px 1em;
}
#sidebarTel .tel .en {
  font-size: 1.8rem;
}
#sidebarTel .tel .num {
  font-size: 3.2rem;
}

/* -------------------------------
      オーバーレイ
  -------------------------------- */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  z-index: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* -------------------------------
      HambergerMenu
  -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  transform: translate3d(0, 0, 0);
  z-index: 103;
}

#menuButton {
  background: #333;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 1200px) {
  #menuButton {
    display: none;
  }
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -7px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 7px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  color: #fff;
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

body.side-open #menuButton {
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
.contactWrap {
  width: 100%;
  background: url(../images/bg_contact.jpg) no-repeat center center;
  background-size: auto 100%;
  padding: 90px 0px;
}

.contactBtn {
  display: inline-flex;
  max-width: 420px;
  width: 100%;
  height: 60px;
  background: #0494a7;
  color: #fff;
  padding: 0px 2.5rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 1500ms 0s ease;
  font-size: 3rem;
  border-radius: 30px;
}
.contactBtn:after {
  content: url(../images/icon_arrow.png);
  display: block;
  height: 30px;
}
.contactBtn:hover {
  opacity: 0.7;
  color: #fff;
}

.contactTel {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .contactTel {
    margin-bottom: 0px;
  }
}
.contactTel a {
  text-decoration: none;
  color: #fff;
}
.contactTel .en {
  font-size: 5.6vw;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}
@media (min-width: 568px) {
  .contactTel .en {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .contactTel .en {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .contactTel .en {
    font-size: 2.4rem;
  }
}
@media (min-width: 1400px) {
  .contactTel .en {
    font-size: 3.6rem;
  }
}
.contactTel .num {
  font-size: 9.2vw;
  line-height: 1em;
}
@media (min-width: 568px) {
  .contactTel .num {
    font-size: 4.8rem;
  }
}
@media (min-width: 992px) {
  .contactTel .num {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .contactTel .num {
    font-size: 3.6rem;
  }
}
@media (min-width: 1400px) {
  .contactTel .num {
    font-size: 4.8rem;
  }
}

footer {
  width: 100%;
}

#footerBody {
  width: 100%;
  padding: 70px 0px 20px;
}
@media (min-width: 992px) {
  #footerBody {
    padding: 150px 0px 70px;
  }
}

.footerLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .footerLeft {
    align-items: flex-start;
  }
}
.footerLeft #f-logo {
  width: 70vw;
  text-align: center;
}
@media (min-width: 768px) {
  .footerLeft #f-logo {
    max-width: 320px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .footerLeft #f-logo {
    text-align: left;
  }
}
.footerLeft p {
  width: 80vw;
}
@media (min-width: 576px) {
  .footerLeft p {
    width: 260px;
  }
}
@media (min-width: 992px) {
  .footerLeft p {
    width: auto;
  }
}

.footer_logo {
  text-align: center;
}

.footer_logo img {
  width: 200px;
}



#textLink {
  display: none;
  justify-content: center;
  font-size: 0.9rem;
  height: 41px;
  align-items: center;
}
@media (min-width: 768px) {
  #textLink {
    display: flex;
  }
}
@media (min-width: 992px) {
  #textLink {
    justify-content: flex-end;
    font-size: 1.3rem;
  }
}
#textLink li {
  margin: 0px 1.5rem;
}
#textLink li a {
  text-decoration: none;
}
#textLink li a:hover {
  text-decoration: underline;
}

#bnr_SDGS {
  width: 60vw;
}
@media (min-width: 576px) {
  #bnr_SDGS {
    width: 360px;
  }
}
@media (min-width: 768px) {
  #bnr_SDGS {
    width: 420px;
  }
}

#copy {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 15px 0px;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  #copy {
    padding: 30px 0px;
  }
}

#pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#sliderWrap {
  position: relative;
  line-height: 1;
}
#sliderWrap #catch {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
  z-index: 1;
  width: 95%;
}
@media (min-width: 768px) {
  #sliderWrap #catch {
    width: 80vw;
    right: 15px;
  }
}
@media (min-width: 1200px) {
  #sliderWrap #catch {
    width: auto;
  }
}
#sliderWrap #scroll {
  position: absolute;
  bottom: 10vw;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}
@media (min-width: 992px) {
  #sliderWrap #scroll {
    bottom: 80px;
  }
}

#js-slider-1 li img:nth-child(1) {
  display: none;
}
#js-slider-1 li img:nth-child(2) {
  display: block;
}
@media (min-width: 992px) {
  #js-slider-1 li img:nth-child(1) {
    display: block;
  }
  #js-slider-1 li img:nth-child(2) {
    display: none;
  }
}

.sekouBox {
  position: relative;
  z-index: 1;
  margin: -30px 15px 0px;
  height: 260px;
  background: url(../images/bg_sekou.jpg) no-repeat;
  background-size: auto 100%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .sekouBox {
    text-align: left;
    margin: -30px 30px 0px;
    height: 500px;
  }
}
.sekouBox p {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .sekouBox p {
    font-size: 3.6rem;
  }
}
.sekouBox p .lg {
  font-size: 3.2rem;
}
@media (min-width: 992px) {
  .sekouBox p .lg {
    font-size: 4.8rem;
  }
}
.sekouBox p .xl {
  font-size: 4.8rem;
}
@media (min-width: 992px) {
  .sekouBox p .xl {
    font-size: 7.2rem;
  }
}
.sekouBox p .line2 {
  margin-left: 0rem;
}
@media (min-width: 768px) {
  .sekouBox p .line2 {
    margin-left: 8rem;
  }
}

.aboutBox {
  width: 100%;
  background: #282c3c;
  overflow: hidden;
}
@media (min-width: 992px) {
  .aboutBox {
    background: #fff url(../images/bg_blueline.jpg) repeat-x top center;
  }
}
.aboutBox .box {
  padding: 30px;
  height: auto;
  background: url(../images/bg_gifu.png) no-repeat top left;
  background-size: contain;
  position: relative;
}
@media (min-width: 992px) {
  .aboutBox .box {
    padding: 90px 70px 0px 20px;
    height: 750px;
  }
}

.serviceBanner {
  display: flex;
  aspect-ratio: 2/1;
  color: #fff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .serviceBanner {
    aspect-ratio: 630/400;
  }
}
.serviceBanner .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}
.serviceBanner .ja {
  font-size: 2.8rem;
}
.serviceBanner.service01 {
  background: url(../images/p01_img02.jpg) no-repeat;
  background-size: cover;
}
.serviceBanner.service02 {
  background: url(../images/p01_img03.jpg) no-repeat;
  background-size: cover;
}
.serviceBanner.service03 {
  background: url(../images/p01_img04.jpg) no-repeat;
  background-size: cover;
}

.recruitBox .container {
  background: url(../images/bg_recruit.jpg) no-repeat;
  background-size: 100% auto;
  padding: 17vw 30px 0px;
  max-width: 1600px;
}
@media (min-width: 768px) {
  .recruitBox .container {
    padding: 160px 30px 0px;
  }
}
@media (min-width: 992px) {
  .recruitBox .container {
    padding: 210px 30px 0px;
  }
}
@media (min-width: 1200px) {
  .recruitBox .container {
    padding: 90px 30px 0px;
  }
}
@media (min-width: 1400px) {
  .recruitBox .container {
    padding: 120px 30px 0px;
  }
}
.recruitBox .container .row {
  align-items: flex-end;
}
.recruitBox .box {
  background: #282c3c url(../images/bg_logo_mark.jpg) no-repeat top right;
  padding: 30px;
  aspect-ratio: initial;
  color: #fff;
}
@media (min-width: 1200px) {
  .recruitBox .box {
    aspect-ratio: 536/432;
  }
}

.movie {
  max-width: 100%;
  vertical-align: top;
  height: auto;
  width: 100%;
}

/*-------------------------------------------------------------------------------------------*
 *
 * service.html
 *  
 *-------------------------------------------------------------------------------------------*/
/* 
	tabBtn
 *--------------------------------------------*/
.tabBtn {
  background: #282c3c;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 0px 30px;
  text-decoration: none;
  position: relative;
}

.tabBtn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tabBtn:after {
  content: url(../images/icon_double_arrow_down.svg);
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  display: inline-block;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.tabBtn:hover {
  opacity: 0.8;
  color: #fff;
}

.grayBox-rigth {
  background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 240px, rgb(255, 255, 255) 240px);
  background-size: 95% auto, auto;
  background-position: top 120px center, top center;
  background-repeat: no-repeat, no-repeat;
  padding-top: 60px;
}
@media (min-width: 576px) {
  .grayBox-rigth {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 240px, rgb(255, 255, 255) 240px);
    background-size: 498px auto, auto;
    background-position: top 125px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 768px) {
  .grayBox-rigth {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 240px, rgb(255, 255, 255) 240px);
    background-size: 648px auto, auto;
    background-position: top 125px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 992px) {
  .grayBox-rigth {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 360px, rgb(255, 255, 255) 360px);
    background-size: 845px auto, auto;
    background-position: top 150px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 1200px) {
  .grayBox-rigth {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 360px, rgb(255, 255, 255) 360px);
    background-size: 1260px auto, auto;
    background-position: top 180px center, top center;
    background-repeat: no-repeat, no-repeat;
    padding-top: 90px;
  }
}
@media (min-width: 1400px) {
  .grayBox-rigth {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 360px, rgb(255, 255, 255) 360px);
    background-size: 1420px auto, auto;
    background-position: top 180px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
.grayBox-rigth .box {
  padding: 0px;
}
@media (min-width: 1200px) {
  .grayBox-rigth .box {
    padding: 0px 0px 0px 50px;
  }
}

.grayBox-left {
  background: url(../images/bg_logomark_left.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 240px, rgb(255, 255, 255) 240px);
  background-size: 95% auto, auto;
  background-position: top 120px center, top center;
  background-repeat: no-repeat, no-repeat;
  padding-top: 60px;
}
@media (min-width: 576px) {
  .grayBox-left {
    background: url(../images/bg_logomark_left.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 240px, rgb(255, 255, 255) 240px);
    background-size: 498px auto, auto;
    background-position: top 125px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 768px) {
  .grayBox-left {
    background: url(../images/bg_logomark_left.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 240px, rgb(255, 255, 255) 240px);
    background-size: 648px auto, auto;
    background-position: top 125px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 992px) {
  .grayBox-left {
    background: url(../images/bg_logomark_left.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 360px, rgb(255, 255, 255) 360px);
    background-size: 845px auto, auto;
    background-position: top 150px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 1200px) {
  .grayBox-left {
    background: url(../images/bg_logomark_left.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 360px, rgb(255, 255, 255) 360px);
    background-size: 1260px auto, auto;
    background-position: top 180px center, top center;
    background-repeat: no-repeat, no-repeat;
    padding-top: 90px;
  }
}
@media (min-width: 1400px) {
  .grayBox-left {
    background: url(../images/bg_logomark_left.jpg), linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 360px, rgb(255, 255, 255) 360px);
    background-size: 1420px auto, auto;
    background-position: top 180px center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
.grayBox-left .box {
  padding: 0px;
}
@media (min-width: 1200px) {
  .grayBox-left .box {
    padding: 0px 0px 0px 50px;
  }
}

.bg_blue {
  background: #282c3c;
  color: #fff;
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .bg_blue {
    padding: 60px 0px;
  }
}

.blueBox-right {
  background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 80px, rgb(255, 255, 255) 80px);
  background-size: 98% auto, auto;
  background-position: top center, top center;
  background-repeat: no-repeat, no-repeat;
  padding-top: 30px;
}
@media (min-width: 576px) {
  .blueBox-right {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 120px, rgb(255, 255, 255) 120px);
    background-size: 600px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 768px) {
  .blueBox-right {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-size: 780px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 992px) {
  .blueBox-right {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-size: 1020px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 1200px) {
  .blueBox-right {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-size: 1260px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 1400px) {
  .blueBox-right {
    background: url(../images/bg_logomark_right.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
    background-size: 1420px auto, auto;
  }
}
.blueBox-right .box {
  padding: 0px 30px;
}
@media (min-width: 992px) {
  .blueBox-right .box {
    padding: 0px 0px 0px 50px;
  }
}

.blueBox {
  background: url(../images/bg_white.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 80px, rgb(255, 255, 255) 80px);
  background-size: 98% auto, auto;
  background-position: top center, top center;
  background-repeat: no-repeat, no-repeat;
  padding-top: 30px;
}
@media (min-width: 576px) {
  .blueBox {
    background: url(../images/bg_white.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 120px, rgb(255, 255, 255) 120px);
    background-size: 600px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 768px) {
  .blueBox {
    background: url(../images/bg_white.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-size: 780px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 992px) {
  .blueBox {
    background: url(../images/bg_white.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-size: 1020px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 1200px) {
  .blueBox {
    background: url(../images/bg_white.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-size: 1260px auto, auto;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (min-width: 1400px) {
  .blueBox {
    background: url(../images/bg_white.jpg), linear-gradient(180deg, rgb(40, 44, 60) 0%, rgb(40, 44, 60) 180px, rgb(255, 255, 255) 180px);
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
    background-size: 1420px auto, auto;
  }
}
.blueBox .box {
  padding: 0px 30px;
}
@media (min-width: 992px) {
  .blueBox .box {
    padding: 0px 0px 0px 50px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
.grayBox-bottom {
  background: linear-gradient(0deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 270px, rgb(255, 255, 255) 270px);
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .grayBox-bottom {
    padding-bottom: 60px;
  }
}

.grayBox-top {
  background: linear-gradient(180deg, rgb(235, 237, 242) 0%, rgb(235, 237, 242) 270px, rgb(255, 255, 255) 270px);
  padding-top: 30px;
}
@media (min-width: 992px) {
  .grayBox-top {
    padding-top: 60px;
  }
}

.enviroBox {
  background: #282c3c;
  color: #fff;
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .enviroBox {
    padding: 30px;
  }
}
.enviroBox.box01 {
  background: #282c3c;
}
.enviroBox.box02 {
  background: #282c50;
}
.enviroBox dt {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .enviroBox dt {
    margin-bottom: 30px;
  }
}
.bg_gray {
  background: #ebedf2;
  padding: 40px 0px;
}
@media (min-width: 768px) {
  .bg_gray {
    padding: 60px 0px;
  }
}

.interviewBox {
  background: #fff;
  border: solid 1px #00a0b4;
  padding: 30px 30px 0px;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .interviewBox {
    padding: 60px 60px 0px;
  }
}

.faqBox dt {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #00a0b4;
  font-weight: 300;
}
.faqBox dd {
  margin-bottom: 30px;
}

/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.greetingBox {
  background: url(../images/logo_mark-large.png) no-repeat bottom center;
  width: 100%;
  padding: 0px 0px 60px;
}
@media (min-width: 992px) {
  .greetingBox {
    background: url(../images/logo_mark-large.png) no-repeat top center;
  }
}

.googleMap {
  width: 100%;
  height: 320px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 480px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contactBox {
  width: 100%;
}
.contactBox a {
  text-decoration: none;
}
.contactBox dd {
  padding: 5px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: none;
}
@media (min-width: 992px) {
  .contactBox dd {
    padding: 30px 0px;
  }
}
.contactBox dd .en {
  font-size: 3.2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: normal;
}
.contactBox dd .num {
  font-size: 4.8rem;
  line-height: 1;
}
.contactBox dd .time {
  padding-top: 1em;
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #717171;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
}
.mailfoamTable th .required {
  margin-left: 0.5em;
}
.mailfoamTable td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.4rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: solid 1px #ccc;
  border-radius: 0px;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #00a0b4;
    border-bottom: solid 1px #00a0b4;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 18px 0px 18px 10px;
    border-top: solid 1px #00a0b4;
    border-bottom: solid 1px #00a0b4;
    line-height: 140%;
    display: table-cell;
  }
}
textarea {
  width: 100%;
}

.form25 {
  width: 80%;
  display: inline-block;
}

.form50 {
  width: 100%;
  display: inline-block;
}

@media (min-width: 767px) {
  .form25 {
    width: 25%;
  }
  .form50 {
    width: 50%;
  }
}
.need {
  color: #d40000;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #e8342f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 44px;
  color: #fff;
  padding: 0px 0px 1px;
  border-radius: 3px;
  line-height: 1;
  font-size: 11px;
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  height: 56px;
  background: #282c3c;
  color: #fff;
  position: relative;
  font-size: 3vw;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #2f385c;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(45deg);
  margin-right: 1em;
}
.formBtn.next:after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  margin-left: 1em;
}

button.formBtn {
  border: none;
  outline: none;
}
button.formBtn:hover {
  outline: none;
}

.privacyBox {
  height: 250px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 1.2rem;
  line-height: normal;
  padding: 20px;
  border: none;
  border-radius: 0px;
  border: solid 1px #cfcfcf;
  background: rgba(255, 255, 255, 0.2);
}
.privacyBox h4 {
  font-size: 120%;
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  margin-bottom: 10px;
}
.privacyBox p {
  margin-bottom: 1em;
}
.privacyBox ul {
  margin-bottom: 1em;
  margin-left: 10px;
}
.privacyBox ol {
  margin-bottom: 1em;
  margin-left: 0px;
  padding: 0px;
}
.privacyBox li {
  list-style: decimal outside;
  margin-left: 2em;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .privacyBox ul {
    margin-bottom: 1em;
    margin-left: 20px;
  }
}
.ttl_policy {
  font-size: 120%;
  font-weight: bold;
}

.out-line {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Table
 *  
 *-------------------------------------------------------------------------------------------*/
.responsiveTable {
  width: 100%;
  margin-bottom: 10px;
}

.responsiveTable th {
  width: 100%;
  padding: 15px 18px;
  font-weight: bold;
  border-top: solid 1px #ccc;
  line-height: 140%;
  display: block;
}

.responsiveTable td {
  width: 100%;
  padding: 15px 18px;
  border-bottom: none;
  line-height: 140%;
  display: block;
}

@media (min-width: 768px), print {
  .responsiveTable table {
    width: 100%;
    display: table;
  }
  .responsiveTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .responsiveTable td {
    padding: 18px 10px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
/*-------------------------------------------------------------------------------------------*
 *
 * Title
 *  
 *-------------------------------------------------------------------------------------------*/
.title {
  display: flex;
  flex-direction: column;
  position: relative;
}
.title .en {
  font-size: 8.6vw;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  text-align: left;
}
@media (min-width: 992px) {
  .title .en {
    font-size: 5.2rem;
  }
}
.title .ja {
  margin-top: 1rem;
  font-size: 3.6vw;
}
@media (min-width: 992px) {
  .title .ja {
    font-size: 1.8rem;
  }
}
.title.slash:before {
  content: "";
  display: block;
  width: 1px;
  height: 125px;
  background: #00a0b4;
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translate(0, -50%) rotate(25deg);
  z-index: 1;
}
.title.icon {
  margin-top: 50px;
}
.title.icon:before {
  content: url(../images/logo_mark.png);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}
.title.icon.white:before {
  filter: brightness(0) invert(1);
}
.title.center {
  align-items: center;
}
.title.center .en {
  text-align: center;
}
.title.white {
  color: #fff;
}

.subTitle {
  display: flex;
  flex-direction: column;
  position: relative;
}
.subTitle:before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: #00a0b4;
  position: absolute;
  top: -10px;
  left: -30px;
  transform: rotate(25deg);
  z-index: 1;
}
.subTitle .en {
  font-size: 2.4vw;
  font-family: "Cormorant Garamond", serif;
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  .subTitle .en {
    font-size: 2.2rem;
  }
}
.subTitle .ja {
  font-size: 5.56vw;
  font-weight: 300;
  color: #282c3c;
}
@media (min-width: 576px) {
  .subTitle .ja {
    font-size: 3rem;
  }
}

#h2Title {
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 12px solid #39436a;
}

@media (min-width: 992px) {
  #h2Title {
    height: 460px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 500px;
  }
}
#h2Title.p02 {
  background: url(../images/bg_title02.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p03 {
  background: url(../images/bg_title03.jpg) no-repeat center;
  background-size: auto 100%;
  align-items: flex-end;
  padding: 50px;
}
@media (min-width: 992px) {
  #h2Title.p03 {
    align-items: flex-end;
    padding: 85px;
  }
}
#h2Title.p04 {
  background: url(../images/bg_title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p05 {
  background: url(../images/bg_title05.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title h2 {
  color: #fff;
  display: flex;
  flex-direction: column;
}
#h2Title h2 .en {
  font-size: 6.4rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}
@media (min-width: 768px) {
  #h2Title h2 .en {
    font-size: 8.6rem;
  }
}
#h2Title h2 .ja {
  font-size: 2.4rem;
  text-align: center;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  max-width: 320px;
  width: 100%;
  height: 50px;
  border: solid 1px #fff;
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 300ms 0s ease;
}
.detailBtn:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}
.detailBtn:before {
  position: absolute;
  content: "";
  display: block;
  background: #fff;
  width: 30px;
  height: 1px;
  top: 25px;
  right: -15px;
  z-index: 1;
}

.detailBtn-Blue {
  max-width: 320px;
  width: 100%;
  height: 50px;
  border: solid 1px #00a0b4;
  border-radius: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #00a0b4;
  text-decoration: none;
  position: relative;
  transition: all 300ms 0s ease;
}
.detailBtn-Blue:hover {
  color: #00a0b4;
  text-decoration: none;
  background: #dcfbff;
}
.detailBtn-Blue:before {
  position: absolute;
  content: "";
  display: block;
  background: #00a0b4;
  width: 30px;
  height: 1px;
  top: 25px;
  right: -15px;
  z-index: 1;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.pbb {
  page-break-before: always;
}

.white {
  color: #fff;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-30 {
  font-size: 3rem;
  line-height: 1.4;
}

.fs-36 {
  font-size: 3.6rem;
}

.m-auto {
  margin: 0px auto;
}

.ml-00 {
  margin-left: 0px !important;
}

.mr-05 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-00 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 0.5rem !important;
}

.mb-15 {
  margin-bottom: 0.75rem !important;
}

.mb-20 {
  margin-bottom: 1rem !important;
}

.mb-30 {
  margin-bottom: 1.5rem !important;
}

.mb-40 {
  margin-bottom: 2rem !important;
}

.mb-50 {
  margin-bottom: 2.5rem !important;
}

.mb-60 {
  margin-bottom: 3rem !important;
}

.mb-70 {
  margin-bottom: 3.5rem !important;
}

.mb-80 {
  margin-bottom: 4rem !important;
}

.mb-90 {
  margin-bottom: 4.5rem !important;
}

.mb-100 {
  margin-bottom: 5rem !important;
}

.mb-120 {
  margin-bottom: 6rem !important;
}

.mb-150 {
  margin-bottom: 7.5rem !important;
}

.mb-180 {
  margin-bottom: 9rem !important;
}

.mb-190 {
  margin-bottom: 9.5rem !important;
}

.mb-210 {
  margin-bottom: 10.5rem !important;
}

@media (min-width: 992px) {
  .mb-00 {
    margin-bottom: 0 !important;
  }
  .mb-10 {
    margin-bottom: 1rem !important;
  }
  .mb-15 {
    margin-bottom: 1.5rem !important;
  }
  .mb-20 {
    margin-bottom: 2rem !important;
  }
  .mb-30 {
    margin-bottom: 3rem !important;
  }
  .mb-40 {
    margin-bottom: 4rem !important;
  }
  .mb-50 {
    margin-bottom: 5rem !important;
  }
  .mb-60 {
    margin-bottom: 6rem !important;
  }
  .mb-70 {
    margin-bottom: 7rem !important;
  }
  .mb-80 {
    margin-bottom: 8rem !important;
  }
  .mb-90 {
    margin-bottom: 9rem !important;
  }
  .mb-100 {
    margin-bottom: 10rem !important;
  }
  .mb-120 {
    margin-bottom: 12rem !important;
  }
  .mb-150 {
    margin-bottom: 15rem !important;
  }
  .mb-180 {
    margin-bottom: 18rem !important;
  }
  .mb-190 {
    margin-bottom: 19rem !important;
  }
  .mb-210 {
    margin-bottom: 21rem !important;
  }
  .mb-lg-00 {
    margin-bottom: 0px !important;
  }
}/*# sourceMappingURL=style.css.map */