@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;
  }
}
/*********************************
accent color
*********************************/
/*タイトル文字など*/
/*矢印*/
/*ボタン　グラデーション*/
/*********************************
base
*********************************/
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: "メイリオ", sans-serif;
  font-size: 1.6rem;
  color: #555555;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: #dbf3ff;
}

a {
  color: #555555;
}

@media screen and (min-width: 1025px) {
  a:hover {
    cursor: pointer;
  }
}
p {
  text-align: justify;
}

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

/***** form *****/
input[type=text],
input[type=date],
input[type=email],
input[type=tel],
select {
  background-color: #fff8e8;
  border: 1px solid #2B57B0;
  padding: 10px;
  border-radius: 5px;
}

@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;
}

textarea {
  background-color: #fff8e8;
  border: 1px solid #2B57B0;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  height: 150px;
}

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

::placeholder {
  color: #cccccc;
}

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

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

.select_wrapper {
  position: relative;
  display: inline-block;
}

.select_wrapper::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #b3cbbd;
  border-bottom: 2px solid #b3cbbd;
  transform: rotate(45deg);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

/*********************************
header
*********************************/
header {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

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

header img {
  height: 40px;
  width: 97.45px;
  margin: 10px 10px 10px 10px;
  position: relative;
  z-index: 999;
}

header.pc.tab {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}
header.pc.tab .inner {
  display: flex;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}
header.pc.tab h1 {
  width: 22%;
  height: 100%;
}
header.pc.tab .top-menu-wrap {
  margin-left: auto;
  width: 74%;
  height: 60px;
}
header.pc.tab .top-menu-wrap nav {
  height: 100%;
}
header.pc.tab .top-menu-wrap nav ul {
  width: 100%;
  height: 100%;
  font-size: clamp(1.4rem, 1.2vw, 1.7rem);
  font-weight: bold;
  display: flex;
}
header.pc.tab .top-menu-wrap nav ul li {
  display: table;
  width: 20%;
  height: 100%;
}
header.pc.tab .top-menu-wrap nav ul li a {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  color: #666;
}
header.pc.tab .top-menu-wrap nav ul li a:hover {
  color: #333;
  transition: 0.5s;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down {
  position: relative; /* 親を基準に子を配置 */
}
header.pc.tab .top-menu-wrap nav ul li.drop-down a {
  display: block;
  text-align: center;
  padding: 0 10px;
  height: 100%;
  line-height: 60px;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  padding: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu li {
  padding: 4px 5px;
  color: #666;
  text-align: left;
  height: auto;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu li:hover {
  color: #333; /* 色の変更 */
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu.fukuri {
  width: 180px;
}
header.pc.tab .top-menu-wrap nav ul li.drop-down .list-menu div a:hover {
  background: rgba(255, 255, 255, 0.8);
}
header.pc.tab .top-menu-wrap nav ul li.drop-down:hover .list-menu {
  display: block;
}

header.sp h1 {
  backdrop-filter: blur(12px);
  display: inline-block;
  border-radius: 0 0 10px 0;
  position: relative;
  z-index: 9999;
}
header.sp #hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
  margin: 0 0 0 auto;
  height: 42px;
  width: 42px;
  background: rgba(43, 87, 176, 0.5882352941);
  border-radius: 21px;
}
header.sp #hamburger .icon span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: ease 0.35s;
}
header.sp #hamburger .icon span:nth-of-type(1) {
  top: 12px;
}
header.sp #hamburger .icon span:nth-of-type(2) {
  top: 20px;
}
header.sp #hamburger .icon span:nth-of-type(3) {
  bottom: 12px;
}
header.sp #hamburger .close span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 20px;
}
header.sp #hamburger .close span:nth-of-type(2) {
  opacity: 0;
}
header.sp #hamburger .close span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 20px;
}
header.sp .hbg-menu-list {
  transition: ease 0.2s;
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 60px 0 0 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
}
header.sp .hbg-menu-list.slide {
  left: 0;
  opacity: 1;
}
header.sp .hbg-menu-list nav {
  height: 100%;
  overflow-y: scroll;
}
header.sp .hbg-menu-list ul {
  margin-top: 20px;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
header.sp .hbg-menu-list ul li {
  width: calc(50% - 0.2em);
  font-weight: bold;
}
header.sp .hbg-menu-list ul li a {
  display: block;
  padding: 15px 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  background: rgba(43, 87, 176, 0.7647058824);
  border-radius: 3px;
}

/**************************************************************************
サイト内、ページ内リンク
**************************************************************************/
.page-link-wrap {
  position: relative;
}

span.page-link {
  position: absolute;
  top: -85px;
  left: 0;
}

/***************************************************************************
404error
***************************************************************************/
#e404 {
  padding: 10% 2% 0 2%;
  text-align: center;
}
#e404 h2 {
  font-size: 3rem;
  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: 25px;
  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
*********************************/
.center {
  text-align: center;
  display: block;
}

@media screen and (max-width: 767.9px) {
  .cts-wrap {
    padding-top: 30px;
  }
}
.cts-inner {
  margin: 0 auto;
  padding: 10% 5%;
}
@media screen and (min-width: 1025px) {
  .cts-inner {
    max-width: 1200px;
  }
}
.cts-inner h2 {
  font-size: 3.8rem;
}
@media screen and (max-width: 767.9px) {
  .cts-inner h2 {
    font-size: 2.8rem;
  }
}
.cts-inner h2 {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 10%;
}
.cts-inner h2.title {
  margin-bottom: 0;
}
.cts-inner h2.cts-title {
  margin-bottom: 5%;
}
.cts-inner .cts-title-message {
  text-align: center;
  margin-bottom: 7%;
  line-height: 1.4em;
}
.cts-inner h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 767.9px) {
  .cts-inner h3 {
    font-size: 2.4rem;
  }
}
.cts-inner h3 {
  font-weight: bold;
}
.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: 2em;
  letter-spacing: 0.05em; /*letter-spacing: 0.1em;*/
  margin: 2% 0;
}
.cts-inner dt,
.cts-inner dd {
  line-height: 2em;
  letter-spacing: 0.1em;
}
.cts-inner .button {
  margin-top: 5%;
  text-align: center;
  letter-spacing: 0.3em;
  font-weight: bold;
}
.cts-inner .button a {
  display: inline-block;
  position: relative;
  padding: 18px 40px 15px 40px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5725490196);
  background: linear-gradient(30deg, #5992D9, #103BA1);
}
.cts-inner .button a:hover {
  background: linear-gradient(200deg, #5992D9, #103BA1);
}
.cts-inner .button a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: 0.5s;
}

/*********************************
top page /front-page.php
*********************************/
.top-visual {
  width: 100%;
  background: url(../images/top-visual.jpg);
  background-size: cover;
  background-position: bottom 55% left 0;
}
@media screen and (max-width: 1024px) {
  .top-visual {
    background-position: bottom 85% left 0;
  }
}
.top-visual {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.top-visual .text {
  height: 100%;
  margin: 0 auto;
  max-width: 1050px;
  position: relative;
}
.top-visual .text img {
  position: absolute;
  transform: rotate(-3deg);
}
@media screen and (max-width: 767.9px) {
  .top-visual .text img {
    height: 70%;
    top: 25%;
    left: 22%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-visual .text img {
    height: 80%;
    top: 10%;
    left: 12%;
  }
}
@media screen and (min-width: 1025px) {
  .top-visual .text img {
    height: 80%;
    top: 10%;
    left: 12%;
  }
}

.top-slider {
  position: relative;
  overflow: hidden;
}
.top-slider .xo-slider {
  width: 100%;
  position: static;
  z-index: 10;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .top-info .cts-inner {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
    justify-content: space-around;
  }
}
.top-info .cts-inner h2 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-info .cts-inner h2 {
    width: 20%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .top-info .cts-inner ul {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
}
.top-info .cts-inner ul li {
  padding: 1em 1.5em;
  margin: 0.3em;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 5px hsla(200, 48%, 59%, 0.1);
}
.top-info .cts-inner ul li:last-child {
  border: none;
}
.top-info .cts-inner p {
  line-height: 1.4em;
  margin: 0.5em 0;
}
.top-info .cts-inner a {
  display: inline-block;
  position: relative;
  color: #2B57B0;
}
.top-info .cts-inner a:hover {
  text-decoration: underline;
}
.top-info .cts-inner a::after {
  content: "";
  position: absolute;
  right: -0.9em;
  top: 0.3em;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid #2B57B0;
  border-right: 1px solid #2B57B0;
  transform: rotate(45deg);
}

.top-business {
  background: rgba(255, 255, 255, 0.5019607843);
}

.top-business .biz-list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.top-business .biz-list .biz-item {
  width: 31%;
  margin: 3% 1% 0 1%;
}
@media screen and (max-width: 767.9px) {
  .top-business .biz-list .biz-item {
    width: 100%;
    margin: 3% 0 0 0;
  }
}
.top-business .biz-list .biz-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 36%;
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px hsla(200, 48%, 59%, 0.2);
}
.top-business .biz-list .biz-item a:hover {
  box-shadow: 0 0 10px #cbf8ff;
}
.top-business .biz-list .biz-item span.bg {
  position: absolute;
  z-index: 10;
  top: -15%;
  right: -5%;
  opacity: 0.05;
  transform: rotate(-20deg);
  background-image: url("../images/bg_logo_icon.png");
  width: 60%;
  height: 60%;
  background-size: cover;
}
.top-business .biz-list .biz-item h4 {
  position: relative;
  z-index: 100;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2B57B0;
  text-align: center;
  padding: 14% 10% 3% 10%;
}
.top-business .biz-list .biz-item p {
  position: relative;
  z-index: 100;
  font-size: 1.4rem;
  padding: 0 10% 3% 10%;
}
.top-business .biz-list .biz-item .img {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
}
.top-business .biz-list .biz-item img {
  width: 100%;
}

.top-landmark {
  background: url(../images/top-landmark-bg.webp) no-repeat center center;
  background-size: 90%;
  background-position: center 20px;
}
@media screen and (max-width: 767.9px) {
  .top-landmark {
    background-size: 110%;
    background-position: center 10%;
  }
}
.top-landmark div.text-wrap {
  position: sticky;
  z-index: 200;
  padding: 0 13%;
  margin: 0 auto;
  width: 74%;
}
@media screen and (max-width: 767.9px) {
  .top-landmark div.text-wrap {
    text-align: center;
    padding: 10% 10% 0 10%;
    width: 80%;
  }
}
.top-landmark div.text-wrap h2 {
  padding: 0;
  margin-bottom: 5%;
}
.top-landmark div.text-wrap h2 img {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.top-landmark div.text-wrap p {
  text-align: center;
  mix-blend-mode: multiply;
}

.top-benefits {
  background: rgba(255, 255, 255, 0.7803921569);
}

.top-benefits .bene-list {
  display: flex;
  flex-flow: wrap;
}
.top-benefits .bene-list .bene-item {
  width: 47%;
  margin: 3% 1.5% 0 1.5%;
  padding: 4%;
  border-radius: 10px;
  position: relative;
  background: #dbf3ff;
  background: linear-gradient(30deg, #f6fcff, #dbf3ff);
  font-size: 1.4rem;
  overflow: hidden;
  box-shadow: 0 0 5px hsla(200, 48%, 59%, 0.2);
}
.top-benefits .bene-list .bene-item span.bg {
  position: absolute;
  z-index: 10;
  bottom: -15%;
  left: -5%;
  opacity: 0.05;
  transform: rotate(20deg);
  background-image: url("../images/bg_logo_icon.png");
  width: 60%;
  height: 70%;
  background-size: cover;
}
@media screen and (max-width: 767.9px) {
  .top-benefits .bene-list .bene-item {
    width: 100%;
    margin: 3% 0 0 0;
    padding: 5% 4% 2% 4%;
  }
}
.top-benefits .bene-list .bene-item h4,
.top-benefits .bene-list .bene-item p,
.top-benefits .bene-list .bene-item div {
  position: relative;
  z-index: 100;
}
.top-benefits .bene-list .bene-item h4 {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2B57B0;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  padding: 2% 2% 1.5% 5%;
  background: #ffffff;
  border-radius: 50px;
}
.top-benefits .bene-list .bene-item .study-list,
.top-benefits .bene-list .bene-item .training-list {
  line-height: 1.5em;
  padding-bottom: 3%;
}
.top-benefits .bene-list .bene-item .study-list span,
.top-benefits .bene-list .bene-item .training-list span {
  display: inline-block;
}

/*
.top-recruit {
    background: rgba(229, 206, 144, 0.102);
}*/
.top-recruit .rec-list {
  display: flex;
  flex-flow: wrap;
}
.top-recruit .rec-list .rec-item {
  width: 47%;
  margin: 3% 1.5% 0 1.5%;
  padding: 4%;
}
@media screen and (max-width: 767.9px) {
  .top-recruit .rec-list .rec-item {
    width: 100%;
    margin: 3% 0 0 0;
    padding: 5% 4% 2% 4%;
  }
}
.top-recruit .rec-list .rec-item {
  background: #ffffff;
  font-size: 1.4rem;
  position: relative;
}
.top-recruit .rec-list .rec-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
}
.top-recruit .rec-list .rec-item h4 {
  font-weight: bold;
  font-size: 1.8rem;
}

.top-entry {
  background: rgba(255, 255, 255, 0.5019607843);
}

.top-entry .entry-steps {
  margin-top: 3%;
}
.top-entry .entry-steps .ent-item {
  position: relative;
  padding: 5%;
  margin: 3% auto;
  background-color: #ffffff;
  box-shadow: 0 0 5px hsla(200, 48%, 59%, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.top-entry .entry-steps .ent-item span.bg {
  position: absolute;
  z-index: 10;
  bottom: -5%;
  right: -5%;
  opacity: 0.05;
  transform: rotate(-20deg);
  background-image: url("../images/bg_logo_icon.png");
  width: 20%;
  height: 50%;
  background-size: cover;
}
.top-entry .entry-steps .ent-item .text {
  position: relative;
  z-index: 100;
}
.top-entry .entry-steps .ent-item h4 {
  padding: 0 0 2% 0;
  font-size: 2.6rem;
}
@media screen and (max-width: 767.9px) {
  .top-entry .entry-steps .ent-item h4 {
    font-size: 2rem;
  }
}
.top-entry .entry-steps .ent-item h4 {
  font-weight: bold;
  color: #2B57B0;
  border-bottom: 1px solid #2B57B0;
}
.top-entry .entry-steps .ent-item-arrow {
  content: "";
  width: 30px;
  height: 30px;
  border: 0;
  border-top: solid 2px #2B57B0;
  border-right: solid 2px #2B57B0;
  margin-inline: auto;
  margin-bottom: 5%;
}
@media screen and (max-width: 767.9px) {
  .top-entry .entry-steps .ent-item-arrow {
    margin-bottom: 9%;
  }
}
.top-entry .entry-steps .ent-item-arrow {
  transform: rotate(135deg);
  transition: 0.5s;
}

.top-blog .title.blog-title {
  margin: 0 0 0.5em 0;
}
.top-blog .top-blogs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
@media screen and (max-width: 767.9px) {
  .top-blog .top-blogs-list {
    flex-direction: column;
    gap: 1em;
  }
}
.top-blog .blog-link {
  width: 31.333%;
  margin: 1em auto 0;
}
@media screen and (max-width: 767.9px) {
  .top-blog .blog-link {
    width: 100%;
    margin: 0 auto 0;
  }
}
.top-blog .blog-link {
  display: flex;
  flex-direction: column;
}
.top-blog .blog-link > a {
  flex-grow: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-blog .blog-link > a {
    padding: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .top-blog .blog-link > a {
    padding: 10px;
  }
}
.top-blog .blog-link > a {
  transition: all 0.3s;
  background: #ffffff;
  border-radius: 10px 10px 10px 0;
  box-shadow: 0 0 5px hsla(200, 48%, 59%, 0.2);
}
.top-blog .blog-link > a .img {
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
.top-blog .blog-link > a .img img {
  width: 100%;
  height: auto;
}
.top-blog .blog-link > a h3 {
  font-size: 1.3em;
  padding: 10px;
  margin: 0;
}
.top-blog .blog-link > a .date {
  padding: 0 10px 5px;
  margin: 0;
  line-height: 1.1em;
  font-size: 0.6em;
}
@media screen and (min-width: 1025px) {
  .top-blog .blog-link > a:hover {
    box-shadow: 0 0 10px #cbf8ff;
  }
}
.top-blog .blog-link a .date p {
  line-height: 1em;
}
.top-blog .blog-link a .date div {
  display: inline-flex;
  display: flex;
}
.top-blog .blog-link a .date div p.title-categorie {
  line-height: 1em;
  margin: 0;
}
.top-blog .blog-link a .date div ul.post-categories {
  flex: 1;
  gap: 0.8em;
}
.top-blog .blog-link a .date div ul.post-categories li {
  display: inline-block;
}
.top-blog .title.vlog-title {
  margin: 10% 0 0.5em 0;
}
.top-blog .top-vlog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
@media screen and (max-width: 767.9px) {
  .top-blog .top-vlog-list {
    flex-direction: column;
    gap: 1em;
  }
}
.top-blog .top-vlog-list {
  justify-content: center;
}
.top-blog .top-vlog-list a {
  width: 48%;
  margin: 1em auto 0;
}
@media screen and (max-width: 767.9px) {
  .top-blog .top-vlog-list a {
    width: 100%;
    margin: 0 auto 0;
  }
}
.top-blog .top-vlog-list a {
  padding: 10px;
  background: #ffffff;
  border-radius: 10px 10px 10px 0;
}
@media screen and (min-width: 1025px) {
  .top-blog .top-vlog-list a:hover {
    box-shadow: 0 0 10px #cbffcb;
  }
}
.top-blog .top-vlog-list a img {
  width: 100%;
  border-radius: 10px 10px 10px 0;
  overflow: hidden;
}

/*********************************
パンくずリスト
*********************************/
.breadcrumbs {
  font-size: 1rem;
  color: #888888;
}
@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: #888888;
}
@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 #888888;
  border-right: solid 1px #888888;
  position: absolute;
  top: 50%;
  right: -9px;
  margin-top: -3px;
  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-business.php
***************************************************************************/
/*
.cts-wrap.business-wrapper{}
*/
.business-table .biz {
  width: 100%;
  margin-bottom: 50px;
  padding: 7% 5% 5% 5%;
}
@media screen and (max-width: 767.9px) {
  .business-table .biz {
    padding: 37% 5% 7% 5%;
  }
}
.business-table .biz {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(68, 112, 207, 0.3);
  position: relative;
}
.business-table span.bg {
  position: absolute;
  z-index: 10;
  top: -20px;
  left: -20px;
}
@media screen and (max-width: 767.9px) {
  .business-table span.bg {
    top: auto;
    bottom: -20px;
  }
}
.business-table span.bg {
  opacity: 0.05;
  transform: rotate(20deg);
  background-image: url("../images/bg_logo_icon.png");
  width: 200px;
  height: 155px;
  background-size: cover;
}
.business-table .text {
  position: relative;
  z-index: 100;
}
.business-table h3 {
  padding-bottom: 8%;
}
@media screen and (max-width: 767.9px) {
  .business-table h3 {
    padding-bottom: 3%;
  }
}
.business-table .img {
  width: 50%;
  text-align: center;
  border-radius: 0 0 0 10px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: -5%;
  z-index: 100;
}
@media screen and (max-width: 767.9px) {
  .business-table .img {
    width: 100%;
    border-radius: 0;
    right: 0;
  }
}
.business-table img {
  width: 100%;
}

/***************************************************************************
会社概要　page-about-us.php
***************************************************************************/
.about-us-table {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.about-us-table dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.about-us-table dt {
  padding: 3% 20px;
  width: 163px;
}
@media screen and (max-width: 767.9px) {
  .about-us-table dt {
    padding: 3% 10px;
    width: 120px;
  }
}
.about-us-table dt {
  vertical-align: middle;
  border-bottom: 1px solid #dbf3ff;
  background: #f6fcff;
}
.about-us-table dd {
  padding: 3% 20px;
  width: calc(100% - 163px);
}
@media screen and (max-width: 767.9px) {
  .about-us-table dd {
    padding: 3% 10px;
    width: calc(100% - 120px);
  }
}
.about-us-table dd {
  vertical-align: middle;
  border-bottom: 1px solid #dbf3ff;
}
.about-us-table dd a {
  display: inline-block;
  color: #2B57B0;
  padding: 0.1em 2em 0.1em 0;
}
.about-us-table dd a:hover {
  text-decoration: underline;
}
.about-us-table dd a span {
  position: relative;
}
.about-us-table dd a span::before {
  position: absolute;
  top: 0;
  right: -0.6em;
  bottom: 0;
  content: "";
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border: 0;
  border-top: solid 2px #00b324;
  border-right: solid 2px #00b324;
  transform: rotate(45deg);
}
.about-us-table dt.last,
.about-us-table dd.last {
  border: none;
}

.cts-wrap.daihyou-message-wrap {
  background: #f3fff5;
  overflow: hidden;
}
.cts-wrap.daihyou-message-wrap .cts-inner {
  position: relative;
  padding: 10% 5% 5% 5%;
}
.cts-wrap.daihyou-message-wrap .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  right: -14%;
  bottom: -10%;
  background: url(../images/daihyou-message-bg.svg);
  background-repeat: no-repeat;
  filter: blur(10px);
  background-position: bottom right;
  background-size: 50%;
  opacity: 0.5;
}
@media screen and (max-width: 767.9px) {
  .cts-wrap.daihyou-message-wrap .bg-img {
    filter: blur(20px);
    background-size: 100%;
    opacity: 0.3;
  }
}
.cts-wrap.daihyou-message-wrap .message {
  position: relative;
  z-index: 2;
  width: 80%;
  padding: 3% 20px;
}
@media screen and (max-width: 767.9px) {
  .cts-wrap.daihyou-message-wrap .message {
    width: 100%;
    padding: 3% 10px;
  }
}
.cts-wrap.daihyou-message-wrap .message {
  border-radius: 15px;
}
.cts-wrap.daihyou-message-wrap .daihyou-name {
  padding-top: 0.5em;
  font-size: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  .cts-wrap.daihyou-message-wrap .daihyou-name {
    text-align: right;
  }
}

.cts-title.access {
  padding-top: 10%;
}

.access-map h3 {
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 0.5em;
  margin-top: 1em;
}
.access-map iframe {
  border-radius: 10px;
}

ul.office-list {
  border-top: 2px dotted #eeeeee;
}
@media screen and (min-width: 768px) {
  ul.office-list {
    display: flex;
    flex-wrap: wrap; /* 折返し指定 */
  }
}
ul.office-list li {
  border-bottom: 2px dotted #eeeeee;
  padding: 3% 10px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  ul.office-list li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  ul.office-list li {
    width: 25%;
  }
}

/***************************************************************************
採用情報　page-recruitment.php
***************************************************************************/
/*
.cts-wrap.recruitment-wrap{
    background:rgba(255, 193, 121, 0.289);
}*/
.occupation-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.occupation-list .occupation-categories {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  background: #fff;
  padding: 5% 3%;
  border-radius: 10px;
}
.occupation-list .occupation-categories > h3 {
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 0.3em;
}
.occupation-list .ocp-item {
  border-radius: 10px;
  margin-bottom: 10px;
}
.occupation-list .ocp-item .ocp-btn {
  display: block;
  text-align: center;
  letter-spacing: 0.3em;
  padding: 3%;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-btn {
    padding: 5%;
  }
}
.occupation-list .ocp-item .ocp-btn {
  margin: 0 auto 0 auto;
  color: #ffffff;
  background: linear-gradient(30deg, #5992D9, #103BA1);
  border-radius: 10px;
  font-weight: bold;
  line-height: 1em;
  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 {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  line-height: 1.3em;
}
.occupation-list .ocp-item .ocp-btn span.arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  margin-left: 0px;
  transform: rotate(45deg);
  transition: 0.2s;
}
.occupation-list .ocp-item .ocp-btn.active-btn {
  background: linear-gradient(30deg, #103BA1, #5992D9);
}
.occupation-list .ocp-item .ocp-btn.active-btn span.arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  margin-left: 0px;
  transform: rotate(135deg);
  transition: 0.2s;
}
.occupation-list .ocp-item .ocp-detail {
  display: none;
  padding: 5% 3%;
  margin: 0 auto 0 auto;
}
.occupation-list .ocp-item .ocp-detail h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #ffffff;
}
.occupation-list .ocp-item .ocp-detail h3 span {
  background: #2B57B0;
  padding: 1% 3%;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail h3 span {
    display: block;
    text-align: center;
    padding: 2% 5%;
  }
}
.occupation-list .ocp-item .ocp-detail h3 span {
  border-radius: 22px;
}
.occupation-list .ocp-item .ocp-detail .ocp-table dl {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dl {
    flex-direction: column;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dl {
  flex-wrap: wrap;
  align-items: stretch;
}
.occupation-list .ocp-item .ocp-detail .ocp-table dt {
  background-color: #f6fcff;
}
@media screen and (min-width: 768px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dt {
    border-bottom: 1px solid #fff;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dt {
  padding: 3% 20px;
  width: 170px;
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dt {
    width: 100%;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dt {
  vertical-align: middle;
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd {
  background-color: #fff;
  padding: 3% 20px;
  width: calc(100% - 170px);
}
@media screen and (max-width: 767.9px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dd {
    width: 100%;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd {
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dd {
    border-bottom: 1px solid #f6fcff;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd a {
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .occupation-list .ocp-item .ocp-detail .ocp-table dd a:hover {
    color: #2189fb;
  }
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd .ast {
  margin-top: 0.9em;
  font-size: 0.8em;
  line-height: 1em;
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd .ocp-list-sub li {
  padding: 0.2em 0.4em;
  margin: 0.4em;
}
.occupation-list .ocp-item .ocp-detail .ocp-table dd .ocp-list-sub li:not(:last-child) {
  border-bottom: 1px dotted #ddd;
}
.occupation-list .ocp-item .ocp-detail.active {
  display: block;
}

/***************************************************************************
福利厚生ページ　page-benefits.php
***************************************************************************/
.benefits-table {
  position: relative;
  padding: 5% 3%;
  margin: 4% 0;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(40, 129, 58, 0.3);
}
.benefits-table span.bg {
  position: absolute;
  z-index: 10;
  top: -20px;
  left: -20px;
  opacity: 0.05;
  transform: rotate(20deg);
  background-image: url("../images/bg_logo_icon.png");
  width: 200px;
  height: 155px;
  background-size: cover;
}
.benefits-table h3 {
  position: relative;
  z-index: 50;
  text-align: center;
  font-weight: bold;
  margin-bottom: 3%;
}
@media screen and (max-width: 767.9px) {
  .benefits-table h3 {
    margin-top: 3%;
  }
}
.benefits-table .treatment-list,
.benefits-table .support-list,
.benefits-table .skillup-list {
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767.9px) {
  .benefits-table .treatment-list,
  .benefits-table .support-list,
  .benefits-table .skillup-list {
    padding: 3% 1%;
  }
}
@media screen and (min-width: 768px) {
  .benefits-table .skillup-list {
    gap: 1em 0;
  }
}
@media screen and (min-width: 768px) {
  .benefits-table .treatment-list .item.jyokyo {
    max-width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .benefits-table .treatment-list .item.syouyo,
  .benefits-table .treatment-list .item.trip {
    flex: 1;
  }
}
.benefits-table .support-list .item,
.benefits-table .skillup-list .item {
  width: calc(50% - 1.5em);
}
@media screen and (min-width: 768px) {
  .benefits-table .skillup-list .item.pj {
    width: calc(100% - 2em);
  }
}
@media screen and (max-width: 767.9px) {
  .benefits-table .treatment-list .item,
  .benefits-table .support-list .item,
  .benefits-table .skillup-list .item {
    width: 96%;
    margin: 1% auto 1%;
    padding: 6% 3% 6% 3%;
  }
}
.benefits-table .item {
  margin: 0 1%;
  padding: 3% 2%;
  position: relative;
  border-radius: 10px;
  background: #dbf3ff;
  background: linear-gradient(30deg, #f6fcff, #dbf3ff);
}
.benefits-table .item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 50%;
  height: 3px;
}
.benefits-table .item h4 {
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  color: #2B57B0;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  padding: 7px 10px 5px 20px;
  background: #ffffff;
  border-radius: 50px;
}
.benefits-table .item ul {
  font-size: 1.5rem;
}
.benefits-table .item ul li {
  padding-left: 14px;
  position: relative;
  line-height: 1.8em;
  text-align: justify;
}
.benefits-table .item ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.benefits-table .item p {
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
.benefits-table .item p.list {
  text-align: left;
  margin-bottom: 20px;
}
.benefits-table .item p.list span {
  display: inline-block;
  margin-right: 15px;
}
.benefits-table .item a {
  font-size: 1.5rem;
  position: relative;
  padding-right: 10px;
  border-bottom: 1px solid #5c5851;
}
.benefits-table .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);
}

.benefits-table.support {
  margin: 6% auto;
}

/***************************************************************************
社員紹介ページ　page-member.php
***************************************************************************/
img.wp-smiley,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

.member {
  width: 100%;
  margin-bottom: 70px;
  padding: 5% 5% 5% 5%;
  background: #ffffff;
  border-radius: 10px 10px 10px 0;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(68, 112, 207, 0.3);
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 768px) {
  .member {
    top: 20px;
    padding: 10% 5% 8% 5%;
  }
}
.member .gradient-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border-radius: 1em;
  background: linear-gradient(to right, #cdfebc, #fff8a0);
  padding: 2em;
  box-sizing: border-box;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .member .gradient-box {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 1em;
  }
}
.member .left {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .member .left {
    width: 100%;
  }
}
.member .container {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 400px;
}
.member .member-text {
  flex: 1;
  padding-right: 1.25em;
  font-size: 100%;
  line-height: 1.5;
}
.member .right {
  flex: 1;
  height: 100%;
  min-height: 160px;
  position: relative;
  /*.image*/
}
.member .right img {
  position: absolute;
  max-width: 100%;
  height: auto;
  right: 0;
  bottom: -20px;
}
@media screen and (max-width: 768px) {
  .member .right img {
    position: static;
    max-width: 50%;
    transform: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.member .space {
  margin-bottom: 1.5em;
}
.member .speech-container {
  text-align: right;
}
.member .speech-bubble {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.75em;
  background: #f1fe7b;
  font-size: 1.25em;
  position: absolute;
  top: -30px;
  right: 0;
  width: 22em;
  height: 3.8em;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .member .speech-bubble {
    width: 100%;
    height: auto;
    padding: 1em;
    font-size: 1em;
  }
}
.member .speech-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  border: 1em solid transparent;
  border-top: 1em solid #f1fe7b;
}
.member h3 {
  font-size: 1.6rem;
  line-height: 1em;
  background-color: white;
  color: #377b64;
  padding: 0.5em 1.25em 0.4em;
  border-radius: 5px 20px 20px 5px;
  border: none;
  position: relative;
  width: 100%;
}
.member h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3em;
  height: 100%;
  background-color: #016f56;
  border-top-left-radius: 0.6em;
  border-bottom-left-radius: 0.6em;
}
.member h3:after {
  content: "";
  position: absolute;
  left: 0.3em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3em;
  height: 100%;
  background-color: #5dbd66;
}
.member .link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0.6em 2.25em;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1em;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(to right, #4ab75a, #177b55);
  border: none;
  border-radius: 1.9em;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .member .link-button {
    width: auto;
  }
}
.member .link-button:hover {
  background: linear-gradient(to right, #177b55, #4ab75a);
}
.member .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  background-color: white;
  font-weight: bold;
  font-size: 1.25em;
  color: #41735f;
  margin-left: 0.6em;
}
.member .name {
  font-weight: 700;
}
.member .name span {
  margin-right: 10px;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  .member .name span {
    font-size: 2em;
  }
}
.member .age {
  font-size: 1.25em;
  margin-left: 0.625em;
}
.member .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 250px;
}
@media screen and (max-width: 768px) {
  .member .text {
    top: 20px;
    margin-bottom: 20px;
  }
}
.member .message {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  margin-top: 1em;
  font-size: 1em;
  line-height: 1.5;
}
.member .prof {
  font-size: 0.8em;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .member .prof {
    width: 100%;
  }
}
.member .prof {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.member .prof > div {
  color: #377b64;
  display: flex;
  flex-direction: row;
}
.member .prof > div > span {
  display: flex;
  align-items: center;
  margin-right: 0.4em;
}
.member .prof > div > span.item {
  font-size: 0.9em;
  letter-spacing: 0.1em;
  justify-content: center;
  padding: 0.2em 0.5em;
  min-width: 60px;
  color: #fff;
  background: #377b64;
  background: linear-gradient(-30deg, #549781, #5dbd66);
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

/***************************************************************************
タイ現地スタッフ紹介　page-thaistaff.php
***************************************************************************/
.staff-table .staff {
  width: 100%;
  margin-bottom: 50px;
  padding: 7% 5% 5% 5%;
  min-height: 350px;
}
@media screen and (max-width: 767.9px) {
  .staff-table .staff {
    padding: 7% 5% 7% 5%;
  }
}
.staff-table .staff {
  background: #ffffff;
  border-radius: 10px 10px 10px 0;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(68, 112, 207, 0.3);
  position: relative;
}
.staff-table span.bg {
  position: absolute;
  z-index: 10;
}
.staff-table span.bg1 {
  top: -100px;
  left: -400px;
  border-bottom: 500px solid #fffb9a; /* 高さ */
  border-right: 400px solid transparent; /* 左辺の長さ */
  border-left: 400px solid transparent; /* 右辺の長さ */
  transform: rotate(180deg);
  opacity: 0.3;
}
.staff-table span.bg2 {
  bottom: -100px;
  right: -400px;
  border-bottom: 500px solid #cfffba; /* 高さ */
  border-right: 400px solid transparent; /* 左辺の長さ */
  border-left: 400px solid transparent; /* 右辺の長さ */
  transform: rotate(0deg);
  opacity: 0.3;
}
.staff-table .text {
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .staff-table .text {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 767.9px) {
  .staff-table .text {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}
.staff-table h3 {
  font-size: 1.2em;
  padding-bottom: 3%;
}
@media screen and (max-width: 767.9px) {
  .staff-table h3 {
    padding-bottom: 3%;
  }
}
.staff-table h3 span.jp {
  margin: 0 5px 0 0;
  color: #55c361;
  font-size: 1.3em;
}
.staff-table h3 span.th {
  margin: 0 0 0 15px;
  color: #55c361;
  font-size: 1.3em;
}
.staff-table .img {
  text-align: center;
  border-radius: 0 0 0 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .staff-table .img {
    position: absolute;
    z-index: 120;
    bottom: 0;
    right: -10px;
    max-width: 330px;
  }
  .staff-table .img img {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .staff-table .img {
    position: sticky;
    z-index: 120;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
  .staff-table .img img {
    width: 80%;
    max-width: 260px;
  }
}
@media screen and (min-width: 768px) {
  .staff-table a {
    display: inline-block;
    margin: 15px 0 0 0;
  }
}
@media screen and (max-width: 767.9px) {
  .staff-table a {
    display: block;
    margin: 15px 0 0 0;
    text-align: center;
  }
}
.staff-table a {
  background-color: #00b324;
  border-radius: 50px;
  color: #fff;
  padding: 0.3em 2em 0.3em 1em;
}
.staff-table a:hover {
  color: #00b324;
  background: #cfffba;
}
.staff-table a:hover span::before {
  border-color: #00b324;
}
.staff-table a span {
  position: relative;
}
.staff-table a span::before {
  position: absolute;
  top: 0;
  right: -1em;
  bottom: 0;
  content: "";
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

/***************************************************************************
エントリー　page-entry.php
お問合せ　page-contact.php
***************************************************************************/
.entry-form .note,
.form-wrapper .note {
  border-radius: 5px 5px 0 0;
  background: #ffffff;
  padding: 5% 5% 0 5%;
  font-size: 0.9em;
  line-height: 1.5em;
  text-align: justify;
}
.entry-form form,
.form-wrapper form {
  padding: 0;
  margin: 0;
  width: 100%;
}
.entry-form dl,
.form-wrapper dl {
  width: 100%;
  padding: 3% 5% 3% 5%;
  border-radius: 0 0 5px 5px;
  background: #ffffff;
}
.entry-form dt,
.form-wrapper dt {
  width: 100%;
  padding: 3% 0 0 0;
  color: #2B57B0;
}
@media screen and (max-width: 767.9px) {
  .entry-form dt,
  .form-wrapper dt {
    padding: 3% 0 1% 0;
    width: 100%;
  }
}
.entry-form dt span.req,
.form-wrapper dt span.req {
  margin-left: 5px;
  padding: 4px 4px 3px 4px;
  border-radius: 5px;
  background: #ff5555;
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
}
.entry-form dd,
.form-wrapper dd {
  width: 100%;
  padding: 1% 0 3% 0;
}
@media screen and (max-width: 767.9px) {
  .entry-form dd,
  .form-wrapper dd {
    padding: 1% 0 3% 0;
    width: 100%;
  }
}
.entry-form dd span.notes,
.form-wrapper dd span.notes {
  font-size: 0.8em;
  margin: 0;
  padding: 0;
}
.entry-form dd label,
.form-wrapper dd label {
  margin: 0 10px 0 0;
}
.entry-form dd label input[type=radio],
.form-wrapper 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,
  .form-wrapper dd label:hover {
    cursor: pointer;
  }
}
.entry-form .personal-info,
.form-wrapper .personal-info {
  width: 100%;
  height: 260px;
  overflow-x: hidden;
  overflow-y: scroll;
  border-radius: 5px;
  background: #ffffff;
  margin-top: 10px;
  padding: 3%;
  font-size: 0.8em;
}
.entry-form .personal-info h5,
.form-wrapper .personal-info h5 {
  margin: 0 0 10px 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.entry-form .personal-info h6,
.form-wrapper .personal-info h6 {
  font-size: 1.5rem;
  margin: 15px 0 10px 0;
  font-weight: bold;
}
.entry-form .personal-info p,
.form-wrapper .personal-info p {
  padding: 0 10px;
  margin: 0;
}
.entry-form .personal-info p.counter,
.form-wrapper .personal-info p.counter {
  margin-top: 10px;
}
.entry-form .personal-info p.counter span,
.form-wrapper .personal-info p.counter span {
  margin-left: -6px;
}
.entry-form .personal-info-check,
.form-wrapper .personal-info-check {
  margin: 5% 3% 3% 3%;
  text-align: center;
}
.entry-form .personal-info-check label,
.form-wrapper .personal-info-check label {
  text-align: center;
  cursor: pointer;
}
.entry-form .personal-info-check input[type=checkbox],
.form-wrapper .personal-info-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  position: relative;
  top: -2px;
  cursor: pointer;
}
.entry-form .wpcf7-spinner,
.form-wrapper .wpcf7-spinner {
  display: none;
}
.entry-form .submit-btn-wrap,
.form-wrapper .submit-btn-wrap {
  display: inline-block;
  position: relative;
  z-index: 50;
  border-radius: 10px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 10px #1f3ab3;
  background: linear-gradient(-30deg, #5992D9, #103BA1);
  transition: 0.5s;
}
.entry-form .submit-btn-wrap::before,
.form-wrapper .submit-btn-wrap::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 23px;
  margin-top: -5px;
  transform: rotate(45deg);
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .entry-form .submit-btn-wrap:hover,
  .form-wrapper .submit-btn-wrap:hover {
    background: linear-gradient(30deg, #103BA1, #5992D9);
  }
}
.entry-form input[type=submit],
.form-wrapper input[type=submit] {
  display: inline-block;
  line-height: 1em;
  letter-spacing: 0.3em;
  padding: 20px 40px 20px 25px;
}
.entry-form,
.form-wrapper {
  /**/
}
.entry-form button[type=submit],
.form-wrapper button[type=submit] {
  display: inline-block;
  position: relative;
  z-index: 50;
  padding: 20px 40px 20px 25px;
  border-radius: 5px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-shadow: 0 0 10px #1f3ab3;
  background: linear-gradient(-30deg, #5992D9, #103BA1);
  letter-spacing: 0.2em;
  transition: 0.5s;
}
.entry-form button[type=submit]::before,
.form-wrapper button[type=submit]::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 23px;
  margin-top: -5px;
  transform: rotate(45deg);
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .entry-form button[type=submit]:hover,
  .form-wrapper button[type=submit]:hover {
    background: linear-gradient(30deg, #103BA1, #5992D9);
  }
}

.form-ps {
  margin: 3%;
  font-size: 0.9em;
  line-height: 1.5em;
}

/***************************************************************************
ブログページ　page-bloglist.php
***************************************************************************/
.cts-inner.cts-blog {
  padding: 10% 0;
}

/***************************************************************************
アーカイブページ（カテゴリ別or月別の投稿記事一覧）　archive.php
***************************************************************************/
.cts-wrap.archive-wrap {
  padding: 0 0 10% 0;
}

@media screen and (max-width: 1024px) {
  .cts-inner.cts-arc {
    padding: 60px 0 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .cts-inner.cts-arc {
    padding: 10% 0 0 0;
  }
}

@media screen and (max-width: 767.9px) {
  .archive-list {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .archive-list {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .archive-list {
    width: 75%;
  }
}
.archive-list h2 {
  padding: 3%;
  margin: 0;
  text-align: left;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .archive-list h2 {
    font-size: 1.5rem;
  }
}
.archive-list h2 span {
  margin: 0;
  padding: 0 0.8em 0 0;
  position: relative;
}
.archive-list h2 span:last-child {
  margin-right: 0.3em;
}
.archive-list h2 span::after {
  content: "\f105";
  font-size: 0.8em;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0.2em;
  top: 0.35em;
}
.archive-list .acv-item {
  width: 100%;
  background: #ffffff;
  margin-bottom: 1px;
}
.archive-list .acv-item a {
  padding: 3%;
  display: flex;
  flex-flow: nowrap;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .archive-list .acv-item a:hover {
    background: #feffe6;
    transition: 0.5s all;
  }
}
.archive-list .acv-item .acv-thumb {
  width: 23%;
  margin-right: 3%;
  aspect-ratio: 16/8;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.archive-list .acv-item .acv-thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-list .acv-item .acv-text {
  display: flex;
  flex-direction: column;
  width: 69%;
}
.archive-list .acv-item .acv-text h3 {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .archive-list .acv-item .acv-text h3 {
    font-size: 1.5rem;
    display: table-cell;
    vertical-align: middle;
  }
}
.archive-list .acv-item .acv-text .blog-date {
  width: 100%;
  font-size: 1.1rem;
  line-height: 1.5em;
  margin: 2% 0 0 0;
  font-weight: normal;
  display: flex;
  flex-direction: column;
}
.archive-list .acv-item .acv-text .blog-date div {
  display: flex;
}
.archive-list .acv-item .acv-text .blog-date div ul {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.archive-list .acv-item .acv-text .blog-excerpt {
  font-size: 1.4rem;
  line-height: 1.5em;
  margin-top: 1%;
}
@media screen and (max-width: 767.9px) {
  .archive-list .acv-item .acv-text .blog-excerpt {
    display: none;
  }
}
.archive-list nav.navigation {
  margin: 3%;
  text-align: center;
  font-size: 1.5rem;
}
.archive-list nav.navigation span.page-numbers {
  padding: 15px;
  display: inline-block;
}
.archive-list nav.navigation a {
  padding: 15px;
  border-radius: 5px;
  background: #ffffff;
  display: inline-block;
}
.archive-list nav.navigation a.prev {
  padding-left: 30px;
  position: relative;
}
.archive-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;
}
.archive-list nav.navigation a.next {
  padding-right: 30px;
  position: relative;
}
.archive-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;
}
.archive-list nav.navigation a:hover {
  background: #feffe6;
  transition: 1s all;
}

/***************************************************************************
投稿記事ページ　single.php
***************************************************************************/
.cts-wrap.single-wrap {
  padding: 0;
}
@media screen and (max-width: 767.9px) {
  .cts-wrap.single-wrap {
    padding: 60px 0 0;
  }
  .cts-wrap.single-wrap .cts-inner {
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  article.blog {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  article.blog {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1025px) {
  article.blog {
    width: 75%;
    border-radius: 10px;
    overflow: hidden;
  }
}
article.blog {
  background: #ffffff;
}
article.blog .eyecatch {
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
article.blog .eyecatch img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  article.blog .text h3 {
    font-size: 2.4rem;
  }
}
article.blog .text h3 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5em;
  padding: 3%;
}
article.blog .text .up {
  width: 100%;
  font-size: 1rem;
  text-align: right;
  padding: 10px 3%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  article.blog .text .up {
    flex-direction: column;
  }
}
article.blog .text .up {
  background: #f5feff;
}
article.blog .text .up span {
  margin-left: 1em;
}
article.blog .text .sent {
  padding: 3%;
}
article.blog ul.prev_next_list {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  article.blog ul.prev_next_list {
    display: flex;
  }
}
article.blog ul.prev_next_list li {
  background: chartreuse;
  display: table;
}
@media screen and (max-width: 767.9px) {
  article.blog ul.prev_next_list li {
    width: 100%;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  article.blog ul.prev_next_list li {
    width: 100%;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1025px) {
  article.blog ul.prev_next_list li {
    width: 50%;
  }
  article.blog ul.prev_next_list li a:hover {
    background: #feffe6;
  }
  article.blog ul.prev_next_list li a {
    transition: 0.5s;
  }
}
article.blog ul.prev_next_list li a {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  padding: 15px 35px;
  background: #f5feff;
}
@media screen and (max-width: 1024px) {
  article.blog ul.prev_next_list li.prev {
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1025px) {
  article.blog ul.prev_next_list li.prev {
    width: calc(50% - 2px);
    margin-right: 2px;
  }
}
article.blog ul.prev_next_list li.prev a::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: 15px;
  transform: rotate(-135deg);
  transition: 0.5s;
}
article.blog ul.prev_next_list li.next {
  text-align: right;
  margin-left: auto;
}
article.blog ul.prev_next_list li.next a::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: 15px;
  transform: rotate(45deg);
  transition: 0.5s;
}

/***************************************************************************
サイドバーのあるページ（投稿ページなど）
***************************************************************************/
@media screen and (min-width: 1025px) {
  .cts-block {
    display: flex;
  }
}

/***************************************************************************
sidebar
***************************************************************************/
@media screen and (max-width: 767.9px) {
  #sidebar {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  #sidebar {
    width: 25%;
    padding: 0 0 0 3%;
  }
}
@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 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 30px 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 0;
  }
}
#sidebar ul li {
  margin: 0 0 10px 0;
}
#sidebar ul li a {
  padding: 5px 5px 5px 0;
}
@media screen and (min-width: 1025px) {
  #sidebar ul li a {
    transition: 0.5s;
  }
}
#sidebar .acv-list {
  padding: 0 3%;
}
#sidebar .acv-list ul {
  margin-bottom: 1em;
}
#sidebar .acv-list a:hover {
  background-color: #ffffff;
}
#sidebar .acv-list li {
  margin-bottom: 0.5em;
}
#sidebar .acv-list li a::before {
  color: #2B57B0;
  content: "\f105";
  padding-left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}
#sidebar .acv-list ul {
  margin-top: 0.5em;
  margin-left: 1em;
}
#sidebar .acv-list ul.children ul.children {
  margin-left: 1em;
}
#sidebar .acv-list ul.children.hide {
  display: none;
}
#sidebar select.monthly {
  font-size: 1.5rem;
  color: #555555;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid #555555;
  padding: 0.5em 1em;
}
@media screen and (max-width: 767.9px) {
  #sidebar select.monthly {
    margin: 15px 0 30px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #sidebar select.monthly {
    margin: 15px 0 30px 1%;
  }
}
@media screen and (min-width: 1025px) {
  #sidebar select.monthly {
    margin: 15px 0 25px 15px;
  }
}
#sidebar select.monthly {
  background: #ffffff;
  border-radius: 5px;
}

/*********************************
footer
*********************************/
footer {
  /*
    @media screen and (min-width:1025px) {
    padding:45px 0;
    }*/
}
footer .inner {
  background: rgba(255, 255, 255, 0.373);
}
footer .inner .ft-btn .button {
  width: 100%;
  margin-top: 0.5em;
  letter-spacing: 0.1em;
  font-weight: bold;
}
footer .inner .ft-btn .button a {
  display: block;
  position: relative;
  border-radius: 10px;
  border: 1px solid #ffffff;
  color: #555555;
}
footer .inner .ft-btn .button a:hover {
  background: #ffffff;
}
footer .inner .ft-btn .button a::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #555555;
  border-right: solid 1px #555555;
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: 0.5s;
}
@media screen and (max-width: 767.9px) {
  footer .inner {
    padding: 6% 5% 4% 5% !important;
  }
  footer .footer-logo {
    width: 100px;
    height: auto !important;
    margin: 0 3% 15px 3%;
  }
  footer .footer-menu-wrap {
    width: 94%;
    margin: 0 3% 0 3%;
    font-size: 1.5rem;
  }
  footer .footer-menu-wrap ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  footer .footer-menu-wrap ul li.cts {
    padding: 0.5em 0.4em 0.5em 0.4em;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.6);
  }
  footer .footer-menu-wrap ul li a {
    display: block;
    width: calc(100% - 30px);
    height: 100%;
    padding: 15px;
  }
  footer .ft-btn a {
    padding: 1em;
  }
}
@media screen and (min-width: 768px) {
  footer .inner {
    padding: 1em 1em 1.4em 1em !important;
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
  }
  footer .footer-logo {
    width: 75px;
    height: auto;
  }
  footer .footer-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  footer .footer-menu-wrap nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1em;
  }
  footer .footer-menu-wrap ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footer-menu-wrap ul li {
    width: 100%;
    margin: 0.3em 0 0 0;
  }
  footer .footer-menu-wrap ul li.cts {
    margin-top: 0.5em;
    padding: 0.5em 1em;
    font-weight: bold;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
  }
  footer .footer-menu-wrap ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.2em 1em 0.2em 1em;
    font-size: 1.2rem;
  }
  footer .footer-menu-wrap ul li a:hover {
    text-decoration: underline;
  }
  footer .ft-btn {
    font-size: 1.2rem;
  }
  footer .ft-btn a {
    padding: 0.5em 1.2em 0.5em 1em;
  }
}
@media screen and (min-width: 1025px) {
  footer .footer-menu-wrap ul li a:hover {
    text-decoration: underline;
  }
}

footer .footer-logo a img {
  height: 30px;
  width: auto;
}

footer .copy {
  text-align: center;
  font-size: 1rem;
  color: #2B57B0;
  padding: 20px 0;
}/*# sourceMappingURL=style.css.map */