@charset "utf-8";

/*
Theme Name: Raywood Systems 2025
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-lightgreen: #00A599;
  --color-darkgreen: #044440;
  --color-leafgreen: #33BB66;
  --color-green: #026C64;
  --color-blue: #3388BB;
  --color-red: #bb0033;
  --color-pink: #FF3388;
  --color-yellow: #EEFF00;
  --color-darkgray: #333;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-gray: #888;
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.75;
  color: var(--color-darkgray);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.mincho {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}

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

.en {
  font-family: "Raleway", sans-serif;
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: inherit;
  opacity: .7;
}

a:focus {
  text-decoration: none;
}

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

.container {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.container.wide {
  max-width: 90%;
}

.invisible {
  visibility: hidden;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.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.4rem;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
  z-index: 100;
}

header .logo {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  cursor: pointer;
  z-index: 200;
}

header .logo a {
  align-items: center;
}

header .logo::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 126, 119, 0.25), rgba(0, 102, 153, 0.25));
  content: "";
  z-index: -2;
}

header .logo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A7E77, #006699);
  opacity: 0;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

header .logo:hover::after,
.logo.is-hover::after {
  opacity: 1;
}

header a {
  display: block;
  color: var(--color-white);
}

header .global-nav {
  position: fixed;
  right: 0;
  top: 100px;
  padding: 15vh 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #0A7E77, #006699);
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
  transition: all 0.4s ease;
}

body.nav-open header {
  background: linear-gradient(to right, #0A7E77, #006699);
  cursor: inherit;
}

.hamburger {
  display: block;
  position: fixed;
  right: 40px;
  top: 35px;
  width: 40px;
  height: 26px;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 300;
  transition: all 0.5s ease-in-out;
}

header .global-nav ul {
  justify-content: space-between;
}

header .global-nav ul li {
  padding-right: 30px;
}

header .global-nav ul li:last-child {
  padding: 0;
}

header .global-nav li .link-ttl {
  font-size: 2.6rem;
  font-weight: 300;
}

header .global-nav .sub-nav {
  padding: 45px 0 0 45px;
}

header .global-nav .sub-nav li {
  padding: 0 0 40px;
  width: 100%;
}

header .global-nav .sub-nav li a {
  font-size: 1.6rem;
  font-weight: 300;
}

.hamburger__line {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transition: all .6s;
}

.hamburger__line--1 {
  top: 0px;
}

.hamburger__line--2 {
  top: 12px;
}

.hamburger__line--3 {
  top: 24px;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 15px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 15px;
}

@media (max-width: 1200px) {
  header .global-nav li .link-ttl {
    font-size: 1.9rem;
  }

  header .global-nav .sub-nav {
    padding: 35px 0 0 35px;
  }

  header .global-nav .sub-nav li {
    padding: 0 0 30px;
  }

  header .global-nav .sub-nav li a {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  header .global-nav li {
    padding-bottom: 50px;
    width: 50%;
  }

  header .global-nav li .link-ttl {
    font-size: 1.6rem;
  }

  header .global-nav .sub-nav {
    padding: 25px 0 0 25px;
  }

  header .global-nav .sub-nav li {
    padding: 0 0 20px;
  }

  header .global-nav .sub-nav li a {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  header .logo {
    height: 60px;
  }

  header .logo a img {
    width: 200px;
  }

  .hamburger {
    right: 15px;
    top: 17px;
    width: 40px;
  }

  header .global-nav {
    top: 60px;
    padding: 5vh 10% 30vh;
  }

  header .global-nav li {
    padding-bottom: 30px;
    width: 100%;
  }

  header .global-nav .sub-nav {
    padding: 15px 0 0 15px;
  }

  header .global-nav .sub-nav li {
    padding: 0 0 15px;
  }

  header .global-nav .sub-nav li a {
    font-size: 1.5rem;
  }
}

/* common style
-------------------------------------------------------------- */
#sv {
  position: relative;
  overflow: hidden;
}

#sv h1 {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  margin: auto;
  width: 90%;
  max-width: 1000px;
  transform: translateY(-50%) translateX(-50%);
  color: var(--color-white);
  text-align: center;
}

#sv h1 .en {
  display: block;
  padding-bottom: 10px;
  font-size: 8rem;
  font-weight: 100;
  line-height: 1;
}

#sv h1 .jp {
  display: block;
  font-size: 2.9rem;
  font-weight: 100;
}

#sv img{
  width: 100%!important;
}

.ttl_h2 {
  padding-bottom: 64px;
  text-align: center;
}

.ttl_h2 .en {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-green);
  font-size: 4.8rem;
  font-weight: 100;
  color: var(--color-green);
  line-height: 1;
}

.ttl_h2 .jp {
  display: block;
  padding-top: 15px;
  font-size: 2.6rem;
  font-weight: 100;
}

.ttl_h2_jp {
  margin-bottom: 160px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-green);
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-green);
  line-height: 1.6;
  text-align: center;
}

.btn-more a {
  position: relative;
  display: inline-block;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  background: var(--color-black);
  max-width: 420px;
  width: 90%;
  color: var(--color-white);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1;
}

.btn-more a span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.btn-more a span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
  content: "";
}

.btn-more a::after {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(to right, #0A7E77, #006699);
  opacity: 0;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.btn-more a:hover::after {
  opacity: 1;
}

.btn-more a:hover span::after {
  right: -10px;
}

.floating-btn {
  position: fixed;
  right: 50px;
  bottom: 25%;
  z-index: 10;
}

.floating-btn a {
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .25);
  color: var(--color-white);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.floating-btn a::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to right, #DDBB00, #FF7700);
  opacity: 1;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.floating-btn a::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to right, #FF7700, #FF0046);
  opacity: 0;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.floating-btn .arrow {
  position: absolute;
  right: 15%;
  bottom: 30%;
  width: 40px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.floating-btn .arrow::after {
  position: absolute;
  right: 0;
  width: 16px;
  height: 2px;
  background: var(--color-white);
  transform: rotate(45deg);
  transform-origin: right bottom;
  transition: all 0.5s ease-in-out;
  content: '';
}

.floating-btn a:hover {
  transform: scale(1.05, 1.05);
  opacity: 1;
}

.floating-btn a:hover::after {
  opacity: 1;
}

.floating-btn a:hover .arrow {
  right: 10%;
}


.floating-btn02 a {
  position: fixed;
  right: 0;
  bottom: -45px;
  display: block;
  padding-left: 20px;
  width: 240px;
  aspect-ratio: 3 / 1;
  box-sizing: border-box;
  color: var(--color-white);
  text-align: center;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 10;
}

.floating-btn02 a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A7E77, #006699);
  opacity: 1;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.floating-btn02 a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FF0046, #FF7700);
  opacity: 0;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.floating-btn02 .en {
  display: block;
  padding: 10px 0 8px;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}

.floating-btn02 .jp {
  display: block;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
}

.floating-btn02 .arrow {
  position: absolute;
  left: 51%;
  bottom: 15px;
  width: 12px;
  height: 2px;
  background: var(--color-white);
  transform: rotate(90deg);
  transition: all 0.5s ease-in-out;
}

.floating-btn02 .arrow::after {
  position: absolute;
  right: 0;
  width: 6px;
  height: 2px;
  background: var(--color-white);
  transform: rotate(45deg);
  transform-origin: right bottom;
  transition: all 0.5s ease-in-out;
  content: '';
}

.floating-btn02 a:hover {
  bottom: 0;
  opacity: 1;
}

.floating-btn02 a:hover::after {
  opacity: 1;
}

#other h2 {
  margin-bottom: 80px;
  color: var(--color-green);
  font-size: 4.8rem;
  font-weight: 100;
  text-align: center;
  line-height: 1;
}

#other ul {
  gap: 28px;
}

#other li {
  width: calc(25% - 28px);
}

#other li.current {
  pointer-events: none;
  opacity: .5;
}

#other li a {
  position: relative;
  display: block;
  padding-top: 24px;
}

#other li a::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 126, 119, .25), rgba(0, 102, 153, .25));
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

#other li a::after {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to right, rgba(238, 255, 0, .25), rgba(255, 51, 136, .25));*/
  background: linear-gradient(to right, rgba(255, 221, 192, 1), rgba(255, 192, 208, 1));
  opacity: 0;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

#other li a:hover,
#other li a:hover::after {
  opacity: 1;
}

#other li a:hover::before {
  opacity: 0;
}

#other li figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px;
  line-height: 1.4;
}

#other li .txt-area {
  padding-top: 8px;
  background: var(--color-white);
}

#other li p {
  font-size: 1.1rem;
  font-weight: 400;
}

#other li a:hover p {
  color: #ff6b07;
}

@media (max-width: 1200px) {
  #other ul {
    gap: 28px;
  }

  #other li {
    width: calc(50% - 14px);
  }
}

@media (max-width: 767px) {
  #sv h1 {
    top: calc(50% + 20px);
  }

  #sv h1 .en {
    padding-bottom: 5px;
    font-size: 3.6rem;
  }

  #sv h1 .jp {
    font-size: 1.8rem;
  }

  .ttl_h2 {
    padding-bottom: 40px;
  }

  .ttl_h2 .en {
    padding-bottom: 15px;
    font-size: 3rem;
  }

  .ttl_h2 .jp {
    padding-top: 10px;
    font-size: 1.6rem;
  }

  .ttl_h2_jp {
    margin-bottom: 80px;
    padding-bottom: 15px;
    font-size: 2.4rem;
  }

  .btn-more a {
    padding: 15px;
    font-size: 2rem;
  }

  .btn-more a span {
    width: 15px;
    height: 15px;
  }

  .btn-more a span::after {
    width: 10px;
    height: 10px;
  }

  .floating-btn {
    right: 10px;
    bottom: 12%;
  }

  .floating-btn a {
    width: 120px;
    height: 120px;
    font-size: 1.4rem;
  }

  .floating-btn .arrow {
    right: 20%;
    bottom: 28%;
    width: 20px;
  }

  .floating-btn .arrow::after {
    width: 10px;
  }

  .floating-btn a:hover .arrow {
    right: 16%;
  }

  .floating-btn02 a {
    bottom: -28px;
    padding-left: 15px;
    width: 180px;
  }

  .floating-btn02 .en {
    padding: 10px 0 4px;
    font-size: 1.8rem;
  }

  .floating-btn02 .jp {
    font-size: 1rem;
  }

  .floating-btn02 .arrow {
    left: 52%;
    bottom: 10px;
    width: 10px;
    height: 1px;
  }

  .floating-btn02 .arrow::after {
    width: 5px;
    height: 1px;
  }

  #other h2 {
    margin-bottom: 50px;
    font-size: 3rem;
  }

  #other ul {
    gap: 40px;
  }

  #other li {
    width: 100%;
  }

  #other li a {
    padding-top: 20px;
  }

  #other li figcaption {
    padding: 20px 15px;
    font-size: 1.5rem;
  }

  #other li p {
    font-size: 1.5rem;
  }
}

/* pagelink
-------------------------------------------------------------- */
.pagelink ul {
  margin-bottom: 160px;
  gap: 96px 16px;
}

.pagelink li a {
  position: relative;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: var(--color-white);
  text-align: center;
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1.5;
}

.pagelink li a span {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}

.pagelink li a span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
  content: "";
}

.pagelink li.casestudy_01,
.pagelink li.casestudy_02,
.pagelink li.casestudy_03 {
  width: calc(33.33% - 20px);
}

.pagelink li.casestudy_01 a,
.pagelink li.casestudy_02 a,
.pagelink li.casestudy_03 a {
  aspect-ratio: 390 / 201;
}

.pagelink li.recruit,
.pagelink li.contact {
  width: calc(50% - 20px);
}

.pagelink li.recruit a,
.pagelink li.contact a {
  aspect-ratio: 600 / 200;
}

.pagelink li.casestudy_01 a {
  background: url(assets/img/common/bnr_case01.jpg) no-repeat center / cover;
}

.pagelink li.casestudy_02 a {
  background: url(assets/img/common/bnr_case02.jpg) no-repeat center / cover;
}

.pagelink li.casestudy_03 a {
  background: url(assets/img/common/bnr_case03.jpg) no-repeat center / cover;
}

.pagelink li.recruit a {
  background: url(assets/img/common/bnr_recruit.jpg) no-repeat center / cover;
}

.pagelink li.contact a {
  background: url(assets/img/common/bnr_contact.jpg) no-repeat center / cover;
}

.pagelink li.current a {
  opacity: .5;
}

.pagelink-recruit ul {
  margin-bottom: 160px;
  justify-content: center;
  gap: 24px;
}

.pagelink-recruit li {
  width: calc(50% - 30px);
}

.pagelink-recruit li a {
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  border-radius: 60px;
  color: var(--color-white);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.pagelink-recruit li a::before {
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(to right, #DDBB00, #FF7700);
  opacity: 1;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.pagelink-recruit li a::after {
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(to right, #FF7700, #FF0046);
  opacity: 0;
  transition: opacity 0.6s ease;
  content: "";
  z-index: -1;
}

.pagelink-recruit li a span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.pagelink-recruit li a span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
  content: "";
}

.pagelink-recruit li a:hover {
  opacity: 1;
}
.pagelink-recruit li a:hover::after {
  opacity: 1;
}

.pagelink-recruit li a:hover span::after {
  right: -10px;
}

@media (max-width: 1240px) {
  .pagelink ul {
    gap: 40px 16px;
  }

  .pagelink li a {
    font-size: 1.9rem;
    line-height: 1.3
  }
}

@media (max-width: 767px) {
  .pagelink ul {
    margin-bottom: 100px;
    gap: 20px;
  }

  .pagelink li a {
    font-size: 2rem;
    line-height: 1.3
  }

  .pagelink li.casestudy_01,
  .pagelink li.casestudy_02,
  .pagelink li.casestudy_03,
  .pagelink li.recruit,
  .pagelink li.contact {
    width: 100%;
  }

  .pagelink li.recruit {
    margin-top: 20px;
  }

  .pagelink li a span {
    width: 20px;
    height: 20px;
  }

  .pagelink li a span::after {
    width: 15px;
    height: 15px;
  }

  .pagelink-recruit ul {
    margin-bottom: 100px;
    gap: 20px;
  }

  .pagelink-recruit li {
    width: 100%
  }

  .pagelink-recruit li a {
    font-size: 2rem;
  }

  .pagelink-recruit li a span {
    width: 16px;
    height: 16px;
  }

  .pagelink-recruit li a span::after {
    width: 12px;
    height: 12px;
  }
}

/* archive
-------------------------------------------------------------- */
#sv.info h1 .en {
  color: var(--color-lightgreen);
}

#sv.info h1 .jp {
  color: var(--color-darkgray);
}

.categoryLink {
  margin-bottom: 200px;
  background: var(--color-palegray);
}

.categoryLink ul {
  padding: 50px 0;
  justify-content: center;
  gap: 20px;
}

.categoryLink li a {
  display: block;
  padding: 8px 10px;
  width: 280px;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  line-height: 1;
}

.categoryLink li.current a {
  opacity: .25;
}

.categoryLink li.information a {
  background: var(--color-red);
}

.categoryLink li.news a {
  background: var(--color-blue);
}

.categoryLink li.recruits a {
  background: var(--color-green);
}

#infoList {
  margin-bottom: 150px;
}

#infoList h2 {
  margin-bottom: 100px;
  text-align: center;
  color: var(--color-green);
  font-size: 3.6rem;
  font-weight: 100;
}

#infoList ul {
  border-top: 1px solid var(--color-gray);
}

#infoList li {
  border-bottom: 1px solid var(--color-gray);
}

#infoList li a {
  position: relative;
  padding: 50px 20px;
  align-items: center;
}

#infoList li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 15px;
  height: 15px;
  border-right: 1px solid #00B7A8;
  border-bottom: 1px solid #00B7A8;
  transform: rotate(-45deg);
  content: '';
}

#infoList li .date {
  width: 150px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

#infoList li .cat {
  padding: 5px 10px;
  color: var(--color-white);
  width: 164px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

#infoList li .cat.information {
  background: var(--color-red);
}

#infoList li .cat.news {
  background: var(--color-blue);
}

#infoList li .cat.recruit {
  background: var(--color-green);
}

#infoList li .ttl {
  display: -webkit-box;
  padding: 0 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 344px);
}

#infoList li.nopost {
  padding: 50px 20px;
}

@media (max-width: 767px) {
  .categoryLink {
    margin-bottom: 50px;
  }

  .categoryLink ul {
    padding: 30px 0;
    gap: 15px;
  }

  .categoryLink li a {
    width: 280px;
    font-size: 1.8rem;
  }

  #infoList {
    margin-bottom: 100px;
  }

  #infoList h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }

  #infoList li a {
    justify-content: flex-start;
    padding: 30px 20px 30px 10px;
  }

  #infoList li a::after {
    right: 10px;
  }

  #infoList li .date {
    width: 120px;
    font-size: 1.7rem;
  }

  #infoList li .cat {
    width: 140px;
    font-size: 1.4rem;
  }

  #infoList li .ttl {
    padding: 10px 0 0;
    width: 100%;
  }

  #infoList li.nopost {
    padding: 30px 20px 30px 10px;
  }

}

/* single
-------------------------------------------------------------- */
#sv.infoSingle h1 {
  color: var(--color-green);
  text-align: left;
  font-size: 5rem;
  font-weight: 300;
}

.infoArea {
  margin-bottom: 200px;
  padding: 25px 0;
  background: var(--color-palegray);
}

.infoArea .container {
  justify-content: flex-end;
  gap: 15px;
}

.infoArea .date {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}

.infoArea ul {
  justify-content: flex-end;
  gap: 10px;
}

.infoArea li {
  padding: 4px 10px;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  line-height: 1;
}

.infoArea li.information {
  background: var(--color-red);
}

.infoArea li.news {
  background: var(--color-blue);
}

.infoArea li.recruits {
  background: var(--color-green);
}

#infoSingle {
  margin-bottom: 200px;
}

@media (max-width: 767px) {
  #sv.infoSingle h1 {
    font-size: 1.8rem;
  }

  .infoArea {
    margin-bottom: 50px;
    padding: 15px 0;
  }

  .infoArea .date {
    font-size: 1.4rem;
  }

  .infoArea li {
    font-size: 1.3rem;
  }

  #infoSingle {
    margin-bottom: 100px;
  }
}

/* ページネーション
-------------------------------------------------------------- */
.pagination {
  padding-bottom: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A4A4A4;
  line-height: 1;
}

.pagination__list {
  display: none;
}

.pagination__item {
  margin: 0;
}

.pagination__item--current {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 .6em;
  color: #22AADD;
  text-decoration: none;
  text-align: center;
  background: #000;
  border-radius: 1em;
  font-size: 3.2rem;
  font-weight: 300;
  width: 50px;
  height: 50px;
  transition: all 0.2s;
}

.pagination__item a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 .6em;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: var(--color-palegray);
  border-radius: 1em;
  font-size: 3.2rem;
  font-weight: 300;
  width: 50px;
  height: 50px;
  line-height: 1;
  transition: all 0.2s;
}

.pagination__item a:hover {
  opacity: 1;
  color: #22AADD;
  background: #000;
}

.pagination__pos {
  order: 2;
  margin: 0 1em;
  padding: 0.5em;
}

.pagination__btn--prev,
.pagination__btn--next,
.pagination__btn--first,
.pagination__btn--last {
  box-sizing: border-box;
  display: block;
  margin: 0 1em;
  text-decoration: none;
  text-align: center;
  width: 10px;
  transition: all 0.2s;
}

.pagination__btn--prev:hover,
.pagination__btn--next:hover,
.pagination__btn--first:hover,
.pagination__btn--last:hover {
  color: #FFF;
  background: #FFDEF5;
  border-color: #FFDEF5;
}

.pagination__btn--first,
.pagination__btn--last {
  display: none;
}

@media (min-width: 520px) {
  .pagination__list {
    order: 2;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .pagination__pos {
    display: none;
  }

  .pagination__btn--prev {
    margin-right: 1.14em;
    width: 50px;
  }

  .pagination__btn--next {
    margin-left: 1.14em;
    width: 50px;
  }

}

@media (min-width: 960px) {
  .pagination__list {
    order: 3;
  }

  .pagination__btn--prev {
    order: 2;
  }

  .pagination__btn--next {
    order: 4;
  }

  .pagination__btn--first {
    order: 1;
    display: block;
    margin: 0 .6em;
    width: 50px;
  }

  .pagination__btn--last {
    order: 5;
    display: block;
    margin: 0 .6em;
    width: 50px;
  }
}


/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  background: var(--color-darkgreen);
  color: var(--color-white);
  text-align: center;
}

footer .tel {
  padding: 24px 0 6px;
  font-size: 1.9rem;
  line-height: 1;
}

footer .policy a {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1rem;
  text-decoration: underline;
}

footer .policy a:hover {
  text-decoration: none;
}

footer .copy {
  padding: 8px;
  background: var(--color-darkgray);
  font-size: 1rem;
  line-height: 1;
}

/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  width: 48px;
  cursor: pointer;
  z-index: 999;
}

@media (max-width: 767px) {
  footer .tel {
    font-size: 2rem;
  }

  #Pagetop {
    bottom: 2%;
    width: 40px;
  }
}

/* 404
-------------------------------------------------------------- */
#errormsg {
  padding: 100px 0;
}

#errormsg p {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #errormsg {
    padding: 60px 0 150px;
  }

  #errormsg p {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: left;
  }

  #errormsg .btnMore {
    text-align: center;
  }
}