@charset "utf-8";
/*
Theme Name: utcare-recruit
version： 1.0.0
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--black);
  line-height: 1.75;
  font-family:
    'kozuka-gothic-pr6n', 'kozuka-gothic-pro', '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic',
    'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic',
    Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
:root {
  --white: #fff;
  --black: #414042;
  --gray: #656364;
  --lightgray: #b3b3b3;
  --red: #ed1c24;
  --dustyorange: #ec6b4a;
  --vividorange: #f15a29;
  --orange: #ff8929;
  --lightorange: #f8f3ed;
  --blue: #1c2f6e;
}
.en {
  font-family: Arial, sans-serif;
}
main {
  position: relative;
  margin-top: 100px;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: 0.7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 1450px;
  width: 90%;
  margin: auto;
}
.container.wide {
  max-width: 90%;
}
.container.narrow {
  max-width: 1260px;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.hidden_sp.inline {
  display: inline-block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  display: grid;
}
@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  main {
    margin-top: 60px;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100px;
  background: var(--gray);
  color: var(--white);
  z-index: 100;
}
header .logo a {
  align-items: center;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  align-items: center;
  justify-content: space-between;
}
header .global-nav {
  width: calc(100% - 270px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .global-nav li {
  padding-left: 40px;
}
header .global-nav li a {
  position: relative;
  border-bottom: 1px solid var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}
header .global-nav li a:hover {
  border-bottom: 1px solid transparent;
}
header .global-nav li.corporate {
  padding-left: 80px;
}
header .global-nav li.corporate a {
  padding: 10px 30px;
  background: var(--vividorange);
  border-bottom: none;
  width: 210px;
  border-radius: 25px;
  font-size: 1.4rem;
}
header .global-nav li.corporate a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  content: "";
}
@media (min-width: 768px) {
  header .global-nav li.parent {
    position: relative;
  }
  header .global-nav .megaMenu {
    position: absolute;
    top: 30px;
    left: 0;
    display: block;
    padding: 20px;
    background: var(--white);
    width: 350px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 5px 5px 5px rgba(0,0,0,.2);
    transition: opacity 0.6s ease;
    z-index: 1;
  }
  header .global-nav li.parent:hover .megaMenu {
    opacity: 1;
    visibility: visible;
  }
  header .global-nav .megaMenu li {
    padding: 0;
    width: 100%;
  }
  header .global-nav .megaMenu li a {
    padding: 10px 30px 10px 10px;
    color: var(--black);
  }
  header .global-nav .megaMenu li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
    transform: rotate(45deg);
    content: "";
  }
  header .global-nav .megaMenu li a:hover {
    color: var(--orange);
  }
}
@media (max-width: 1500px) {
  header .logo {
    width: 180px;
  }
  header .global-nav {
    width: calc(100% - 190px);
  }
  header .global-nav li {
    padding-left: 20px;
  }
  header .global-nav li.corporate {
    padding-left: 40px;
  }
  header .global-nav li.corporate a {
    width: 190px;
  }
  header .global-nav li.corporate a::after {
    right: 20px;
  }
}
@media (max-width: 1100px) {
  header .logo {
    width: 100px;
  }
  header .global-nav {
    width: calc(100% - 110px);
  }
  header .global-nav li {
    padding-left: 10px;
  }
  header .global-nav li a {
    font-size: 1.1rem;
  }
  header .global-nav li.corporate {
    padding-left: 20px;
  }
  header .global-nav li.corporate a {
    padding: 10px 20px;
    width: 140px;
    font-size: 1rem;
  }
  header .global-nav li.corporate a::after {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
  header .headWrap {
    padding: 0 15px;
    margin: 0;
    width: calc(100% - 60px);
  }
  header .logo {
    width: 150px;
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 30px 5% 100px;
    width: 100%;
    height: 100vh;
    background-color: var(--gray);
    z-index: 200;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .hamburger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    margin: auto;
    color: var(--color-green);
    font-size: 1rem;
    content: 'MENU';
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    padding: 10px;
    width: 100%;
  }
  header .global-nav li a {
    font-size: 1.6rem;
  }
  header .global-nav li.parent {
    position: relative;
    padding-right: 30px;
  }
  header .global-nav li.parent::before {
    position: absolute;
    top: 8px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--white);
    content: "";
  }
  header .global-nav li.parent::after {
    position: absolute;
    top: 18px;
    right: 11px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transform: rotate(135deg);
    content: "";
  }
  header .global-nav li.parent.open::after {
    top: 20px;
    transform: rotate(-45deg);
  }
  header .global-nav .megaMenu {
    display: none;
    padding-top: 10px;
  }
  header .global-nav .megaMenu li a {
    font-size: 1.5rem;
  }
  header .global-nav li.corporate {
    padding: 0;
    margin: 50px auto;
    width: 220px;
  }
  header .global-nav li.corporate a {
    padding: 10px 30px;
    width: 100%;
    font-size: 1.5rem;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.6s;
  }
  .hamburger__line--1 {
    top: 13px;
  }
  .hamburger__line--2 {
    top: 23px;
  }
  .hamburger__line--3 {
    top: 33px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::after {
    content: 'CLOSE';
  }
  .nav-open .black-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}

/* common style
-------------------------------------------------------------- */
.gradation {
  background: linear-gradient(30deg, #e56327 0%, #f3e727 100%);
}
.gradationdOpa20 {
  background: linear-gradient(90deg, rgba(243, 231, 39, 0.3) 0%, rgba(229, 99, 39, 0.2) 100%);
}
.gradationdOpa30 {
  background: linear-gradient(90deg, rgba(243, 231, 39, 0.3) 0%, rgba(229, 99, 39, 0.3) 100%);
}
#sv {
  justify-content: center;
  align-items: center;
  height: 100px;
}
#sv .ttl {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.btnMore a {
  position: relative;
  display: block;
  padding: 15px 30px;
  background: var(--vividorange);
  border-radius: 30px;
  max-width: 420px;
  width: 90%;
  color: var(--white);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.btnMore a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  content: "";
}
.btnMore img {
  display: block;
  margin: 0 auto;
  }
@media (max-width: 767px) {
  #sv {
    padding: 10px;
    height: 60px;
  }
  #sv .ttl {
    font-size: 2.2rem;
  }
  .btnMore a {
    padding: 15px 20px;
    font-size: 1.6rem;
  }
  .btnMore a::after {
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
  }
}

/* recruit
-------------------------------------------------------------- */
#recruitDetail {
  padding: 120px 0;
}
#recruitDetail .txt {
  font-size: 1.8rem;
}
#recruitDetail .detailBox {
  margin: 40px 0 50px;
  padding: 20px 30px;
  border: 1px solid var(--orange);
  font-size: 1.8rem;
  font-weight: 700;
}
#recruitDetail .detailBox dt {
  padding-bottom: 10px;
  color: var(--orange);
  line-height: 1;
}
#recruitDetail .detailBox li {
  position: relative;
  padding-left: 20px;
}
#recruitDetail .detailBox li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
#recruitDetail .poinitArea {
  margin: 100px 0;
}
#recruitDetail .poinitArea dl {
  gap: 20px;
}
#recruitDetail .poinitArea dt {
  width: 80px;
  color: var(--vividorange);
  text-align: center;
}
#recruitDetail .poinitArea dt span {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
#recruitDetail .poinitArea dt strong {
  display: blck;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}
#recruitDetail .poinitArea dd {
  padding-bottom: 30px;
  width: calc(100% - 100px);
}
#recruitDetail .poinitArea .ttl {
  padding: 30px 0 10px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
#recruitDetail .flowArea {
  gap: 50px;
}
#recruitDetail .flowArea figure {
  width: 48%;
}
#recruitDetail .flowArea .txtArea {
  width: calc(52% - 50px);
}
#recruitDetail .flowArea .txtArea h2 {
  padding-bottom: 20px;
  color: var(--vividorange);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
#recruitDetail .flowArea .txtArea dl {
  position: relative;
  gap: 40px;
  align-items: flex-start;
  font-size: 2rem;
  font-weight: 700;
}
#recruitDetail .flowArea .txtArea dl::after {
  position: absolute;
  top: 0;
  left: 35px;
  background: url(img/recruit/line.png) repeat-y top center / contain;
  width: 2px;
  height: 100%;
  content: "";
  z-index: -1;
}
#recruitDetail .flowArea .txtArea dt {
  width: 70px;
  background: var(--vividorange);
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}
#recruitDetail .flowArea .txtArea dd {
  width: calc(100% - 110px);
  line-height: 1.4;
}
#recruit {
  padding: 80px 0 100px;
}
#recruit h3 {
  padding-bottom: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
#recruit .postArea {
  gap: 40px;
}
#recruit .postArea > li {
  background: var(--white);
  width: calc((100% - 80px) / 3);
}
#recruit .postArea > li a {
  width: 100%;
}
#recruit .eyecatch {
  width: 100%;
  background-color: var(--lightgray);
  background-size: cover;
  aspect-ratio: 390 / 290;
}
#recruit .info {
  align-items: flex-end;
  padding: 15px 20px;
  width: 100%;
}
#recruit .info .office {
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 1;
}
#recruit .info .jobtype {
  gap: 10px;
}
#recruit .info .jobtype li {
  padding: 5px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
#recruit .info .title {
  padding: 10px 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
#recruit .info .place {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  line-height: 1;
}
#recruit .info .place::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 18px;
  background: url(img/common/ico_place.svg) no-repeat center / contain;
  content: "";
}
#recruit .more {
  padding: 0 20px 20px;
  float: right;
  overflow: hidden;
}
#recruit .more span {
  position: relative;
  display: inline-block;
  width: 100px;
  color: var(--orange);
  font-weight: 700;
}
#recruit .more span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  content: "";
}
#recruitSingle {
  padding: 60px 0;
}
#recruitSingle .ttlArea {
  margin-bottom: 80px;
  align-items:  flex-start;
  gap: 20px 10px;
}
#recruitSingle .ttlArea .office {
  padding: 5px;
  border: 1px solid var(--black);
  font-weight: 700;
  line-height: 1;
}
#recruitSingle .ttlArea .jobtype {
  gap: 10px;
}
#recruitSingle .ttlArea .jobtype li {
  padding: 5px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
#recruitSingle .ttlArea .postTtl {
  font-size: 3.5rem;
  width: 100%;
  line-height: 1.5;
}
#recruitSingle .eyecatch {
  margin: auto;
  max-width: 1000px;
}
#recruitSingle .btnEntry {
  padding: 30px 0;
  text-align: center;
}
#recruitSingle .btnEntry a {
  position: relative;
  padding: 20px 50px;
  border-radius: 34px;
  background: var(--orange);
  color: var(--white);
  width: 550px;
  max-width: 90%;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
#recruitSingle .btnEntry a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 11px;
  height: 100%;
  background: url(img/common/arrow.svg) no-repeat center / contain;
  content: "";
}
#recruitSingle .poinitArea h3 {
  margin: 30px 0;
  font-size: 2rem;
}
#recruitSingle .poinitArea dl {
  gap: 20px;
}
#recruitSingle .poinitArea dt {
  width: 80px;
  color: var(--vividorange);
  text-align: center;
}
#recruitSingle .poinitArea dt span {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
#recruitSingle .poinitArea dt strong {
  display: blck;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}
#recruitSingle .poinitArea dd {
  padding-bottom: 30px;
  width: calc(100% - 100px);
}
#recruitSingle .poinitArea .ttl {
  padding: 30px 0 10px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
#recruitSingle .outlineArea {
  padding: 50px;
  margin: 50px 0;
  ;
  background: var(--lightorange);
}
#recruitSingle .outlineArea dl {
  padding: 50px 60px;
  background: var(--white);
  font-size: 1.9rem;
}
#recruitSingle .outlineArea dt {
  padding: 20px 0;
  border-bottom: 1px dashed var(--lightgray);
  width: 200px;
  font-weight: 700;
}
#recruitSingle .outlineArea dd {
  padding: 20px 0;
  border-bottom: 1px dashed var(--lightgray);
  width: calc(100% - 200px);
}
#recruitSingle .outlineArea dd ul {
  gap: 10px 20px;
}
#recruitSingle .outlineArea dd li {
  padding: 5px;
  width: 110px;
  background: var(--vividorange);
  border-radius: 5px;
  text-align: center;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
#recruitSingle .outlineArea .btnEntry {
  text-align: left;
}
#recruitSingle .outlineArea .btnEntry a {
  padding: 15px 50px;
  border-radius: 24px;
  width: 380px;
  font-size: 2.3rem;
}
#recruitSingle .outlineArea .btnEntry a::after {
  right: 20px;
}
#recruitSingle .sns a {
  margin: 0 auto 50px;
}
#entryform .container {
  padding-bottom: 100px;
  max-width: 860px;
}
#entryform h3 {
  color: var(--dustyorange);
  font-size: 3.5rem;
  text-align: center;
}
#entryform .txt {
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 1200px) {
  #recruit .postArea > li {
    background: var(--white);
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 767px) {
  #recruitDetail {
    padding: 50px 0;
  }
  #recruitDetail .txt {
    font-size: 1.4rem;
  }
  #recruitDetail .detailBox {
    margin: 20px 0 30px;
    padding: 15px 20px;
    font-size: 1.4rem;
  }
  #recruitDetail .poinitArea {
    margin: 50px 0;
  }
  #recruitDetail .detailBox dt {
    padding-bottom: 5px;
  }
  #recruitDetail .poinitArea dt {
    width: 50px;
  }
  #recruitDetail .poinitArea dt span {
    font-size: 1.3rem;
  }
  #recruitDetail .poinitArea dt strong {
    font-size: 4rem;
  }
  #recruitDetail .poinitArea dd {
    padding-bottom: 20px;
    width: calc(100% - 70px);
  }
  #recruitDetail .poinitArea .ttl {
    padding: 20px 0 10px;
    font-size: 1.8rem;
  }
  #recruitDetail .flowArea {
    gap: 10px;
  }
  #recruitDetail .flowArea figure {
    width: 100%;
  }
  #recruitDetail .flowArea .txtArea {
    width: 100%;
  }
  #recruitDetail .flowArea .txtArea h2 {
    font-size: 2rem;
  }
  #recruitDetail .flowArea .txtArea dl {
    gap: 20px;
    font-size: 1.6rem;
  }
  #recruitDetail .flowArea .txtArea dl::after {
    left: 25px;
    width: 2px;
    height: 90%;
  }
  #recruitDetail .flowArea .txtArea dt {
    width: 50px;
  }
  #recruitDetail .flowArea .txtArea dd {
    width: calc(100% - 70px);
  }
  #recruit {
    padding: 40px 0 50px;
  }
  #recruit h3 {
    padding-bottom: 10px;
    font-size: 1.6rem;
  }
  #recruit .postArea {
    gap: 30px;
  }
  #recruit .postArea > li {
    background: var(--white);
    width: 100%;
  }
  #recruit .info {
    align-items: flex-end;
    padding: 15px 20px;
    width: 100%;
  }
  #recruit .info .title {
    font-size: 1.8rem;
  }
  #recruit .info .place {
    padding-left: 18px;
  }
  #recruit .info .place::before {
    top: -2px;
    width: 12px;
    height: 16px;
  }
  #recruit .more span {
    width: 90px;
  }
  #recruit .more span::after {
    width: 8px;
    height: 8px;
  }
  #recruitSingle {
    padding: 30px 0;
  }
  #recruitSingle .ttlArea {
    margin-bottom: 40px;
    gap: 10px;
  }
  #recruitSingle .ttlArea .postTtl {
    font-size: 2.4rem;
  }
  #recruitSingle .btnEntry.fixed {
    position: fixed;
    left: 10%;
    bottom: 10px;
    padding: 0;
    width: 80%;
    z-index: 100;
  }
  #recruitSingle .btnEntry a {
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 1.8rem;
  }
  #recruitSingle .btnEntry a::after {
    right: 20px;
    width: 8px;
  }
  #recruitSingle .poinitArea h3 {
    margin: 20px 0;
    font-size: 1.6rem;
  }
  #recruitSingle .poinitArea dt {
    width: 50px;
  }
  #recruitSingle .poinitArea dt span {
    font-size: 1.3rem;
  }
  #recruitSingle .poinitArea dt strong {
    font-size: 4rem;
  }
  #recruitSingle .poinitArea dd {
    padding-bottom: 20px;
    width: calc(100% - 70px);
  }
  #recruitSingle .poinitArea .ttl {
    padding: 20px 0 10px;
    font-size: 1.8rem;
  }
  #recruitSingle .outlineArea {
    padding: 20px;
    margin: 30px 0;
  }
  #recruitSingle .outlineArea dl {
    padding: 20px;
    font-size: 1.4rem;
  }
  #recruitSingle .outlineArea dt {
    padding: 15px 0 0;
    border-bottom: none;
    width: 100%;
  }
  #recruitSingle .outlineArea dd {
    padding: 10px 0 15px;
    width: 100%;
  }
  #recruitSingle .outlineArea dd ul {
    gap: 10px;
  }
  #recruitSingle .outlineArea dd li {
    width: 90px;
    font-size: 1.3rem;
  }
  #recruitSingle .sns a {
    margin: 0 auto 30px;
  }
  #entryform .container {
    padding-bottom: 50px;
  }
  #entryform h3 {
    font-size: 2rem;
  }
  #entryform .txt {
    padding: 10px 0;
    text-align: center;
  }
  }

/* interview
-------------------------------------------------------------- */
#interviewList {
  padding: 80px 0;
}
#interviewList ul {
  gap: 80px 40px;
}
#interviewList li {
  width: calc((100% - 80px) / 3);
}
#interviewList .eyecatch img {
  width: 100%;
}
#interviewList .ttl {
  padding: 10px 0;
  color: var(--vividorange);
  font-size: 3.5rem;
  line-height: 1.4;
}
#interviewList .info {
  font-size: 1.8rem;
}
#interviewList .more {
  padding: 20px 10px 0;
  float: right;
  overflow: hidden;
}
#interviewList .more span {
  position: relative;
  display: inline-block;
  width: 100px;
  color: var(--orange);
  font-weight: 700;
}
#interviewList .more span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  content: "";
}
#interviewSingle {
  padding: 30px 0;
}
#interviewSingle .ttlheader {
  position: relative;
  align-items: flex-end;
  margin-bottom: 60px;
  background-size: cover;
  aspect-ratio: 1920 / 770;
}
#interviewSingle .ttlheader .info {
  padding: 50px;
  color: var(--white);
  font-size: 2.7rem;
  font-weight: 700;
}
#interviewSingle .ttlheader .info .office {
  line-height: 1.4;
}
#interviewSingle .ttlheader .info .year {
  padding: 20px 0 10px;
  line-height: 1;
}
#interviewSingle .ttlheader .info .name {
  font-size: 5.4rem;
  line-height: 1;
}
#interviewSingle .ttlheader .info .type {
  padding-top: 10px;
  line-height: 1.4;
}
#interviewSingle dt {
  margin-bottom: 20px;
  padding: 5px 15px;
  background: var(--vividorange);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
#interviewSingle dd {
  margin-bottom: 50px;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4;
}
#interviewSingle .photo {
  margin: 80px 0;
}
#interviewSingle .photo img {
  width: 100%;
}
@media (max-width: 767px) {
  #interviewList {
    padding: 40px 0;
  }
  #interviewList ul {
    gap: 40px;
    margin: auto;
    max-width: 300px;
  }
  #interviewList li {
    width: 100%;
  }
  #interviewList .ttl {
    font-size: 2.2rem;
  }
  #interviewList .info {
    font-size: 1.5rem;
  }
  #interviewSingle {
    padding: 15px 0;
  }
  #interviewSingle .container {
    width: 100%;
  }
  #interviewSingle .ttlheader {
    margin-bottom: 30px;
    background-image: none!important;
  }
  #interviewSingle .ttlheader figure {
    margin-bottom: 0;
  }
  #interviewSingle .ttlheader .info {
    padding: 20px;
    width: 100%;
    background: linear-gradient(90deg, rgba(243, 231, 39, 0.3) 0%, rgba(229, 99, 39, 0.3) 100%);
    color: var(--black);
    font-size: 1.4rem;
    text-align: center;
  }
  #interviewSingle .ttlheader .info .year {
    padding: 10px 0 5px;
  }
  #interviewSingle .ttlheader .info .name {
    font-size: 2.4rem;
    line-height: 1;
  }
  #interviewSingle .ttlheader .info .type {
    padding-top: 10px;
  }
  #interviewSingle .interviewWrap {
    padding: 0 5%;
  }
  #interviewSingle dt {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  #interviewSingle dd {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
  #interviewSingle .photo {
    margin: 40px 0;
  }
}

/* archive
-------------------------------------------------------------- */
#newsList {
  padding: 50px 0;
}
#newsList .postArea li {
  border-bottom: 1px dotted var(--gray);
}
#newsList .postArea li a {
  position: relative;
  padding: 20px;
}
#newsList .postArea li a:hover {
  color: var(--blue);
}
#newsList .postArea li .eyecatch {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 32 / 27;
}
#newsList .postArea li .eyecatch.no-image {
  background: var(--lightgray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#newsList .postArea li .info {
  padding: 20px 0 60px;
}
#newsList .postArea li .date {
  position: relative;
  width: 100px;
  color: var(--vividorange);
}
#newsList .postArea li .ttl {
  width: calc(100% - 100px);
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  #newsList .postArea {
    gap: 20px;
  }
  #newsList .postArea li {
    width: calc((100% - 20px) / 2);
  }
  #newsList .postArea li .info {
    padding: 10px 0 40px;
  }
  #newsList .postArea li .date {
    padding: 0 0 10px 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  #newsList .postArea li .date::after {
    width: 65%;
  }
  #newsList .postArea li .title {
    font-size: 1.6rem;
  }
}
/* single
-------------------------------------------------------------- */
#newsSingle {
  padding: 100px 0;
}
#newsSingle .ttlheader h1 {
  padding: 10px 0 20px;
  color: var(--vividorange);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#newsSingle .eyecatch {
  margin-bottom: 60px;
}
#newsSingle .freetxt {
  padding-bottom: 50px;
}
.freetxt img {
  margin-bottom: 30px;
}
.freetxt a {
  color: var(--green);
}
.freetxt p {
  margin-bottom: 50px;
  line-height: 2;
}
.freetxt blockquote {
  background: #efefef;
  padding: 20px;
}
.freetxt .aligncenter {
  display: block;
  margin: 0 auto;
}
.freetxt .alignleft {
  float: left;
}
.freetxt .alignright {
  float: right;
}
.freetxt ul,
.freetxt ol {
  margin: 0 20px;
}
.freetxt ul li {
  list-style: square;
  margin-bottom: 15px;
}
.freetxt ol li {
  list-style: decimal;
  margin-bottom: 15px;
}
.freetxt h1 {
  margin-bottom: 50px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
}
.freetxt h2 {
  margin-bottom: 50px;
  color: var(--green);
  font-weight: 700;
}
.freetxt h3 {
  padding: 10px;
  margin-bottom: 50px;
  border-left: 5px solid var(--green);
  border-bottom: 1px solid var(--gray);
  font-weight: 700;
  line-height: 1.4;
}
.freetxt table {
  width: 100%;
}
.freetxt table th {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
}
.freetxt table td {
  padding: 10px 15px;
  font-size: 1.5rem;
  border: 1px solid #ccc;
}
.freetxt .youtube {
  margin-bottom: 20px;
}
.freetxt .youtube iframe {
  width: 100%;
  height: 550px;
}
@media (max-width: 767px) {
  #newsSingle {
    padding: 50px 0;
  }
  #newsSingle .ttlheader {
    width: 100%;
  }
  #newsSingle .ttlheader .date {
    font-size: 1.4rem;
  }
  #newsSingle .ttlheader h1 {
    font-size: 1.8rem;
  }
  #newsSingle .single-category {
    margin-bottom: 50px;
    padding: 10px 0;
    font-size: 1.2rem;
  }
  #newsSingle .eyecatch {
    margin-bottom: 30px;
  }
  #newsSingle .freetxt {
    padding-bottom: 30px;
  }
  .freetxt h2 {
    margin-bottom: 30px;
  }
  .freetxt h3 {
    margin-bottom: 30px;
  }
}
/* ページネーション
-------------------------------------------------------------- */
.paging {
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}
.paging .back {
  position: absolute;
  left: 50%;
  margin-left: -100px;
}
.paging .back a {
  display: block;
  position: relative;
  width: 200px;
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1.4rem;
  box-sizing: border-box;
  outline: none;
  overflow: hidden;
}
.paging a::before,
.paging a::after {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
}
.paging a::after {
  top: calc(50% - 4px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: rotate(45deg);
}
.paging .next a,
.paging .prev a {
  display: block;
  position: relative;
  width: 180px;
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1.4rem;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
}
.paging .prev a::after {
  top: calc(50% - 4px);
  left: 20px;
  right: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: rotate(-135deg);
}
.paging a:hover {
  color: #fff;
  background: var(--orange);
  opacity: 1;
}
.paging .prev {
  float: left;
}
.paging .next {
  float: right;
}
.pagination {
  text-align: center;
  padding: 50px 0 100px;
  width: 100%;
  font-weight: 700;
}
a.page-numbers,
.pagination .current {
  padding: 3px 8px;
  margin: 0 5px;
  text-decoration: none;
}
.pagination .current {
  border-bottom: solid 1px var(--orange);
}
a.page-numbers:hover {
  border-bottom: solid 1px var(--orange);
  color: var(--orange);
}
a.next,
a.prev {
  color: #fff;
  background: var(--orange);
}
a.next:hover {
  border: none;
  color: #fff;
  background: var(--orange);
}
@media (max-width: 767px) {
  .paging {
    margin-bottom: 50px;
  }
  .paging .back {
    margin-left: -51px;
  }
  .paging .back a,
  .paging .prev a,
  .paging .next a {
    padding: 10px;
    width: 100px;
    font-size: 1.3rem;
    text-align: center;
  }
  .paging .back a::after,
  .paging .prev a::after,
  .paging .next a::after {
    content: none;
  }
  .pagination {
    padding: 30px 0 50px;
  }
}

/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 20px 0;
  background: var(--gray);
  color: var(--white);
}
footer .copy {
  font-size: 1.2rem;
  text-align: center;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f5f5f7;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  footer {
    padding: 10px 0;
  }
  footer .copy {
    margin-top: 0;
    font-size: 1rem;
  }
  /*page-top*/
  #Pagetop {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}

/* 404
-------------------------------------------------------------- */
.post-password-form {
  margin: 200px auto 100px;
  max-width: 1100px;
  width: 90%;
}
#errormsg {
  margin: 100px auto;
}
#errormsg p {
  margin-bottom: 30px;
  text-align: center;
}
#errormsg .btnMore a {
  margin: auto;
}
@media (max-width: 767px) {
  #errormsg {
    margin: 50px auto;
  }
  #errormsg p {
    margin-bottom: 20px;
    text-align: left;
  }
}
