@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2026/07
 */

/* !Fonts
---------------------------------------------------------- */
.inter {
  font-family: "Inter", sans-serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

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

fieldset {
  border: none;
}

ul,
ol,
li {
  list-style: none;
}

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

table {
  border-collapse: collapse;
}

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

select::-ms-expand {
  display: none;
}

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
  display: none;
}

select,
input[type="radio"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="reset"],
input[type="button"],
input[type="submit"],
input[type="checkbox"],
textarea {
  appearance: none;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}

input[type="text"]::-ms-clear,
input[type="tel"]::-ms-clear,
input[type="number"]::-ms-clear {
  display: none;
}

input[type="reset"],
input[type="button"],
input[type="submit"] {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}

/* =========================================
     カラースキーム (変数定義)
  ========================================= */
:root {
  --color-year1: #39b54a;
  --color-year2: #00a0e9;
  --color-box-light: #a9dbee;
  --color-box-dark: #00a0e9;
  --color-footer: #2b749d;
  --color-arrow: #7a7a7a;
  --color-text-main: #222222;
}

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

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: calc(100vw / 120);
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 39);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: normal;
  color: #101828;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
}

/* !基本 -------------------------------------------------------------- */
a {
  color: #101828;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.is-hide {
  display: none;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

.anchor {
  position: relative;
}

.anchor-link {
  position: absolute;
  left: 0;
  top: -15rem;
  z-index: -1;
  pointer-events: none;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  a {
    transition: all 0.5s;
  }

  .op {
    transition: opacity 0.5s ease-out;
  }

  .op:hover {
    opacity: 0.5;
    text-decoration: none;
  }

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

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }

  .anchor-link {
    top: -9rem;
  }
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
  width: 100%;
  word-break: break-all;
  padding-top: 15rem;
  background: #f8fdff;
}

@media screen and (max-width: 767px) {
  #wrapper {
    padding-top: 9rem;
  }
}

/* !header
---------------------------------------------------------- */
#header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}

#header:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: #f8fdff;
  content: "";
}

.header-inner {
  padding: 1.5rem 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 15rem;
  border-bottom: 0.1rem solid #d9d9d9;
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo .logo {
  line-height: 0;
  width: 25rem;
  text-align: center;
}

.header-logo .logo .logo-nippo {
	
	padding-top: 1.2rem;
	display: inline-block;
}

.header-logo .logo .logo-snk {
	padding-bottom: 1.2rem;
	border-bottom: .1rem solid #000;
	display: inline-block;
	pointer-events: none;
}

.header-logo .logo a {
	display: inline-block;
}

.header-logo .logo-site {
  background: #c3e874;
  width: 12rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.2rem;
}

.header-links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.btn-menu {
  width: 4.6rem;
  height: 4.6rem;
  background: url(../img/common/icon_open.png) center center no-repeat;
  background-size: 4.6rem 3.1rem;
  cursor: pointer;
  display: none;
  transition: 0.2s ease;
}

.btn-menu.is-active {
  background: url(../img/common/icon_close.png) center center no-repeat;
  background-size: 4rem 4rem;
  transition: 0.2s ease;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  .header-logo a:hover {
    opacity: 0.75;
  }
}

@media screen and (max-width: 767px) {
  #header:before {
    background: #fff;
  }

  .header-inner {
    padding: 1rem;
    height: 9rem;
  }

  #header.is-active .header-inner {
    border-color: transparent;
  }

  .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-logo .logo {
    display: flex;
    margin: 0;
    line-height: 0;
    width: auto;
    text-align: center;
    align-items: flex-end;
  }
	
	.header-logo .logo .recruit-logo {
		width: 18rem;
	}

  .header-logo .logo img {
    width: 100%;
  }

  .header-logo .logo-site {
    width: 9rem;
    height: 2.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-left: 1.2rem;
  }

  .header-links {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .btn-menu {
    display: flex;
  }
}

/* !global navigation
---------------------------------------------------------- */
#g-navi {
  height: 100%;
}

#g-navi > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  height: 100%;
}

#g-navi > ul > li {
  height: 100%;
  display: flex;
  align-items: center;
}

#g-navi > ul > li > a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  #g-navi > ul > li:hover > a {
    opacity: 0.7;
    text-decoration: none;
  }
}

/*** hover ***/
@media screen and (max-width: 767px) {
  #g-navi {
    /* display: none; */
    position: fixed;
    left: 0;
    top: 9rem;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 3rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s ease-in-out;
  }

  #header.is-active #g-navi {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: 0.5s ease-in-out;
  }

  #g-navi > ul {
    display: block;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    height: 100%;
  }

  #g-navi > ul > li {
    height: auto;
    display: block;
    align-items: center;
  }

  #g-navi > ul > li > a {
    font-size: 1.6rem;
    font-weight: 500;
    display: block;
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
  }

  #g-navi > ul > li > a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/common/double_right.png) center center no-repeat;
    background-size: cover;
  }

  .links-ul {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    width: 100%;
  }

  .links-ul ul {
    display: flex;
    justify-content: center;
  }

  .links-ul ul li {
    width: 50%;
  }

  .links-ul ul li a {
    color: #ffffff;
    height: 4.8rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .links-ul ul li.orange a {
    background: #eb7000;
  }

  .links-ul ul li.blue a {
    background: #00a5ea;
  }
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
  padding: 2rem 0;
}

#breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}

#breadcrumb ul li,
#breadcrumb ul li a {
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  word-break: keep-all;
}

#breadcrumb ul li:last-child,
#breadcrumb ul li:last-child a {
  word-break: break-all;
}

#breadcrumb ul li + li {
  margin-left: 2rem;
}

#breadcrumb ul li + li::before {
  content: ">";
  position: absolute;
  left: -1.2rem;
  top: 0;
  z-index: 2;
  width: 1rem;
  font-size: 1.4rem;
  line-height: 1;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  #breadcrumb ul li a:hover {
    color: #00a5ea;
  }
}

/* sp */
@media screen and (max-width: 767px) {
  /* !breadcrumb
	---------------------------------------------------------- */
  #breadcrumb ul {
    justify-content: center;
  }
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
  width: 100%;
  margin-bottom: 10rem;
}

.main-visual__kv {
  position: relative;
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}

#main-visual .main-visual__info {
  font-weight: 700;
  font-size: 6.3rem;
  padding: 0 6rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #000000;
	text-shadow: 0.4rem .4rem .1rem rgba(255, 255, 255, 1);
}

@media screen and (max-width: 767px) {
  #main-visual {
    margin-bottom: 3rem;
  }

  .main-visual__kv {
    max-width: 100%;
  }

  #main-visual .main-visual__info {
    font-size: 3.2rem;
    padding: 0 3rem;
  }
}

/* !teaser
---------------------------------------------------------- */
#teaser {
  background: linear-gradient(90deg, #f0ffce 0%, #d5fc81 100%);
  position: relative;
  margin-bottom: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.1rem solid #c3e874;
}

#teaser .inner {
  max-width: 105rem;
}

#teaser .teaser-hd {
  position: relative;
  z-index: 3;
  font-size: 3.2rem;
  font-weight: 700;
  text-shadow:
    0.1rem 0.1rem 0 rgba(255, 255, 255, 0.3),
    -0.1rem -0.1rem 0 rgba(255, 255, 255, 0.3),
    0.1rem -0.1rem 0 rgba(255, 255, 255, 0.3),
    -0.1rem 0.1rem 0 rgba(255, 255, 255, 0.3),
    0.1rem 0rem 0 rgba(255, 255, 255, 0.3),
    -0.1rem 0rem 0 rgba(255, 255, 255, 0.3),
    0rem 0.1rem 0 rgba(255, 255, 255, 0.3),
    0rem -0.1rem 0 rgba(255, 255, 255, 0.3);
}

#teaser .teaser-hd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  transform: translateX(-99.6vw);
  background: #c3e874;
  clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 4vw) 0);
}

/*** sp ***/
@media screen and (max-width: 767px) {
  #teaser {
    margin-bottom: 2.5rem;
    padding-left: 5.5rem;
  }

  #teaser .teaser-hd {
    font-size: 2.4rem;
  }

  #teaser .teaser-hd::before {
    transform: translateX(-99vw);
    clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 10vw) 0);
  }
}

/* !contents
---------------------------------------------------------- */
.inner {
  max-width: 102rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

/* !footer
---------------------------------------------------------- */
#footer {
  background: #f8fdff;
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer-inner {
  max-width: 112rem;
  width: 100%;
  padding: 0 4rem;
  margin: 0 auto;
}

.footer-section {
  max-width: 95rem;
  width: 100%;
  margin: 0 auto 9rem;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.47;
}

.footer-info__logo {
  width: 20rem;
}

.footer-info__logo img {
  width: 100%;
}

.footer-info__name {
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-info__address {
  font-size: 1.2rem;
}

.footer-links {
  width: 100%;
  display: flex;
	justify-content: center;
  flex-wrap: wrap;
/*   margin-left: -1rem; */
}

.footer-links__item {
  margin: 0 3rem;
/*   width: calc((100% / 5) - 1rem); */
}

.footer-links__item .links-item__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-decoration: none;
}

.footer-links__item .sub-menu li + li {
  margin-top: 0.5rem;
}

.footer-links__item .sub-menu a {
  font-size: 1.6rem;
}

/* pagetop */

#footer .page-top {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#footer .page-top.in {
  opacity: 1;
  visibility: visible;
}

/* #footer .page-top.fix {
  position: absolute;
  top: -5rem;
  bottom: auto;
  z-index: auto;
} */

#footer .page-top a {
  display: block;
  width: 6rem;
  height: 6rem;
  font-size: 0;
  background: #00a5ea;
  border: 0.2rem solid #00a5ea;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

#footer .page-top a:before {
  content: "↑";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.6rem;
  color: #fff;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  .footer-links__item a:hover {
    text-decoration: underline;
  }

  #footer .page-top a:hover {
    background: #fff;
    color: #00a5ea;
    transition: 0.3s ease-in-out;
  }

  #footer .page-top a:hover:before {
    color: #00a5ea;
    transition: 0.3s ease-in-out;
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
  #footer {
    padding: 2rem 0 9.1rem;
  }

  .footer-inner {
    padding: 0 1rem;
  }

  .footer-section {
    margin: 0 auto 5rem;
  }

  .footer-info {
    display: block;
  }

  .footer-info {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.47;
  }

  .footer-info__logo {
    width: 20rem;
    margin: 0 auto 2rem;
  }

  .footer-links {
    width: 100%;
    display: block;
    text-align: center;
    margin-left: 0;
  }

  .footer-links__item {
    margin-left: 0;
    width: 100%;
  }

  .footer-links__item .links-item__title {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-decoration: none;
  }

  #footer .page-top {
    bottom: 5.2rem;
    right: 2rem;
  }

  #footer .page-top a {
    width: 4rem;
    height: 4rem;
  }

  #footer .page-top a:before {
    font-size: 1.8rem;
  }

  #footer .page-top.fix {
    top: -2rem;
  }
}

/* !Contact お問い合わせ
	Form
---------------------------------------------------------- */
.contact-wrap {
  margin-top: 8rem;
}

#contact #wrapper {
  background: #fff;
}

#contact #header:before {
  background: #fff;
}

.form-section {
  max-width: 94rem;
  width: 100%;
  margin: 0 auto;
}

.form-section .form-row {
  display: flex;
  align-items: center;
  border-top: 0.1rem solid #eee;
  border-radius: 2rem;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
}

.form-section .form-row:nth-last-child(2) {
  border-bottom: 0.1rem solid #eee;
}

.form-section .label {
  width: 30rem;
  margin-right: 5rem;
  font-size: 1.4rem;
  position: relative;
}

.form-section .badge {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 0.5rem;
  margin-left: 0.6rem;
  width: 4.8rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-section .required {
  background: #00a5ea;
  color: #fff;
}

.form-section .optional {
  background: #767676;
  color: #fff;
}

.form-section .input-area {
  width: calc(100% - 35rem);
  position: relative;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section textarea {
  max-width: 30rem;
  width: 100%;
  padding: 0.5rem;
  height: 2.5rem;
  border: 0.1rem solid #767676;
}

.form-section textarea {
  min-height: 14rem;
}

.form-section .custom-radio,
.form-section .custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
}

.form-section .radio-box,
.form-section .checkbox-box {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #1e1e1e;
  margin-right: 0.4rem;
  position: relative;
}

.form-section .checkbox-box {
  border-radius: 100%;
}

span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item.first{
	margin:0;
}
span.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item{
	margin:0;
}
.input-area.checkbox-group-main .wpcf7-form-control {
	    display: flex;
	align-items: center;
}
.input-area.checkbox-group-main .wpcf7-form-control .wpcf7-list-item.first {
	margin-right: 1em;
}
.input-area.checkbox-group-main .wpcf7-form-control .wpcf7-list-item {
    width: auto;
    margin-top: 0;
	margin-right: 1em;
}
/* checked */
.form-section .custom-radio input:checked + .radio-box,
.form-section .custom-checkbox input:checked + .checkbox-box {
  border: 0.1rem solid #00a5ea;
  background: #00a5ea;
}

.form-section .custom-radio input:checked + .radio-box::before,
.form-section .custom-checkbox input:checked + .checkbox-box::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 1rem;
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}

.form-section .custom-checkbox input:checked + .checkbox-box::before {
  border: none;
  background: #fff;
  width: 0.6rem;
  height: 0.6rem;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.form-section .custom-checkbox input[type="checkbox"] {
  margin: 0;
}

.form-section .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.form-section .submit-area {
  margin: 8rem auto 0;
  text-align: center;
}

.form-section .submit-area p {
	max-width: 40rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.form-section .wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	margin: 0 1rem;
}

.form-section input[type="submit"] {
  max-width: 25rem;
  width: 100%;
  background: #00a5ea;
  border: 0.1rem solid #00a5ea;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 4.5rem;

}

.agree-link a {
  margin-top: 0.8rem;
  display: block;
  padding: 0 2.2rem;
  font-size: 1.2rem;
  color: #eb0000;
}

/* error text */
.form-section .form-row.input-area-error {
  padding-bottom: 2.2rem;
}

.form-section .form-row .error {
  color: #eb0000;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: translateY(100%);
}

/* 入力ボックスエラーステータス */
.input-error {
  border: 0.1rem solid #eb0000;
  background: #fff5f5;
}

/* radio error */
.radio-error .radio-box {
  border-color: #eb0000;
}

.input-area.checkbox-group .error {
  display: block;
  width: 100%;
}

/* checkbox error */
.checkbox-error .checkbox-box {
  border-color: #eb0000;
}

/* button disabled */
button:disabled,
input[type="submit"]:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* 確認画面 */
.submit-area .koumoku {
  display: flex;
  justify-content: center;
}

.submit-area .koumoku li {
  width: 40%;
}

.submit-area__back input[type="submit"] {
  background: #fff;
  color: #00a5ea;
}
input.wpcf7-form-control.wpcf7-previous.pushbtn.link-btn {
    max-width: 25rem;
    width: 100%;
    background: #fff;
    border: 0.1rem solid #00a5ea;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
    height: 4.5rem;
    color: #00a5ea;
}
/*  Send */
.contact-back a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  max-width: 25rem;
  width: 100%;
  margin: 8rem auto;
  background: #00a5ea;
  border: 0.1rem solid #00a5ea;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 4.5rem;
}
.contact-back a:hover {
  background-color: #000000; 
  color: #ffffff;
}
/* ==================================================
   Contact Form 7 ラジオボタン・チェックボックスの共通デザイン
================================================== */
.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  border: 0.1rem solid #1e1e1e;
  margin-right: 0.6rem;
  position: relative;
  cursor: pointer;
  vertical-align: -0.2rem; /* テキストとの縦位置調整 */
  background: #fff;
}

/* ラジオボタンは丸、チェックボックスは少し角丸 */
.wpcf7 input[type="radio"] {
  border-radius: 100%;
}
.wpcf7 input[type="checkbox"] {
  border-radius: 0.4rem;
}

.form-row .wpcf7-list-item {
	width: 100%;
	margin: 0;
}

.form-row .wpcf7-list-item+.wpcf7-list-item {
	margin-top: 1rem;
}

/* ==================================================
   Contact Form 7 ラジオボタン・チェックボックスの共通デザイン
================================================== */
.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  border: 0.1rem solid #1e1e1e;
  margin-right: 0.6rem;
  position: relative;
  cursor: pointer;
  vertical-align: -0.2rem;
  background: #fff;
}

/* ラジオボタンを四角（少し角丸）、チェックボックスを丸にする */
.wpcf7 input[type="radio"] {
  border-radius: 0.4rem;
}
.wpcf7 input[type="checkbox"] {
  border-radius: 100%;
}

/* ==================================================
   Contact Form 7 ラジオボタン・チェックボックス共通デザイン
================================================== */
.wpcf7 input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  border: 0.1rem solid #1e1e1e;
  margin-right: 0.6rem;
  position: relative;
  cursor: pointer;
  vertical-align: -0.2rem;
  background: #fff;
  /* 両方とも四角（少し角丸）にする */
  border-radius: 0.4rem; 
}

/* ==================================================
   チェックされた時のスタイル（背景色を青にする）
================================================== */
.wpcf7 input[type="radio"]:checked,
.wpcf7 input[type="checkbox"]:checked {
  border-color: #00a5ea;
  background: #00a5ea;
}

/* チェック時のレ点（ラジオ・チェックボックス共通） */
.wpcf7 input[type="radio"]:checked::after,
.wpcf7 input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.8rem;
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* クリックしやすくするための調整 */
.wpcf7-list-item-label {
  cursor: pointer;
}
.form-section input.wpcf7-previous:hover {
  color: rgb(255, 255, 255)!important;
  background: rgb(0, 165, 234)!important;
  transition: 0.3s ease-in-out!important;
}
/*** hover ***/
@media screen and (min-width: 800px) {
  .agree-link a:hover {
    text-decoration: underline;
  }

  .form-section input[type="submit"]:hover {
    background: #fff;
    color: #00a5ea;
    transition: 0.3s ease-in-out;
  }

  .submit-area__back input[type="submit"]:hover {
    background: #00a5ea;
    color: #fff;
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
  /* !Contact お問い合わせ
	Form
	---------------------------------------------------------- */
  .contact-wrap {
    margin-top: 0;
    margin-left: -0.5rem;
    width: calc(100% + 0.5rem);
  }

  .form-section .form-row {
    display: block;
    padding: 1.1rem 1.4rem;
  }

  .form-section .label {
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;
  }

  .form-section .input-area {
    width: 100%;
    margin-top: 0.75rem;
    position: relative;
    max-width: 30rem;
    width: 100%;
    margin: 0.75rem auto 0;
  }

  .form-section input[type="text"],
  .form-section input[type="email"],
	.form-section input[type="tel"],
  .form-section textarea {
    max-width: unset;
  }

  .form-section textarea {
    min-height: 10rem;
  }

  .form-section .custom-radio,
  .form-section .custom-checkbox {
/*     display: flex; */
    max-width: 30rem;
    width: 100%;
    margin: 0 auto;
  }

  .form-section .radio-box .custom-radio + .custom-radio {
    margin-top: 0.8rem;
  }

  /* checked */
  .form-section .checkbox-group {
    display: block;
  }

  .agree-link a {
    margin-top: 0.8rem;
    display: block;
    padding: 0 2.2rem;
    font-size: 1.2rem;
    color: #eb0000;
  }

  /* error text */
  .form-section .form-row.input-area-error {
    padding-bottom: 2.2rem;
  }

  .form-section .form-row .error {
    color: #eb0000;
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: translateY(100%);
  }

  /* 入力ボックスエラーステータス */
  .input-error {
    border: 0.1rem solid #eb0000;
    background: #fff5f5;
  }

  /* radio error */
  .radio-error .radio-box {
    border-color: #eb0000;
  }

  .input-area.checkbox-group .error {
    display: block;
    width: 100%;
  }

  /* 確認画面 */
  .value {
    max-width: 30rem;
    width: 100%;
    margin: 0.8rem auto 0;
  }

  .submit-area .koumoku {
    display: block;
    margin: 0 auto;
  }

  .submit-area .koumoku li {
    width: 100%;
  }

  .submit-area .koumoku li + li {
    margin-top: 2rem;
  }
}

/* !Top
---------------------------------------------------------- */

/* common */
.common-hd {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.common-cont {
  padding: 5rem 3rem;
  background: #fff;
}

.common-txt {
  font-size: 1.8rem;
  line-height: 2;
}

.green-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 12rem;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.green-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 0.1rem solid #57de03;
  transition: transform 0.3s ease-in-out;
}

.green-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #57de03;
  transform: translate(0.5rem, 0.5rem);
}

.green-btn span {
  transition: transform 0.3s ease-in-out;
}

.green-btn span::after {
  content: "▶︎";
  font-size: 2rem;
  margin-left: 2rem;
}

/* 日宝工業について */
.top-section + .top-section {
  margin-top: 10rem;
}

.top-links {
  max-width: 80rem;
  width: 100%;
  margin: 5rem auto 0;
}

.top-links ul {
  display: flex;
  justify-content: center;
}

.top-links li {
  margin: 0 10rem;
}

.top-links a span {
  display: inline-flex;
  align-items: center;
}

/* 施工管理の仕事 */


.common-cont__title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
}

.common-cont__text {
  font-size: 1.5rem;
}

.common-cont-item__text {
  font-size: 1.5rem;
  line-height: 2;
}


.top-job__item .image img {
  width: 100%;
}

.top-job__image img {
	width: 100%;
}

/* 日宝工業の強み */
.top-project__item {
  padding: 5rem;
}

.top-project__item:last-child {
  padding-bottom: 0;
}

.top-project__item .info {
  min-height: 20rem;
}

.top-project__item .image img {
  float: right;
  width: 20rem;
}

.top-project__item:nth-child(even) .image img {
  float: left;
}

/* 社員インタビュー */
.top-interview {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}

.top-interview__item {
  margin-left: -10rem;
  display: flex;
  justify-content: center;
}

.top-interview__box {
  width: calc(50% - 10rem);
  margin-left: 10rem;
}

.top-interview__box .top-interview__title {
  margin: 2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.top-interview__box .common-cont__text {
  font-size: 1.4rem;
}

.top-interview__image {
  position: relative;
  padding-top: 75.42%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.top-interview__image img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.top-interview__image::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 5;
  width: 5rem;
  height: 5rem;
  background: url(../img/common/blue_link.png) center center no-repeat;
  background-size: cover;
}

/* 働き方データ */
.top-work__item h2 {
  background: #efecec;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  padding: 1.5rem 0;
  text-align: center;
}

.top-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 0 5rem;
}

.top-work__item {
  padding: 0.3rem;
  border: 0.1rem solid #757575;
}

.top-work__box {
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-work__icon {
  width: 7.2rem;
  margin-right: 1rem;
}

.top-work__info .top-work__title {
  font-size: 2.1rem;
  font-weight: 500;
}

.top-work__info .top-work__title span {
  font-size: 3.6rem;
  font-weight: 700;
}

.top-work__info .common-cont__text {
  padding: 0 0.8rem;
}

/* 福利厚生 */
.top-welfare {
  padding: 2rem 7rem;
}

.top-welfare__item + .top-welfare__item {
  margin-top: 3rem;
}

.top-welfare__item {
  padding: 3rem 5rem;
  border: 0.2rem solid #00a5ea;
  border-radius: 0.5rem;
}

/* 新卒採用 */
.top-recruit {
  padding: 0 7.5rem;
}

.top-recruit .common-cont__title {
  margin-bottom: 3rem;
  font-size: 2.1rem;
}

.top-recruit__item {
  display: flex;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

.top-recruit__title {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 0.1rem solid #b3b3b3;
  width: 14rem;
  margin-right: 1rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
h3.common-cont__title.bottow-line {
    border-bottom: 0.1rem solid #b3b3b3;
    display: inline-block;
    padding-bottom: 1rem;
}
.top-recruit__item:first-child .top-recruit__title,
.top-recruit__item:first-child .top-recruit__info {
  border-top: 0.1rem solid #b3b3b3;
}

.top-recruit__info {
  font-weight: 500;
  border-bottom: 0.1rem solid #b3b3b3;
  width: calc(100% - 15rem);
  padding: 1.5rem;
}

.top-recruit__info .green-btn {
	max-width: 33rem;
	width: 100%;
	height: 6.8rem;
	font-size: 1.6rem;
}

.top-recruit__btn {
	display: block;
}

.top-recruit__table th {
  text-align: left;
  font-weight: 500;
  width: 80%;
}

.top-recruit__item.block {
	display: block;
}

.top-recruit__item.block .top-recruit__info {
	width: 100%;
	border: none;
}

/* 新入社員研修スケジュール */
.top-schedule {
  padding: 0 7rem;
}

.top-schedule .common-cont__title {
  margin-bottom: 3rem;
}

/* =========================================
     タイムラインレイアウト (PC)
  ========================================= */

.timeline-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.timeline-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: .5rem;
  padding: 5rem 1.5rem 6rem;
  max-width: 65rem;
  width: 100%;
  margin: 0 auto;
}

.timeline-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.timeline-top-info {
  position: absolute;
  bottom: 100%;
  margin-bottom: 0.5rem;
  text-align: center;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-year-label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.timeline-year-label.y1 {
  color: var(--color-year1);
  font-size: 2rem;
}

.timeline-year-label.y2 {
  color: var(--color-year2);
  font-size: 2rem;
}

.timeline-month-label {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-text-main);
}

/* --- ボックス部 (研修内容) --- */
.timeline-box {
  width: 3.5rem;
  height: 17rem;
  border-radius: 0.25rem;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.3rem;
}

/* 薄い青のボックス */
.timeline-box.light {
  background-color: var(--color-box-light);
  color: var(--color-text-main);
}

/* 濃い青のボックス */
.timeline-box.dark {
  background-color: var(--color-box-dark);
  color: #ffffff;
  letter-spacing: 0.5rem;
}
.timeline-box.spaced {
  justify-content: space-evenly;
}
.timeline-box.light.spaced span + span {
  margin-top: 0.5rem;
}
/* --- 下部情報 (配属先) --- */
.timeline-bottom-info {
  position: absolute;
  top: 100%;
  margin-top: 0.75rem;
  text-align: center;
  width: max-content;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-footer);
  line-height: 1.4;
}

/* --- 矢印 --- */
.timeline-arrow {
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 2rem solid var(--color-arrow);
}

.common-cont + .common-cont {
  margin-top: 6rem;
}

.top-schedule__box img {
  width: 100%;
}

/* 応募と選考 */
.top-application {
  padding: 0 7rem;
}

.top-application .common-cont__title {
  margin-bottom: 3rem;
}

.center-text {
  text-align: center;
  margin-top: 2rem;
}

.top-recruit__item.flow2 .top-recruit__info {
  padding: 1rem 8rem;
}

/* よくあるご質問 */
.top-faq {
  padding: 0 10rem;
}

.top-faq__item {
  border: 0.1rem solid #d9d9d9;
  background: #f8fdff;
  border-radius: 0.3rem;
}

.top-faq__item + .top-faq__item {
  margin-top: 2rem;
}

.top-faq__item {
  font-family: "Inter", sans-serif;
}

.top-faq__q {
  padding: 2.5rem 6rem 0 6rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: #1e1e1e;
}

.top-faq__q::before {
  content: "∧";
  position: absolute;
  right: 3.5rem;
  top: 2.8rem;
  z-index: 2;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  transform: scale(-1);
  transition: transition 0.3s ease-in-out;
}

.top-faq__q.is-active::before {
  transform: scale(1);
  transition: transition 0.3s ease-in-out;
}

.top-faq__q .en-font,
.top-faq__a .en-font {
  color: #00a5ea;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  left: 3.5rem;
  top: 2.2rem;
}

.top-faq__a .en-font {
	top: .4rem;
	line-height: 1;
}

.top-faq__a {
  padding: 0 7rem 0 7.8rem;
  margin-bottom: 2rem;
  display: none;
  position: relative;
}

.top-faq__a .en-font {
  font-size: 2rem;
  font-weight: 700;
  color: #eb0026;
  left: 6rem;
  top: 0rem;
}

.top-faq__q .title {
  font-size: 1.6rem;
  font-weight: 600;
}

.top-faq__a .title {
  font-size: 1.5rem;
}

/* 採用に関するお問い合わせ */
.top-contact {
  padding: 0 10rem;
}

.top-contact h2.common-cont__title {
  font-size: 1.6rem;
  line-height: 2;
}

.top-contact dl {
  display: flex;
  line-height: 2;
}

.top-contact dl dt {
  width: 10%;
}

.top-contact dl dd {
  width: 90%;
}

.top-contact__link a {
  max-width: 30rem;
  width: 100%;
  margin: 2rem auto 0;
  height: 6rem;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  .green-btn:hover span,
  .green-btn:hover::before {
    transform: translate(0.5rem, 0.5rem);
    transition: transform 0.3s ease-in-out;
  }

  .top-interview__box a:hover .top-interview__image img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

  .top-faq__q:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
  /* common */
  .common-hd {
    font-size: 2.1rem;
    text-align: center;
  }

  .common-cont {
    padding: 1rem;
  }

  .common-txt {
    font-size: 1.4rem;
  }

  .green-btn {
    width: 15rem;
    height: 6rem;
    font-size: 1.8rem;
  }

  .green-btn span::after {
    font-size: 1.8rem;
  }

  /* 日宝工業について */
  .top-section + .top-section {
    margin-top: 6rem;
  }

  .top-links {
    max-width: 80rem;
    width: 100%;
    margin: 3rem auto 0;
  }

  .top-links ul {
    display: flex;
    justify-content: center;
  }

  .top-links li {
    margin: 0;
  }

  .top-links li + li {
    margin-left: 4rem;
  }

  .top-links a span {
    display: inline-flex;
    align-items: center;
  }

  /* 施工管理の仕事 */

  .common-cont__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .common-cont__text {
    font-size: 1.4rem;
  }
  /* 日宝工業の強み */
  .top-project__item {
    padding: 1.5rem 0.5rem;
  }

  .top-project__item .info {
    min-height: 12rem;
  }

  .top-project__item .image img {
    float: right;
    width: 12rem;
  }

  .top-project__item:nth-child(even) .image img {
    float: left;
  }

  /* 社員インタビュー */
  .top-interview__item {
    margin-left: 0;
    display: block;
  }

  .top-interview__box {
    width: 100%;
    margin-left: 0;
  }

  .top-interview__box + .top-interview__box {
    margin-top: 3rem;
  }

  .top-interview__box .top-interview__title {
    margin: 1rem 0;
    font-size: 1.5rem;
    padding: 0 1.5rem;
  }

  .top-interview__box .common-cont__text {
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: center;
  }

  .top-interview__image::before {
    left: 2.3rem;
    bottom: 1.6rem;
  }

  /* 働き方データ */
  .top-work {
    display: block;
    padding: 2rem 1.7rem;
  }

  .top-work__item + .top-work__item {
    margin-top: 2rem;
  }

  .top-work__box {
    height: 25rem;
  }

  /* 福利厚生 */
  .top-welfare {
    padding: 2rem 0;
  }

  .top-welfare__item + .top-welfare__item {
    margin-top: 2rem;
  }

  .top-welfare__item {
    padding: 1rem 1.4rem;
    border-radius: 0.5rem;
  }

  /* 新卒採用 */
  .top-recruit {
    padding: 2rem 0.5rem;
  }

  .top-recruit .common-cont__title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .top-recruit__title {
    font-size: 1.4rem;
    width: 8rem;
    margin-right: 1rem;
    padding: 1.5rem 0;
  }

  .top-recruit__info {
    font-size: 1.3rem;
    width: calc(100% - 9rem);
  }
	
	.top-recruit__info .green-btn {
	height: auto;
		padding: 1rem 0;
	font-size: 1.6rem;
}
	
	.top-recruit__info .green-btn span {
		display: flex;
		justify-content: center;
		align-items:center;
	}

  .top-recruit__table th {
    font-size: 1.3rem;
    width: 60%;
  }

  /* 新入社員研修スケジュール */
  .top-schedule {
    padding: 0 0.5rem;
  }

  .top-schedule .common-cont__title {
    margin-bottom: 1rem;
    font-size: 2.1rem;
  }

  .common-cont + .common-cont {
    margin-top: 2rem;
  }

  .top-recruit__image {
    width: 100%;
    overflow: hidden;
  }

  .top-recruit__image .image-cont {
    overflow-x: auto;
  }

  .top-recruit__image .image-cont .image {
    width: max-content;
  }

  .top-recruit__image .image-cont .image img {
    width: 100%;
  }

  /* --- 下部情報 (配属先) --- */
  .timeline-bottom-info {
    padding: 0 .6rem;
    width: 8rem;
  }

  /* 応募と選考 */
  .top-application {
    padding: 1rem 0.5rem 2rem;
  }

  .top-application .top-recruit__item.block {
    display: block;
  }

  .top-application .common-cont__title {
    font-size: 2.1rem;
    margin-bottom: 3rem;
  }

  .top-application .top-recruit__item.block .top-recruit__title {
    width: 100%;
    padding: 0.5rem;
  }

  .top-application .top-recruit__item.block .top-recruit__info {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.5rem 0 1.5rem 1.5rem;
  }

  .center-text {
    text-align: left;
    font-size: 1.3rem;
  }

  .top-recruit__item.flow2.block .top-recruit__title {
    margin-top: 2rem;
  }

  .top-recruit__item.flow2 .top-recruit__info {
    padding: 1.5rem;
  }

  /* よくあるご質問 */
  .top-faq {
    padding: 0;
  }

  .top-faq__q {
    padding: 2.6rem 3.8rem 0 3.4rem;
    margin-bottom: 1.6rem;
  }

  .top-faq__q::before {
    right: 1rem;
    top: 2.8rem;
  }

  .top-faq__q .en-font,
  .top-faq__a .en-font {
    left: 1rem;
  }

  .top-faq__a {
    padding: 0 3.5rem 0 5.3rem;
  }

  .top-faq__a .en-font {
    left: 3.5rem;
  }

  .top-faq__q .title {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .top-faq__a .title {
    font-size: 1.5rem;
  }

  /* 採用に関するお問い合わせ */
  .top-contact {
    padding: 1rem 1rem 1.5rem;
  }

  .top-contact h2.common-cont__title {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 0;
  }

  .top-contact dl {
    display: flex;
    line-height: 2;
  }

  .top-contact dl dt {
    width: 30%;
  }

  .top-contact dl dd {
    width: 70%;
  }

  .top-contact__item {
    max-width: calc(100% - 6rem);
    width: 100%;
    margin: 0 auto;
  }

  .top-contact__link a {
    margin: 2rem auto 0;
    height: 6rem;
  }
}

/* !社員インタビュー
---------------------------------------------------------- */
.interview-teaser {
  margin-bottom: 4.5rem;
  font-family: "Inter", sans-serif;
}

.interview-teaser .common-cont {
  padding: 3rem;
}

.interview-teaser h2 {
  font-size: 4.6rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.interview-teaser__image {
  border-radius: 1rem;
  overflow: hidden;
  padding-top: 53.19%;
  position: relative;
}

.interview-teaser__image img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-teaser__name {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1rem;
}

.interview-section + .interview-section {
  margin-top: 5rem;
}

.interview-section .common-cont {
  padding: 3rem;
  font-family: "Inter", sans-serif;
}

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

.interview-section:nth-child(even) .interview-item {
  flex-direction: row-reverse;
}


.interview-item .interview-image img {
  width: 100%;
}

.interview-item .interview-cont {
  width: calc(100% - 35rem);
}

.interview-item .interview-image {
  width: 32rem;
}

.interview-item .interview-image .image {
  width: 100%;
  padding-top: 161.17%;
  position: relative;
}

.interview-item .interview-image .image img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-item .interview-image .image.Right img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

.interview-item.one-day .interview-image {
  width: 55rem;
}
 .uniq-sch-board-wrapper {
  background-color: #763B06; 
  padding: 3rem 1.5rem;
  max-width: 55rem;
  box-sizing: border-box;
  border-radius: 1rem;
}

/* 内側の白い用紙部分 */
.uniq-sch-board-paper {
  background-color: #fdfbf4; 
  border-radius: 0.8rem;
  padding: 6rem 2.5rem 4rem; 
  position: relative;
}

/* 上部のグレーのクリップ図形 */
.uniq-sch-board-clip {
  position: absolute;
  top: -1.5rem; 
  left: 50%;
  transform: translateX(-50%);
  width: 14rem;
  height: 4.5rem;
  border: 0.7rem solid #dcdcdc; 
  border-top: none; 
  box-sizing: border-box;
}

/* タイトル */
.uniq-sch-board-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-top: 0;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* リスト全体 */
.uniq-sch-board-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各スケジュールの行 */
.uniq-sch-board-item {
  display: flex;
  align-items: baseline;
  padding: 1rem 0 0.3rem; 
  border-bottom: 1px dotted #b0b0b0; 
}

/* 時間カラム */
.uniq-sch-board-time {
  width: 5.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #333;
}

/* スケジュール内容カラム */
.uniq-sch-board-desc {
  flex-grow: 1;
  font-size: 1.5rem;
  color: #333;
  padding-left: 1rem;
  line-height: 1.4;
}
.interview-item.one-day .interview-image .image {
  padding-top: 0;
}

.interview-item.one-day .interview-image .image img {
  object-fit: unset;
  position: relative;
}

.interview-item.one-day .interview-cont {
  width: calc(100% - 40rem);
}

.interview-item.one-day .interview-cont {
  width: calc(100% - 60rem);
}

.interview-item .interview-box {
  padding: 2rem 0;
}

.interview-item .interview-box + .interview-box {
  margin-top: 2rem;
}

.interview-item .interview-box h3 {
  font-size: 2.3rem;
  color: #00a5ea;
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
}

/* .interview-item .interview-box h3 span {
  color: #101828;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
} */

.interview-entry {
  margin-top: 9rem;
}

.interview-entry .common-cont {
  padding: 5rem;
}

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

.interview-entry__item a {
  font-size: 2.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  width: 42.7rem;
  height: 18rem;
  position: relative;
}

.interview-entry__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 44%;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.interview-entry__item.yellow a::before {
  background: rgba(235, 224, 0, 0.5);
}

.interview-entry__item.blue a::before {
  background: rgba(43, 132, 171, 0.5);
}

.interview-entry__item .title {
  width: 44%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: auto;
	background-image:
  linear-gradient(to right, #e0e0e0 1px, transparent 1px),
  linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);
background-size: 20px 20px;
}

.interview-entry__item .title span {
  position: relative;
  z-index: 3;
  padding: 1rem 0;
}

.interview-entry__item .title span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 0.8rem;
  background: url(../img/interview/link_arrow.png) center right no-repeat;
  background-size: auto 100%;
  transition: transform 0.5s ease-in-out;
}

.interview-entry__item .image {
  width: 56%;
  height: 100%;
}

.interview-entry__item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*** hover ***/
@media screen and (min-width: 800px) {
  .interview-entry__item a:hover::before {
    width: 100%;
    transition: 0.5s ease-in-out;
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
  /* !社員インタビュー
	---------------------------------------------------------- */
  .interview-teaser {
    margin-bottom: 3rem;
  }

  .interview-teaser .common-cont {
    padding: 1rem 2rem;
  }

  .interview-teaser h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0;
  }

  .interview-teaser__image {
    padding-top: 100%;
  }

  .interview-teaser__name {
    font-size: 1.4rem;
  }

  .interview-section + .interview-section {
    margin-top: 1rem;
  }

  .interview-section .common-cont {
    padding: 1rem 2rem;
  }

  .interview-item {
    flex-direction: column;
  }

  .interview-section:nth-child(even) .interview-item {
    flex-direction: column-reverse;
  }

  .interview-section:nth-child(even) .interview-item .interview-image {
    margin-top: 3rem;
  }

  .interview-section:nth-child(even) .common-cont {
    padding-bottom: 0;
  }

  .interview-section:nth-child(odd) .interview-item .interview-image {
    margin-bottom: 3rem;
  }

  .interview-section:nth-child(odd) .common-cont {
    padding-top: 0;
  }

  .interview-item .interview-image {
    width: 100%;
  }

  .interview-item .interview-image img {
    width: 100%;
  }

  .interview-item .interview-cont {
    width: 100%;
  }

  .interview-item .interview-image {
    width: 100%;
  }

  .interview-item .interview-image .image {
    padding-top: 100%;
  }

  .interview-item.one-day .interview-image {
    width: 100%;
  }

  .interview-item.one-day .interview-image .image {
    padding-top: 0;
  }

  .interview-item.one-day .interview-image .image img {
    object-fit: unset;
    position: relative;
  }

  .interview-item.one-day .interview-cont {
    width: 100%;
  }

  .interview-item.one-day .interview-cont {
    width: 100%;
  }

  .interview-item .interview-box {
    padding: 0;
  }

  .interview-item .interview-box + .interview-box {
    margin-top: 3rem;
  }

  .interview-item .interview-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .interview-entry {
    margin-top: 6rem;
  }

  .interview-entry .common-cont {
    padding: 1rem;
  }

  .interview-entry__section {
    display: block;
  }

  .interview-entry__item + .interview-entry__item {
    margin-top: 1rem;
  }

  .interview-entry__item a {
    font-size: 1.8rem;
    max-width: 33.5rem;
    width: 100%;
    margin: 0 auto;
    height: 14rem;
  }

  .interview-entry__item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 44%;
    height: 100%;
    transition: 0.5s ease-in-out;
  }

  .interview-entry__item .title {
    width: 44%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/interview/entry_bg.png) center center no-repeat;
    background-size: auto;
  }

  .interview-entry__item .title span {
    position: relative;
    z-index: 3;
    padding: 1rem 0;
  }

  .interview-entry__item .image {
    width: 56%;
    height: 100%;
  }

  .interview-entry__item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* !営業所紹介
---------------------------------------------------------- */
#office-article #breadcrumb .inner,
.office-teaser .inner {
  max-width: 60vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 .8vw;
}

.office-teaser h2.common-hd {
  margin-bottom: 5rem;
}

.office-teaser .common-cont {
  padding: 1vw 0;
}

.office-map_image img {
  width: 100%;
}

.office-section {
  margin-top: 5rem;
}

.common-cont.office-cont {
  padding: 1.2rem;
  border: 0.1rem solid #00a5ea;
}

.office-item {
  border: 0.1rem solid #e3e3e3;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.office-item__info {
  display: flex;
  align-items: center;
  width: calc(100% - 25rem);
}

.office-item__info .common-hd {
	font-size: 2rem;
  width: 30%;
  font-weight: 700;
  padding-right: 1.4rem;

}

.office-item__info .office-text {
  width: 70%;
  font-size: 1.6rem;
  font-weight: 500;
}

.office-item__info .office-text p + p {
  margin-top: 1rem;
}

.office-item__map {
  width: 25rem;
}

.office-item__map .office-map__box {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 52.17%;
}

.office-item__map .office-map__box iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-box {
	text-align: justify;
	    letter-spacing: -0.03em;
  padding: 3rem 1.2rem 0;
}

.office-box .common-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
.office-navi li a {
  opacity: 0;
  color: transparent;
  transition: opacity .5s ease-in-out;
}
.office-map_image img.is-sp {
    display: none;
}

.office-map {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.office-map_image img {
  width: 100%;
  height: auto;
  display: block;
}

.office-navi {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
}

.office-navi ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}


.office-navi li {
    position: absolute;
    pointer-events: auto;
    white-space: nowrap;
    max-width: 85px;
    width: 100%;
}

.office-navi li a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 14px; 
}
.office1 {
    top: 82%;
    left: 59%;
}
.office2 {
    top: 75%;
    left: 62%;
}
.office3 {
    top: 90%;
    left: 53%;
}
.office4 {
    top: 89%;
    left: 34%;
}
.office5 {
    top: 57%;
    left: 34%;
}
.office6 { top: 53%; left: 60%; } 
.office7 {
    top: 28%;
    left: 26%;
}
.office8 {
    top: 27%;
    left: 4%;
}
.office-navi li a {
  color: transparent !important; 
  text-decoration: none !important; 
  background-color: transparent !important; 
  display: block;
  width: 85px;
  height: auto; 
}

.office-navi li:hover {
  background-color: rgba(255,255,255,0.45);
}
.office-navi li.office5:hover,
.office-navi li.office6:hover {
  background-color: rgba(212,236,234,0.45);
}
.office-navi li a:hover,
.office-navi li a:focus,
.office-navi li a:active {
	background-color: rgba(0, 0, 0, 0.5); 
  color: transparent !important;
  text-decoration: none !important;
  outline: none; 
}
.wpcf7-previous {
    display: inline-block !important;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #office-article #breadcrumb .inner,
.office-teaser .inner {
    max-width: 80vw;
  }

  .office-map {
    width: 100%;
  }

  .office-navi li a {
    font-size: 1.1vw;
  }

  .office-navi li.office1 {
    right: 26vw;
    bottom: 6vw;
  }
  
  .office-navi li.office2 {
    right: 24vw;
    bottom: 8.5vw;
  }
  
  .office-navi li.office3 {
    right: 30vw;
    bottom: 2.8vw;
  }
  
  .office-navi li.office4 {
            right: 45.5vw;
        bottom: 3vw;
  }
  
  .office-navi li.office5 {
    right: 45.3vw;
    bottom: 15.8vw;
  }
  
  .office-navi li.office6 {
    right: 25vw;
    bottom: 17.8vw;
  }
  
  .office-navi li.office7 {
    left: 20.6vw;
    bottom: 27vw;
  }
  
  .office-navi li.office8 {
    left: 4vw;
    bottom: 27.2vw;
  }
}

/*** hover ***/
@media screen and (min-width: 800px) {
  .office-navi li a:hover {
    opacity: .5;
    transition: opacity .5s ease-in-out;
  }
	
	.office-navi li a:hover {
    opacity: .5;
    transition: opacity .5s ease-in-out;
  }
}

/*** sp ***/
@media screen and (max-width: 767px) {
    #office-article #breadcrumb .inner,
.office-teaser .inner {
    max-width: 90vw;
  }

  .office-wrap {
    padding: 0 1vw;
  }

  .office-teaser .bg-white {
    background: #fff;
    padding: 5vw 0 0;
  }

  .office-teaser h2.common-hd {
    margin-bottom: 5.2vw;
	 font-size: 5.2vw;
  }

  .office-teaser .common-cont {
    padding: 1vw;
  }

  .office-map_image img {
    width: 100%;
  }


  .office-section {
    margin-top: 0;
    background: #fff;
    padding: 2rem 0 0;
  }

  .office-section:last-child {
    padding-bottom: 3rem;
  }

  .common-cont.office-cont {
    border: 0.1rem solid #00a5ea;
    padding: 1rem;
  }

  .office-item {
    border: 0.1rem solid #e3e3e3;
    display: block;
    align-items: center;
    padding: 1rem;
  }

  .office-item__info {
    display: block;
    align-items: center;
    width: 100%;
  }

  .office-item__info .common-hd {
	  font-size: 2.4rem;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 3rem;
  }

  .office-item__info .office-text {
	  font-size: 1.6rem;
    width: 100%;
  }

  .office-item__map {
	  max-width: 23rem;
	  width: 100%;
	  height: 12rem;
    margin: 3rem auto 0;
  }

  .office-box {
    padding: 1rem 1rem 0;
  }

  .office-box .common-text {
    font-size: 1.4rem;
  }
	.cky-btn-revisit-wrapper.cky-revisit-bottom-left {
    bottom: 5rem;
  }

  .office-map {
    width: 80vw;
  }

	.office-navi li {
		display: block;
		height: auto;
	}
	
  .office-navi li a {
	  display: block;
    font-size: 1.8vw;
  }

  .office-navi li.office1 {
      right: 8vw;
      bottom: 5vw;
  }
  
  .office-navi li.office2 {
    right: 5vw;
    bottom: 9vw;
  }
  
  .office-navi li.office3 {
            right: 14vw;
        bottom: 0;
  }
  
  .office-navi li.office4 {
    right: 36vw;
    bottom: 1vw;
  }
  
  .office-navi li.office5 {
    right: 36vw;
    bottom: 19vw;
  }
  
  .office-navi li.office6 {
    right: 7vw;
    bottom: 22vw;
  }
  
  .office-navi li.office7 {
    left: 26vw;
    bottom: 36vw;
  }
  
  .office-navi li.office8 {
    left: 1vw;
    bottom: 36vw;
  }
}

