@charset "UTF-8";
/***************************************************************************
レスポンシブデザインのブレイクポイント設定
スマートフォン or  タブレット or パソコン 
***************************************************************************/
.sp,
.tab,
.pc {
  display: none;
}

/*スマートフォン*/
@media screen and (max-width: 767.9px) {
  .sp {
    display: block;
  }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}
/*パソコン*/
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
  .pc .inner {
    max-width: 960px;
    margin: 0 auto;
  }
}
/*********************************
color
*********************************/
:root {
  --color-bg-base:#f3f3e5;
  --color-bg-base-dark:#e4e4cc;
  --color-dark-gray:#525252;
  --color-light-pink:#E6A8C1;
  --color-light-pink-dark:#d17a95;
  --color-light-orange:#F0C89E;
  --color-light-orange-dark:#d99a6f;
  --color-light-yellow:#F5DC7D;
  --color-light-yellow-dark:#c6a645;
  --color-light-green:#B9D7B0;
  --color-light-green-dark:#74a769;
  --color-light-blue:#8CC0E0;
  --color-light-blue-dark:#5993b7;
  --link-hover-filter:contrast(125%);
  --radius-XL:46px;
  --radius-L:24px;
  --radius-M:18px;
  --radius-S:10px;
  --radius-XS:5px;
  --transition-speed-slowly:0.5s;
  --transition-speed-natural:0.3s;
  --transition-speed-quick:0.1s;
  --scale-L:scale(1.05);
  --space-XXL:120px;
  --space-XL:60px;
  --space-L:40px;
  --space-M:24px;
  --space-S:12px;
  --space-XS:6px;
}

/*********************************
base
*********************************/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  color: var(--color-dark-gray);
  width: 100%;
  height: 100%;
  background: var(--color-bg-base);
}

body.lock-scroll {
  overflow: hidden;
  /* スクロールを禁止 */
}

body.no-scroll {
  overflow: hidden;
  height: 100vh; /* モバイルのスクロール問題対策 */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.1em;
  line-height: 1em;
}

h2 {
  font-size: 4rem;
}
@media screen and (max-width: 767.9px) {
  h2 {
    font-size: 3rem;
  }
}
h2 {
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: var(--space-M);
}

h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 767.9px) {
  h3 {
    font-size: 2.2rem;
  }
}
h3 {
  font-weight: bold;
  letter-spacing: 0.1em;
}

h4 {
  font-size: 2.8rem;
}
@media screen and (max-width: 767.9px) {
  h4 {
    font-size: 1.8rem;
  }
}
h4 {
  font-weight: bold;
  letter-spacing: 0.1em;
}

.emp-item {
  width: 100%;
  max-width: 886px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11%;
  position: relative;
  padding-bottom: 5%;
  height: 60px;
}
.emp-item img.emp {
  position: absolute;
  bottom: -40px;
  z-index: 1;
  width: 180px;
}
@media screen and (max-width: 767.9px) {
  .emp-item img.emp {
    width: 130px;
  }
}
.emp-item img.emp.left {
  left: 6%;
}
@media screen and (max-width: 767.9px) {
  .emp-item img.emp.left {
    left: 1%;
  }
}
.emp-item img.emp.left {
  transform: rotate(-10deg);
}
.emp-item img.emp.right {
  right: 6%;
}
@media screen and (max-width: 767.9px) {
  .emp-item img.emp.right {
    right: 1%;
  }
}
.emp-item img.emp.right {
  transform: rotate(10deg);
}

h3 {
  font-weight: bold;
  font-size: 3.2rem;
}
@media screen and (max-width: 767.9px) {
  h3 {
    font-size: 2.2rem;
  }
}

p {
  text-align: justify;
  line-height: 1.5em;
}

dt,
dd {
  line-height: 1.3em;
}

.center {
  text-align: center;
}

/***** form *****/
input[type=text],
input[type=date],
input[type=email],
input[type=tel] {
  border-radius: var(--radius-XS);
  border: 1px solid var(--color-dark-gray);
  padding: 10px;
}

@media screen and (min-width: 1025px) {
  input[type=text],
  input[type=email] {
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  input[type=text],
  input[type=email] {
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  input[type=tel] {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  input[type=tel] {
    width: 100%;
  }
}

input[type=radio] {
  margin: -4px 5px 0 0px;
}

select:hover {
  cursor: pointer;
}

.codedropz-upload-handler {
  border: none !important;
}

.codedropz-upload-container {
  border-radius: var(--radius-XS);
  border: 1px dashed var(--color-dark-gray);
  padding: var(--space-M);
  background: var(--color-bg-base);
}
.codedropz-upload-container h3 {
  font-size: 1.8rem;
  line-height: 1.2em;
  margin: 0;
}

.codedropz-upload-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-S);
}

.cd-upload-btn {
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--color-light-orange-dark);
}

textarea {
  border-radius: var(--radius-XS);
  border: 1px solid var(--color-dark-gray);
  padding: 10px;
  width: 100%;
  height: 150px;
}

::-moz-placeholder {
  color: #cccccc;
}

::placeholder {
  color: #cccccc;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #cccccc;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #cccccc;
}

/*********************************
header
*********************************/
header {
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

header .top-menu-wrap nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

header.pc.tab {
  height: 90px;
}
header.pc.tab .inner {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1050px;
}
header.pc.tab h1 {
  width: 22%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.pc.tab h1 a {
  display: flex;
  justify-content: center;
}
header.pc.tab h1 img {
  max-width: 185px;
  width: 95%;
  height: auto;
}
header.pc.tab .top-menu-wrap {
  margin-left: auto;
  width: 77%;
  height: 100%;
  display: flex;
  align-items: center;
}
header.pc.tab .top-menu-wrap nav {
  height: 45px;
  width: 100%;
}
header.pc.tab .top-menu-wrap nav ul {
  width: 100%;
  height: 100%;
  font-size: clamp(0.9rem, 1.2vw, 1.6rem);
  letter-spacing: 0.1em;
  font-weight: bold;
  display: flex;
  flex-direction: row;
}
header.pc.tab .top-menu-wrap nav ul li {
  display: table;
  width: calc(20% - 10px);
  margin: 0 5px;
  height: 100%;
}
header.pc.tab .top-menu-wrap nav ul li a,
header.pc.tab .top-menu-wrap nav ul li.drop-down div.btn {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: var(--radius-XS);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  transition: var(--transition-speed-natural);
  box-shadow: 2px 2px 5px var(--color-bg-base-dark);
}
header.pc.tab .top-menu-wrap nav ul li a:hover,
header.pc.tab .top-menu-wrap nav ul li.drop-down div.btn:hover {
  cursor: pointer;
  background: var(--color-bg-base);
}
header.pc.tab .top-menu-wrap nav ul li.drop-down {
  position: relative;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu {
  display: none;
  transition: 0.2s;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down:hover .list-menu {
  display: block;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu {
  position: absolute;
  left: 0;
  top: 45px;
  min-width: 100%;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu.biz {
  width: 240px;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu.about {
  width: 130px;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu.rec {
  width: 170px;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu.bene {
  width: 180px;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down div.list-menu div a {
  display: block;
  width: 100%;
  height: 100%;
  padding: var(--space-S);
  text-align: left;
  border-radius: 0;
  border-top: 1px solid var(--color-bg-base-dark);
  border-right: 1px solid var(--color-bg-base-dark);
  border-left: 1px solid var(--color-bg-base-dark);
}
header.pc.tab .top-menu-wrap nav ul li.drop-down div.list-menu div:first-of-type a {
  border-radius: var(--radius-XS) var(--radius-XS) 0 0;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down div.list-menu div:last-of-type a {
  border-radius: 0 0 var(--radius-XS) var(--radius-XS);
  border-bottom: 1px solid var(--color-bg-base-dark);
}
header.pc.tab .top-menu-wrap .list-menu:hover {
  display: block;
}

header.sp {
  height: 60px;
  width: 100%;
}
header.sp h1 {
  position: relative;
  z-index: 9999;
  width: 50%;
  height: 100%;
}
header.sp h1 img {
  max-width: 120px;
  width: 95%;
  height: auto;
  margin-top: 12px;
  margin-left: 12px;
}
header.sp #hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
  margin: 0 0 0 auto;
  height: 42px;
  width: 42px;
  background: linear-gradient(65deg, rgba(209, 122, 149, 0.9), rgba(245, 220, 125, 0.9));
  border-radius: 22px;
}
header.sp #hamburger .icon span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 1px;
  background-color: rgba(26, 41, 92, 0.8);
  border-radius: 3px;
  transition: ease 0.35s;
}
header.sp #hamburger .icon span:nth-of-type(1) {
  top: 16px;
}
header.sp #hamburger .icon span:nth-of-type(2) {
  bottom: 16px;
}
header.sp #hamburger .close span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 20px;
}
header.sp #hamburger .close span:nth-of-type(2) {
  transform: rotate(-45deg);
  top: 20px;
}
header.sp .hbg-menu-list {
  padding-top: 60px;
  transition: ease 0.2s;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(217, 153, 111, 0.1);
  backdrop-filter: blur(5px);
  overflow-x: scroll;
}
header.sp .hbg-menu-list.slide {
  left: 0;
  opacity: 1;
}
header.sp .hbg-menu-list > nav > ul.biz {
  margin: 0 auto 10px auto;
  padding: 0 20px 5px 14px;
  width: 96%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-S);
}
header.sp .hbg-menu-list > nav > ul.biz ul {
  padding: 0;
}
header.sp .hbg-menu-list > nav > ul.hf {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto;
  gap: 5px;
}
header.sp .hbg-menu-list > nav > ul.hf > li {
  width: calc(50% - 7px);
  margin-left: 0.5%;
  margin-right: 0.5%;
}
header.sp .hbg-menu-list > nav > ul > li {
  margin: 0 0 7px 0;
  font-weight: bold;
}
header.sp .hbg-menu-list > nav > ul > li > p {
  margin: 10px;
}
header.sp .hbg-menu-list > nav > ul > li > a {
  display: block;
  padding: 10px 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-XS);
  box-shadow: 0 0 7px rgba(240, 200, 158, 0.7019607843);
}
header.sp .hbg-menu-list > nav > ul > li > p {
  margin: 0;
  padding: 10px 0;
  text-align: center;
}
header.sp .hbg-menu-list > nav > ul > li > ul {
  margin: 0;
  padding: 7px 10px 0 10px;
  text-align: center;
}
header.sp .hbg-menu-list > nav > ul > li > ul > li {
  margin: 0 0 7px 0;
  text-align: center;
}
header.sp .hbg-menu-list > nav > ul > li > ul > li > a {
  display: block;
  padding: 12px 0;
  background: #ffffff;
  border-radius: var(--radius-XS);
  box-shadow: 0 0 7px rgba(240, 200, 158, 0.7019607843);
}

/*********************************
Instagramアイコン
*********************************/
.instagram_icon a {
  display: inline-block;
  position: relative;
}
.instagram_icon a img {
  width: 45px;
  margin: 5px;
  height: auto;
}
.instagram_icon a .normal {
  display: block;
}
.instagram_icon a .hover {
  display: none;
}
.instagram_icon a:hover .normal {
  display: none;
}
.instagram_icon a:hover .hover {
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.instagram_icon.smafo {
  text-align: center;
}

/***************************************************************************
404error
***************************************************************************/
#e404 {
  padding: 18% 2% 0 2%;
  text-align: center;
}
#e404 h2 {
  margin-bottom: 3%;
}
#e404 p {
  text-align: center;
}
#e404 p a {
  display: inline-block;
  position: relative;
  margin: 5% auto;
  padding: 15px 15px 15px 35px;
  color: #ffffff;
  border-radius: 5px;
  background: #555555;
}
#e404 p a::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -6px;
  transform: rotate(-135deg);
}

/*********************************
all page
*********************************/
.page-link {
  position: absolute;
  top: -100px;
  width: 100%;
}

/************/
.cts-inner {
  margin: 0 auto;
  padding: 0 var(--space-M) var(--space-XXL) var(--space-M);
}
@media screen and (min-width: 1025px) {
  .cts-inner {
    max-width: 1050px;
  }
}
@media screen and (max-width: 767.9px) {
  .cts-inner {
    padding: 0 var(--space-S) var(--space-XL) var(--space-S);
  }
}
.cts-inner .inner-1140 {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.cts-inner .inner-886 {
  width: 100%;
  max-width: 886px;
  margin: 0 auto;
}
.cts-inner .inner-760 {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.cts-inner .inner-580 {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.cts-inner p {
  line-height: 1.5em;
}

.button {
  margin-top: var(--space-M);
  text-align: center;
  font-weight: bold;
}
.button a {
  line-height: 1em;
  display: inline-block;
  position: relative;
  z-index: 10;
  padding: var(--space-M) var(--space-L) var(--space-M) var(--space-M);
  border-radius: var(--radius-XL);
  color: var(--color-dark-gray);
  background: linear-gradient(90deg, var(--color-light-orange), var(--color-light-yellow));
  overflow: hidden;
  transition: var(--transition-speed-slowly);
}
@media screen and (min-width: 1025px) {
  .button a:hover {
    transform: var(--scale-L);
  }
}
.button a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-light-green), var(--color-light-blue));
  opacity: 0;
  transition: var(--transition-speed-slowly);
  transform: var(--transition-speed-slowly);
}
@media screen and (min-width: 1025px) {
  .button a:hover::before {
    opacity: 1;
  }
}
.button a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px var(--color-dark-gray);
  border-right: solid 2px var(--color-dark-gray);
  position: absolute;
  top: 50%;
  right: 23px;
  z-index: 9;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: 0.5s;
}

/*********************************
top page / home.php
*********************************/
.top-visual-xo {
  width: 100%;
  height: auto;
  mask-image: url(../images/mask-mainvisual.svg);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  /* Chrome, Safari用 */
  -webkit-mask-image: url(../images/mask-mainvisual.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  overflow: hidden;
}
.top-visual-xo .swiper-button-next,
.top-visual-xo .swiper-button-prev {
  color: rgba(255, 255, 255, 0.8);
}
.top-visual-xo .swiper-pagination {
  bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .top-visual-xo .swiper-pagination {
    bottom: 25px;
  }
}
.top-visual-xo .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.8);
}

.top-visual {
  width: 100%;
  height: auto;
  mask-image: url(../images/mask-mainvisual.svg);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  /* Chrome, Safari用 */
  -webkit-mask-image: url(../images/mask-mainvisual.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  overflow: hidden;
}
.top-visual img {
  width: 100%;
}

.top-info {
  margin-top: var(--space-XXL);
}
@media screen and (max-width: 767.9px) {
  .top-info {
    margin-top: var(--space-XL);
  }
}
.top-info dl {
  display: flex;
  flex-direction: column;
  width: 98%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1em;
  background: #ffffff;
  border-radius: var(--radius-M);
}
@media screen and (max-width: 767.9px) {
  .top-info dl {
    width: 100%;
  }
}
.top-info dl {
  text-align: center;
}
.top-info dt {
  font-weight: bold;
  font-size: 1.5em;
}
@media screen and (max-width: 767.9px) {
  .top-info dt {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 767.9px) {
  .top-info dd {
    font-size: 1.2rem;
  }
}
.top-info dd p {
  text-align: center;
}

.top-business div.tops {
  width: 100%;
  position: relative;
}
.top-business div.tops img {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.top-business div.main {
  padding-bottom: 10%;
}
.top-business div.main .cts-inner {
  padding-top: 0;
}

.top-business .biz-list {
  display: flex;
  align-items: stretch;
  gap: var(--space-M);
}
@media screen and (max-width: 767.9px) {
  .top-business .biz-list {
    flex-direction: column;
  }
}
.top-business .biz-list .biz-item {
  width: calc((100% - var(--space-M) * 2) / 3);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .top-business .biz-list .biz-item {
    width: 100%;
  }
}
.top-business .biz-list .biz-item a {
  flex-grow: 1;
  transition: 0.3s;
  background-color: #ffffff;
  border-radius: var(--radius-XL) var(--radius-XL) var(--radius-S) var(--radius-S);
  padding: var(--space-M);
}
@media screen and (min-width: 1025px) {
  .top-business .biz-list .biz-item a:hover {
    transform: var(--scale-L);
  }
}
.top-business .biz-list .biz-item .biz-img {
  text-align: center;
}
.top-business .biz-list .biz-item .biz-img img {
  height: 180px;
}
@media screen and (max-width: 767.9px) {
  .top-business .biz-list .biz-item .biz-img img {
    height: 150px;
  }
}
.top-business .biz-list .biz-item .biz-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-S);
}
.top-business .biz-list .biz-item h4 {
  position: relative;
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 1em;
  border-radius: var(--radius-XL);
  padding: var(--space-M);
  background: var(--color-bg-base);
}
.top-business .biz-list .biz-item h4::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px var(--color-light-yellow);
  border-right: solid 2px var(--color-light-orange);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  margin-right: var(--space-M);
  transform: rotate(45deg);
  transition: 0.2s;
}
.top-business .biz-list .biz-item h5 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-bg-base-dark);
  text-align: center;
  padding: 0 5% 3% 5%;
  border-bottom: 1px dashed var(--color-bg-base-dark);
}
.top-business .biz-list .biz-item p {
  font-size: 1.6rem;
}
.top-business .biz-list .biz-item p.biz-t {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.top-message {
  margin-top: -10%;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-message {
    padding-bottom: 7%;
  }
}
.top-message .bg {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  mask-image: url(../images/mask-top-message.svg);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  /* Chrome, Safari用 */
  -webkit-mask-image: url(../images/mask-top-message.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: none;
  overflow: hidden;
}
.top-message .bg img {
  width: 100%;
  z-index: 2;
}
.top-message div.text-wrap {
  position: absolute;
  bottom: 15%;
  left: 15%;
  z-index: 10;
  text-align: center;
  width: 53%;
  max-width: 500px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top-message div.text-wrap {
    position: absolute;
    bottom: 2%;
    left: 0;
    z-index: 10;
    text-align: center;
    padding: 0 2%;
    width: 60%;
    max-width: 500px;
  }
}
@media screen and (max-width: 767.9px) {
  .top-message div.text-wrap {
    position: static;
    padding: 0 3%;
    margin-top: -15%;
    width: 100%;
    height: auto;
  }
}
.top-message div.text-wrap div.text-inner {
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)); /* Safari対応 */
  backdrop-filter: blur(10px);
  border-radius: var(--radius-M);
  padding: 2em;
}
.top-message div.text-wrap h2 img {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top-message div.text-wrap h2 img {
    max-width: 260px;
  }
}
.top-message div.text-wrap h2 img {
  height: auto;
}
.top-message div.text-wrap p {
  margin-top: 1em;
  text-align: center;
}

.top-benefits .cts-inner {
  padding-top: var(--space-XL);
  padding-bottom: var(--space-XL);
}
@media screen and (max-width: 767.9px) {
  .top-benefits .cts-inner {
    padding-top: var(--space-L);
    padding-bottom: var(--space-L);
  }
}

.top-benefits .bene-list {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: var(--space-M);
}
@media screen and (max-width: 767.9px) {
  .top-benefits .bene-list {
    flex-direction: column;
  }
}
.top-benefits .bene-list .bene-item {
  display: static;
  z-index: 10;
  width: calc((100% - var(--space-M)) / 2);
}
@media screen and (max-width: 767.9px) {
  .top-benefits .bene-list .bene-item {
    width: 100%;
  }
}
.top-benefits .bene-list .bene-item a,
.top-benefits .bene-list .bene-item .bene-item-inner {
  padding: var(--space-M);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-M);
  transition: 0.3s;
  background-color: #ffffff;
}
.top-benefits .bene-list .bene-item a {
  position: relative;
  padding-right: 3em;
}
.top-benefits .bene-list .bene-item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.5em;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  rotate: -45deg;
  border-right: 2px solid var(--color-light-green);
  border-bottom: 2px solid var(--color-light-blue);
}
@media screen and (min-width: 1025px) {
  .top-benefits .bene-list .bene-item a:hover {
    transform: var(--scale-L);
  }
}
.top-benefits .bene-list .bene-item h4 {
  font-weight: bold;
  font-size: 2.2rem;
  padding-bottom: 10px;
  border-radius: 2px;
  position: relative;
}
.top-benefits .bene-list .bene-item h4::first-letter {
  color: var(--color-light-green-dark);
}
.top-benefits .bene-list .bene-item a > div,
.top-benefits .bene-list .bene-item .bene-item-inner > div {
  padding: var(--space-XS) var(--space-XS) 0 var(--space-XS);
}
.top-benefits .bene-list .bene-item h5 {
  font-weight: 600;
  font-size: 1.2em;
}
.top-benefits .bene-list .bene-item ul {
  margin-top: var(--space-S);
  font-size: 1.3rem;
  line-height: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-XS);
}
.top-benefits .bene-list .bene-item ul li {
  padding: 0.3em 0;
}
.top-benefits .bene-list .bene-item ul li:not(:last-child) {
  display: inline-block;
  position: relative;
  padding: 0.3em 0.5em 0.3em 1.2em;
  background: var(--color-bg-base);
  border-radius: var(--radius-XS);
}
.top-benefits .bene-list .bene-item ul li:not(:last-child):before {
  position: absolute;
  left: 0.6em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--color-dark-gray);
  border-radius: 50%;
  display: inline-block;
}
.top-benefits .bene-list .bene-item .study-list,
.top-benefits .bene-list .bene-item .training-list {
  line-height: 1.5em;
}
.top-benefits .bene-list .bene-item .study-list span,
.top-benefits .bene-list .bene-item .training-list span {
  display: inline-block;
}

.top-recruit .rec-list {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: var(--space-M);
}
.top-recruit .rec-list .rec-item {
  display: static;
  z-index: 10;
  width: calc((100% - var(--space-M)) / 2);
}
@media screen and (max-width: 767.9px) {
  .top-recruit .rec-list .rec-item {
    width: 100%;
  }
}
.top-recruit .rec-list .rec-item a {
  padding: var(--space-M) var(--space-L) var(--space-M) var(--space-M);
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-M);
  transition: var(--transition-speed-natural);
  background-color: #ffffff;
}
.top-recruit .rec-list .rec-item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.5em;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  rotate: -45deg;
  border-right: 2px solid var(--color-light-green);
  border-bottom: 2px solid var(--color-light-blue);
}
@media screen and (min-width: 1025px) {
  .top-recruit .rec-list .rec-item a:hover {
    transform: var(--scale-L);
  }
}
.top-recruit .rec-list .rec-item h4 {
  font-weight: bold;
  font-size: 2.2rem;
  padding-bottom: 10px;
  border-radius: 2px;
  position: relative;
}
.top-recruit .rec-list .rec-item h4::first-letter {
  color: var(--color-light-green-dark);
}
.top-recruit .rec-list .rec-item h4::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 20px;
  height: 3px;
  border-radius: 2px;
}

.top-entry div.tops {
  width: 100%;
  position: relative;
}
.top-entry div.tops img {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.top-entry .cts-inner {
  background: rgba(185, 215, 176, 0.2666666667);
  padding-bottom: 0;
  padding-block: var(--space-XL);
  border-radius: var(--radius-M);
}
.top-entry .entry-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-L);
}
@media screen and (max-width: 767.9px) {
  .top-entry .entry-steps {
    flex-direction: column;
  }
}
.top-entry .entry-steps .ent-item {
  width: calc((100% - var(--space-L) * 2) / 3);
  position: relative;
  padding: var(--space-M);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border-radius: var(--radius-M);
}
@media screen and (max-width: 767.9px) {
  .top-entry .entry-steps .ent-item {
    width: 100%;
  }
}
.top-entry .entry-steps .ent-item .icon {
  width: 100%;
}
.top-entry .entry-steps .ent-item .icon h4 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 10px;
}
.top-entry .entry-steps .ent-item .icon h4::first-letter {
  color: var(--color-light-green-dark);
}
.top-entry .entry-steps .ent-item:not(:last-child) .text::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 768px) {
  .top-entry .entry-steps .ent-item:not(:last-child) .text::after {
    top: 50%;
    right: -24px;
    margin-top: -10px;
    rotate: -135deg;
  }
}
@media screen and (max-width: 767.9px) {
  .top-entry .entry-steps .ent-item:not(:last-child) .text::after {
    bottom: -24px;
    left: 50%;
    rotate: -45deg;
  }
}
.top-entry div.bottoms {
  width: 100%;
  position: relative;
}
.top-entry div.bottoms img {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.top-blog .cts-inner {
  padding-top: var(--space-XL);
}
.top-blog .blog-new-post {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-M);
}
.top-blog .blog-post {
  width: calc((100% - var(--space-M) * 2) / 3);
}
@media screen and (max-width: 767.9px) {
  .top-blog .blog-post {
    width: 100%;
  }
}
.top-blog .blog-post a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-XL) var(--radius-XL) var(--radius-S) var(--radius-S);
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition-speed-natural);
}
@media screen and (min-width: 1025px) {
  .top-blog .blog-post a:hover {
    transform: var(--scale-L);
  }
}
.top-blog .thumbnail {
  width: 100%;
  aspect-ratio: 10/5.25;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-blog .thumbnail img {
  width: 100%;
  height: auto;
}
.top-blog .text {
  position: relative;
  padding: var(--space-M) var(--space-L) var(--space-M) var(--space-M);
}
.top-blog .text::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.5em;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  rotate: -45deg;
  border-right: 2px solid var(--color-light-yellow);
  border-bottom: 2px solid var(--color-light-orange);
}
.top-blog h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.top-blog .update {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.top-blog .update span {
  margin-right: 0.5em;
}
.top-blog .update div {
  display: inline-block;
}
.top-blog .update ul {
  list-style: none;
  display: inline-block;
}
.top-blog .update li {
  display: inline-block;
}
.top-blog .excerpt {
  font-size: 1.4rem;
  line-height: 1.4em;
}

.top-vlog-banner .cts-inner {
  padding-bottom: var(--space-L);
}
.top-vlog-banner .vlog-banners {
  display: flex;
  gap: var(--space-M);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .top-vlog-banner .vlog-banners {
    flex-direction: column;
  }
}
.top-vlog-banner .vlog-banner {
  display: block;
  width: calc((100% - var(--space-M)) / 2);
}
@media (max-width: 768px) {
  .top-vlog-banner .vlog-banner {
    width: 100%;
  }
}
.top-vlog-banner .vlog-banner {
  border-radius: var(--radius-XL) var(--radius-XL) var(--radius-S) var(--radius-S);
  overflow: hidden;
  transition: var(--transition-speed-natural);
}
@media screen and (min-width: 1025px) {
  .top-vlog-banner .vlog-banner:hover {
    transform: var(--scale-L);
  }
}
.top-vlog-banner .vlog-banner img {
  width: 100%;
  height: auto;
}

/*********************************
パンくずリスト
*********************************/
.breadcrumbs {
  font-size: 1rem;
  color: #aaaaaa;
}
@media screen and (max-width: 767.9px) {
  .breadcrumbs {
    padding: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .breadcrumbs {
    padding: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .breadcrumbs {
    padding: 35px;
  }
}
.breadcrumbs a {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  color: #aaaaaa;
}
@media screen and (min-width: 1025px) {
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}
.breadcrumbs a::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #aaaaaa;
  border-right: solid 1px #aaaaaa;
  position: absolute;
  top: 50%;
  right: -9px;
  margin-top: -2px;
  transform: rotate(45deg);
}
.breadcrumbs span {
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .breadcrumbs span {
    display: none;
  }
}

::-webkit-full-page-media,
:future,
:root .breadcrumbs a::after {
  margin-top: -2px;
}

/***************************************************************************
固定ページのタイトル部分
***************************************************************************/
.page-title-wrap {
  width: 100%;
}
.page-title-wrap .page-title-inner {
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .page-title-wrap .page-title-inner {
    max-width: 1025px;
    padding: var(--space-XXL) var(--space-M) var(--space-M) var(--space-M);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024.9px) {
  .page-title-wrap .page-title-inner {
    padding: var(--space-XXL) var(--space-M) var(--space-M) var(--space-M);
  }
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap .page-title-inner {
    padding: var(--space-XL) var(--space-S) var(--space-M) var(--space-S);
  }
}
.page-title-wrap div.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: 100% auto !important;
  background-position: bottom left;
  background-repeat: repeat-y;
}
.page-title-wrap h2 {
  text-shadow: none;
}
.page-title-wrap .page-title {
  width: 100%;
  text-align: left;
}
.page-title-wrap .page-title span.title {
  display: block;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap .page-title span.title {
    font-size: 2rem;
  }
}
.page-title-wrap .page-title span.title span {
  margin: 0;
  padding: 0 0.6em 0 0;
  position: relative;
}
.page-title-wrap .page-title span.title span:last-child {
  margin-right: 0.3em;
}
.page-title-wrap .page-title span.title span::after {
  content: "\f105";
  font-size: 0.5em;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  top: 1em;
}
.page-title-wrap .page-title span.side-title {
  display: block;
  font-size: 2.6rem;
  margin-top: 10px;
  padding-top: 15px;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap .page-title span.side-title {
    font-size: 1.4rem;
    padding-top: 10px;
  }
}
.page-title-wrap .page-title span.side-title {
  position: relative;
}
.page-title-wrap .page-title span.side-title::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 30px;
  height: 3px;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap .page-title span.side-title::after {
    height: 1px;
  }
}
.page-title-wrap .page-title span.side-title::after {
  border-radius: 3px;
}

.page-title-wrap.biz {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
}
.page-title-wrap.biz .page-title-inner {
  position: sticky;
  z-index: 10;
  display: table;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .page-title-wrap.biz .page-title-inner {
    max-width: 1025px;
    padding: 120px 1.5em 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024.9px) {
  .page-title-wrap.biz .page-title-inner {
    padding: 120px 1.5em 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap.biz .page-title-inner {
    padding: 80px 1em 40px;
  }
}
.page-title-wrap.biz h2 {
  text-shadow: none;
}
.page-title-wrap.biz .page-title {
  width: 70%;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
.page-title-wrap.biz .page-title span.title {
  display: block;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap.biz .page-title span.title {
    font-size: 2rem;
  }
}
.page-title-wrap.biz .page-title span.side-title {
  display: block;
  font-size: 2.6rem;
  margin-top: 10px;
  padding-top: 15px;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap.biz .page-title span.side-title {
    font-size: 1.4rem;
    padding-top: 10px;
  }
}
.page-title-wrap.biz .page-title span.side-title {
  position: relative;
}
.page-title-wrap.biz .page-title span.side-title::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 30px;
  height: 3px;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap.biz .page-title span.side-title::after {
    height: 1px;
  }
}
.page-title-wrap.biz .page-title span.side-title::after {
  border-radius: 3px;
}
.page-title-wrap.biz .title-img {
  width: 30%;
  display: table-cell;
  text-align: right;
}
.page-title-wrap.biz .title-img img {
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page-title-wrap.biz .title-img {
    vertical-align: middle;
  }
}

/***************************************************************************
事業内容　page-business.php
***************************************************************************/
.biz-wrapper .cts-block {
  margin: 0 auto;
}
.biz-wrapper .cts-block .biz-list {
  display: grid;
  gap: var(--space-M);
  width: 100%;
}
.biz-wrapper .cts-block .biz-list .biz-item {
  padding: var(--space-M);
  background: #fff;
  border-radius: var(--radius-XL) var(--radius-XL) var(--radius-S) var(--radius-S);
}
.biz-wrapper .cts-block .biz-list .biz-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .biz-wrapper .cts-block .biz-list .biz-item {
    flex-direction: column;
  }
}
.biz-wrapper .cts-block .biz-list .biz-item {
  gap: var(--space-M);
}
.biz-wrapper .cts-block .biz-list .biz-item .thum {
  width: 150px;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .biz-wrapper .cts-block .biz-list .biz-item .thum {
    width: 100%;
    margin: 0 auto;
  }
}
.biz-wrapper .cts-block .biz-list .biz-item .thum {
  position: relative;
}
.biz-wrapper .cts-block .biz-list .biz-item .thum .img {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .biz-wrapper .cts-block .biz-list .biz-item .thum .img {
    flex-direction: row;
  }
}
.biz-wrapper .cts-block .biz-list .biz-item .thum .img {
  gap: var(--space-S);
}
.biz-wrapper .cts-block .biz-list .biz-item .thum .img div {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-XL) var(--radius-XL) var(--radius-S) var(--radius-S);
  background: var(--color-bg-base);
  overflow: hidden;
}
.biz-wrapper .cts-block .biz-list .biz-item .thum .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.biz-wrapper .cts-block .biz-list .biz-item .thum .icon {
  position: absolute;
  top: 5px;
  left: -20px;
  width: 50px;
  height: 0;
  opacity: 0.8;
}
.biz-wrapper .cts-block .biz-list .biz-item .thum .icon img {
  width: 100%;
}
.biz-wrapper .cts-block .biz-list .biz-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-S);
}
.biz-wrapper .cts-block .biz-list .biz-item .text dl {
  border-top: 1px dashed var(--color-bg-base-dark);
  padding-top: var(--space-S);
  display: flex;
  flex-direction: column;
  gap: var(--space-XS);
}
.biz-wrapper .cts-block .biz-list .biz-item .text dl dt {
  position: relative;
  font-size: 2.4rem;
}
@media screen and (max-width: 767.9px) {
  .biz-wrapper .cts-block .biz-list .biz-item .text dl dt {
    font-size: 1.8rem;
  }
}
.biz-wrapper .cts-block .biz-list .biz-item .text dl dt {
  padding-left: 0.5em;
  padding-top: 0.1em;
}
.biz-wrapper .cts-block .biz-list .biz-item .text dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: var(--radius-M);
  background: var(--color-light-orange);
}
.biz-wrapper .cts-block .accomplishment {
  margin-top: 5%;
  padding: 3%;
  border-bottom: 1px solid #b0e3f2;
  padding: 0 0 7% 0;
}
.biz-wrapper .cts-block .accomplishment h4 {
  font-weight: 600;
  font-size: 1.3em;
  margin: 0 0 3% 0;
  padding: 3% 5%;
  color: #fff;
  border-radius: 50px;
  background: rgba(16, 127, 247, 0.8);
}
.biz-wrapper .cts-block .accomplishment h5 {
  font-weight: 600;
  font-size: 1.2em;
}
.biz-wrapper .cts-block ul.accomp-list > li {
  border-radius: 10px 10px 10px 0;
}
.biz-wrapper .cts-block ul.accomp-list li a {
  padding: 5%;
  background: rgba(16, 127, 247, 0.1);
  border-radius: 15px 30px;
  display: block;
  transition: all 0.5s;
}
.biz-wrapper .cts-block ul.accomp-list li a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .biz-wrapper .cts-block ul.accomp-list li a:hover {
    transform: translateY(-0.5em);
    transition: all 0.5s;
  }
}
.biz-wrapper .cts-block ul.accomp-list li .thumb {
  display: flex;
  align-items: center;
  width: 100%;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb div {
  margin: 0 0.5em;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb div:first-child {
  margin-left: 0;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb div:last-child {
  margin-right: 0;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb div img {
  width: 100%;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb .site-icon {
  width: 25%;
  border-radius: 50%;
  overflow: hidden;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb .site-info {
  width: 75%;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb h5 span {
  display: block;
  font-size: 0.5em;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb .url {
  font-size: 0.7em;
  margin: 0;
}
.biz-wrapper .cts-block ul.accomp-list li .thumb .comment {
  font-size: 0.8em;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .biz-wrapper .cts-block ul.accomp-list li .detail {
    width: 100%;
  }
}
.biz-wrapper .cts-block ul.accomp-list li .detail {
  margin: 3% 0 0 0;
  padding: 0 1% 0 3%;
}
.biz-wrapper .cts-block ul.accomp-list li .detail p {
  margin: 0 0 2% 0;
  padding: 0;
}
.biz-wrapper .cts-block ul.accomp-list li .detail ul li {
  display: inline-block;
  margin: 0 3px 5px 0;
  padding: 3px 5px;
  border-radius: 5px;
  font-size: 0.6em;
  color: #fff;
}
.biz-wrapper .cts-block ul.thumb-list {
  display: flex;
  justify-content: center;
  border-radius: 15px 30px;
  margin-top: 0.5em;
}
.biz-wrapper .cts-block ul.thumb-list li {
  width: 49%;
  border-radius: 15px 30px;
  overflow: hidden;
}
.biz-wrapper .cts-block ul.thumb-list li:first-child {
  margin: 0 1% 0 0;
}
.biz-wrapper .cts-block ul.thumb-list li img {
  width: 100%;
}

/***************************************************************************
会社概要　page-about-us.php
***************************************************************************/
.about-us-table {
  margin: 0 auto;
}
.about-us-table dl {
  width: 100%;
  display: table;
  line-height: 0;
  border-radius: var(--radius-S);
}
.about-us-table dl:nth-child(odd) {
  background: #ffffff;
}
.about-us-table dl:nth-child(even) {
  background: rgba(255, 255, 255, 0.4078431373);
}
.about-us-table dl dt {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border: none;
  width: 163px;
  margin: 0;
  padding: 3% 20px;
}
@media screen and (max-width: 767.9px) {
  .about-us-table dl dt {
    padding: 3% 10px;
    width: 100px;
  }
}
.about-us-table dl dd {
  display: table-cell;
  vertical-align: middle;
  border: none;
  margin: 0;
  padding: 3% 20px;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .about-us-table dl dd {
    padding: 3% 10px;
    flex: 1;
  }
}
.about-us-table dl dd .role-item {
  display: flex;
}
.about-us-table dl dd .role-item:last-child {
  margin-bottom: 0;
}
.about-us-table dl dd .role-item .role-title {
  flex: 0 0 130px;
  font-weight: bold;
}
.about-us-table dl dd .role-item .role-name {
  flex: 1;
  color: #555;
}
.about-us-table dl dd .role-item.indent {
  margin-left: 130px;
}
.about-us-table dl dd .role-item.indent .role-title {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .about-us-table dl dd .role-item {
    display: block;
    margin-bottom: 10px;
  }
  .about-us-table dl dd .role-item .role-title {
    display: block;
    margin-bottom: 5px;
  }
  .about-us-table dl dd .role-item .role-name {
    margin-left: 0;
  }
  .about-us-table dl dd .role-item.indent {
    margin-left: 0;
  }
  .about-us-table dl dd .role-item.indent .role-title {
    display: none;
  }
}

.access {
  padding-top: 10%;
}
.access h2 {
  width: 100%;
  text-align: center;
}

.map-wrap {
  margin: 3% auto 0;
}
.map-wrap h3 {
  width: 200px;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 auto;
}
.map-wrap h3 span {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0.5em 1em 0.3em;
  border-radius: 50px;
  border-radius: var(--radius-S) var(--radius-S) 0 0;
  background: linear-gradient(90deg, rgba(240, 200, 158, 0.831372549), rgba(245, 221, 125, 0.8549019608));
}
.map-wrap .map {
  border-radius: var(--radius-S);
  overflow: hidden;
}
.map-wrap .map iframe {
  width: 100%;
}

.local-office {
  margin-top: 10%;
}
.local-office h2 {
  margin-bottom: 3%;
}

/*********************************
タイ現地スタッフリンク
*********************************/
.thai-staff-link {
  text-decoration: underline;
}

.thai-staff-link:hover {
  color: #107ff7;
}

/*********************************
役員紹介ページ
*********************************/
.members-list .member {
  margin: 0 0 5% 0;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .members-list .member {
    min-height: 400px;
  }
}
@media screen and (max-width: 767.9px) {
  .members-list .member {
    flex-direction: column;
  }
}
.members-list .member:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 80;
  background-color: #ffffff;
  border-radius: 150px 30px;
}
@media screen and (max-width: 767.9px) {
  .members-list .member:before {
    border-radius: 100px 30px;
  }
}
.members-list {
  /*役員紹介イラスト*/
}
.members-list .member .img {
  /*illustration comming soon 用*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0f2f1;
  /*似顔絵イラスト用*/
  position: relative;
  z-index: 99;
  order: 2;
  width: 48%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .members-list .member .img {
    order: 1;
    width: 100%;
    min-height: 200px;
    padding: 2em 0;
  }
}
@media screen and (min-width: 768px) {
  .members-list .member .img img {
    position: absolute;
    top: 10%;
    width: 80%;
    max-width: 400px;
  }
}
@media screen and (max-width: 767.9px) {
  .members-list .member .img img {
    position: static;
    z-index: 99;
    width: 70%;
    max-width: 250px;
  }
}
.members-list {
  /*役員紹介テキスト*/
}
.members-list .member .intro {
  /**/
  display: flex;
  flex-direction: column;
  /**/
  position: static;
  z-index: 100;
  order: 1;
  width: 52%;
}
@media screen and (min-width: 768px) {
  .members-list .member .intro {
    margin-top: 2em;
  }
}
@media screen and (max-width: 767.9px) {
  .members-list .member .intro {
    order: 2;
    width: 100%;
    margin-top: -3.5em;
  }
}
.members-list .member .intro h4 {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .members-list .member .intro h4 {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.members-list .member .intro h4 span {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 100px;
  background: rgba(16, 127, 247, 0.8);
}
@media screen and (max-width: 767.9px) {
  .members-list .member .intro h4 span {
    width: 90%;
    padding: 0.5em 0;
  }
}
@media screen and (min-width: 768px) {
  .members-list .member .intro > div {
    width: 120%;
    padding: 0 2em 2em 2em;
  }
}
@media screen and (max-width: 767.9px) {
  .members-list .member .intro > div {
    padding: 0.5em 1em 1em 1em;
  }
}
@media screen and (min-width: 768px) {
  .members-list .member .intro > div > p {
    margin: 15px 0 0 0;
  }
}
@media screen and (max-width: 767.9px) {
  .members-list .member .intro > div > p {
    margin: 10px 0 0 0;
  }
}
.members-list .member .intro .title {
  color: #1db3c4;
  font-weight: 700;
  font-size: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .members-list .member .intro .title {
    font-size: 2rem;
  }
}
.members-list .member .intro .position {
  background-color: rgba(224, 242, 241, 0.9);
  border-radius: 10px;
  padding: 1em 1.2em;
  font-size: 1.35rem;
}
@media screen and (max-width: 1025px) {
  .members-list .member .intro .position {
    max-width: 100%;
  }
}

/*********************************
新入社員紹介ページ ポップアップ式
*********************************/
#staff-wrap .inner-886 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-M);
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .inner-886 {
    gap: var(--space-S);
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .inner-886 {
    gap: var(--space-M);
    justify-content: start;
  }
}
#staff-wrap .popup-item {
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border-radius: 80px 30px;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-item {
    width: calc(50% - 0.38em);
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-item {
    width: calc(33.3333333333% - 0.67em);
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-item:hover {
    cursor: pointer;
  }
}
#staff-wrap .open-popup {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #staff-wrap .open-popup {
    padding: 2em 1em 0 1em;
  }
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .open-popup {
    padding: 2em 1em 0 1em;
    margin: 0 auto;
  }
}
#staff-wrap .open-popup .img img {
  height: auto;
}
@media screen and (min-width: 768px) {
  #staff-wrap .open-popup .img img {
    width: 90%;
  }
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .open-popup .img img {
    width: 90%;
    max-width: 260px;
  }
}
#staff-wrap .open-popup h3 {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .open-popup h3 {
    top: -1.4em;
    padding: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .open-popup h3 {
    top: -1.7em;
    padding: 0.5em;
  }
}
#staff-wrap .open-popup h3 {
  width: 100%;
  border-radius: 30px;
  font-size: 1em;
  color: #ffffff;
  background: rgba(16, 127, 247, 0.8);
}
#staff-wrap .open-popup h3 span {
  margin-right: 0.1em;
  font-size: 3.2rem;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .open-popup h3 span {
    font-size: 2.2rem;
  }
}
#staff-wrap .open-popup h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#staff-wrap .popup-content-wrap {
  display: none; /* デフォルトでは非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}
#staff-wrap .popup-content {
  cursor: default;
  width: 96%; /* 幅を設定 */
  max-width: 900px; /* 最大幅を設定 */
  position: relative;
  background: #ffffff;
  border-radius: 30px 80px;
  margin: 50px auto 20px auto;
  padding: 2em;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content {
    margin: 50px auto 2% auto;
    padding: 1em;
  }
}
#staff-wrap .popup-content .staff-message {
  color: #1db3c4;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content .staff-message {
    padding-right: 0;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .staff-message {
    padding-right: 1.5em;
    font-size: 3rem;
    text-align: center;
  }
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content .pop-inner-wrap {
    margin-top: 1em;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .pop-inner-wrap {
    margin-top: 2em;
    display: flex;
  }
}
#staff-wrap .popup-content .left {
  width: 260px;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content .left {
    margin: 0 auto 1em;
  }
}
#staff-wrap .popup-content .left .img img {
  width: 90%;
  margin: 0 5%;
}
#staff-wrap .popup-content .left .img .name {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 1em;
  width: 100%;
  background: rgba(16, 127, 247, 0.8);
  border-radius: 50px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content .left .img .name {
    margin-top: -1.5em;
    padding: 0.9em 0.5em 0.7em 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .left .img .name {
    margin-top: -1.7em;
    padding: 1.2em 0.5em 0.8em 0.5em;
  }
}
#staff-wrap .popup-content .left .img .name span {
  margin-right: 0.2em;
  font-size: 3.2rem;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content .left .img .name span {
    font-size: 2.2rem;
  }
}
#staff-wrap .popup-content .left .staff-age,
#staff-wrap .popup-content .left .staff-since {
  text-align: center;
  margin: 1% 0 !important;
}
#staff-wrap .popup-content .left .staff-since {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .right {
    flex: 1;
    margin-left: 1em;
  }
}
#staff-wrap .popup-content .right dl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .popup-content .right dl {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .right dl {
    flex-direction: row;
  }
}
#staff-wrap .popup-content .right dl {
  padding: 1em;
  border-radius: 20px 50px 20px 20px;
}
#staff-wrap .popup-content .right dl dt {
  font-size: 1.1em;
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .right dl dt {
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .popup-content .right dl dd {
    flex: 1;
  }
}
#staff-wrap .popup-content .right dl.message {
  flex-direction: column;
}
#staff-wrap .popup-content .right dl.message dt,
#staff-wrap .popup-content .right dl.message dd {
  width: 100%;
}
#staff-wrap .close-popup {
  color: #ccc;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  #staff-wrap .close-popup {
    position: fixed;
    top: 0.23em;
    right: 0.53em;
    font-size: 2.4em;
    line-height: 1em;
  }
}
@media screen and (min-width: 768px) {
  #staff-wrap .close-popup {
    position: absolute;
    top: 0.2em;
    right: 0.8em;
    font-size: 3em;
  }
}
#staff-wrap .close-popup:hover,
#staff-wrap .close-popup:focus {
  text-decoration: none;
  cursor: pointer;
}

/***************************************************************************
採用情報　page-recruitment.php
***************************************************************************/
.occupation-list {
  max-width: 1140px;
  margin: 0 auto;
}
.occupation-list .ocp-item {
  margin: 0 auto 3% auto;
  border-radius: 50px;
}
.occupation-list .ocp-item .ocp-btn {
  display: block;
  text-align: center;
  padding: var(--space-M) var(--space-L);
  margin: 0 auto 0 auto;
  border-radius: var(--radius-S);
  background: linear-gradient(90deg, var(--color-light-green), var(--color-light-blue));
  font-size: 3rem;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-btn {
    font-size: 2rem;
  }
}
.occupation-list .ocp-item .ocp-btn {
  font-weight: bold;
  text-align: left;
  line-height: 1em;
  letter-spacing: 0.2em;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .occupation-list .ocp-item .ocp-btn:hover {
    cursor: pointer;
  }
}
.occupation-list .ocp-item .ocp-btn span.arrow {
  display: flex;
  gap: var(--space-XS);
  align-items: center;
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-btn span.arrow {
    flex-direction: column;
    padding-left: 20px;
  }
}
.occupation-list .ocp-item .ocp-btn span.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-btn span.arrow::before {
    margin-top: -5px;
    width: 10px;
    height: 10px;
  }
}
.occupation-list .ocp-item .ocp-btn span.arrow::before {
  border: 0;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  margin-left: 0px;
  transform: rotate(45deg);
  transition: 0.2s;
}
.occupation-list .ocp-item .ocp-btn.active-btn span.arrow::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 0;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-btn.active-btn span.arrow::before {
    margin-top: 3px;
    width: 10px;
    height: 10px;
  }
}
.occupation-list .ocp-item .ocp-btn.active-btn span.arrow::before {
  border: 0;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  margin-left: 0px;
  transform: rotate(135deg);
  transition: 0.2s;
}
.occupation-list .ocp-item .ocp-btn span.tag {
  background: #fff;
  padding: var(--space-XS) var(--space-S);
  border-radius: var(--radius-L);
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-btn span.tag {
    font-size: 1.6rem;
  }
}
.occupation-list .ocp-item .ocp-btn span.tag.experience {
  background: var(--color-light-yellow);
}
.occupation-list .ocp-item .ocp-detail {
  display: none;
  padding: var(--space-M);
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail {
    padding: var(--space-S);
  }
}
.occupation-list .ocp-item .ocp-detail {
  margin: 0 auto 0 auto;
  border-radius: var(--radius-S);
  background: #ffffff;
}
.occupation-list .ocp-item .ocp-detail h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail h3 {
    font-size: 1.6rem;
  }
}
.occupation-list .ocp-item .ocp-detail h3 span {
  padding: 10px 20px;
  border-radius: 50px;
}
.occupation-list .ocp-item .ocp-detail p {
  padding: 0 20px;
}
.occupation-list .ocp-item .ocp-detail .ocp-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-XS);
}
.occupation-list .ocp-item .ocp-detail .ocp-table dt {
  background: #f3f3e5;
  border-radius: var(--radius-S) var(--radius-XS) var(--radius-XS) var(--radius-S);
  display: table-cell;
  vertical-align: middle;
  padding: 3% 20px;
  width: 163px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dt {
    border-radius: var(--radius-S) var(--radius-S) var(--radius-XS) var(--radius-XS);
    display: block;
    padding: var(--space-S);
    width: 100%;
    text-align: left;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd {
  display: table-cell;
  vertical-align: middle;
  padding: 3% 20px;
  border-radius: 0 100px 100px 0;
  width: calc(100% - 163px);
  line-height: 1.5em;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dd {
    display: block;
    padding: 2% 20px 8% 20px;
    width: 100%;
    border-radius: 0 0 50px 50px;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd .highlight {
  font-weight: bold;
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd a {
  text-decoration: underline;
}
.occupation-list .ocp-item .ocp-detail.active {
  display: block;
}

/***************************************************************************
エントリー　page-entry.php
***************************************************************************/
.entry-form .note {
  border-radius: var(--radius-S) var(--radius-S) 0 0;
  background: #ffffff;
  padding: 5% 5% 0 5%;
}
@media screen and (max-width: 767.9px) {
  .entry-form .note {
    padding: 10% 5% 0 5%;
  }
}
.entry-form .note {
  font-size: 0.9em;
  line-height: 1.5em;
  text-align: justify;
}
.entry-form form {
  padding: 0;
  margin: 0;
  width: 100%;
}
.entry-form dl {
  width: 100%;
  padding: 3% 5% 3% 5%;
}
@media screen and (max-width: 767.9px) {
  .entry-form dl {
    padding: 3% 5% 10% 5%;
  }
}
.entry-form dl {
  border-radius: 0 0 var(--radius-S) var(--radius-S);
  background: #ffffff;
}
.entry-form dt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  width: 100%;
  padding: 3% 0 0 0;
}
@media screen and (max-width: 767.9px) {
  .entry-form dt {
    padding: 3% 0 1% 0;
    width: 100%;
  }
}
.entry-form dt span.req {
  margin-left: 5px;
  padding: 2px 8px 2px 8px;
  border-radius: 20px;
  background: #ff5555;
  font-weight: normal;
  font-size: 1.2rem;
  color: #ffffff;
}
.entry-form dd {
  width: 100%;
  padding: 1% 0 3% 0;
}
@media screen and (max-width: 767.9px) {
  .entry-form dd {
    padding: 1% 0 3% 0;
    width: 100%;
  }
}
.entry-form dd span.notes {
  font-size: 0.8em;
  margin: 0;
  padding: 0;
}
.entry-form dd label {
  margin: 0 10px 0 0;
}
.entry-form dd label input[type=radio] {
  width: 16px;
  height: 16px;
  margin: -2px 0 auto 0 !important;
}
@media screen and (min-width: 1025px) {
  .entry-form dd label:hover {
    cursor: pointer;
  }
}
.entry-form dd .codedropz-upload-handler {
  margin-top: 20px;
  border-radius: 30px !important;
}
.entry-form .personal-info {
  width: 100%;
  height: 260px;
  overflow-x: hidden;
  overflow-y: scroll;
  border-radius: var(--radius-S);
  background: #ffffff;
  margin-top: 10px;
  padding: 5% 3%;
}
@media screen and (max-width: 767.9px) {
  .entry-form .personal-info {
    padding: 10% 3%;
  }
}
.entry-form .personal-info {
  font-size: 0.8em;
}
.entry-form .personal-info h4 {
  margin: 0 0 10px 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.entry-form .personal-info h5 {
  margin: 15px 0 10px 0;
  font-weight: bold;
}
.entry-form .personal-info p {
  padding: 0 10px;
  margin: 0;
}
.entry-form .personal-info p.counter {
  margin-top: 10px;
}
.entry-form .personal-info p.counter span {
  margin-left: -6px;
}
.entry-form .personal-info-check {
  margin: 5% 3% 3% 3%;
  text-align: center;
}
.entry-form .personal-info-check label {
  text-align: center;
}
.entry-form .personal-info-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  position: relative;
  top: -2px;
}
.entry-form button[type=submit] {
  display: inline-block;
  position: relative;
  width: 80%;
  padding: var(--space-M) var(--space-L) var(--space-M) var(--space-M);
  border-radius: var(--radius-XL);
  color: var(--color-dark-gray);
  background: linear-gradient(90deg, var(--color-light-orange), var(--color-light-yellow));
  font-size: 2rem;
  letter-spacing: 0.2em;
  transition: 0.5s;
}
.entry-form button[type=submit]:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-light-green), var(--color-light-blue));
  box-shadow: 0 0 20px #ffffff;
  transition: 0.5s;
}
.entry-form button[type=submit]::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px var(--color-dark-gray);
  border-right: solid 2px var(--color-dark-gray);
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: 0.5s;
}
.entry-form button[type=submit]:hover::after {
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

/***************************************************************************
福利厚生ページ　page-benefits.php
***************************************************************************/
.treatment-table {
  position: relative;
  padding: 3% 0 5% 0;
  margin: 0 0 4% 0;
}

.treatment-list {
  margin-top: 3%;
}
@media screen and (max-width: 767.9px) {
  .treatment-list {
    margin-top: 5%;
  }
}
.treatment-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.treatment-list .item {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: var(--radius-S);
  width: 49%;
  margin: 1% 0.5%;
  padding: 5% 3%;
}
@media screen and (max-width: 767.9px) {
  .treatment-list .item {
    width: 100%;
    margin: 1% auto 1%;
    padding: 6% 3% 6% 3%;
  }
}
.treatment-list .item h3 {
  margin-bottom: 3%;
}
.treatment-list .item ul li {
  line-height: 1.8em;
}
.treatment-list .item p {
  font-size: 1.4rem;
  margin: 2% 0 0 0;
  padding: 0;
}
.treatment-list .item.center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .treatment-list .item.move {
    display: table;
  }
}
@media screen and (max-width: 767.9px) {
  .treatment-list .item.move {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .treatment-list .item.move h3 {
    display: table-cell;
    vertical-align: middle;
    width: 45%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 767.9px) {
  .treatment-list .item.move h3 {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .treatment-list .item.move ul {
    display: table-cell;
    vertical-align: middle;
    width: 55%;
    text-align: left;
  }
}
@media screen and (max-width: 767.9px) {
  .treatment-list .item.move ul {
    width: 100%;
  }
}
.treatment-list .item.move, .treatment-list .item.domitory {
  width: 100%;
  margin-top: 2%;
}
@media screen and (max-width: 767.9px) {
  .treatment-list .item.move, .treatment-list .item.domitory {
    width: 98%;
    margin: 1% auto;
    padding: 6% 3% 6% 3%;
  }
}
.treatment-list .item.move h4, .treatment-list .item.domitory h4 {
  margin-bottom: 2%;
}
.treatment-list .item .dormitory-list {
  margin: 3% 0 !important;
  padding: 0 !important;
}
.treatment-list .item .dormitory-list p {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 5px;
  width: 32.5%;
}
@media screen and (max-width: 767.9px) {
  .treatment-list .item .dormitory-list p {
    display: inline-block;
    width: 49% !important;
  }
}
.treatment-list .item .dormitory-list p {
  aspect-ratio: 1/1;
  mask-image: url(../images/mask-circle.svg);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  /* Chrome, Safari用 */
  -webkit-mask-image: url(../images/mask-circle.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  background: #eeeeee;
}
.treatment-list .item .dormitory-list p img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.treatment-list .item a {
  font-size: 1.5rem;
  position: relative;
  padding-right: 10px;
  border-bottom: 1px solid #5c5851;
}
.treatment-list .item a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #5c5851;
  border-right: solid 1px #5c5851;
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -5px;
  transform: rotate(45deg);
}

.support-table {
  padding: 3% 0 5% 0;
  margin: 8% 0 8% 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .support-table {
    margin: 5% 0 5% 0;
  }
}

.support-list {
  margin-top: 3%;
}
@media screen and (max-width: 767.9px) {
  .support-list {
    margin-top: 5%;
  }
}
.support-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.support-list .item {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: var(--radius-S);
  width: 49%;
  margin: 1% 0.5%;
  padding: 5% 3%;
}
@media screen and (max-width: 767.9px) {
  .support-list .item {
    width: 100%;
    margin: 1% auto 1%;
    padding: 6% 3% 6% 3%;
  }
}
.support-list .item h3 {
  margin-bottom: 3%;
}

.skillup-table {
  padding: 3% 0 0 0;
  margin: 8% 0 0 0;
}
@media screen and (max-width: 767.9px) {
  .skillup-table {
    margin: 5% 0 0 0;
  }
}

.skillup-list {
  position: relative;
  margin-top: 3%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .skillup-list {
    padding: 3% 1%;
  }
}
.skillup-list .item {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: var(--radius-S);
  width: 100%;
  margin: 1% 0;
  padding: 5% 3%;
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item {
    padding: 6% 3% 6% 3%;
  }
}
@media screen and (min-width: 768px) {
  .skillup-list .item .table {
    display: table;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item .table {
    display: block;
    margin-bottom: 3%;
  }
}
@media screen and (min-width: 768px) {
  .skillup-list .item .table h3 {
    display: table-cell;
    vertical-align: middle;
    width: 45%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item .table h3 {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .skillup-list .item .table p {
    display: table-cell;
    vertical-align: middle;
    width: 55%;
    text-align: left;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item .table p {
    width: 100%;
  }
}
.skillup-list .item .full {
  display: block;
}
@media screen and (min-width: 768px) {
  .skillup-list .item .full h3 {
    padding-left: 5%;
  }
}
@media screen and (min-width: 768px) {
  .skillup-list .item h4 {
    border-radius: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item h4 {
    border-radius: 30px;
  }
}
.skillup-list .item h4 {
  font-weight: bold;
  width: 100%;
  display: table;
}
@media screen and (min-width: 768px) {
  .skillup-list .item h4 span.text {
    display: table-cell;
    vertical-align: middle;
    width: 65%;
    height: 100%;
    padding: 3% 5%;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item h4 span.text {
    display: block;
    width: 100%;
    padding: 2% 5%;
  }
}
.skillup-list .item h4 span.img {
  overflow: hidden;
  opacity: 0.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .skillup-list .item h4 span.img {
    display: table-cell;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 35%;
    aspect-ratio: 5/3;
    border-radius: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item h4 span.img {
    display: block;
    width: 100%;
    aspect-ratio: 10/1.8;
    border-radius: 0 0 30px 30px;
  }
}
.skillup-list .item h4 span.img img {
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 1025px) {
  .skillup-list .item h4 span.img img {
    top: -20%;
  }
}
@media screen and (max-width: 1024px) {
  .skillup-list .item h4 span.img img {
    top: -40%;
  }
}
@media screen and (max-width: 767.9px) {
  .skillup-list .item h4 span.img img {
    top: -80%;
  }
}
.skillup-list .item h4 span.img img {
  left: 0;
}
.skillup-list .item p.ind {
  margin: 2% 2% 5% 2%;
}

/***************************************************************************
研修・勉強会ページ　page-training.php
***************************************************************************/
.training-table.outside,
.training-table.project {
  margin-top: 14%;
}

.training-table.study,
.training-table.project {
  position: relative;
  margin-top: 14%;
}

.training-table .training-outline {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1em 2em;
  background: rgb(16, 127, 247);
  border-radius: 50px;
}
.training-table .training-outline p {
  margin: 0;
}

.training-list {
  position: relative;
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 3%;
}
@media screen and (max-width: 767.9px) {
  .training-list {
    margin-top: 5%;
  }
}
.training-list .popup-item {
  position: relative;
  background: #ffffff;
  border-radius: 30px 80px;
  overflow: hidden;
  width: 100%;
  margin: 1% 0;
}
@media screen and (min-width: 768px) {
  .training-list .popup-item {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .training-list .popup-item:hover {
    cursor: pointer;
  }
}
.training-list .open-popup {
  position: static;
  z-index: 999;
}
.training-list .open-popup .img {
  width: 100%;
}
.training-list .open-popup .img img {
  width: 100%;
}
.training-list .open-popup h3 {
  padding: 5% 5% 0 5%;
  font-size: 1.5em;
}
.training-list .open-popup p {
  padding: 0 5% 5% 5%;
}
.training-list .popup-content-wrap {
  display: none;
  /* デフォルトでは非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}
.training-list .popup-content {
  cursor: default;
  width: 96%; /* 幅を設定 */
  max-width: 900px; /* 最大幅を設定 */
  position: relative;
  background: #ffffff;
  border-radius: 30px 80px;
  margin: 50px auto 20px auto;
  padding: 2em;
}
@media screen and (max-width: 767.9px) {
  .training-list .popup-content {
    margin: 50px auto 2% auto;
    padding: 1em;
  }
}
.training-list .popup-content h3 {
  font-size: 1.5em;
  margin: 5% 13% 1% 5%;
}
@media screen and (max-width: 767.9px) {
  .training-list .popup-content h3 {
    margin: 8% 17% 1% 5%;
  }
}
@media screen and (min-width: 768px) {
  .training-list .popup-content .pop-inner-wrap {
    display: flex;
  }
}
.training-list .popup-content .detail {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .training-list .popup-content .detail {
    order: 1;
    padding: 0 5% 5% 5%;
    width: 60%;
  }
}
@media screen and (max-width: 767.9px) {
  .training-list .popup-content .detail {
    padding: 0 5% 0 5%;
  }
}
.training-list .popup-content .detail p {
  padding: 15px 0 0 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .training-list .popup-content .list {
    order: 1;
    width: 40%;
    padding: 0 5% 5% 0;
  }
}
@media screen and (max-width: 767.9px) {
  .training-list .popup-content .list {
    padding: 0 5% 5% 5%;
  }
}
.training-list .popup-content .list dl {
  padding: 15px 0 0 0;
}
.training-list .popup-content .list dt {
  font-size: 1.1em;
}
.training-list .popup-content .list .img {
  margin-top: 5%;
  height: 10em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .training-list .popup-content .list .img {
    order: 2;
    border-radius: 15px 45px;
  }
}
@media screen and (max-width: 767.9px) {
  .training-list .popup-content .list .img {
    border-radius: 30px 80px;
  }
}
.training-list .popup-content .list .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.training-list .close-popup {
  color: #ccc;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  .training-list .close-popup {
    position: fixed;
    top: 0.23em;
    right: 0.53em;
    font-size: 2.4em;
    line-height: 1em;
  }
}
@media screen and (min-width: 768px) {
  .training-list .close-popup {
    position: absolute;
    top: 0.2em;
    right: 0.8em;
    font-size: 3em;
  }
}
.training-list .close-popup:hover,
.training-list .close-popup:focus {
  text-decoration: none;
  cursor: pointer;
}

/***************************************************************************
お問合せページ　page-contact.php
***************************************************************************/
.contact-form .note {
  border-radius: var(--radius-S);
  background: #ffffff;
  padding: 5% 5% 0 5%;
}
@media screen and (max-width: 767.9px) {
  .contact-form .note {
    padding: 10% 5% 0 5%;
  }
}
.contact-form .note {
  font-size: 0.9em;
  line-height: 1.5em;
  text-align: justify;
}
.contact-form form {
  padding: 0;
  margin: 0;
  width: 100%;
}
.contact-form dl {
  width: 100%;
  padding: 3% 5% 3% 5%;
}
@media screen and (max-width: 767.9px) {
  .contact-form dl {
    padding: 3% 5% 10% 5%;
  }
}
.contact-form dl {
  border-radius: 0 0 var(--radius-S) var(--radius-S);
  background: #ffffff;
}
.contact-form dt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  width: 100%;
  padding: 3% 0 0 0;
}
@media screen and (max-width: 767.9px) {
  .contact-form dt {
    padding: 3% 0 1% 0;
    width: 100%;
  }
}
.contact-form dt span.req {
  margin-left: 5px;
  padding: 2px 8px 2px 8px;
  border-radius: 20px;
  background: #ff5555;
  font-weight: normal;
  font-size: 1.2rem;
  color: #ffffff;
}
.contact-form dd {
  width: 100%;
  padding: 1% 0 3% 0;
}
@media screen and (max-width: 767.9px) {
  .contact-form dd {
    padding: 1% 0 3% 0;
    width: 100%;
  }
}
.contact-form dd span.notes {
  font-size: 0.8em;
  margin: 0;
  padding: 0;
}
.contact-form dd label {
  margin: 0 10px 0 0;
}
.contact-form dd label input[type=radio] {
  width: 16px;
  height: 16px;
  margin: -2px 0 auto 0 !important;
}
@media screen and (min-width: 1025px) {
  .contact-form dd label:hover {
    cursor: pointer;
  }
}
.contact-form .personal-info {
  width: 100%;
  height: 260px;
  overflow-x: hidden;
  overflow-y: scroll;
  border-radius: var(--radius-S);
  background: #ffffff;
  margin-top: 10px;
  padding: 5% 3%;
}
@media screen and (max-width: 767.9px) {
  .contact-form .personal-info {
    padding: 10% 3%;
  }
}
.contact-form .personal-info {
  font-size: 0.8em;
}
.contact-form .personal-info h4 {
  margin: 0 0 10px 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.contact-form .personal-info h5 {
  margin: 15px 0 10px 0;
  font-weight: bold;
}
.contact-form .personal-info p {
  padding: 0 10px;
  margin: 0;
}
.contact-form .personal-info p.counter {
  margin-top: 10px;
}
.contact-form .personal-info p.counter span {
  margin-left: -6px;
}
.contact-form .personal-info-check {
  margin: 5% 3% 3% 3%;
  text-align: center;
}
.contact-form .personal-info-check label {
  text-align: center;
}
.contact-form .personal-info-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  position: relative;
  top: -2px;
}
.contact-form button[type=submit] {
  display: inline-block;
  position: relative;
  padding: 15px 40px 15px 25px;
  border-radius: 50px;
  letter-spacing: 0.2em;
  background: #ffffff;
  transition: 0.5s;
}
.contact-form button[type=submit]:hover {
  color: #ffffff;
  box-shadow: 0 0 20px #ffffff;
}
.contact-form button[type=submit]::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: 0.5s;
}
.contact-form button[type=submit]:hover::before {
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

/***************************************************************************
アーカイブページ（カテゴリ別or月別の投稿記事一覧）　archive.php
***************************************************************************/
.blog-list .art-item {
  width: 100%;
  height: auto;
  border-radius: var(--radius-S);
  overflow: hidden;
  margin-bottom: 3%;
}
@media screen and (min-width: 641px) {
  .blog-list .art-item a {
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 5%;
  }
}
@media screen and (max-width: 640px) {
  .blog-list .art-item a {
    display: block;
  }
}
.blog-list .art-item a {
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: 0.5s;
}
@media screen and (min-width: 641px) {
  .blog-list .art-item a .thumb {
    width: 180px;
    height: 180px;
    border-radius: 90px;
  }
}
@media screen and (max-width: 640px) {
  .blog-list .art-item a .thumb {
    width: 100%;
    aspect-ratio: 10/5.25;
  }
}
.blog-list .art-item a .thumb {
  overflow: hidden;
  text-align: center;
}
.blog-list .art-item a .thumb span {
  width: 100%;
  height: 100%;
  background: #f4fcf9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.blog-list .art-item a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 641px) {
  .blog-list .art-item a .text {
    width: calc(100% - 180px);
    padding: 0 0 0 3%;
  }
}
@media screen and (max-width: 640px) {
  .blog-list .art-item a .text {
    width: 100%;
    padding: 5% 5% 10% 5%;
  }
}
.blog-list .art-item a h3 {
  line-height: 1.2em;
  margin-bottom: 2%;
}
.blog-list .art-item a h3 span.blog-date {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  display: block;
  padding: 0;
  border-bottom: 1px solid #bbddff;
}
.blog-list .art-item a div.blog-date {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0em;
  display: block;
  padding: 0;
  margin-bottom: 1em;
}
.blog-list .art-item a div.blog-date span {
  margin-right: 0.4em;
}
.blog-list .art-item a div.blog-date div {
  display: inline-block;
}
.blog-list .art-item a div.blog-date ul {
  list-style: none !important;
  display: inline-block;
}
.blog-list .art-item a div.blog-date li {
  margin-right: 0.1em;
  display: inline-block;
}
.blog-list .art-item a .blog-excerpt {
  line-height: 1.3em;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .blog-list .art-item a:hover {
    opacity: 0.6;
  }
}
.blog-list nav.navigation {
  margin: 3% 0;
  text-align: center;
  font-size: 1.5rem;
}
.blog-list nav.navigation span.page-numbers {
  padding: 15px;
  display: inline-block;
}
.blog-list nav.navigation a {
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 50px;
  background: #ffffff;
  display: inline-block;
  transition: 0.5s;
}
.blog-list nav.navigation a.prev {
  padding-left: 30px;
  position: relative;
}
.blog-list nav.navigation a.prev:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #555555;
  border-right: solid 1px #555555;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  margin-left: 17px;
  transform: rotate(-135deg);
  transition: 0.5s;
}
.blog-list nav.navigation a.next {
  padding-right: 30px;
  position: relative;
}
.blog-list nav.navigation a.next:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #555555;
  border-right: solid 1px #555555;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  margin-right: 17px;
  transform: rotate(45deg);
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .blog-list nav.navigation a:hover {
    opacity: 0.6;
  }
}

/***************************************************************************
投稿記事ページ　single.php
***************************************************************************/
article.blog {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-S);
  overflow: hidden;
  padding-bottom: 5%;
  margin-bottom: 5%;
}
article.blog .eyecatch {
  width: 100%;
  aspect-ratio: 10/5.25;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article.blog .eyecatch img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  article.blog .text h3 {
    font-size: 2.4rem;
  }
}
article.blog .text h3 {
  line-height: 1.5em;
  padding: 3% 3% 0 3%;
}
article.blog .text .up {
  margin: 1% 3% 0 3%;
  padding: 0 0 3% 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-light-orange);
}
article.blog .text .up span {
  margin-right: 0.5em;
}
article.blog .text .sent {
  padding: 3%;
}

ul.prev_next_list {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  ul.prev_next_list {
    display: flex;
  }
}
ul.prev_next_list li {
  display: table;
}
@media screen and (max-width: 767.9px) {
  ul.prev_next_list li {
    width: 100%;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  ul.prev_next_list li {
    width: 100%;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1025px) {
  ul.prev_next_list li {
    width: 50%;
  }
  ul.prev_next_list li a {
    transition: 0.5s;
  }
  ul.prev_next_list li a:hover {
    color: #ffffff;
  }
}
ul.prev_next_list li a {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  padding: 15px 35px;
  background: linear-gradient(90deg, var(--color-light-orange), var(--color-light-yellow));
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  ul.prev_next_list li a {
    border-radius: var(--radius-XL);
  }
}
ul.prev_next_list li a:hover {
  background: linear-gradient(90deg, var(--color-light-green), var(--color-light-blue));
}
@media screen and (max-width: 1024px) {
  ul.prev_next_list li.prev {
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1025px) {
  ul.prev_next_list li.prev {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  ul.prev_next_list li.prev a {
    border-radius: var(--radius-XL) var(--radius-XS) var(--radius-XS) var(--radius-XL);
  }
}
ul.prev_next_list li.prev a::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color-dark-gray);
  border-right: solid 1px var(--color-dark-gray);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  margin-left: 15px;
  transform: rotate(-135deg);
  transition: 0.5s;
}
ul.prev_next_list li.prev a:hover::before {
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
}
ul.prev_next_list li.next {
  text-align: right;
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  ul.prev_next_list li.next {
    width: calc(50% - 5px);
  }
  ul.prev_next_list li.next a {
    border-radius: var(--radius-XS) var(--radius-XL) var(--radius-XL) var(--radius-XS);
  }
}
ul.prev_next_list li.next a::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color-dark-gray);
  border-right: solid 1px var(--color-dark-gray);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  margin-right: 15px;
  transform: rotate(45deg);
  transition: 0.5s;
}
ul.prev_next_list li.next a:hover::before {
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
}

/***************************************************************************
固定ページに社員画像を配置する場合
***************************************************************************/
.cts-block .cts-emp-img {
  width: 100%;
  text-align: center;
  position: relative;
}
.cts-block .cts-emp-img img.emp {
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin-left: -100px;
  z-index: 1;
  width: 200px;
}
@media screen and (max-width: 767.9px) {
  .cts-block .cts-emp-img img.emp {
    margin-left: -65px;
    width: 130px;
  }
}
.cts-block .layer {
  position: relative;
  z-index: 20;
}

/***************************************************************************
サイドバーのあるページ（投稿ページ、固定ページ）
***************************************************************************/
@media screen and (min-width: 1025px) {
  .cts-block.divide {
    display: flex;
    align-items: flex-start;
  }
}
.cts-block.divide > .right {
  background: #ffffff;
  border-radius: 30px 180px;
}
@media screen and (max-width: 767.9px) {
  .cts-block.divide > .right {
    order: 1;
    width: 100% !important;
    margin: 0 auto;
    padding: 5% 3%;
    border-radius: 30px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .cts-block.divide > .right {
    order: 1;
    width: 100%;
    margin: 0 auto;
    padding: 5% 3%;
  }
}
@media screen and (min-width: 1025px) {
  .cts-block.divide > .right {
    order: 2;
    width: 70%;
    margin-left: auto;
    padding: 0 3% 5% 3%;
  }
}
@media screen and (max-width: 767.9px) {
  .cts-block.divide .right-benefit,
  .cts-block.divide .right-training {
    order: 1;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .cts-block.divide .right-benefit,
  .cts-block.divide .right-training {
    order: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .cts-block.divide .right-benefit,
  .cts-block.divide .right-training {
    order: 2;
    width: 70%;
    margin-left: auto;
    padding: 0 3% 0 3%;
  }
}
@media screen and (max-width: 767.9px) {
  .cts-block.divide .right-blog {
    order: 1;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .cts-block.divide .right-blog {
    order: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .cts-block.divide .right-blog {
    order: 2;
    width: 70%;
    margin-left: auto;
    padding: 0 3% 5% 3%;
  }
}

/***************************************************************************
sidebar
***************************************************************************/
@media screen and (max-width: 767.9px) {
  #sidebar {
    width: 98%;
    margin: 8% auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 8%;
  }
}
@media screen and (min-width: 1025px) {
  #sidebar {
    width: 30%;
    padding: 0 3% 0 0;
  }
}
#sidebar .list-box {
  width: 100%;
  padding: 10% 3% 6%;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar .list-box {
    width: 44%;
    margin: 0 3% 3% 3%;
    padding: 3%;
  }
}
@media screen and (max-width: 767.9px) {
  #sidebar .list-box {
    width: 96%;
    padding: 5% 3% 3% 3%;
  }
}
#sidebar .list-box {
  background: #ffffff;
  border-radius: var(--radius-S);
}
#sidebar .list-box h4 {
  font-weight: bold;
  font-size: 1.65rem;
  color: var(--color-light-orange-dark);
  border-radius: var(--radius-S);
  padding: 0 1em;
  margin: 0 0 0 0%;
}
#sidebar .list-box ul {
  font-size: 1.65rem;
  line-height: 1.4em;
}
#sidebar .list-box a {
  display: inline-block;
  border-radius: var(--radius-S);
}
#sidebar .list-box.cat li {
  margin-bottom: 0;
}
#sidebar .list-box.cat li a::before {
  content: "\f105";
  padding-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-light-orange);
  padding-right: 5px;
}
#sidebar .list-box.cat ul.children {
  display: none;
  margin-top: 0;
  margin-bottom: 0;
}
#sidebar .list-box.cat ul.children ul.children {
  margin-left: 1em;
}
#sidebar .list-box.cat ul.children.show {
  display: block;
}
#sidebar select.monthly {
  font-size: 1.5rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  padding: 0.5em 1em;
  margin: 15px 3% 0 18px;
  background: #ffffff;
  border-radius: var(--radius-XS);
  border: 1px solid var(--color-dark-gray);
}
@media screen and (max-width: 767.9px) {
  #sidebar .acv-list-wrap {
    padding: 10% 3% 7%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar .acv-list-wrap {
    padding: 7% 3%;
  }
}
@media screen and (min-width: 1025px) {
  #sidebar .acv-list-wrap {
    padding: 10% 5% 5% 5%;
    border-radius: 5px;
  }
}
#sidebar h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1em;
  padding-top: 3px;
  margin-bottom: 30px;
}
#sidebar .acv-list {
  padding: 0 3%;
}
#sidebar h4 {
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 767.9px) {
  #sidebar h4 span {
    padding: 5px 0 5px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar h4 span {
    padding: 5px 0 5px 0;
  }
}
@media screen and (min-width: 1025px) {
  #sidebar h4 span {
    padding: 5px 0 0 3%;
  }
}
#sidebar ul {
  font-size: 1.4rem;
}
@media screen and (max-width: 767.9px) {
  #sidebar ul {
    margin: 15px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar ul {
    margin: 15px 0 0 1%;
  }
}
@media screen and (min-width: 1025px) {
  #sidebar ul {
    margin: 15px 0 0 3%;
  }
}
#sidebar ul li {
  margin: 0 0 10px 0;
}
#sidebar ul li a {
  padding: 5px;
}
@media screen and (min-width: 1025px) {
  #sidebar ul li a {
    transition: 0.5s;
  }
  #sidebar ul li a:hover {
    color: var(--color-light-orange-dark);
  }
}

/***************************************************************************
取材動画 archive-vlog.php
***************************************************************************/
.vlog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-M);
  padding: 10px;
}
.vlog-grid .video-item {
  width: 45%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
}
.vlog-grid .video-item .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.vlog-grid .video-item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.vlog-grid .video-item .thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vlog-grid .video-item .thumbnail .play-icon .play-svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.3s, filter 0.3s;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  display: block;
}
.vlog-grid .video-item .thumbnail:hover img {
  filter: brightness(60%);
  transform: scale(1.03);
}
.vlog-grid .video-item .thumbnail:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
}
.vlog-grid .video-item .thumbnail:hover .play-icon .play-svg {
  fill: #fff;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}
.vlog-grid .video-item .video-title {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
  box-sizing: border-box;
}
.modal .modal-content {
  position: relative;
  background: #000;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
}
.modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.modal .modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/*********************************
footer
*********************************/
footer div.tops {
  width: 100%;
  height: 5em;
  position: relative;
  overflow: hidden;
}
footer div.tops img {
  position: absolute;
  left: -2%;
  bottom: -3px;
  width: 104%;
}
footer div.bottoms {
  background: #ffffff;
  padding-bottom: 45px;
}
footer div.bottoms .footer-menu-wrap h5 {
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  footer .footer-logo {
    margin: 0 auto;
    padding-top: 30px;
  }
  footer .footer-menu-wrap {
    width: 94%;
    margin: 0 3% 0 3%;
    display: none;
  }
  footer .footer-menu-wrap ul {
    margin-top: 15px;
  }
  footer .footer-menu-wrap ul li {
    font-size: 1.5rem;
    width: 100%;
    margin: 5px 0;
  }
  footer .footer-menu-wrap ul li a {
    display: block;
    width: calc(100% - 30px);
    height: 100%;
    padding: 5px;
  }
  footer .copy {
    text-align: center;
    font-size: 1rem;
    padding: 20px 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  footer .inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  footer .footer-menu-wrap {
    width: 100%;
  }
  footer .footer-menu-wrap ul {
    display: flex;
  }
  footer .footer-menu-wrap ul li {
    font-size: 0.8em;
    line-height: 1em;
    height: 100%;
  }
  footer .footer-menu-wrap ul li.list-sub div {
    margin: 10px 0 0 0;
  }
  footer .footer-menu-wrap ul li a {
    display: inline-block;
  }
  footer .footer-menu-wrap ul li a:hover {
    text-decoration: underline;
  }
  footer .footer-menu-wrap ul li.list a {
    font-weight: 500;
  }
  footer .copy {
    text-align: center;
    font-size: 1rem;
    padding: 20px 0 0 0;
  }
}
footer .footer-menu-wrap {
  margin-top: 25px;
}
footer .footer-menu-wrap ul {
  justify-content: center;
}
footer .footer-menu-wrap ul li {
  margin: 0 10px;
}
footer .footer-menu-wrap ul li.list-sub a {
  margin-left: 10px;
  font-size: 1.2rem;
}
footer .footer-menu-wrap ul li.list div {
  margin: 0 0 10px 0;
}
footer .footer-menu-wrap ul li.list div a {
  font-weight: 600;
}
footer .footer-logo {
  display: block;
  width: 100%;
}
footer .footer-logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
footer .footer-logo a img {
  width: 120px !important;
  height: auto !important;
}

footer .copy {
  display: block;
  width: 100%;
}/*# sourceMappingURL=style.css.map */