@charset "utf-8";
/*
Theme Name: nisshin-office
Author: 株式会社シールズ
Description: original theme
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:
    'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Segoe UI', 'Helvetica Neue',
    Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
:root {
  --white: #fff;
  --black: #000;
  --green: #6cbe26;
  --gray: #d2d2d2;
  --darkgray: #828282;
  --lightgray: #f7f7f7;
  --navy: #35376a;
  --blue: #163289;
  --red: #e31f26;
  --yellow: #fdbd35;
}
.noto {
  font-family: 'Noto Sans JP', sans-serif;
}
.mincho {
  font-family: 'Shippori Mincho', serif;
}
main {
  position: relative;
  padding-bottom: 200px;
  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;
}
.scale:hover {
  transform: scale(1.06);
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.container.wide {
  max-width: 90%;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.hidden_sp.inline {
  display: inline-block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid {
  display: grid;
}
@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
  main {
    padding-bottom: 100px;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 100;
}
header::after {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--blue);
  width: 450px;
  max-width: 23%;
  height: 5px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  content: "";
}
header .logo a {
  align-items: center;
}
header a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  align-items: center;
  padding: 25px 0 25px 3%;
}
header .global-nav {
  width: calc(100% - 212px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .global-nav li {
  position: relative;
}
header .global-nav li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  color: var(--darkgray);
  font-size: 2rem;
  content: "/";
}
header .global-nav li:nth-child(5)::after,
header .global-nav li.entry::after {
  content: none
}
header .global-nav li a {
  padding: 0 40px 0 30px;
  text-align: center;
}
header .global-nav li .jp {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
header .global-nav li .en {
  display: block;
  margin-top: 8px;
  color: var(--darkgray);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
header .global-nav li a:hover {
  color: var(--navy);
  opacity: 1;
}
header .global-nav li.entry a {
  padding: 10px 70px 10px 60px;
  background: var(--green);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
header .global-nav li.entry .jp,
header .global-nav li.entry .en {
  color: var(--white);
}
header .global-nav li.entry a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 10px;
  height: 9px;
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
  content: "";
}
@media (max-width: 1200px) {
  header .logo a img {
    width: 100px;
  }
  header .global-nav {
    width: calc(100% - 100px);
  }
  header .global-nav li::after {
    font-size: 1.6rem;
  }
  header .global-nav li a {
    padding: 0 30px 0 20px;
  }
  header .global-nav li .jp {
    font-size: 1.2rem;
  }
  header .global-nav li.entry a {
    padding: 10px 60px 10px 50px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  }
  header .global-nav li.entry a::after {
    right: 20px;
  }
}
@media (max-width: 900px) {
  header .global-nav li::after {
    font-size: 1.5rem;
  }
  header .global-nav li a {
    padding: 0 20px 0 10px;
  }
  header .global-nav li .jp {
    font-size: 1.2rem;
  }
  header .global-nav li.entry a {
    padding: 10px 50px 10px 40px;
  }
  header .global-nav li.entry a::after {
    right: 15px;
  }
}
@media (max-width: 767px) {
  header::after {
    max-width: 70%;
    height: 3px;
  }
  header .headWrap {
    padding: 14px 15px;
    margin: 0;
    width: calc(100% - 60px);
  }
  header .logo a img {
    width: 170px;
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 50px 5% 100px;
    width: 100%;
    height: 100vh;
    background-color: var(--green);
    z-index: 500;
    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(--green);
    font-size: 1rem;
    content: 'MENU';
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    padding: 18px 10px;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  header .global-nav li::after {
    content: none;
  }
  header .global-nav li a {
    padding: 5px 10px;
    text-align: left;
  }
  header .global-nav li .jp {
    color: var(--white);
    font-size: 1.6rem;
  }
  header .global-nav li .en {
    color: var(--white);
    font-size: 1.2rem;
  }
  header .global-nav li.entry a {
    padding: 5px 10px;
    clip-path: inherit
  }
  header .global-nav li.entry a::after,
  header .global-nav li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
    width: 10px;
    height: 9px;
    background: url(img/common/arrow_w.svg) no-repeat center / contain;
    content: "";
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--green);
    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
-------------------------------------------------------------- */
.fixedLink {
  position: fixed;
  top: calc(50% - 165px);
  right: 0;
  width: 60px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.fixedLink.is-show {
  opacity: 1;
  pointer-events: auto;
}
.fixedLink li:first-child {
  margin-bottom: 10px;
}
.fixedLink li a {
  display: block;
  padding: 25px 5px 25px 20px;
  border-radius: 10px 0 0 10px;
  background-color: var(--blue);
  color: var(--white);
  word-break: break-all;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
#sv {
  position: relative;
  margin: 100px 0 160px;
  padding-top: 223px;
  text-align: center;
}
#sv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: url(img/common/sv_bg.jpg) no-repeat center / cover;
  content: "";
  z-index: -1;
}
#sv h1 {
  position: relative;
  display: inline-block;
  padding: 20px 50px;
  border: 1px solid var(--gray);
  text-align: center;
  z-index: 2;
}
#sv h1 .jp {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
}
#sv h1 .en {
  display: block;
  color: var(--darkgray);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
}
.btn a {
  position: relative;
  display: block;
  padding: 20px 50px;
  box-sizing: border-box;
  background: var(--green);
  width: 283px;
  color: var(--white);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  width: 10px;
  height: 9px;
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
  content: "";
  transition: all 0.6s ease;
}
.btn a:hover::after {
  right: 30px;
}
.ttlLine {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 60px;
  color: var(--blue);
  font-size: 2.6rem;
  font-weight: 700;
}
.ttlLine::after {
  position: absolute;
  bottom: 0;
  left: calc((100vw - min(100vw, 1100px)) / -2);
  width: calc((100vw - min(100vw, 1100px)) / 2 + 200px);
  height: 5px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  content: "";
}
@media (max-width: 1250px) {
  .ttlLine::after {
    left: -15%; 
    width: calc(15% + 200px);
  }
}
@media (max-width: 767px) {
  .fixedLink {
    display: flex;
    gap: 10px;
    top: auto;
    bottom: 0;
    width: 100%;
  }
  .fixedLink li:first-child {
    margin-bottom: 0;
  }
  .fixedLink li {
    width: calc(50% - 5px);
  }
  .fixedLink li a {
    padding: 15px 10px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 1.5rem;
  }
  .fixedLink .contact a {
    padding: 15px 10px;
  }
  #sv {
    margin: 60px 0 80px;
    padding-top: 80px;
  }
  #sv::after {
    height: 120px;
  }
  #sv h1 {
    padding: 15px 30px;
  }
  #sv h1 .jp {
    font-size: 2.4rem;
    letter-spacing: 3px;
  }
  #sv h1 .en {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  .btn a {
    max-width: 80%;
    font-size: 1.4rem;
  }
  .ttlLine {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .ttlLine::after {
    height: 3px;
  }
}
/* archive
-------------------------------------------------------------- */
#newsList .postArea {
  justify-content: flex-start;
  gap: 70px;
}
#newsList .postArea li {
  width: calc((100% - 140px) / 3);
}
#newsList .postArea li a {
  display: block;
  position: relative;
}
#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;
  padding: 0 0 10px 40px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 700;
}
#newsList .postArea li .date::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
  width: 40%;
  height: 2px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  content: "";
}
#newsList .postArea li .title {
  font-size: 2rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#newsList .postArea li a::after {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 22px;
  height: 20px;
  background: url(img/common/arrow_g.svg) no-repeat center / contain;
  content: "";
  z-index: 2;
  transition: transform 0.6s ease;
}
#newsList .postArea li a:hover::after {
  background: url(img/common/arrow_g.svg) no-repeat center / contain;
  transform: translateX(10px);
}
@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 .ttlheader .date {
  position: relative;
  padding: 0 0 10px 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
}
#newsSingle .ttlheader .date::after {
  position: absolute;
  bottom: 0;
  left: calc((100vw - min(100vw, 1100px)) / -2);
  background: var(--blue);
  width: calc((100vw - min(100vw, 1100px)) / 2 + 160px);
  height: 2px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  content: "";
}
#newsSingle .ttlheader h2 {
  padding: 20px 0 30px;
  color: var(--navy);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
#newsSingle .single-category {
  margin-bottom: 100px;
  padding: 20px 0;
  background: var(--green);
  color: var(--white);
  font-size: 1.3rem;
}
#newsSingle .single-category span {
  margin: 0 5px;
}
#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 .ttlheader {
    width: 100%;
  }
  #newsSingle .ttlheader .date {
    font-size: 1.4rem;
  }
  #newsSingle .ttlheader h2 {
    padding: 0 5% 20px;
    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;
  }
}
/* works
-------------------------------------------------------------- */
#worksList {
  padding-top: 150px;
}
#worksList .postArea li {
  margin-bottom: -1px;
  width: 48%;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
#worksList .postArea li a {
  align-items: flex-start;
  padding: 40px 0;
}
#worksList .postArea li .eyecatch {
  width: 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 200 / 133;
}
#worksList .postArea li .txtArea {
  justify-content: flex-start;
  align-items: center;
  width: 55%;
}
#worksList .postArea li .cat {
  margin-right: 20px;
  padding: 8px 20px;
  background: var(--green);
  border-radius: 15px;
  color: var(--white);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
#worksList .postArea li .date {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
#worksList .postArea li .ttl {
  padding-top: 10px;
  width: 100%;
  line-height: 2;
}
#worksList .postArea li.none {
  border: none;
  width: 100%;
  text-align: center;
}
#worksList .postArea li a:hover {
  color: var(--green);
}
#worksList .postArea li .txtArea {
  justify-content: flex-start;
  align-items: center;
  width: 55%;
}
#worksSingle {
  padding-top: 150px;
}
#worksSingle .ttlheader {
  padding-bottom: 30px;
  margin-bottom: 40px;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #666;
}
#worksSingle .cat {
  margin-right: 20px;
  padding: 8px 20px;
  background: var(--green);
  border-radius: 15px;
  color: var(--white);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
#worksSingle .date {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
#worksSingle .postTtl {
  padding-top: 20px;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
}
#worksSingle .mainArea {
  padding-bottom: 30px;
  border-bottom: 1px solid #666;
}
#worksSingle .photoGrid {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
#worksSingle .photoGrid .item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
#worksSingle .photoGrid .item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
#worksSingle .photoGrid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#worksSingle dt {
  padding: 10px 20px;
  background: var(--green);
  color: var(--white);
  line-height: 1;
}
#worksSingle dd {
  padding: 20px 0 50px;
  line-height: 2;
}
@media (max-width: 767px) {
  #worksList {
    padding-top: 70px;
  }
  #worksList .postArea li {
    width: 100%;
  }
  #worksList .postArea li a {
    padding: 20px 0;
  }
  #worksList .postArea li .eyecatch {
    width: 40%;
  }
  #worksList .postArea li .txtArea {
    width: 55%;
  }
  #worksList .postArea li .cat {
    margin: 0 0 10px;
    font-size: 1.3rem;
  }
  #worksList .postArea li .date {
    width: 100%;
    font-size: 1.3rem;
  }
  #worksSingle {
    padding-top: 70px;
  }
  #worksSingle .ttlheader {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  #worksSingle .cat {
    font-size: 1.2rem;
  }
  #worksSingle .date {
    font-size: 1.3rem;
  }
  #worksSingle .postTtl {
    padding-top: 10px;
    font-size: 1.6rem;
  }
  #worksSingle .mainArea {
    padding-bottom: 20px;
  }
  #worksSingle .photoGrid {
    margin-bottom: 30px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  #worksSingle dd {
    padding: 10px 0 30px;
  }
}
/* ページネーション
-------------------------------------------------------------- */
.paging {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid var(--gray);
}
.paging .next a,
.paging .prev a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  border: 1px solid var(--gray);
  font-size: 0;
}
.paging .prev {
  float: left;
}
.paging .next {
  float: right;
}
.paging .next a::before,
.paging .prev a::before {
  position: absolute;
  width: 13px;
  height: 12px;
  background: url(img/common/arrow_gy.svg) no-repeat center / contain;
  content: "";
}
.paging .prev a::before {
  transform: rotate(180deg);
}
.paging .next a:hover,
.paging .prev a:hover {
  background: var(--green);
  border: 1px solid var(--green);
  opacity: 1;
}
.paging .next a:hover::before,
.paging .prev a:hover::before {
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
}
.pagination {
  position: relative;
  text-align: center;
  width: 100%;
}
.pagination .nav-links {
  position: relative;
  margin-top: 150px;
  padding: 50px 120px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-top: 2px solid var(--gray);
  color: var(--darkgray);
}
a.page-numbers,
.pagination .current {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
  line-height: 1;
}
.pagination .current,
a.page-numbers:hover {
  color: var(--green);
  font-weight: 700;
  opacity: 1;
}
a.next,
a.prev {
  position: absolute;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
  width: 100px;
  height: 40px;
  border: 1px solid var(--gray);
  font-size: 0;
}
a.next {
  right: 0;
}
a.prev {
  left: 0;
}
a.next::before,
a.prev::before {
  position: absolute;
  width: 13px;
  height: 12px;
  background: url(img/common/arrow_gy.svg) no-repeat center / contain;
  content: "";
}
a.prev::before {
  transform: rotate(180deg);
}
a.next:hover,
a.prev:hover {
  background: var(--green);
  border: 1px solid var(--green);
  opacity: 1;
}
a.next:hover::before,
a.prev:hover::before {
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
}
@media (max-width: 767px) {
  .paging {
    padding: 30px 0;
  }
  .paging .next a,
  .paging .prev a {
    width: 50px;
    height: 30px;
  }
  .pagination .nav-links {
    margin-top: 50px;
    padding: 50px 60px 0;
  }
  a.page-numbers,
  .pagination .current {
    margin: 0 10px;
  }
  a.next,
  a.prev {
    margin: 0;
    width: 50px;
    height: 30px;
  }
  a.next::before,
  a.prev::before {
    width: 11px;
    height: 10px;
  }
}

/*#ctaArea
-------------------------------------------------------------- */
#ctaArea {
  position: relative;
  height: 200px;
}
#ctaArea .tile {
  position: absolute;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 52%;
  height: 200px;
  overflow: hidden;
  color: var(--white);
}
#ctaArea .tile:hover {
  color: var(--green);
  opacity: 1;
}
#ctaArea .tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}
#ctaArea .tile:hover > img {
  transform: scale(1.06);
}
#ctaArea .tileInner {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 430px;
  max-width: 80%;
  text-align: center;
  border: 1px solid var(--gray);
  z-index: 2;
  transition: transform 0.6s ease;
}
#ctaArea .tile:hover .tileInner {
  border: 1px solid var(--green);
  transform: scale(1.06);
}
#ctaArea .tileInner h2 {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
}
#ctaArea .tileInner p {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1;
}
#ctaArea .tile::after {
  position: absolute;
  right: 10%;
  bottom: 20px;
  width: 22px;
  height: 20px;
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
  content: "";
  z-index: 2;
  transition: transform 0.6s ease;
}
#ctaArea .tile:hover::after {
  background: url(img/common/arrow_g.svg) no-repeat center / contain;
  transform: translateX(10px);
}
@media (min-width: 768px) {
  #ctaArea .contact {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  }
  #ctaArea .entry {
    top: 0;
    right: 0;
    clip-path: polygon(8% 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 767px) {
  #ctaArea {
    position: relative;
    height: auto;
  }
  #ctaArea .tile {
    position: relative;
    width: 100%;
    height: 180px;
  }
  #ctaArea .tileInner h2 {
    font-size: 2.4rem;
  }
  #ctaArea .tileInner p {
    font-size: 1.2rem;
  }
  #ctaArea .tile::after {
    right: 5%;
    bottom: 15px;
    width: 17px;
    height: 15px;
  }
}

/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 100px 0 30px;
}
footer .txtArea {
  padding-top: 25px;
  width: 40%;
}
footer .txtArea .flogo {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
footer .txtArea .flogo::after {
  position: absolute;
  bottom: 0;
  left: calc((100vw - min(100vw, 1100px)) / -2);
  width: calc((100vw - min(100vw, 1100px)) / 2 + 200px);
  height: 2px;
  background: var(--navy);
  content: "";
}
footer .txtArea p {
  padding-bottom: 5px;
  font-size: 1.3rem;
}
footer .txtArea p.tel {
  font-size: 1.5rem;
}
footer .txtArea p.tel a {
  color: var(--blue);
  font-weight: 700;
}
footer .txtArea p.tel .hidden_sp {
  padding: 0 10px;
}
footer .fnav {
  position: relative;
  padding-top: 60px;
  justify-content: flex-end;
  border-top: 2px solid var(--navy);
  width: 60%;
}
footer .fnav::after {
  position: absolute;
  top: -2px;
  right: calc((100vw - min(100vw, 1100px)) / -2); 
  width: 100%;
  height: 2px;
  background: var(--navy);
  content: "";
}
footer .fnav ul {
  justify-content: flex-start;
  gap: 20px;
  width: 80%;
}
footer .fnav li {
  width: calc((100% - 40px) / 3);
}
footer .fnav li .en {
  display: block;
  margin-bottom: 10px;
  color:var(--blue);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
footer .fnav li .jp {
  position: relative;
  display: block;
  padding-left: 15px;
  color:var(--navy);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
footer .fnav li .jp::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}
footer .line {
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid var(--gray);
}
footer .otherLink {
  gap: 30px;
}
footer .otherLink li {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
}
footer .otherLink li:first-child::after {
  display: inline-block;
  margin-left: 30px;
  content: "/"
}
footer .copy {
  font-size: 1.3rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  width: 42px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 1200px) {
  footer .txtArea .flogo::after {
    left: -15%; 
    width: calc(15% + 200px);
  }
  footer .fnav::after {
    right: -15%;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 50px 0;
  }
  footer .txtArea {
    padding-top: 25px;
    width: 100%;
  }
  footer .txtArea .flogo::after {
    width: 90%;
  }
  footer .txtArea .flogo {
    padding-bottom: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
  footer .txtArea p {
    padding-bottom: 5px;
    font-size: 1.2rem;
  }
  footer .txtArea p.tel {
    font-size: 1.3rem;
  }
  footer .txtArea p.tel .hidden_sp {
    padding: 0 5px;
  }
  footer .fnav {
    margin-top: 20px;
    padding-top: 40px;
    width: 100%;
  }
  footer .fnav ul {
    gap: 20px 10px;
    width: 100%;
  }
  footer .fnav li {
    width: calc((100% - 20px) / 3);
  }
  footer .fnav li .en {
    font-size: 1.2rem;
  }
  footer .fnav li .jp {
    font-size: 1.4rem;
  }
  footer .line {
    padding-top: 20px;
    margin-top: 40px;
  }
  footer .otherLink {
    gap: 20px;
  }
  footer .otherLink li:first-child::after {
    margin-left: 20px;
  }
  footer .copy {
    padding-top: 10px;
    width: 100%;
    font-size: 1.1rem;
    text-align: center;
  }
  /*page-top*/
  #Pagetop {
    width: 30px;
  }
}

/* 404
-------------------------------------------------------------- */
.post-password-form {
  margin: 200px auto 100px;
  max-width: 1100px;
  width: 90%;
}
#errormsg p {
  margin-bottom: 30px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}
#errormsg .btn a {
  margin: auto;
  text-align: left;
}
@media (max-width: 767px) {
  #errormsg p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: left;
  }
}
