@charset "UTF-8";

/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 1em;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

p {
  font-size: 1rem;
}


/*----------------------------------------
変数
-----------------------------------------*/
:root {
  --inner-maxWidth: 1163px;
  --inner-minWidth: 960px;

  --header-height: 80px;
  --footer-logo-maxWidth: 300px;
  --inner-padding-LR: 60px;

  /* 頻出カラーまとめ */
  --col-blue00: #055590;
  --col-blue01: #074782;
  --col-blue02: #00618f;
  --col-blue03: #0279a3;
  --col-blue04: #5c90b7;
  --col-sky01: #e5eff4;
  --col-sky02: #f2f7f9;
  --col-sky03: #e7eff2;

  /* テキストなどのカラー */
  --col-black: #000;
  --col-gray01: #494949;
  --col-gray02: #3e3a39;

  /* フォント関係 */
  /* ja */
  --font-family-Notosans: 'Noto Sans JP', sans-serif;
  --font-family-hinamincho: 'Hina Mincho', serif;
  /* en */
  --font-family-poppins: 'Poppins', sans-serif;
  --font-family-marcellus: "Marcellus", serif;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 400;
  --font-weight-bold: 600;
}



/*----------------------------------------
ヘッダーcss
-----------------------------------------*/
.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body {
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  /* width: 100vw; */
  height: var(--header-height);
  z-index: 999;
  background: #fff;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.25));
  transform: translateZ(0);
}

.header .logo a {
  display: block;
  padding: 18px 20px;
}

.header .logo img {
  display: inline-block;
  max-width: 240px;
  height: auto;
}

.header .header_pickup_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .header_pickup_link a {
  color: #fff;
  background: var(--col-blue01);
  padding: 0.5em 1.5em;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: block;
  margin-left: auto;
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  padding: 10px;
  background-color: transparent;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line {
  display: block;
  height: 1.3px;
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #494949;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #494949;
  transition: inherit;
}

.hamburger__line:before {
  top: -7px;
}

.hamburger__line:after {
  top: 7px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.header__nav-area {
  display: none;
  width: 100%;
  /* height: 40vw; */
  min-height: fit-content;
  visibility: hidden;
  background-color: #e5eff4;
  transition: 0.4s;
  overflow: hidden;
  animation: fadeout 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
}

.header__nav-area.-active {
  left: 0;
  visibility: visible;
  display: block;
  animation: fadein 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
}

.header__subnav-area {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.header__subnav-area .corporatenavi_wrap,
.header__subnav-area .recruitnavi_wrap {
  display: flex;
  justify-content: start;
  overflow: hidden;
  padding: 2.15vw 0 3vw;
}

.header__subnav-area .corporatenavi_wrap {
  width: 45%;
  background: #fff;
}

.header__subnav-area .recruitnavi_wrap {
  width: 65%;
}

.header__subnav-area .title_box {
  width: 16vw;
  max-width: 230px;
}

.header__subnav-area .title_box picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.header__subnav-area .title_box picture img {
  width: 100%;
  object-fit: cover;
}

.header__nav-area .conntact {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 250px;
  margin-top: 1.95rem;
  padding: 0.5em 1.5em;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  background: var(--col-blue01);
}

.header__subnav-area .title {
  font-size: 1.95rem;
  line-height: 1.25;
  font-family: var(--font-family-poppins);
  font-weight: var(--font-weight-medium);
  text-align: right;
  color: var(--col-blue04);
}

.global-navigation_wrap {
  width: calc(100% - 16vw);
  margin-top: 2em;
  padding: 0px 25px 0;
}

.global-navigation {
  width: 100%;
}

.global-navigation__link {
  color: var(--col-gray01);
  font-weight: 900;
  transition: color 0.4s;
  font-size: 0.25rem;
}

.global-navigation__list>li+li {
  margin-top: 0px;
}

.global-navigation__list>li a {
  display: block;
  font-size: 1.25rem;
  font-weight: var(--font-weight-regular);
  color: var(--col-gray02);
}

.global-navigation__sublink li a {
  display: block;
  position: relative;
  font-size: 1rem;
  padding-left: 1em;
  margin: 0.45em 0;
  color: var(--col-black);
}

.global-navigation__sublink>li:last-child>a {
  margin-bottom: 0.6em;
}

.global-navigation__sublink>li:first-child>a {
  margin-top: 0.15em;
  margin-bottom: 0;
}

.global-navigation__sublink li a::before {
  content: "\025b6";
  position: absolute;
  top: 0.35em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  color: var(--col-blue03);
  font-size: 0.8em;
}

.global-navigation__thirdlink li a {
  display: block;
  position: relative;
  color: var(--col-black);
  padding-left: 1em;
  margin: 0 0 0 1em;
  margin-bottom: 0;
}

.global-navigation__thirdlink li a::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.35em;
  display: block;
  width: 0.5em;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
}

.header__subnav-area .recruitnavi_wrap .recruitnavi_navi_title {
  font-size: 1.5rem;
}

.header__subnav-area .recruitnavi_wrap .global-navigation {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.header__subnav-area .recruitnavi_wrap .global-navigation ul+ul {
  margin-left: 20px;
}

/*----------------------------------------
フッターcss
-----------------------------------------*/
footer {
  background-color: #fff;
}

footer .footer_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 40px; */
}

footer .footer_contents .logo_wrap {
  display: flex;
  /* width: 39vw; */
  margin-left: auto;
  flex-direction: column;
}

footer .footer_contents .logo_wrap .logo_inner {
  max-width: var(--footer-logo-maxWidth);
  margin: auto 20px auto auto;
  padding-left: 20px;
}

footer .footer_contents .logo_wrap a {
  display: block;
  margin: 40px 0 40px;
}

footer .footer_contents .logo_wrap img {
  width: 100%;
}

footer .footer_contents .logo_wrap a.conntact {
  color: #fff;
  background: var(--col-blue02);
  padding: 0.45em 1.5em;
  margin-bottom: 40px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
}

footer .footer_contents .sitemap_wrap {
  width: 59vw;
}

footer .footer_contents .sitemap_wrap .sitemap_wrap_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* background: var(--col-sky01); */
}

footer .footer_contents .corporatenavi_wrap,
footer .footer_contents .recruitnavi_wrap {
  display: flex;
  flex-direction: column;
  padding: 30px var(--inner-padding-LR);
}


footer .footer_contents .sitemap_wrap .corporatenavi_wrap {
  background: #fff;
  width: 20%;
  min-width: fit-content;
}

footer .footer_contents .sitemap_wrap .corporatenavi_wrap .corporatenavi_inner {
  margin-left: auto;
  width: 100%;
  min-width: fit-content;
  max-width: calc(((-1 * var(--footer-logo-maxWidth)) + var(--inner-maxWidth)) / 7 * 3);
  background: #fff;
}

footer .footer_contents .sitemap_wrap .recruitnavi_wrap {
  width: 80%;
  background: var(--col-sky01);
}

footer .footer_contents .recruitnavi_wrap .recruitnavi_inner {
  width: 100%;
  max-width: calc(((-1 * var(--footer-logo-maxWidth)) + var(--inner-maxWidth)) / 7 * 4);
  right: auto;
}

footer .footer_contents .sitemap_wrap .recruitnavi_wrap .recruitnavi_navi_title {
  color: var(--col-blue02);
  font-weight: var(--font-weight-medium);
}


footer .global-navigation__list>li a {
  font-size: 1.15rem;
}

footer .sublink_wrap {
  display: flex;
  justify-content: space-between;
}

footer .sublink_wrap>*:nth-child(1) {
  width: 37%;
}

footer .sublink_wrap>*:nth-child(2) {
  width: 40%;
}

footer .global-navigation__sublink>li a {
  font-size: 0.95rem;
  margin: 0.15em 0;
}

footer .global-navigation__sublink>li a.longTxt {
  width: 11em;
}

footer .global-navigation__thirdlink {
  /* display: grid; */
  grid-auto-flow: column;
  grid-template-columns: 2.5fr 3fr;
  grid-template-rows: 1.75em 1.75em 1.75em auto;
}

footer .global-navigation__thirdlink li {
  margin-right: 0.75em;
}


footer .copyright {
  background-color: var(--col-blue02);
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: var(--font-weight-light);
  color: #fff;
}

footer .copyright nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .copyright nav ul a {
  color: #fff;
  padding: 0.5em 0.75em;
}

@keyframes fadein {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: visible;
  }

  100% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }

  100% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
  }
}



/*----------------------------------------
各ページ共通パーツ
-----------------------------------------*/
/* Base */
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  line-height: 1.6;
  font-size: 1em;
  font-family: var(--font-family-Notosans);
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  color: #000;
}

a {
  display: inline-block;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  opacity: 0.7 !important;
  filter: alpha(opacity=70);
}

a:hover img,
a:active img,
a:focus img {
  opacity: 0.7 !important;
  filter: alpha(opacity=70);
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: content-box;
  vertical-align: middle;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  max-height: 100%;
  line-height: 1.5;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
label {
  cursor: pointer;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  border-radius: 0;
}

picture,
figure {
  display: block;
}

picture img,
figure img {
  width: 100%;
}

.inner {
  width: 100%;
  min-width: var(--inner-minWidth);
  max-width: var(--inner-maxWidth);
  padding-left: var(--inner-padding-LR);
  padding-right: var(--inner-padding-LR);
  margin: auto;
  position: relative;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.ff_en1 {
  font-family: var(--font-family-poppins);
}

.ff_en2 {
  font-family: var(--font-family-marcellus);
}

.fc_blue01 {
  color: var(--col-blue01);
}

.fc_blue02 {
  color: var(--col-blue02);
}

.fc_blue03 {
  color: var(--col-blue03);
}

.fc_blue04 {
  color: var(--col-blue04);
}

.bgWhite {
  background: #fff;
}

.bgBlue {
  background: url(../img/bgBule.jpg) center center no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
}

.bgSky02 {
  background: var(--col-sky02);
}

.bgSky03 {
  background: var(--col-sky03);
}



#contents {
  padding-top: 80px;
  width: 100%;
  margin: auto;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
}

.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

/*----------------------------------------
子ページ
-----------------------------------------*/

/* パンクズ */
.breadcrumbsNavi ul {
  display: flex;
}

.breadcrumbsNavi ul li {
  display: inline-block;
}

.breadcrumbsNavi ul li a::after {
  content: "/";
  padding: 0em 0.75em;
}

.breadcrumbsNavi ul li:last-child a:after {
  content: "";
}

.pageTittleWrap {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-bottom: 90px;
}

.pageTittleWrap .titleBox {
  margin: 60px auto;
}

.pageTittleWrap .pageTittleEn {
  font-size: 3rem;
  font-family: var(--font-family-poppins);
  color: var(--col-blue01);
}

.pageTittleWrap .pageTittleJa {
  margin-top: -0.15em;
  font-size: 1.5rem;
}

.pageTittleWrap .pageTittleImg img {
  width: 100%;
  height: auto;
  background: #494949;
}

/* タイトル */
.contentTitleWrap .subCopy {
  font-size: 3rem;
  color: var(--col-blue04);
  font-family: var(--font-family-poppins);
}

.contentTitleWrap .tittle {
  margin-top: -0.35em;
  margin-bottom: 1.25em;
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
}


/* カラム */
.column2,
.column3,
.column4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 2カラム */
.column2>* {
  width: 48%;
}

.column2.card>* {
  background: #fff;
}

.column2.card .item .imgBox {
  position: relative;
  width: 100%;
}

.column2.card .item .imgBox .title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 2.25rem;
  text-align: center;
  color: #fff;
}

.column2.card .item .txtBox {
  padding: 60px;
}

/* 3カラム */
.column3>* {
  width: 32%;
}

/* 4カラム */
.column4>* {
  width: 24%;
}


/* ボタン_矢印付き */
.btnWrap {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  margin-top: .75em;
  font-weight: var(--font-weight-bold);
}

.btnWrap p {
  font-size: 1.25rem;
}

.btnWrap a {
  position: relative;
  color: #fff;
  /* font-size: .75em; */
  padding: 0.45em 5em 0.45em 1.5em;
  background: var(--col-blue04);
  border-radius: 2em;
}

.btnWrap a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5em;
  font-size: 1em;
  width: 2.5em;
  height: 1em;
  background: url(../img/icon/arrowWgiteSR.svg) center center no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
}

.btnWrap a:hover:before {
  right: 1em;
  transition: all 0.25s linear;
  /*イージング*/
}

.btnWrap.blue01 a {
  background: var(--col-blue01);
}



/*----------------------------------------
  タブ切り替え複数設置可能
-----------------------------------------*/
.tab__content-item {
  display: none;
}

.tab__content-item.is-active {
  display: block;
}

.tab__menu {
  display: flex;
  align-items: flex-end;
  /* メニューを下揃え */
  justify-content: center;
  min-height: 50px;
  /* メニュー切替時にタブがズレないように */
  padding: 0;
  margin: 0;
}

.tab__menu-item {
  list-style: none;
  width: 200px;
  padding: 8px 5px;
  /* メニューに高さを付ける */
  text-align: center;
  margin-right: 6px;
  background-color: #cdcdcd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  transition: all .3s;
  /* アニメーション */
}

.tab__menu-item:last-of-type {
  margin-right: 0px;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
  background-color: rgba(48, 172, 249);
  color: #ffffff;
  padding: 12px 5px;
}

.tab-group {
  display: flex;
  justify-content: space-between;
}

/* タブメニューが2列の場合 */
.tab-group.menu2n .tab__item {
  width: calc(100% / 2 - 5px);
}

.tab-group.menu2n .tab__item:last-child {
  width: calc(100% / 2);
}

/* タブメニューが３列の場合 */
.tab-group.menu3n .tab__item {
  width: calc(100% / 3 - 5px);
}

.tab-group.menu3n .tab__item:last-child {
  width: calc(100% / 3);
}

.tab__item {
  margin: 0 auto;
  justify-content: space-between;
}

.tab__item button {
  width: 100%;
  height: 100%;
  display: block;
  flex-grow: 1;
  padding: 20px 5px;
  list-style: none;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #4c71a9;
  font-size: 1rem;
}

.tab__item.is-active button {
  background: #074782;
  color: #FFF;
  transition: all 0.2s ease-out;
}

/*----------------------------------------
タブ ボタンシンプル
-----------------------------------------*/
.menuSimple .tab__item button {
  background: none;
  border: none;
  border-bottom: 2px solid #d3d3d3;
  color: #000;
}

.menuSimple .tab__item:hover button {
  opacity: 0.7;
  border-bottom: 2px solid var(--col-blue04);
}

.menuSimple .tab__item.is-active button {
  color: var(--col-blue02);
  border-bottom: 2px solid var(--col-blue02);
}



.panel-group {
  border-top: none;
  background: #fff;
  margin-top: 3px;
}

.panel {
  display: none;
}

.panel.is-show {
  display: block;
}

.office_box {
  padding: 20px var(--inner-padding-LR);
}

.map_box {
  position: relative;
}

.map_box p {
  margin-bottom: 10px;
}

.bt_google {
  text-align: center;
  position: absolute;
  max-width: auto;
  bottom: 10px;
  display: block;
  width: 100%;
}

.bt_google a {
  padding: .85em 5em 0.85em 1.5em
}

.bt_google div {
  display: inline-block;
}


/*==================================================
featherlight書き換え
===================================*/
.featherlight .featherlight-content {
  padding: 0;
  overflow: visible;
}

.featherlight .featherlight-close-icon {
  background: none;
  color: #FFF;
  font-size: 1.5rem;
  transform: translateY(-100%);
}

.featherlight-next,
.featherlight-previous {
  top: 0;
  right: 0;
}

.featherlight-previous {
  left: 0;
}

.featherlight-next:hover span,
.featherlight-previous:hover span {
  display: none;
}

.featherlight .featherlight-content {
  background: none;
}

.featherlightAppear .inner {
  display: flex;
  justify-content: space-between;
  padding: 0;
  min-width: none;
  max-width: 940px;
  min-height: 300px;
  background: #fff;
}

.featherlightAppear .inner>.imgBox {
  width: 40%;
}

.featherlightAppear .inner>.imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featherlightAppear .inner>.txtBox {
  width: 60%;
  padding: var(--inner-padding-LR);
  padding-right: 50px;
  position: relative;
}

.featherlightAppear .inner>.txtBox .tittleEn {
  position: absolute;
  top: 50%;
  right: -0.12em;
  transform: translate(0%, -50%);
  font-family: var(--font-family-marcellus);
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  line-height: 1;
  display: block;
  height: 100%;
  text-align: center;
}

.featherlightAppear .inner>.txtBox .tittleEn.longTxt {
  font-size: 1.35rem;
}

.featherlightAppear .inner>.txtBox .titleWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.featherlightAppear .inner>.txtBox .title {
  font-weight: 600;
  font-size: 1.1rem;
}

.P_mark img{
  width: 100px;
  }

@media only screen and (min-width: 768px) and (max-width: 1600px) {
  footer .footer_contents .sitemap_wrap {
    width: 67vw;
  }

  footer .footer_contents .corporatenavi_wrap,
  footer .footer_contents .recruitnavi_wrap {
    display: flex;
    flex-direction: column;
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1163px) {
  html {
    font-size: 1.35vw;
  }

  footer .footer_contents .logo_wrap {
    width: 30vw;
  }

  footer .footer_contents .sitemap_wrap {
    width: 70vw;
  }

  footer .footer_contents .sitemap_wrap .corporatenavi_wrap {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {

  /*----------------------------------------
  変数
  -----------------------------------------*/
  :root {
    --inner-minWidth: 960px;
  }

  html {
    font-size: 13px;
    width: var(--inner-minWidth);
  }

  body {
    width: var(--inner-minWidth);
  }

  #contents .inner {
    min-width: auto;
  }

  footer {
    width: var(--inner-minWidth);
  }

  footer .footer_contents .logo_wrap {
    width: 30%;
  }

  footer .footer_contents .sitemap_wrap {
    width: 70%;
  }

  footer .footer_contents .corporatenavi_wrap,
  footer .footer_contents .recruitnavi_wrap {
    padding: 30px;
  }
}

sup {
  font-size: 70%;
  vertical-align: baseline;
  position: relative;
  top: -0.35em;
}

sub {
  font-size: 70%;
  vertical-align: bottom;
  position: relative;
  bottom: -0.25em;
}

/* ページトップボタン */
html {
  scroll-behavior: smooth;
}

.st-Totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  width: 80px;
}

/*==========================================================================================
ここからSP
==========================================================================================*/

@media only screen and (max-width: 767px) {


  /*----------------------------------------
  変数
  -----------------------------------------*/
  :root {

    --inner-maxWidth: 767px;
    --inner-minWidth: 300px;

    --header-height: 16.5vw;
    --inner-padding-LR: 4vw;
  }

  body {
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
    font-size: 3.5vw;
  }

  html {
    font-size: 3.5vw;
    scroll-padding-top: var(--header-height);
  }



  /*----------------------------------------
ヘッターcss
-----------------------------------------*/
  .header {
    height: var(--header-height);
  }

  .header__nav-area {
    height: calc(100vh - var(--header-height));
    overflow: scroll;
    position: relative;
  }

  .hamburger {
    width: 10vw;
    height: 10vw;
    padding: 4vw;
  }

  .header__subnav-area {
    flex-wrap: wrap;
    height: auto;
  }

  .header .logo a {
    padding: 4vw 4vw 4vw 0;
  }

  .header .logo img {
    display: inline-block;
    width: 45vw;
    height: auto;
  }

  .header .header_pickup_link a {
    color: #fff;
    background: var(--col-blue01);
    padding: 0.8em 1.05em;
    border-radius: 50px;
    font-size: 3.3vw;
    font-weight: 500;
    letter-spacing: 0;
  }

  .header__subnav-area .title {
    text-align: left;
  }

  .header__subnav-area .corporatenavi_wrap,
  .header__subnav-area .recruitnavi_wrap {
    width: 100%;
    flex-wrap: wrap;
    padding: 3vw 4vw;
  }

  .header__subnav-area .title_box {
    width: 100%;
    max-width: none;
  }

  .header__subnav-area .recruitnavi_wrap .global-navigation .global-navigation__sublink {
    width: 49%;
  }

  .global-navigation_wrap {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .global-navigation__list>li a {
    font-size: 5vw;
  }

  .global-navigation__sublink li a {
    font-size: 4vw;
  }

  .global-navigation {
    padding: 0 0 4vw;
  }

  .global-navigation__sublink>li:first-child>a {
    padding-left: 1em;
    margin: 0.45em 0;
  }

  .header__subnav-area .corporatenavi_wrap .global-navigation__sublink {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header__subnav-area .corporatenavi_wrap .global-navigation__sublink>li {
    width: 50%;
  }

  header .recruit_btn {
    position: absolute;
    bottom: 0;
    width: 100vw;
    transform: translateY(-100%);
  }

  header .recruit_btn a {
    margin: 0;
    padding: 4vw 4vw 5vw;
    width: 100vw;
    max-width: none;
    border-radius: 0;
    font-size: 4.5vw;
    line-height: 1.15;
  }

  .header__subnav-area .recruitnavi_wrap .global-navigation ul+ul {
    margin-left: 0px;
  }

  .global-navigation__thirdlink li a {
    font-size: 3.85vw;
    padding-left: 1em;
    margin: 0 0 0 0.75em;
  }

  .header__nav-area .conntact {
    max-width: none;
  }

  .fixed.recruit_btn a {
    display: flex;
    margin: 0;
    align-items: center;
    position: fixed;
    bottom: 0;
    border-radius: 0;
    font-size: 5.5vw;
    max-width: none;
    color: #fff;
    width: 100%;
    padding: 0.5em 1.5em;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: center;
    background: var(--col-blue01);
    z-index: 990;
  }

  .fixed.recruit_btn a p {
    position: relative;
  }

  .fixed.recruit_btn a p:has(>.icon_arrow) {
    padding-right: 1.5em;
  }

  .fixed.recruit_btn a .en {
    font-size: 0.8em;
    font-family: var(--font-family-poppins);
    letter-spacing: 0.2em;
    margin-left: 0.35em;
  }

  .fixed.recruit_btn a .icon_arrow {
    content: '';
    position: absolute;
    top: 50%;
    right: 0em;
    font-size: 1em;
    width: 0.9em;
    height: 0.9em;
    background: url(../img/icon/arrowWhiteR.svg) center center no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
  }

  .st-Totop {
    position: fixed;
    right: 2vw;
    bottom: 23vw;
    width: 16vw;
    z-index: 9;
  }


  /*----------------------------------------
フッターcss
-----------------------------------------*/
  footer .footer_contents {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  footer .footer_contents .logo_wrap {
    width: 80%;
    margin: 10vw auto;
  }

  footer .footer_contents .logo_wrap .logo a {
    width: 80%;
    margin: 10vw auto 0;
    padding: 0vw 0;
  }

  footer .footer_contents .logo_wrap a {
    display: block;
    padding: 6vw 0;
  }

  footer .footer_contents .logo_wrap a.conntact {
    margin: 0vw 0px;
    padding: 0.75em 1.5em;
    font-size: 4vw;
  }

  footer .global-navigation__thirdlink {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  footer .footer_contents .sitemap_wrap {
    border-bottom: 2px solid #a7bfc6;
  }

  footer .footer_contents .sitemap_wrap,
  footer .footer_contents .sitemap_wrap .sitemap_wrap_inner {
    width: 100%;
  }

  footer .footer_contents .sitemap_wrap .corporatenavi_wrap,
  footer .footer_contents .sitemap_wrap .recruitnavi_wrap {
    width: 50%;
  }

  footer .sublink_wrap {
    flex-wrap: wrap;
  }
  footer .sublink_wrap>*:nth-child(1) ,
  footer .sublink_wrap>*:nth-child(2) {
    width: 100%;
}
  footer .global-navigation__list>li a {
    font-size: 3.5vw;
  }

  footer .global-navigation__sublink>li:last-child>a {
    margin-bottom: 0;
  }

  footer .global-navigation__thirdlink li a {
    font-size: 3.25vw;
  }

  footer .copyright {
    padding: 1em 0 18vw;
    margin: auto;
    font-size: 3.45vw;
    text-align: center;
  }

  footer .copyright p {
    width: 100%;
    font-size: 3.15vw;
    letter-spacing: 0.04em;
    text-align: center;
  }

  /*----------------------------------------
  各ページ共通パーツ
  -----------------------------------------*/
  .inner {
    min-width: auto;
    padding: 0 var(--inner-padding-LR);
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  #contents {
    width: 100%;
    padding-top: var(--header-height);
  }

  .column2>*,
  .column3>*,
  .column4>* {
    width: 100%;
  }

  /* タブボタンサイズ */
  .tab__item button {
    font-size: 1rem;
  }
}