@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap");
/*
Theme Name: 株式会社廣友土建
Theme URI: null
Description: Description
Author: 81bridge - SGX
Version: 1.0
*/

:root {
  --color-dark: #231816;
  --color-main: #3ab1b1;
  --color-sub: #43caca;
  --color-small: #a40000;
  --color-gray: #efefef;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.wp-block-image figure,
.wp-block-image figcaption {
  display: block;
}

a.nolink,
a.nolink:hover {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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,
font,
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 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
  font-family: "Noto Sans JP", sans-serif;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

a,
a:link {
  color: #212836;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

a:visited {
  color: #212836;
}

a:hover {
  color: #212836;
}

a:active {
  color: #212836;
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* flex */
.flex,
.flexA,
.flexB,
.flexC {
  display: flex;
  flex-wrap: wrap;
}

.flexA {
  justify-content: space-around;
}

.flexB {
  justify-content: space-between;
}

.flexC {
  justify-content: center;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: #212836;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: #fff;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

#container {
  padding-top: 83px;
  overflow: hidden;
  text-align: left;
}

#main {
  margin-bottom: 250px;
  display: block;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}

@media all and (max-width: 896px) {
  body {
    min-width: inherit;
    font-size: 1.4rem;
  }

  a:hover,
  a:hover img {
    opacity: 1 !important;
  }

  .pc {
    display: none !important;
  }

  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }

  #main {
    margin-bottom: 110px;
  }

  #container {
    padding-top: 60px;
  }
}

.slider {
  width: 100%;
  max-width: 1600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 50px auto;
  border: none;
  background: #000;
}

.slider-track {
  display: flex;
  height: 100%;
  animation: scroll 40s linear infinite;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-500%);
  }
}

@media (max-width: 600px) {
  .slider {
    aspect-ratio: 4 / 3;
  }
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  height: 100px;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-main);
}

#gHeader h1 {
  height: 80%;
  padding: 5px 0;
  padding-left: 25px;
  box-sizing: border-box;
}

#gHeader h1 img {
  height: 100%;
  object-fit: contain;
}

#gHeader .rBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
}

#gHeader .rBox .btn a {
  color: var(--color-main);
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  width: 150px;
  text-align: center;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-size: 1.8rem;
  padding-bottom: 5px;
  position: relative;
}

#gHeader .rBox .btn a::before {
  background: var(--color-main);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

#gHeader .rBox .btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#gHeader .rBox .btn img {
  margin: -3px 12px 0 0;
  display: inline-block;
  vertical-align: middle;
  width: 27px;
}

#gHeader .rBox .btn a:hover {
  opacity: 0.7;
}

#gHeader .menu {
  float: right;
  width: 83px;
  height: 83px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

#gHeader .menu {
  position: relative;
}

.menu span {
  position: absolute;
  left: calc(50% - 17px);
  top: calc(50% - 1px);
  transition: all 0.4s;
  box-sizing: border-box;
  width: 35px;
  height: 3px;
  background-color: var(--color-main);
}

.menu span:nth-of-type(1) {
  top: calc(50% - 11px);
}

.menu span:nth-of-type(3) {
  top: calc(50% + 9px);
}

#gHeader .menu.on span {
  opacity: 0;
  top: calc(50% - 1px) !important;
}

#gHeader .menu.on span:nth-of-type(1) {
  opacity: 1;
  transform: rotate(45deg);
}

#gHeader .menu.on span:nth-of-type(3) {
  opacity: 1;
  transform: rotate(-45deg);
}

#gHeader .menu.on span {
  display: block !important;
}

.menu.on span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.menu.on span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.menuBox {
  display: none;
  position: fixed;
  right: 0px;
  top: 100px;
  width: 555px;
  background: var(--color-main);
  z-index: 1000;
  height: calc(85% - 1px);
  overflow-y: auto;
  box-sizing: border-box;
}

.menuBox .naviUl {
  padding: 25px 22px;
}

.menuBox .naviUl li a {
  padding: 15px 20px;
  position: relative;
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  border: 1px solid #fff;
  margin: 7px auto;
}

.menuBox .naviUl li a:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.menuBox .naviUl .blank a:after {
  content: none;
}

.menuBox .naviUl .jobtagbox {
  font-size: 1.4rem;
  margin: 5px 0 10px;
}

.menuBox .naviUl .jobtagbox span {
  color: #fff;
  padding: 3px 10px;
  border: 1px solid #fff;
}

@media all and (min-width: 897px) {
  #gHeader .menu:hover span {
    background-color: var(--color-main);
  }

  #gHeader .menu.on:before {
    display: none;
  }

  .menu span:hover {
    opacity: 0.7;
  }

  .menuBox .naviUl li a:hover:before {
    right: -4px;
  }

  .menuBox .naviUl li a:hover:after {
    right: 1px;
  }
}

@media all and (max-width: 896px) {
  #gHeader {
    height: 75px;
    padding: 0 10px;
  }

  #gHeader .rBox .btn a {
    height: 60px;
    width: 96px;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
  }

  #gHeader .rBox .btn a {
    height: 60px;
    width: 96px;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
  }

  #gHeader .rBox .btn img {
    margin: -1px 6px 0 0;
    width: 15px;
  }

  #gHeader .menu {
    float: right;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #gHeader .menu.on:before {
    display: none;
  }

  .menu span {
    width: 20px;
    height: 1px;
    left: calc(50% - 9px);
  }

  .menu span:nth-of-type(1) {
    top: calc(50% - 8px);
  }

  .menu span:nth-of-type(3) {
    top: calc(50% + 7px);
  }

  .menuBox {
    top: 75px;
    width: 100%;
    height: calc(100% - 60px);
    right: 0;
    border-radius: 0;
  }

  .menuBox .naviUl {
    padding: 23px 15px;
  }

  .menuBox .naviUl li a {
    font-size: 1.4rem;
    font-weight: 400;
    padding: 10px 8px;
  }
}

@media all and (max-width: 425px) {
  #gHeader h1 {
    padding: 0;
    padding-left: 0;
  }

  .menuBox .naviUl .jobtagbox span {
    padding: 2px 3px;
  }

  /* .menuBox .naviUl li a {
    padding: 10px 20px;
  } */
}

/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#pagePath {
  max-width: 1150px;
  margin: 0 20px 0;
  padding: 0 20px;
  font-size: 1.2rem;
}

#pagePath li {
  margin-right: 10px;
  color: var(--color-main);
  display: inline;
  letter-spacing: 0.08em;
  font-size: 1.5rem;
}

#pagePath li a {
  padding-right: 25px;
  display: inline-block;
  position: relative;
  margin-right: 3px;
  width: 17px;
}

#pagePath li a:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

#pagePath li img {
  margin: -5px 0 0;
  display: inline-block;
  vertical-align: middle;
}

#pagePath li a:hover {
  opacity: 0.7;
}

@media all and (max-width: 896px) {
  #pagePath {
    max-width: inherit;
    padding: 0 24px;
  }

  #pagePath li {
    margin-right: 9px;
    font-size: 1.3rem;
  }

  #pagePath li a {
    padding-right: 20px;
    width: 10px;
  }

  #pagePath li a:before {
    width: 7px;
    height: 7px;
  }

  #pagePath li img {
    margin: -3px 0 0;
  }
}

@media all and (max-width: 425px) {
  #pagePath {
    font-size: 1rem;
  }

  #pagePath li {
    font-size: 1.2rem;
  }

  #pagePath li a {
    width: 10px;
  }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
  padding: 35px 0px;
  background-color: var(--color-sub);
}

#gFooter address {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-style: normal;
  text-align: center;
  color: #fff;
}

#gFooter .footerBar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#gFooter .footerBar ul {
  display: flex;
  gap: 0px 15px;
}

#gFooter .footerBar ul li {
  background: #fff;
  border-radius: 50%;
}

#gFooter .footerBar ul li a {
  display: inline-block;
  padding: 10px;
}

#gFooter .footerBar ul li a img {
  height: 30px;
}

.pageTop {
  position: fixed;
  right: 15px;
  bottom: 25px;
  width: 70px;
  z-index: 600;
}

.pageTop a {
  display: inline-block;
  background: #184c6c;
  /* border-radius: 50%; */
  cursor: pointer;
}

.pageTop a:hover {
  opacity: 0.7;
}

@media all and (max-width: 896px) {
  #gFooter {
    padding: 20px;
  }

  #gFooter address {
    font-size: 1.2rem;
    text-align: center;
  }

  #gFooter .footerBar {
    padding: 0px;
  }

  #gFooter .footerBar ul {
    gap: 30px;
  }

  #gFooter .footerBar ul li a img {
    height: 30px;
  }

  .pageTop {
    display: none;
  }
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
  max-width: 1116px;
  margin: 0 auto;
  padding: 0 20px;
}

@media all and (max-width: 896px) {
  .content {
    max-width: inherit;
    padding: 0 24px;
  }
}

/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
  margin-bottom: 26px;
  padding: 150px 0 63px;
  text-align: center;
  color: var(--color-main);
}

.pageTitle .headLine01 .en {
  margin-bottom: 8px;
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
  font-family: math;
  letter-spacing: 0.08em;
}

.pageTitle .indexPage .jobSec .topBox {
  display: none;
}

.pageTitle .headLine01 .jp {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media all and (max-width: 896px) {
  .pageTitle {
    margin-bottom: 0px;
    padding: 75px 0 15px;
  }

  .pageTitle .headLine01 .en {
    margin-bottom: 2px;
    font-size: 3rem;
  }

  .pageTitle .headLine01 .jp {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
  opacity: 1;
  transform: none;
}

.js .fadeInUp {
  opacity: 0;
}

.js .fadeInUp.on {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*------------------------------------------------------------
	comVisual
------------------------------------------------------------*/

.comVisual {
  margin-top: 42px;
  margin-bottom: 25px;
  color: #fff;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.comVisual:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.comVisual .headLine05 {
  font-size: 4.3rem;
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: 400;
  text-decoration-line: unset;
}

@media all and (max-width: 896px) {
  .comVisual {
    margin-bottom: 13px;
    height: 300px;
    margin-top: 40px;
  }

  .comVisual .headLine05 {
    font-size: 2rem;
  }
}

.comVisual:has(video) {
  height: auto;
  display: block;
  background: none;
  width: 100%;
}

.comVisual:has(video):before {
  content: none;
}

.comVisual:has(video) video {
  width: 100%;
}

.blogPage .comVisual:before {
  content: none;
}

@media all and (max-width: 425px) {
  .comVisual {
    height: 220px;
  }
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
  margin-bottom: 75px;
  padding-bottom: 40px;
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media all and (max-width: 896px) {
  .headLine02 {
    margin-bottom: 50px;
    padding-bottom: 23px;
    font-size: 2.4rem;
    text-align: center;
  }
}

/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
  margin-bottom: 20px;
  padding-bottom: 26px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #d1cfcf;
}

@media all and (max-width: 896px) {
  .headLine03 {
    margin-bottom: 10px;
    padding-bottom: 13px;
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
	headLine04
------------------------------------------------------------*/
.headLine04 {
  /* margin-bottom: 17px; */
  color: var(--color-main);
  font-family: math;
  font-size: 5.3rem;
  text-align: center;
  letter-spacing: 0.03em;
  text-decoration-line: underline;
  text-decoration-color: var(--color-sub);
  text-decoration-style: double;
  text-decoration-thickness: 3px;
  text-underline-offset: 20px;
}

@media all and (max-width: 896px) {
  .headLine04 {
    font-size: 3.7rem;
  }
}

/*------------------------------------------------------------
	headLine05
------------------------------------------------------------*/
.headLine05 {
  margin-bottom: 45px;
  color: var(--color-main);
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  font-family: math;
  text-decoration-line: underline;
  text-decoration-color: var(--color-sub);
  text-decoration-style: double;
  text-decoration-thickness: 3px;
  text-underline-offset: 20px;
}

.headLine05 .info {
  padding-bottom: 20px;
  position: relative;
}

@media all and (max-width: 896px) {
  .headLine05 {
    margin-bottom: 47px;
    font-size: 2.7rem;
  }

  .headLine05 .info {
    padding-bottom: 15px;
  }
}

@media all and (max-width: 425px) {
  .headLine05 .info {
    font-size: 2.3rem;
  }
}

/*------------------------------------------------------------
	comCompany
------------------------------------------------------------*/
.comCompany {
  padding: 60px 0 85px;
  background: #fff;
}

.comCompany .headLine04 {
  margin-bottom: 60px;
}

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

.comCompany .textBox {
  position: relative;
  width: 47%;
  float: left;
  color: var(--color-dark);
  box-sizing: border-box;
}

.comCompany .textBox table {
  width: 100%;
  border-collapse: collapse;
}

.comCompany .textBox th,
.comCompany .textBox td {
  padding: 20px 0;
  font-size: 1.4rem;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.comCompany .textBox th {
  width: 30.6%;
  font-weight: 700;
}

.comCompany .mapBox {
  width: 50%;
  float: right;
}

.comCompany .mapBox iframe {
  height: 390px;
  width: 100%;
  vertical-align: top;
  background: #000;
}

@media all and (max-width: 896px) {
  .comCompany {
    padding: 0 0 72px;
  }

  .comCompany .headLine04 {
    margin-bottom: 0;
    letter-spacing: 0.08em;
  }

  .comCompany .textBox {
    padding: 0;
    position: relative;
    width: 100%;
    float: none;
  }

  .comCompany .textBox th,
  .comCompany .textBox td {
    float: left;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 16px;
    letter-spacing: 0.06em;
  }

  .comCompany .textBox th {
    padding: 18px 0 7px;
    width: 100%;
    border-bottom: none;
  }

  .comCompany .mapBox {
    margin: 45px -24px 0;
    width: auto;
    float: none;
  }

  .comCompany .mapBox iframe {
    height: 238px;
  }

  .comCompany .mapInner {
    flex-direction: column;
  }
}

/*------------------------------------------------------------
	comBox
------------------------------------------------------------*/
.comBox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 361px;
  background: url(../img/common/com_box_bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.comBox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #3ab1b129;
  top: 0;
  left: 0;
  /* opacity: 0.5; */
  border: 1px solid var(--color-sub);
}

.comBox01 {
  margin-bottom: 0;
}

@media all and (max-width: 896px) {
  .comBox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 182px;
  }
}

/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink a {
  display: block;
  width: 560px;
  color: #fff;
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  border: 1px solid #fff;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: var(--color-main);
  border-radius: 40px;
  box-shadow: 0 3px 0 var(--color-sub);
}

.comLink a:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.comLink .info {
  position: relative;
  z-index: 2;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 896px) {
  .comLink a {
    width: 230px;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .comLink .info {
    height: 56px;
  }

  .comLink .info:before {
    width: 25px;
    height: 25px;
  }

  .comLink .info:after {
    width: 6px;
    height: 6px;
    right: 26px;
  }
}

@media all and (max-width: 425px) {
  .comLink .info {
    height: 45px;
  }
}

/*------------------------------------------------------------
	comImgBox
------------------------------------------------------------*/
.comImgBox {
  max-width: 1920px;
  margin: 70px auto 160px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: 90%;
}

.comImgBox .photoBox {
  width: 80%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.comImgBox .textBox {
  width: 86%;
  position: relative;
  margin: 0 auto;
  /* background: var(--color-sub); */
}

/* .comImgBox .textBox:before {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  content: "";
  border: 1px solid var(--color-sub);
  z-index: -1;
} */

.comImgBox .textBox .subBox {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.comImgBox .textBox .subBox p {
  font-weight: 500;
  text-align: justify;
  /* text-shadow: 2px 2px 2px var(--color-main); */
  color: var(--color-dark);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
  padding: 35px 5px;
}

/* @media all and (min-width: 1201px) and (max-width: 1399px) {
  .comImgBox .textBox::before {
    top: -70%;
  }
} */

@media all and (min-width: 897px) and (max-width: 1200px) {
  /* .comImgBox .textBox .subBox {
    margin: 0 auto 0 40px;
  } */

  .comImgBox01 .textBox .subBox {
    margin: 0 40px 0 auto;
  }

  /* .comImgBox .textBox::before {
    top: 0%;
  } */

  .comImgBox .textBox .subBox p {
    font-size: 1.8rem;
  }
}

@media all and (max-width: 896px) {
  .comImgBox {
    max-width: inherit;
    margin: 20px auto 0;
    display: block;
    width: 100%;
  }

  .comImgBox .photoBox {
    width: auto;
    /* margin: 0 24px 0 0; */
  }

  .comImgBox .photoBox img {
    width: 100%;
    height: 440px;
    object-fit: cover;
  }

  .comImgBox .photoBox .nameSpan {
    margin-top: 18px;
    font-size: 1.6rem;
  }

  .comImgBox .photoBox .nameSpan .small {
    margin-left: 10px;
  }

  .comImgBox .textBox {
    width: 90%;
    margin-bottom: 25px;
  }

  .comImgBox .textBox .subBox {
    max-width: inherit;
  }

  .comImgBox .textBox .subBox p {
    font-size: 1.4rem;
    line-height: 2.1;
  }
}

@media all and (max-width: 896px) {
  .comImgBox .textBox .subBox p {
    font-size: 1.2rem;
    /* padding: 15px; */
  }
}

@media all and (max-width: 425px) {
  .comImgBox .photoBox img {
    height: 250px;
  }

  .comImgBox .textBox .subBox p {
    padding: 15px;
  }
}

/*------------------------------------------------------------
	comMore
------------------------------------------------------------*/
.comMore a {
  margin: 0 auto;
  width: 210px;
  height: 43px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: math;
  letter-spacing: 0.08em;
  font-weight: 400;
  box-sizing: border-box;
  background: var(--color-sub);
  /* border: 1px solid var(--color-sub); */
  /* border-radius: 40px; */
  z-index: 1;
}

.comMore a::before,
.comMore a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  /* border-radius: 40px; */
}

/* .comMore a::before {
  background: #338bcd;
  border: 1px solid #fff;
  z-index: -1;
}

.comMore a::after {
  background: var(--color-main);
  z-index: -2;
} */

.comMore a:hover {
  color: #fff;
}

.comMore a:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.comMore a:hover::before {
  background: transparent;
}

.comMore a:hover::after {
  top: 6px;
  left: 6px;
}

@media all and (max-width: 896px) {
  .comMore a {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.indexPage {
  margin-bottom: -207px;
}

.indexPage .mainVisual {
  position: relative;
  padding: 0 0 40px;
}

/* .indexPage .mainVisual:before {
    content: "";
    width: 93%;
    height: 80%;
    background: #184C6C;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.indexPage .mainVisual:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    bottom: 0;
    right: 7%;
    z-index: -1;
} */

.indexPage .mainVisual .mainImg {
  margin: 42px auto;
  max-width: 1700px;
  width: 100%;
}

.indexPage .mainVisual .mainImg video {
  width: 100%;
}

.indexPage .mainVisual .mainImg img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

/* .indexPage .mainVisual .txtInner {
    padding: 92px 0 0;
    position: relative;
} */

/* .indexPage .mainVisual .txtInner:before {
    position: absolute;
    left: 0;
    right: calc(50% - 683px);
    background: #184C6C;
    content: "";
    bottom: 0;
    height: 771px;
    z-index: -1;
}

.indexPage .mainVisual .txtInner:after {
    position: absolute;
    right: calc(50% - 683px);
    width: 53px;
    height: 49px;
    background: url("img/index/icon01.jpg") no-repeat right bottom;
    background-size: 53px auto;
    content: "";
    bottom: 0;
} */

/* .indexPage .mainVisual .txtInner .content {
    padding-left: 160px;
}

.indexPage .mainVisual .txtInner .ttl {
    padding: 0 90px 98px 0;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 2.3;
    letter-spacing: 0.06em;
} */

.indexPage .interviewSec {
  padding: 0;
}

.indexPage .interviewSec .topBox {
  padding: 72px 0;
  position: relative;
  text-align: center;
}

.indexPage .interviewSec .topBox .txt {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.06em;
}

.indexPage .interviewSec .linkList li {
  width: 90%;
  margin: 10px auto;
}

.indexPage .interviewSec .linkList li a {
  height: 565px;
  display: block;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}

/* .indexPage .interviewSec .linkList .bg02 a {
    background: url("img/index/bg02.jpg") no-repeat center center;
    background-size: cover;
}

.indexPage .interviewSec .linkList .bg03 a {
    background: url("img/index/bg03.jpg") no-repeat center center;
    background-size: cover;
} */

.indexPage .interviewSec .linkList li .content {
  display: block;
  padding-top: 450px;
}

.indexPage .interviewSec .linkList li .content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.indexPage .interviewSec .linkList li .txtBox {
  background: var(--color-main);
  border-radius: 40px;
  box-sizing: border-box;
  display: block;
  float: inline-end;
  height: 100px;
  padding: 33px;
  position: relative;
  transition: 0.3s;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
}

.indexPage .interviewSec .linkList li .txtBox .name {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
}

.indexPage .interviewSec .linkList li .txtBox .txtSpan {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-left: 60px;
}

.indexPage .interviewSec .linkList li .txtBox .more {
  padding: 5px 28px 5px 20px;
  position: absolute;
  right: 50px;
  bottom: 30px;
  color: var(--color-main);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #fff;
  border-radius: 40px;
}

.indexPage .interviewSec .linkList li .txtBox .more:hover {
  background: var(--color-main);
  color: #fff;
}

.indexPage .interviewSec .linkList li .txtBox .more:before {
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.indexPage .interviewSec .linkList li .txtBox .more:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border: 1px solid var(--color-main);
  border-left: none;
  border-top: none;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

/* .indexPage .interviewSec .linkList li:nth-child(2n) .txtBox {
    float: right;
} */

.indexPage .interviewSec .linkList li .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #589cd0c2;
  opacity: 0;
  transition: 0.8s;
  -webkit-transition: 0.8s;
}

.indexPage .interviewSec .linkList li .hover .infoHover {
  width: 340px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  color: #fff;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  text-align: justify;
  line-height: 2;
}

/* .indexPage .aboutSec {
    margin-bottom: 130px;
} */

.indexPage .aboutSec .topBox {
  padding: 50px 0 15px;
  position: relative;
}

.indexPage .aboutSec .topBox .headLine04 {
  /* text-shadow: 2px 2px 2px var(--color-main); */
  color: var(--color-main);
  /* background: var(--color-sub); */
  width: 90%;
  margin: 0 auto;
}

.indexPage .aboutSec .businessBox {
  /* padding: 100px 0 0; */
  position: relative;
  min-height: 535px;
  box-sizing: border-box;
  background: no-repeat center center;
  background-size: cover;
  z-index: 1;
  margin: 70px auto;
  width: 90%;
  display: flex;
  align-items: center;
}

.indexPage .aboutSec .businessBox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0px;
  background: #000;
  opacity: 0.2;
  z-index: -1;
}

.indexPage .aboutSec .businessBox .content {
  max-width: 1000px;
  /* text-shadow: 2px 2px 2px var(--color-main); */
  width: 100%;
}

.indexPage .aboutSec .businessBox .inner {
  /* text-shadow: 2px 2px 2px var(--color-main); */
}

.indexPage .aboutSec .businessBox .headLine04 {
  /* margin-bottom: 21px; */
  color: #fff;
  text-decoration-color: #fff;
  text-shadow: none;
  /* background: var(--color-sub); */
  font-size: 7rem;
}

.indexPage .aboutSec .businessBox .txt {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
  padding: 35px;
  text-align: justify;
  display: flex;
  justify-content: center;
}

/* .indexPage .jobSec {
    padding-bottom: 140px;
    background: #184C6C;
} */

.indexPage .jobSec .topBox {
  padding: 90px 0 50px;
  position: relative;
}

/* .indexPage .jobSec .topBox .headLine04 {
    color: #fff;
} */

.indexPage .jobSec .topBox .txt {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.indexPage .jobSec .innerBox {
  margin-bottom: 65px;
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #fff;
}

/* .indexPage .jobSec .innerBox:before {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 46px;
    height: 41px;
    background: url("img/index/icon02.png") no-repeat left top;
    background-size: 46px auto;
    content: "";
} */

.indexPage .jobSec .innerBox .photoBox {
  padding-bottom: 33%;
  width: 45%;
  overflow: hidden;
  background: no-repeat center center;
  background-size: cover;
}

.indexPage .jobSec .innerBox .textBox {
  width: 55%;
  padding: 50px 65px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid var(--color-main);
  border-left: none;
}

.indexPage .jobSec .innerBox .textBox .jobTagBox {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 0 20px;
}

.indexPage .jobSec .innerBox .textBox .jobTagBox span {
  color: var(--color-main);
  border: 1px solid var(--color-main);
  margin-right: 5px;
  padding: 3px 20px;
}

.indexPage .jobSec .innerBox .textBox .jobTagBox span:last-of-type {
  margin-right: 0;
}

.indexPage .jobSec .innerBox .textBox .headLine03 {
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-main);
  font-size: 2.2rem;
}

.indexPage .jobSec .innerBox .textBox .txt {
  margin-bottom: 50px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.indexPage .jobSec .btnMore {
  padding-top: 40px;
}

.indexPage .jobSec .btnMore a {
  position: relative;
  display: flex;
  color: var(--color-main);
  width: 200px;
  height: 50px;
  font-size: 1.6rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  border: 1px solid #fff;
  letter-spacing: 0.08em;
}

.indexPage .jobSec .btnMore .info {
  position: relative;
  z-index: 3;
}

.indexPage .jobSec .btnMore a:hover {
  opacity: 0.7;
}

@media all and (min-width: 897px) and (max-width: 1200px) {
  .indexPage .interviewSec .linkList li .hover .infoHover {
    padding-left: 260px;
  }

  .indexPage .interviewSec .linkList li:nth-child(2n) .hover .infoHover {
    padding: 0 260px 0 0;
  }
}

@media all and (min-width: 897px) {
  .indexPage .interviewSec .linkList li a:hover .txtBox {
    background: #fff;
  }

  .indexPage .interviewSec .linkList li a:hover .hover {
    opacity: 1;
  }

  .indexPage .interviewSec .linkList li a:hover .txtBox .name {
    color: var(--color-main);
  }

  .indexPage .interviewSec .linkList li a:hover .txtBox .txtSpan {
    color: var(--color-main);
  }

  .indexPage .interviewSec .linkList li a:hover .more:after {
    border-color: #ffff;
  }
}

@media all and (max-width: 896px) {
  .indexPage {
    margin-bottom: -110px;
  }

  .indexPage .mainVisual {
    padding: 0 0 30px;
  }

  .indexPage .mainVisual .mainImg img {
    height: 531px;
  }

  .indexPage .mainVisual .txtInner {
    padding: 0 24px 44px;
  }

  .indexPage .mainVisual .txtInner:before {
    top: -269px;
    right: 24px;
    height: auto;
    bottom: 0;
  }

  .indexPage .mainVisual .txtInner:after {
    position: absolute;
    right: 24px;
    width: 22px;
    height: 22px;
    background-size: 22px auto;
    content: "";
    bottom: 0;
  }

  .indexPage .mainVisual .txtInner .content {
    padding-left: 0;
  }

  .indexPage .mainVisual .txtInner .ttl {
    padding: 44px 0 0;
    font-size: 1.4rem;
    line-height: 2.15;
    text-align: justify;
  }

  .indexPage .interviewSec {
    padding: 0;
  }

  .indexPage .interviewSec .topBox {
    padding: 20px 0 5px;
  }

  .indexPage .interviewSec .topBox .txt {
    font-size: 1.4rem;
    line-height: 2.1;
    text-align: justify;
  }

  .indexPage .interviewSec .linkList li a {
    height: auto;
    background: none !important;
  }

  .indexPage .interviewSec .linkList li .content {
    display: block;
    padding: 0;
  }

  .indexPage .interviewSec .linkList li .content img {
    border-radius: 20px 20px 0 0;
  }

  .indexPage .interviewSec .linkList li .txtBox {
    padding: 17px 23px;
    width: 100%;
    height: auto;
    background: var(--color-main);
    -webkit-clip-path: none;
    clip-path: none;
    background-size: 18px auto;
    position: relative;
    border-radius: 0 0px 20px 20px;
  }

  .indexPage .interviewSec .linkList li .txtBox:before {
    position: absolute;
    right: 40px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
    transition: 0.3s;
    -webkit-transition: 0.3s;
  }

  .indexPage .interviewSec .linkList li .txtBox:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border: 2px solid var(--color-main);
    border-left: none;
    border-top: none;
    top: 50%;
    right: 48px;
    transform: translateY(-50%) rotate(-45deg);
    transition: 0.3s;
    -webkit-transition: 0.3s;
  }

  .indexPage .interviewSec .linkList li .txtBox .name {
    font-size: 1.6rem;
  }

  .indexPage .interviewSec .linkList li .txtBox .txtSpan {
    font-size: 1.3rem;
    margin-left: 15px;
  }

  .indexPage .interviewSec .linkList li .txtBox .more {
    display: none;
  }

  .indexPage .interviewSec .linkList li:nth-child(2n) .txtBox {
    float: none;
  }

  .indexPage .interviewSec .linkList li .hover {
    position: static;
    background: none;
    opacity: 1;
  }

  .indexPage .interviewSec .linkList li .hover .infoHover {
    width: auto;
    padding: 8px 25px 10px;
    display: block;
    color: var(--color-dark);
    line-height: 1.8;
    font-size: 1.3rem;
  }

  .indexPage .aboutSec {
    padding: 10px 0 50px;
  }

  .indexPage .aboutSec .topBox {
    padding: 0;
  }

  .indexPage .aboutSec .topBox .headLine04 {
    margin-bottom: 35px;
  }

  .indexPage .aboutSec .businessBox {
    min-height: 440px;
    box-sizing: border-box;
    background-size: cover;
    margin: 30px auto;
    width: 100%;
  }

  .indexPage .aboutSec .businessBox .content {
    max-width: inherit;
  }

  .indexPage .aboutSec .businessBox .headLine04 {
    margin-bottom: 15px;
    letter-spacing: 0.08em;
  }

  .indexPage .aboutSec .businessBox .txt {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 2;
  }

  .indexPage .jobSec .topBox {
    padding: 10px 0 30px;
  }

  .indexPage .jobSec .topBox .txt {
    text-align: justify;
    font-size: 1.4rem;
    line-height: 2.15;
  }

  .indexPage .jobSec .innerBox {
    margin-bottom: 57px;
    display: block;
  }

  .indexPage .jobSec .innerBox .photoBox {
    padding-bottom: 78%;
    width: 100%;
  }

  .indexPage .jobSec .innerBox .textBox {
    width: 100%;
    padding: 28px 20px 30px;
    border-top: none;
    border-left: 1px solid var(--color-main);
  }

  .indexPage .jobSec .innerBox .textBox .headLine03 {
    margin-bottom: 14px;
    padding-bottom: 23px;
    font-size: 2rem;
  }

  .indexPage .jobSec .innerBox .textBox .txt {
    margin-bottom: 35px;
    line-height: 2.1;
    font-size: 1.3rem;
  }

  .indexPage .jobSec .innerBox .textBox .comMore {
    margin-right: 0;
    text-align: center;
  }

  .indexPage .jobSec .btnMore {
    margin: 0 auto;
    padding: 0;
  }

  .indexPage .jobSec .btnMore a {
    height: 48px;
  }
}

@media all and (max-width: 425px) {
  .indexPage .mainVisual .mainImg img {
    height: 300px;
  }

  .indexPage .mainVisual .mainImg {
    margin: 40px 0 auto;
  }

  .indexPage .interviewSec .linkList li .txtBox {
    display: flex;
    flex-direction: column;
    padding: 10px 62px 10px 10px;
    font-size: 1.3rem;
  }

  .indexPage .interviewSec .linkList li .txtBox .txtSpan {
    margin-left: 0;
    font-size: 1.1rem;
  }

  .indexPage .aboutSec .businessBox .txt {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    padding: 20px;
  }

  .indexPage .jobSec .innerBox .textBox {
    padding: 28px 5px 30px;
  }

  .indexPage .jobSec .innerBox .textBox .jobTagBox span {
    padding: 3px 6px;
  }

  .indexPage .jobSec .innerBox .textBox .txt {
    line-height: 2;
    font-size: 1.2rem;
  }

  .indexPage .jobSec .innerBox .textBox .headLine03 {
    font-size: 1.7rem;
  }
}

/*------------------------------------------------------------
	recruitPage
------------------------------------------------------------*/
.recruitPage {
  margin-bottom: -250px;
}

.recruitPage #pagePath {
  margin-bottom: 150px;
}

.recruitPage #pagePath img {
  width: 15px;
}

.recruitPage .topSec {
  margin-bottom: 150px;
}

.recruitPage .topSec .topText {
  max-width: 840px;
  margin: -8px auto 156px;
  font-size: 2rem;
  color: var(--color-main);
  position: relative;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.06em;
  text-align: center;
}

.recruitPage .topSec .linkList {
  justify-content: center;
  gap: 10px 2.5%;
}

.recruitPage .topSec .linkList li {
  width: 18%;
  position: relative;
  cursor: pointer;
}

.recruitPage .topSec .linkList li:nth-child(5n) {
  margin-right: 0;
}

.recruitPage .topSec .linkList li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--color-main);
  width: 100%;
  height: 0;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.recruitPage .topSec .linkList li a {
  display: flex;
  height: 53px;
  color: #fff;
  position: relative;
  letter-spacing: 0.06em;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: var(--color-main);
  border-radius: 0;
  z-index: 1;
  font-size: 2.4rem;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
}

.recruitPage .topSec .linkList li a:hover {
  color: #fff;
}

.recruitPage .topSec .linkList li .info {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
}

.recruitPage .topSec .linkList li a:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/* @media all and (min-width: 897px) {
    .recruitPage .topSec .linkList li a:hover:before {
        height: 100%;
        background-color: #184C6C;
    }
} */

.recruitPage .recruitSec {
  padding: 35px 0 65px;
  position: relative;
}

.recruitPage .recruitSec .headLine05 {
  margin-bottom: 75px;
  text-align: center;
}

.recruitPage .recruitSec .innerBox {
  align-items: flex-start;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  max-width: 1920px;
  width: 92%;
}

.recruitPage .recruitSec .innerBox .photoBox {
  padding-top: 12px;
  float: right;
  width: 45%;
}

.recruitPage .recruitSec .innerBox .photoBox img {
  margin-bottom: 20px;
}

.recruitPage .recruitSec .innerBox .textBox {
  margin-top: -10px;
  float: left;
  width: 53%;
}

.recruitPage .recruitSec .innerBox .infoBox {
  max-width: 572px;
  margin: 0 90px 0 auto;
  padding-left: 20px;
}

.recruitPage .recruitSec .innerBox .textBox table {
  width: 100%;
  border-collapse: collapse;
}

.recruitPage .recruitSec .innerBox .textBox th,
.recruitPage .recruitSec .innerBox .textBox td {
  color: #222;
  padding: 17px 0;
  text-align: left;
  vertical-align: middle;
  line-height: 1.9;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  letter-spacing: 0.06em;
}

.recruitPage .recruitSec .innerBox .textBox th {
  width: 34.5%;
}

.recruitPage .recruitSec .innerBox .textBox td span {
  display: inline-block;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  padding: 0 20px;
}

.recruitPage .recruitSec .innerBox .textBox td small {
  font-size: 14px;
  color: var(--color-small);
}

/*--- ポイント ---*/
.recruitPage .pointSec {
  padding: 100px 0 190px;
}

.recruitPage .pointSec .headLine06 {
  margin-bottom: 62px;
}

.recruitPage .pointSec .pointBox {
  border: 1px solid var(--color-sub);
  background: #fff;
  padding: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0 0 50px;
  padding-top: 35px;
  position: relative;
  text-align: center;
}

.recruitPage .pointSec .pointBox h4 {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-main);
  padding: 15px 45px;
}

.recruitPage .pointSec .pointBox:last-of-type {
  margin-bottom: 0;
}

.recruitPage .pointSec .pointBox figure {
  width: 20%;
}

.recruitPage .pointSec .pointBox dl {
  width: 85%;
}

.recruitPage .pointSec .pointBox dl dt {
  color: var(--color-sub);
  font-size: 2.2rem;
  font-weight: 600;
  padding: 0 0 25px;
}

.recruitPage .pointSec .pointBox dl dd {
  line-height: 2;
}

/*--- インタビュー ---*/
.recruitPage .interviewSec {
  padding: 155px 0 30px;
  position: relative;
}

.recruitPage .interviewSec .video {
  margin-bottom: 200px;
}

.recruitPage .interviewSec .video .name {
  margin-top: 27px;
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.recruitPage .interviewSec .video .name .small {
  margin-right: 24px;
  font-weight: 500;
  font-size: 2rem;
}

.recruitPage .interviewSec .infoVideo video {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.recruitPage .interviewSec .innerBox {
  max-width: 1920px;
  margin: 0 auto 120px;
  display: flex;
}

.recruitPage .interviewSec .innerBox:last-child {
  margin-bottom: 0;
}

.recruitPage .interviewSec .innerBox .photoBox {
  width: 47%;
}

.recruitPage .interviewSec .innerBox .photoBox .nameSpan {
  margin-top: 15px;
  color: var(--color-dark);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
}

.recruitPage .interviewSec .innerBox .photoBox .nameSpan .small {
  font-size: 1.4rem;
  font-weight: 400;
}

.recruitPage .interviewSec .innerBox .textBox {
  width: 55%;
}

.recruitPage .interviewSec .innerBox .textBox .subBox {
  max-width: 650px;
  margin: 0 auto 30px 50px;
}

.recruitPage .interviewSec .innerBox .textBox h4 {
  margin-bottom: 20px;
  color: var(--color-sub);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.recruitPage .interviewSec .innerBox .textBox p {
  color: var(--color-dark);
  line-height: 2.1;
  letter-spacing: 0.06em;
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 1.4rem;
}

.recruitPage .interviewSec .innerBox01 {
  flex-direction: row-reverse;
}

.recruitPage .interviewSec .innerBox01 .textBox .subBox {
  margin: 0 93px 30px auto;
  padding: 0 0 0 20px;
}

/*--- 業務内容 ---*/
.recruitPage .businessSec {
  position: relative;
  padding: 110px 0 35px;
}

.recruitPage .businessSec .headLine06 {
  margin-bottom: 62px;
}

.recruitPage .businessSec .businessBox {
  width: 53%;
}

.recruitPage .businessSec .businessBox dl {
  margin: 0 0 30px;
}

.recruitPage .businessSec .businessBox dl:last-of-type {
  margin-bottom: 0;
}

.recruitPage .businessSec .businessBox dl dt {
  font-size: 2rem;
  font-weight: 600;
  padding: 0 0 10px;
  color: var(--color-sub);
}

.recruitPage .businessSec .businessBox dl dd {
  line-height: 2.1;
  padding-left: 25px;
  font-size: 1.4rem;
}

.recruitPage .businessSec .business-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 15px;
}

.recruitPage .businessSec figure {
  width: 45%;
}

.recruitPage .businessSec figure img + img {
  margin-top: 10px;
}

/*--- 福利厚生 ---*/
.recruitPage .welfareSec {
  padding: 130px 0 110px;
}

.recruitPage .welfareSec .headLine06 {
  margin-bottom: 62px;
}

.recruitPage .welfareSec ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 60px 5%;
}

.recruitPage .welfareSec ul > li {
  width: 30%;
  line-height: 2.3;
}

.recruitPage .welfareSec ul > li figure {
  background: #ffffff;
  border: 1px solid var(--color-main);
  padding: 15px;
  text-align: center;
}

.recruitPage .welfareSec ul > li p {
  text-align: justify;
  line-height: 2.1;
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
}

.recruitPage .welfareSec ul > li figure figcaption {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 10px 0 0;
  border-top: 1px solid var(--color-main);
  margin-top: 15px;
  color: var(--color-sub);
}

.recruitPage .welfareSec ul > li p small {
  font-size: 14px;
  color: var(--color-small);
}

/*--- 1日のスケジュール ---*/
.recruitPage .oneDay {
  padding: 60px 0 190px;
}

.recruitPage .oneDay .headLine05 {
  margin-bottom: 90px;
  text-align: center;
}

.recruitPage .listBox {
  position: relative;
}

.recruitPage .listBox:before {
  position: absolute;
  left: 50%;
  top: -25px;
  bottom: -20px;
  width: 1px;
  background: var(--color-main);
  content: "";
}

.recruitPage .listBox .timeBox {
  clear: both;
  width: 50%;
  margin-bottom: -15px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.recruitPage .listBox .timeBox:last-child {
  margin-bottom: 0;
}

.recruitPage .listBox .timeBox .txtInner {
  width: calc(100% - 150px);
  color: #fff;
  position: relative;
  padding: 30px 35px;
  background: var(--color-sub);
  border: 1px solid var(--color-main);
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 2px 2px 2px 0px var(--color-sub);
}

.recruitPage .listBox .timeBox .txtInner .ttl {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.recruitPage .listBox .timeBox .txtInner .txt {
  margin-top: 6px;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.recruitPage .listBox .timeBox .time {
  padding-right: 25px;
  width: 150px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: right;
  box-sizing: border-box;
  color: var(--color-main);
}

.recruitPage .listBox .timeBox .time:before {
  margin-top: -10px;
  position: absolute;
  right: -10px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--color-sub);
  content: "";
  border-radius: 50%;
}

.recruitPage .listBox .timeBox01 {
  float: right;
  flex-direction: row;
}

.recruitPage .listBox .timeBox01 .txtInner:before {
  right: auto;
  left: -35px;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.recruitPage .listBox .timeBox01 .time {
  text-align: left;
  padding: 0 0 0 25px;
}

.recruitPage .listBox .timeBox01 .time02 {
  padding-left: 45px;
}

.recruitPage .listBox .timeBox01 .time:before {
  position: absolute;
  left: -10px;
  right: auto;
}

.recruitPage .companySec {
  padding: 185px 0 120px;
  position: relative;
}

.recruitPage .companySec .textBox:before {
  top: -100px;
}

.recruitPage .companySec .textBox .headLine05 {
  margin-bottom: -5px;
  margin-top: 20px;
  text-align: justify;
}

.recruitPage .companySec .comImgBox01 {
  margin-bottom: 0;
  flex-direction: row-reverse;
}

.recruitPage .companySec .comImgBox01:nth-of-type(2) {
  flex-direction: row;
  margin-top: 80px;
}

.recruitPage .companySec .comImgBox01 .textBox:before {
  left: 0;
  right: -63%;
}

.recruitPage .comCompany {
  padding: 100px 0 140px;
}

.recruitPage .comCompany .headLine05 {
  margin-bottom: 60px;
}

.recruitPage .FormSec {
  padding: 25px 0 100px;
}

@media all and (min-width: 1401px) and (max-width: 2000px) {
  .recruitPage .companySec .textBox:before {
    top: -32%;
    left: -63%;
  }
}

@media all and (min-width: 1201px) and (max-width: 1400px) {
  .recruitPage .companySec .textBox:before {
    top: -18%;
    left: -63%;
  }
}

@media all and (min-width: 897px) and (max-width: 1200px) {
  .recruitPage .interviewSec .innerBox .textBox .subBox {
    margin: 0 auto 30px 40px;
  }

  .recruitPage .interviewSec .innerBox01 .textBox .subBox {
    margin: 0 40px 30px auto;
  }

  .recruitPage .companySec .textBox:before {
    top: -20%;
    left: -63%;
  }
}

@media all and (max-width: 896px) {
  .recruitPage {
    margin-bottom: -38px;
  }

  .recruitPage #pagePath {
    margin-bottom: 42px;
  }

  .recruitPage #pagePath img {
    width: 13px;
  }

  .recruitPage .headLine05 {
    margin-bottom: 35px;
  }

  .recruitPage .topSec {
    margin-bottom: 53px;
  }

  .recruitPage .topSec .topText {
    max-width: inherit;
    margin: -3px auto 44px;
    padding-bottom: 0;
    font-size: 1.4rem;
    line-height: 2.15;
  }

  .recruitPage .topSec .linkList li {
    margin: 0;
    width: 100%;
  }

  .recruitPage .topSec .linkList li:nth-child(4n) {
    margin-right: 0;
  }

  .recruitPage .topSec .linkList li a {
    height: 55px;
  }

  .recruitPage .recruitSec {
    padding: 35px 0 40px;
  }

  .recruitPage .recruitSec .headLine05 {
    margin-bottom: 35px;
    margin-top: 20px;
  }

  .recruitPage .recruitSec .innerBox {
    max-width: inherit;
    padding: 0;
    flex-direction: column;
  }

  .recruitPage .recruitSec .innerBox .photoBox {
    padding-top: 12px;
    float: none;
    width: auto;
  }

  .recruitPage .recruitSec .innerBox .photoBox img {
    width: 100%;
  }

  .recruitPage .recruitSec .innerBox .textBox {
    float: none;
    margin: 0 auto 40px;
    width: 90%;
  }

  .recruitPage .recruitSec .innerBox .infoBox {
    max-width: inherit;
    margin: 0;
    padding: 0;
  }

  .recruitPage .recruitSec .innerBox .textBox th,
  .recruitPage .recruitSec .innerBox .textBox td {
    float: left;
    width: 100%;
    padding: 0 0 16px;
    line-height: 1.9;
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  }

  .recruitPage .recruitSec .innerBox .textBox th {
    padding: 20px 0 0;
    width: 100%;
    border-bottom: none;
  }

  /*--- ポイント ---*/
  .recruitPage .pointSec {
    padding: 30px 0 100px;
    background-size: 123px auto;
  }

  .recruitPage .pointSec .headLine06 {
    margin-bottom: 32px;
  }

  .recruitPage .pointSec .pointBox {
    padding: 50px 25px 25px;
    margin: 0 0 30px;
    text-align: center;
  }

  .recruitPage .pointSec .pointBox figure {
    /* width: 100%; */
    text-align: center;
    margin: 0 0 25px;
  }

  .recruitPage .pointSec .pointBox figure img {
    height: auto;
  }

  .recruitPage .pointSec .pointBox dl {
    width: 100%;
  }

  .recruitPage .pointSec .pointBox dl dt {
    font-size: 1.8rem;
    padding: 0 0 15px;
  }

  /*--- インタビュー ---*/
  .recruitPage .interviewSec {
    padding: 70px 0;
    background-size: 123px auto;
  }

  .recruitPage .interviewSec .comImgBox:last-child {
    margin-bottom: 0;
  }

  .recruitPage .interviewSec .headLine05 .info {
    padding-bottom: 10px;
  }

  .recruitPage .interviewSec .video {
    margin: 0 -24px 66px;
  }

  .recruitPage .interviewSec .video .name {
    margin: 22px 23px 0;
    font-size: 1.6rem;
  }

  .recruitPage .interviewSec .video .name .small {
    margin-right: 20px;
    font-size: 1.4rem;
  }

  .recruitPage .interviewSec .innerBox {
    max-width: inherit;
    margin: 0 0px 50px;
    display: block;
  }

  .recruitPage .interviewSec .innerBox .photoBox {
    width: 80%;
    margin: 0 auto;
  }

  .recruitPage .interviewSec .innerBox .photoBox .nameSpan {
    font-size: 1.7rem;
  }

  .recruitPage .interviewSec .innerBox01 .photoBox .nameSpan {
    margin: 18px 24px 0 0;
  }

  .recruitPage .interviewSec .innerBox .textBox {
    width: 90%;
    margin: 15px auto 15px;
    padding-bottom: 0;
  }

  .recruitPage .interviewSec .innerBox .textBox .subBox {
    max-width: inherit;
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }

  .recruitPage .interviewSec .innerBox .textBox h4 {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }

  .recruitPage .interviewSec .innerBox .textBox p {
    line-height: 2;
  }

  .recruitPage .interviewSec .innerBox01 .textBox .subBox {
    margin: 0 0 15px;
    padding: 0;
  }

  /*--- 業務内容 ---*/
  .recruitPage .businessSec {
    padding: 0;
  }

  .recruitPage .businessSec .headLine06 {
    margin-bottom: 32px;
  }

  .recruitPage .businessSec .businessBox {
    width: 90%;
    padding: 5% 0 0;
  }

  .recruitPage .businessSec figure {
    width: 90%;
    margin: 0 auto;
  }

  /*--- 福利厚生 ---*/
  .recruitPage .welfareSec {
    padding: 90px 0;
  }

  .recruitPage .welfareSec .headLine06 {
    margin-bottom: 32px;
  }

  .recruitPage .welfareSec ul > li {
    width: 100%;
  }

  .recruitPage .welfareSec ul > li figure {
    padding: 25px;
  }

  .recruitPage .welfareSec ul > li figure img {
    height: auto;
  }

  .recruitPage .welfareSec ul > li figure figcaption {
    font-size: 1.6rem;
    padding: 20px 0 0;
  }

  .recruitPage .welfareSec ul > li p small {
    font-size: 12px;
  }

  /*--- 1日のスケジュール ---*/
  .recruitPage .oneDay {
    padding: 20px 0 110px;
  }

  .recruitPage .oneDay .headLine05 {
    margin-bottom: 35px;
  }

  .recruitPage .oneDay h3 .info {
    padding-bottom: 12px;
    font-size: 2.4rem;
  }

  .recruitPage .listBox:before {
    position: absolute;
    left: 10px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    background: var(--color-main);
  }

  .recruitPage .listBox .timeBox {
    clear: both;
    width: 100%;
    margin-bottom: 15px;
    flex-direction: row;
  }

  .recruitPage .listBox .timeBox:last-child {
    margin-bottom: 0;
  }

  .recruitPage .listBox .timeBox .txtInner {
    width: calc(100% - 110px);
    padding: 8px 10px 12px 18px;
  }

  .recruitPage .listBox .timeBox .txtInner .ttl {
    font-size: 1.4rem;
  }

  .recruitPage .listBox .timeBox .txtInner .txt {
    margin-top: 4px;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
  }

  .recruitPage .listBox .timeBox .time {
    padding: 0 0 0 28px;
    width: 110px;
    font-size: 1.6rem;
    text-align: left;
  }

  .recruitPage .listBox .timeBox .time:before {
    margin-top: -10px;
    right: auto;
    left: 3px;
    top: 50%;
    width: 15px;
    height: 15px;
  }

  .recruitPage .listBox .timeBox01 {
    float: none;
  }

  .recruitPage .listBox .timeBox01 .time02 {
    padding-left: 45px;
  }

  .recruitPage .listBox .timeBox01 .time:before {
    position: absolute;
    left: 3px;
    right: auto;
  }

  .recruitPage .companySec {
    padding: 95px 0 60px;
  }

  .recruitPage .companySec .comImgBox {
    max-width: inherit;
    display: block;
    margin-bottom: 50px;
  }

  .recruitPage .companySec .comImgBox:last-of-type {
    margin-bottom: 0;
    padding-top: 40px;
  }

  .recruitPage .companySec .comImgBox .textBox {
    margin-bottom: 0;
  }

  .recruitPage .companySec .photoBox {
    width: 90%;
    margin: 0 auto;
  }

  .recruitPage .companySec .photoBox img {
    width: 100%;
  }

  .recruitPage .companySec .comImgBox .textBox .subBox {
    margin-top: 10px;
  }

  .recruitPage .companySec .textBox p {
    line-height: 2;
    font-size: 1.4rem;
  }

  .recruitPage .comCompany {
    padding: 55px 0 60px;
  }

  .recruitPage .comCompany .headLine05 {
    margin-bottom: 35px;
  }

  .recruitPage .FormSec {
    padding: 40px 0 0;
  }
}

@media all and (max-width: 425px) {
  .recruitPage .recruitSec {
    padding: 35px 0 15px;
  }

  .recruitPage .topSec .topText {
    font-size: 1.2rem;
  }

  .recruitPage .topSec .linkList li a {
    height: 45px;
  }

  .recruitPage .pointSec .pointBox h4 {
    padding: 10px 30px;
    font-size: 17px;
  }

  .recruitPage .pointSec .pointBox dl dt {
    font-size: 1.7rem;
  }

  .recruitPage .pointSec .pointBox dl dd {
    line-height: 1.7;
    font-size: 1.2rem;
  }

  .recruitPage .interviewSec {
    padding: 70px 0 45px;
  }

  .recruitPage .interviewSec .innerBox .photoBox {
    width: 100%;
  }

  .recruitPage .interviewSec .innerBox .photoBox .nameSpan .small {
    font-size: 1.2rem;
  }

  .recruitPage .interviewSec .innerBox .photoBox .nameSpan {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .recruitPage .interviewSec .innerBox .textBox {
    width: 100%;
  }

  .recruitPage .interviewSec .innerBox .textBox h4 {
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 1.5rem;
  }

  .recruitPage .interviewSec .innerBox .textBox p {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .recruitPage .businessSec figure {
    width: 100%;
  }

  .recruitPage .businessSec .businessBox dl dt {
    font-size: 1.5rem;
  }

  .recruitPage .businessSec .businessBox dl dd {
    line-height: 1.8;
    padding-left: 0;
    font-size: 1.2rem;
  }

  .recruitPage .welfareSec {
    padding: 70px 0 35px;
  }

  .recruitPage .welfareSec ul > li figure figcaption {
    font-size: 1.8rem;
    padding: 15px 0 0;
  }

  .recruitPage .welfareSec ul > li p {
    text-align: justify;
    font-size: 1.3rem;
    width: 68%;
  }

  .recruitPage .oneDay {
    padding: 20px 0 75px;
  }

  .recruitPage .listBox .timeBox .txtInner {
    border-radius: 15px;
  }

  .recruitPage .companySec .textBox p {
    font-size: 1.2rem;
  }

  .recruitPage .companySec {
    padding: 60px 0 35px;
  }

  .comImgBox .textBox {
    width: 89%;
  }
}

/*------------------------------------------------------------
	contact
------------------------------------------------------------*/
.contactPage .topTxt {
  margin: 0 0 68px 3px;
  letter-spacing: 0.06em;
  text-align: center;
}

.contactPage table {
  margin-bottom: 158px;
  width: 100%;
  border-collapse: collapse;
  word-break: break-all;
}

.contactPage th,
.contactPage td {
  padding: 28px 0 28px 58px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #d1cfcf;
}

.contactPage th {
  padding: 20px 50px 20px 0;
  width: 29%;
  font-weight: 500;
}

.contactPage td {
  font-size: 1.3rem;
  position: relative;
}

.contactPage th .must {
  float: right;
  width: 44px;
  color: #fff;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--color-main);
  text-align: center;
}

.contactPage th .optional {
  float: right;
  width: 44px;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  box-sizing: border-box;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  background: #fff;
  text-align: center;
}

.contactPage td:before {
  position: absolute;
  left: 0;
  top: 27px;
  width: 1px;
  bottom: 27px;
  background: #d1cfcf;
  content: "";
}

.contactPage td input[type="text"],
.contactPage td input[type="email"],
.contactPage td input[type="tel"],
.contactPage td input[type="number"],
.contactPage td select,
.contactPage td textarea {
  width: 100%;
  height: 58px;
  color: var(--color-dark);
  font-size: 1.3rem;
  padding: 5px 10px 5px 23px;
  -webkit-appearance: none;
  box-sizing: border-box;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  border-radius: 4px;
}

.contactPage td .wid01 {
  width: 98px !important;
}

.contactPage td .ico {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.6rem;
}

.contactPage td .add {
  margin-bottom: 20px;
}

.contactPage td textarea {
  height: 265px;
  resize: vertical;
  padding: 20px 10px 20px 23px;
}

.contactPage .txtP {
  margin-bottom: 45px;
  line-height: 1.9;
  text-align: center;
}

.contactPage .txtP a {
  text-decoration: underline;
}

.contactPage .txtP a:hover {
  opacity: 0.7;
}

.contactPage .agreeTxt {
  width: 460px;
  margin: 0 auto 100px;
  padding: 12px 10px 16px 80px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.contactPage .agreeTxt input[type="checkbox"] {
  display: flex;
  align-content: center;
}

.contactPage .agreeTxt input[type="checkbox"] ~ span {
  background: url(../images/common/check_box_bg02.png) no-repeat left top 7px;
  background-size: 16px 16px;
  display: block;
  min-height: 16px;
  padding: 4px 0 6px 26px;
}

.contactPage .agreeTxt input[type="checkbox"]:checked ~ span {
  background: url(../images/common/check_box_bg01.png) no-repeat left top 7px;
  background-size: 16px 16px;
}

.contactPage .submit {
  text-align: center;
}

.contactPage .submit li {
  margin: 0 6px;
  display: inline-block;
  vertical-align: top;
}

.ajax-loader {
  display: none !important;
}

.contactPage .submit li .info01 {
  display: block;
  position: relative;
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.contactPage .submit li .info02 {
  position: relative;
  z-index: 2;
}

.contactPage .submit li .info01:before {
  margin-top: -5px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 21px;
  height: 11px;
  background: url(../images/common/arrow_white.png) no-repeat left center;
  background-size: 21px 11px;
  content: "";
  z-index: 3;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.contactPage .submit li .info01:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: auto;
  right: 0;
  background-color: #fff;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.contactPage .submit .back .info01:before {
  margin-top: -5px;
  position: absolute;
  right: auto;
  left: 10px;
  top: 50%;
  width: 21px;
  height: 11px;
  background: url(../images/common/arrow_white.png) no-repeat left center;
  transform: scale(-1, 1);
  background-size: 21px 11px;
  content: "";
}

.contactPage .submit li input {
  color: #fff;
  width: 258px;
  height: 48px;
  font-size: 1.6rem;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  background: none;
}

.contactPage .submit li input:disabled {
  cursor: default;
  pointer-events: none;
}

.contactPage .submit .back .info01 {
  background: #919191;
  border-color: #919191;
}

.contactPage .submit li.disabled .info01 {
  background: #cecece;
  border-color: #cecece;
}

.contactPage .submit li.disabled .info01:after {
  display: none;
}

.contactPage .errTop {
  margin-bottom: 16px;
  padding: 18px 10px;
  color: #c1272d;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 3px solid #c1272d;
  background: #fcdedd;
  text-align: center;
}

.contactPage .errTop img {
  margin: -3px 10px 0 0;
  display: inline-block;
  vertical-align: middle;
}

.contactPage .error td input,
.contactPage .error td select,
.contactPage .error td textarea {
  background: #fcdedd;
  border: 1px solid #c1272d;
}

.contactPage .error td .errorTxt {
  margin: 2px 0 -22px;
  display: block;
  color: #de2b2b;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
}

.contactPage .confirmTab th,
.contactPage .confirmTab td {
  height: 60px;
}

.contactPage .confirmTab td .add {
  margin-bottom: 4px;
}

span.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.thanks .title {
  margin-bottom: 32px;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}

.thanks .thanksTxt {
  margin-bottom: 180px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}

.thanks .linkBtn a {
  margin: 0 auto;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  width: 256px;
  color: #fff;
  text-align: center;
  position: relative;
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
  box-sizing: border-box;
}

.thanks .linkBtn a:before {
  margin-top: -4px;
  position: absolute;
  left: 11px;
  top: 50%;
  width: 21px;
  height: 11px;
  background: url(../images/common/arrow_white.png) no-repeat left center;
  transform: scale(-1, 1);
  background-size: 21px auto;
  content: "";
  z-index: 3;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.thanks .linkBtn .info {
  position: relative;
  z-index: 2;
}

.thanks .linkBtn a:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: auto;
  right: 0;
  background-color: #fff;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media all and (min-width: 897px) {
  .contactPage .submit li:hover .info01:after {
    width: 100%;
    right: auto;
    left: 0;
  }

  .contactPage .submit li:hover .info01:before {
    right: -21px;
    background-image: url(../images/common/arrow.png);
  }

  .contactPage .submit li.disabled:hover .info01:before {
    right: 10px;
    background-image: url(../images/common/arrow_white.png);
  }

  .contactPage .submit li:hover input {
    color: var(--color-dark);
  }

  .contactPage .submit li.disabled:hover input {
    color: #fff;
  }

  .contactPage .submit li.back:hover .info01:before {
    left: -21px;
  }

  .thanks .linkBtn a:hover {
    color: var(--color-dark);
  }

  .thanks .linkBtn a:hover:before {
    background-image: url(../images/common/arrow.png);
    left: -21px;
  }

  .thanks .linkBtn a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
  }
}

@media all and (max-width: 896px) {
  .contactPage .topTxt {
    margin: 0 0 17px;
    line-height: 1.9;
    text-align: center;
  }

  .contactPage table {
    margin-bottom: 48px;
  }

  .contactPage th,
  .contactPage td {
    float: left;
    width: 100%;
    padding: 0 0 25px;
    box-sizing: border-box;
  }

  .contactPage th {
    padding: 22px 0 10px;
    width: auto;
    border: none;
  }

  .contactPage th .must,
  .contactPage th .optional {
    margin-left: 10px;
  }

  .contactPage td:before {
    display: none;
  }

  .contactPage td input[type="text"],
  .contactPage td input[type="email"],
  .contactPage td input[type="tel"],
  .contactPage td textarea {
    height: 58px;
    font-size: 1.2rem;
    padding: 5px 10px 5px 25px;
  }

  .contactPage td {
    font-size: 1.4rem;
  }

  .contactPage td .wid01 {
    width: 124px !important;
  }

  .contactPage td .ico {
    margin-right: 7px;
  }

  .contactPage td .add {
    margin-bottom: 20px;
  }

  .contactPage td textarea {
    height: 180px;
    padding: 20px 10px 20px 25px;
  }

  .contactPage .txtP {
    margin-bottom: 23px;
    line-height: 1.85;
  }

  .contactPage .agreeTxt {
    width: auto;
    margin: 0 auto 51px;
    padding: 14px 10px 14px 30px;
    text-align: center;
  }

  .contactPage .agreeTxt span.wpcf7-list-item {
    margin: 0 !important;
  }

  .contactPage .submit li {
    margin: 0 0 15px;
    display: block;
  }

  .contactPage .submit li:last-child {
    margin-bottom: 0;
  }

  .contactPage .submit li span:before {
    right: 17px;
  }

  .contactPage .submit li input {
    width: 100%;
    height: 60px;
  }

  .contactPage .errTop {
    margin-bottom: 18px;
    padding: 23px 10px 20px;
    font-size: 1.6rem;
    border-width: 2px;
    line-height: 1.9;
  }

  .contactPage .errTop img {
    margin: 0 auto 5px;
    display: block;
  }

  .contactPage .error td .errorTxt {
    margin: 3px 0 -19px;
    font-size: 1.1rem;
  }

  .contactPage .confirmTab th,
  .contactPage .confirmTab td {
    padding: 21px 0 7px;
    height: auto;
    line-height: 2;
  }

  .contactPage .confirmTab td {
    padding: 0 0 20px;
  }

  .contactPage .confirmTab td .add {
    margin-bottom: 4px;
  }

  .thanks .title {
    margin-bottom: 22px;
    font-size: 2.4rem;
  }

  .thanks .thanksTxt {
    margin-bottom: 37px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.9;
  }

  .thanks .linkBtn a {
    margin: 0 auto;
    height: 60px;
    width: 100%;
    font-size: 1.6rem;
    max-width: 450px;
    letter-spacing: 0.06em;
  }

  .thanks .linkBtn a:before {
    left: 16px;
  }
}

@media all and (max-width: 374px) {
  .contactPage .txtP {
    margin: 0 -17px 23px;
  }

  .contactPage .agreeTxt {
    padding: 14px 5px 14px 10px;
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------
	privacy
------------------------------------------------------------*/
.privacy .headLine02 {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 50px;
}

.privacy .termsarea {
  margin-top: 30px;
}

.privacy p {
  margin-bottom: 4px;
  line-height: 2.3;
  letter-spacing: 0.06em;
}

.privacy h5 {
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.privacy .txt01 {
  margin-bottom: 65px;
}

.privacy .txt02 {
  margin-bottom: 72px;
}

.privacy .txt03 {
  margin-bottom: 35px;
}

.privacy .txt04 {
  margin-bottom: 0;
}

@media all and (max-width: 896px) {
  .privacy .headLine02 {
    font-size: 1.6rem;
  }

  .privacy .pageTitle .headLine01 .en {
    margin-bottom: 8px;
    font-size: 3.2rem;
  }

  .privacy .pageTitle .headLine01 .jp {
    font-size: 2rem;
  }

  .privacy #pagePath {
    margin-bottom: 56px;
  }

  .privacy p {
    margin-bottom: 3px;
    line-height: 1.85;
    letter-spacing: 0.01em;
  }

  .privacy h5 {
    margin-bottom: 3px;
    letter-spacing: 0.01em;
  }

  .privacy .txt01 {
    margin-bottom: 57px;
  }

  .privacy .txt02 {
    margin-bottom: 60px;
  }

  .privacy .txt03 {
    margin-bottom: 27px;
  }

  .privacy .txt04 {
    margin-bottom: 0;
  }
}

.wpcf7-response-output {
  display: none !important;
}

.photoBox.noThumbs {
  background-size: 60% !important;
  background-color: #fff !important;
  border: 1px solid #f2f3f2 !important;
}
