@charset "UTF-8";
/* Scss Document */
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ W3", "ヒラギノ角ゴ ", "Hiragino Kaku Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "pkna";
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  line-break: strict;
  /*word-break: break-all;*/
  font-size: 15px;
  font-weight: 400;
  color: var(--col-7, #464646);
  word-break: normal;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

.drawer-nav, .drawer-menu {
  z-index: 100;
}

.drawer-navbar-header {
  z-index: 200;
}

.drawer-nav a:active {
  text-decoration: none;
}

a, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

button:focus {
  outline: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
}

h1 {
  font-size: inherit;
}

#container {
  overflow: hidden;
}

#site_contents {
  min-height: 100vh;
}

.pc-none {
  display: none;
}

.sp-header {
  display: none;
}

.sp-br {
  display: none;
}

a {
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* svg 村田 */
.group_txt {
  fill: var(--col-6, #0087A8);
}

/* .sky {
  fill:url(#linear-gradient);
} */
.sky {
  fill: #4254b5;
}

/*---------------------------------

	header

---------------------------------*/
.menu-container {
  width: 100%;
  width: calc(100% - 16px);
  z-index: 100;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  min-width: 1000px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-radius: 40px;
  margin-top: 8px;
}
.menu-container ul {
  display: flex;
  list-style: none;
}
.menu-container-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 15px;
}
.menu-container-flex a {
  text-decoration: none;
}

.header-logo {
  display: block;
  max-width: 238px;
}

.menu a {
  display: block;
}

.menu_list {
  font-size: 15px;
  text-align: center;
  position: relative;
  margin: 0 6px;
}
.menu_list > a {
  padding: 10px 16px 6px 8px;
  font-weight: bold;
}

/*
.menu_list:not(:first-of-type):after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px var(--col-5 , #00A2B7);
    border-right: solid 2px var(--col-5 , #00A2B7);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: .3s ease;
    position: absolute;
    top: 16px;
    right: 0;
}
*/
/**********20250125追記
***********************/
.sub-menu .menu_list:not(:first-of-type):after {
  display: none;
}

.sub-menu .menu_list:before {
  display: none;
}

.logoH1 {
  font-size: 1.6em;
}

.menu .menu-item-has-children:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px var(--col-5, #00A2B7);
  border-right: solid 2px var(--col-5, #00A2B7);
  transform: rotate(135deg);
  transition: 0.3s ease;
  position: absolute;
  top: 16px;
  right: 0;
}

.red-menu {
  color: var(--col-14, #E34600);
}
.red-menu a {
  color: var(--col-14, #E34600);
}

.dashicons {
  font-family: "dashicons";
}

/**********20250125追記 end
**************************/
.menu_list:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background: var(--col-5, #00A2B7);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.menu-contact {
  border: 1px solid var(--col-14, #E34600);
  border-radius: 50px;
  padding: 8px;
  width: 150px;
  transition: 0.3s ease;
  text-align: center;
  font-weight: bold;
  color: var(--col-14, #E34600);
  margin-left: 28px;
  letter-spacing: 0.75px;
}

.menu-container.trans {
  position: fixed;
  animation: slideInDown 0.5s forwards linear;
  background: #fff;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0;
  margin-top: 0;
}

@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(-50%, -100%, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.menu_contents {
  background: var(--col-4, #5BC8D6);
  border-radius: 20px;
  display: none;
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  padding: 28px 46px 30px 46px;
  color: #fff;
  font-weight: bold;
}
.menu_contents .menu-flex-cover {
  display: flex;
  margin-left: -64px;
}
.menu_contents .menu-flex-cover ul {
  margin-left: 64px;
}
.menu_contents ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu_contents ul li a {
  position: relative;
  display: inline-block;
}
.menu_contents ul li:not(:last-of-type) {
  margin-bottom: 20px;
}

.menu-arrow-flex {
  display: flex;
  align-items: center;
}

.menu-arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: relative;
  transition: 0.3s ease;
  margin-right: 5px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid transparent;
  margin-bottom: -1px;
}

.menu-arrow:after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 5px;
}

.menu-arrow-txt {
  position: relative;
}

.menu-arrow-txt:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*---------------------------------

	slide

---------------------------------*/
#main_visual {
  position: relative;
}

.main_title {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 10%;
  margin-right: 20px;
}
.main_title h1 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  letter-spacing: 1.4px;
}

.main_title-btn {
  width: 100%;
  max-width: 260px;
  background: var(--col-4, #5BC8D6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50px;
  height: 62px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.75px;
}

.main_title-btn:before {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  right: 11px;
}

.main_title-btn:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  right: 24px;
}

.slide_1 {
  background-image: url("../img/mv/img_mv-01.jpg");
  background-size: cover;
  background-position: center;
}

.slide_2 {
  background-image: url("../img/mv/img_mv-02.jpg");
  background-size: cover;
  background-position: center;
}

.slide_3 {
  background-image: url("../img/mv/img_mv-03.jpg");
  background-size: cover;
  background-position: center;
}

.chage-btn {
  position: fixed;
  right: -78px;
  top: 50%;
  bottom: 50%;
  margin: auto;
  width: 102px;
  height: 290px;
  background: #fff;
  opacity: 0.9;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  z-index: 1001;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 20px 0 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.chage-btn:hover {
  border: 3px solid #e37e52;
}
.chage-btn.slide {
  right: 0;
  border: none;
}
.chage-btn img {
  width: 36px;
}
.chage-btn .ch-btn-inbtn {
  position: absolute;
  bottom: calc(50% - 12px);
  margin: auto;
  font-size: 24px;
  letter-spacing: -0.1rem;
  left: 5px;
}
.chage-btn .color-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.chage-btn .btn {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
.chage-btn .btn.selected {
  border-radius: 50%;
}
.chage-btn .btn.selected:hover {
  cursor: default;
}
.chage-btn .btn.selected img {
  display: block;
}
.chage-btn .btn:hover {
  border-radius: 50%;
}
.chage-btn .btn img {
  width: 22px;
  display: none;
}
.chage-btn #btn-def {
  background: #0087A8;
}
.chage-btn #btn-bl {
  background: #000;
}
.chage-btn #btn-red {
  background: #d10505;
}
.chage-btn #btn-darlbl {
  background: #000576;
}

#container {
  position: relative;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .slide_1 {
    background-image: url("../img/mv/2x/img_mv-01@2x.jpg");
    background-position: left;
  }
  .slide_2 {
    background-image: url("../img/mv/2x/img_mv-02@2x.jpg");
  }
  .slide_3 {
    background-image: url("../img/mv/2x/img_mv-03@2x.jpg");
  }
}
.swiper-mv .swiper-wrapper {
  width: 100%;
  height: 100vh;
}
@media (max-width: 475px) {
.swiper-mv .swiper-wrapper {
	height: 75vh;
	}
}

.swiper-mv .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
}
.swiper-mv .swiper-pagination-bullet {
  background: rgba(var(--col-20-rgb, 255, 255, 255), 0.4);
  opacity: 1;
  border-radius: 4px;
  height: 4px;
  width: calc(33.3333333333% - 24px);
}
.swiper-mv .swiper-pagination-bullet-active {
  background: var(--col-4, #5BC8D6);
}
.swiper-mv .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-mv .swiper-pagination-custom, .swiper-mv .swiper-pagination-fraction {
  bottom: 16px;
  width: 100%;
}
.swiper-mv .swiper-slide:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  /*background: rgba(var(--col-19-rgb, 0, 0, 0), 0.4);*/
  mix-blend-mode: multiply;
}

/*---------------------------------

	bnr-tel

---------------------------------*/
.bnr-tel-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  margin-left: -70px;
}

.bnr-tel-bg {
  position: relative;
  padding: 53px 139px 53px 16px;
}
.bnr-tel-bg:before, .bnr-tel-bg:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.bnr-tel-bg:before {
  width: calc(100% - 131px);
  height: 100%;
  background: var(--col-2, #82E7F4);
}
.bnr-tel-bg:after {
  width: calc(100% - 139px);
  height: calc(100% - 8px);
  background: var(--col-4, #5BC8D6);
}

.bnr-tel-bg-left {
  margin-left: 70px;
}
.bnr-tel-bg-left p {
  font-size: 26px;
  font-weight: bold;
}

.bnr-tel-bg-right {
  margin-left: 70px;
}
.bnr-tel-bg-right p:first-of-type {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-bottom: 8px;
}
.bnr-tel-bg-right p:first-of-type:before {
  content: "";
  display: inline-block;
  width: 43px;
  height: 43px;
  background-image: url("../img/common/img_footer-tel.svg");
  background-size: contain;
  position: absolute;
  left: -42px;
  top: 10px;
}
.bnr-tel-bg-right p:last-of-type {
  font-size: 18px;
}

/*---------------------------------

	bnr-contact

---------------------------------*/
.bnr-contact-bg {
  position: relative;
}
.bnr-contact-bg a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -76px;
  flex-wrap: wrap-reverse;
  padding: 78px 20px 60px 20px;
}

.bnr-contact-bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/common/img_bnr-contact.jpg");
  mix-blend-mode: multiply;
  transition: 0.3s ease;
  background-position: center;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bnr-contact-bg:after {
    background-image: url("../img/common/2x/img_bnr-contact@2x.jpg");
  }
}
.bnr-contact-bg:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--col-5, #00A2B7);
}

.bnr-contact-bg-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 76px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  position: relative;
}
.bnr-contact-bg-left span {
  width: 108px;
  height: 76px;
  fill: #fff;
  background-size: contain;
  display: block;
  transition: 0.3s ease;
  z-index: 1;
}
.bnr-contact-bg-left:after {
  content: "";
  display: inline-block;
  border: solid 1px #fff;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  position: absolute;
  transition: 0.3s ease;
}

.envelope {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
}

.bnr-contact-bg-right {
  margin-left: 76px;
  margin-bottom: 20px;
}
.bnr-contact-bg-right p {
  color: #fff;
}

.bnr-contact-bg-right-top p:first-of-type {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}
.bnr-contact-bg-right-top p:nth-of-type(2) {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

/*---------------------------------

	footer

---------------------------------*/
.footer-cover {
  background: var(--col-12, #E8E8E8);
  padding: 56px 16px 50px 16px;
}
.footer-cover ul {
  list-style: none;
}
.footer-cover a {
  text-decoration: none;
}

.footer-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
}

.footer-left {
  width: 60%;
}
.footer-left .footer-address {
  margin-bottom: 40px;
  text-align: left;
}
.footer-left .footer-sns {
  display: flex;
  margin-left: -32px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-left .footer-sns li {
  margin-left: 32px;
  margin-bottom: 40px;
}
.footer-left .img-footer-logo {
  margin-bottom: 16px;
  max-width: 238px;
  display: block;
}
.footer-left .footer-left-inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.footer-left .copyright {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  margin-top: 16px;
}

.footer-right {
  width: 40%;
}

.footer-right-flex {
  display: flex;
  margin-left: -10%;
}
.footer-right-flex ul {
  margin-left: 10%;
}
.footer-right-flex ul li:not(:last-of-type) {
  margin-bottom: 12px;
}

/************20250212追記
********************
#menu-footermenu01 {
  width: 240px;
}

#menu-footermenu02 {
  width: 145px;
}
*/

/************20250212追記 end
********************/
.top-arrow {
  border: 2px solid var(--col-5, #00A2B7);
  border-radius: 40px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 126px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.dli-arrow-up {
  display: inline-block;
  vertical-align: middle;
  color: var(--col-5, #00A2B7);
  line-height: 1;
  position: relative;
  width: 2px;
  height: 22px;
  background: currentColor;
}

.dli-arrow-up::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -2px;
  right: 50%;
  box-sizing: border-box;
}

.sns-color {
  fill: #282828;
}

/*---------------------------------

	btn

---------------------------------*/
.btn-primary-cover {
  display: flex;
}

.btn-primary-cover2 {
  display: flex;
  margin-left: -40px;
}
.btn-primary-cover2 a {
  margin-left: 40px;
}

.btn-primary-cover-center {
  justify-content: center;
}

.btn-primary {
  display: flex;
  width: 100%;
  max-width: 260px;
  height: 62px;
  position: relative;
  text-decoration: none;
  color: #fff;
  z-index: 0;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.75px;
  line-height: 1.6;
}

.btn-primary span:first-of-type {
  margin-right: 10px;
  transition: 0.3s ease;
}

.btn-primary:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  border-radius: 50px;
  transition: 0.3s ease;
  background: var(--gr-col-1, linear-gradient(270deg, #00A2B7 0%, #0070AC 100%));
}

.btn-primary:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  border-radius: 50px;
  background: var(--col-3, #002E4B);
}

.btn-primary.btn-5bc:before {
  background: var(--col-4, #5BC8D6);
}

.btn-primary.btn-5bc:after {
  background: var(--col-6, #0087A8);
}

.btn-arrow-primary {
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  right: 12px;
}

.btn-arrow-primary:after {
  content: "";
  display: inline-block;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.3s ease;
  position: absolute;
  top: 10px;
  left: 9px;
}

.btn-read {
  display: inline-block;
  text-decoration: none;
}

.btn-read-flex {
  display: flex;
  align-items: center;
  margin-left: -28px;
}

.btn-read-txt {
  font-size: 15px;
  transition: 0.3s ease;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  position: relative;
  color: #fff;
  margin-left: 28px;
  font-family: "Roboto", sans-serif;
}

.btn-read-arrow {
  display: inline-block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  transition: 0.3s ease;
  border: 1px solid #fff;
  position: relative;
  margin-left: 28px;
}

.btn-read-arrow:before {
  content: "";
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 23px;
  right: 29px;
  transition: 0.3s ease;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

/*---------------------------------

	共通

---------------------------------*/
.bk-common:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.39;
  background-image: url("../img/common/img_back.png");
  width: 100%;
  height: 100vh;
  height: calc(100 * var(--vh, 1vh));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bk-common:before {
    background-image: url("../img/common/2x/img_back@2x.png");
  }
}
.bk-common2 {
  background: #fff;
}

.sec-ttl {
  color: var(--col-6, #0087A8);
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  /*20250226追記*/
  /*20250226追記 end*/
}
.sec-ttl span {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  color: var(--col-4, #5BC8D6);
  font-weight: 500;
  display: block;
}
.sec-ttl.at-h2 {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: #e93737;
  width: 100%;
  justify-content: center;
}
.sec-ttl.at-h2 .dashicons {
  font-family: "dashicons";
  font-size: 28px;
  width: 28px;
  height: 28px;
  color: #f7c3c3;
  margin-left: 5px;
  margin-right: 5px;
}

.sec-ttl2 {
  color: var(--col-6, #0087A8);
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.calc3 {
  width: 33.3333333333%;
}

.calc3-ml2 {
  width: calc(33.3333333333% - 2px);
  margin-left: 2px;
}

.calc2 {
  width: 50%;
}

.calc2-ml2 {
  width: calc(50% - 2px);
  margin-left: 2px;
}

.calc-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.calc-ml2-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -2px;
}

.sec-ptb {
  padding-top: 72px;
  padding-bottom: 60px;
}

.sec-ptb2 {
  padding-top: 72px;
  padding-bottom: 20px;
}

.sec-ptb3 {
  padding-top: 40px;
  padding-bottom: 16px;
}

.sec-plr {
  padding-left: 16px;
  padding-right: 16px;
}

.font-bold {
  font-weight: bold;
}

.nomal-ul {
  margin: 20px 0;
  margin-left: 2rem;
}

.mb24 {
  margin-bottom: 24px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.cover904 {
  max-width: 904px;
  margin: auto;
}

.cover970 {
  max-width: 970px;
  margin: auto;
}

.cover1088 {
  max-width: 1088px;
  margin: auto;
}

.cover1366 {
  max-width: 1366px;
  margin: auto;
}

/*---------------------------------

	top

---------------------------------*/
.top-sec-service {
  background: #fff;
}

.cardback-box h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  padding: 9px 8px;
}
.cardback-box h3 span {
  position: relative;
  z-index: 1;
  color: var(--col-6, #0087A8);
}

.cardback .cardback-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
}
.cardback .cardback-wrapper figure {
  position: relative;
}
.cardback .cardback-wrapper figure:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(var(--col-5-rgb, 0, 162, 183), 0.22);
  position: absolute;
  top: 0;
  left: 0;
}
.cardback .cardback-data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: transform 0.2s;
  transform: translateY(100%);
  height: 100%;
}
.cardback .contentcard {
  padding: 37px 16px;
  position: relative;
  z-index: 1;
  height: 100%;
  background: var(--gr-col-1-rgb, linear-gradient(180deg, rgba(0, 162, 183, 0.6) 0%, rgba(0, 112, 172, 0.6) 100%));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.cardback .contentcard .btn-read-cover {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.top-sec-cases-flex a {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  text-decoration: none;
  padding-bottom: 23px;
}

.top-sec-cases-box .top-sec-cases-box-txt {
  font-weight: bold;
  color: var(--col-6, #0087A8);
  margin-top: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.top-sec-cases-box .top-sec-cases-box-name {
  font-weight: bold;
}
.top-sec-cases-box p {
  padding: 0 26px;
}
.top-sec-cases-box .post-thumbnail-ac {
  transition: 0.3s ease;
  height: 200px;
}
.top-sec-cases-box .post-thumbnail-ac img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

.top-sec-voices {
  background: #fff;
}

.top-sec-voices-box {
  background: #fff;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  margin-bottom: 20px;
}

.top-sec-voices-flex {
  display: flex;
  margin-left: -26px;
  align-items: center;
  padding: 32px 30px;
}
.top-sec-voices-flex figure {
  border-radius: 10px;
  margin-left: 26px;
}
.top-sec-voices-flex figure img {
  border-radius: 10px;
  min-width: 94px;
}
.top-sec-voices-flex .top-sec-voices-txt {
  margin-left: 26px;
}
.top-sec-voices-flex .top-sec-voices-txt p:first-of-type {
  margin-bottom: 24px;
  font-weight: bold;
}

.top-sec-news {
  background: var(--col-11, #F8F8F8);
}

.tabnav {
  list-style: none;
  display: flex;
  margin-left: -2px;
  margin-bottom: 2px;
}
.tabnav li {
  width: calc(33.3333333333% - 2px);
  margin-left: 2px;
  position: relative;
  border-radius: 4px 4px 0px 0px;
  background: #fff;
  transition: 0.3s ease;
}
.tabnav .tabnav-cat {
  font-size: 18px;
  font-weight: bold;
}

.tabnav li label {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 10;
  height: 67px;
  border-radius: 4px 4px 0px 0px;
}

input[name=tabinput] {
  display: none;
}

#tab01:checked ~ .tabnav .tabnav01,
#tab02:checked ~ .tabnav .tabnav02,
#tab03:checked ~ .tabnav .tabnav03,
#tab04:checked ~ .tabnav .tabnav04 {
  background: var(--col-5, #00A2B7);
}

#tab01:checked ~ .tabnav .tabnav01 span,
#tab02:checked ~ .tabnav .tabnav02 span,
#tab03:checked ~ .tabnav .tabnav03 span,
#tab04:checked ~ .tabnav .tabnav04 span {
  color: #fff;
}

#tab05:checked ~ .kk-tabnav-cover .kk-tabnav .tabnav05,
#tab06:checked ~ .kk-tabnav-cover .kk-tabnav .tabnav06,
#tab07:checked ~ .kk-tabnav-cover .kk-tabnav .tabnav07 {
  background: none;
  border-top: solid 4px #1F43A3;
  border-left: solid 1px #1F43A3;
  border-right: solid 1px #1F43A3;
}

#tabcontent01, #tabcontent02, #tabcontent03, #tabcontent04, #tabcontent05, #tabcontent06, #tabcontent07 {
  display: none;
}

#tab01:checked ~ .tabcontent #tabcontent01,
#tab02:checked ~ .tabcontent #tabcontent02,
#tab03:checked ~ .tabcontent #tabcontent03,
#tab04:checked ~ .tabcontent #tabcontent04,
#tab05:checked ~ .tabcontent #tabcontent05,
#tab06:checked ~ .tabcontent #tabcontent06,
#tab07:checked ~ .tabcontent #tabcontent07 {
  display: block;
}

.tabcontent-ac {
  text-decoration: none;
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 2px;
  padding: 28px 52px 28px 32px;
  position: relative;
}
.tabcontent-ac .tabnews-left {
  display: flex;
  align-items: center;
  width: 29%;
  padding-right: 8px;
  min-width: 229px;
}
.tabcontent-ac .news-date {
  width: 110px;
}
.tabcontent-ac .news-title {
  font-weight: 400;
  font-size: 15px;
  position: relative;
}
.tabcontent-ac .news-title:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--col-6, #0087A8);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.news-date {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
}

.info-color-cat {
  font-size: 15px;
  color: var(--col-5, #00A2B7);
  border-radius: 15px;
  padding: 3px 12px;
}

.info-color-news {
  background: var(--col-1, #E1F4F4);
}

.info-color-blog {
  background: var(--col-1, #E1F4F4);
}

.btn-top-news-arrow {
  display: inline-block;
  background: var(--col-1, #E1F4F4);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s ease;
}

.btn-top-news-arrow:after {
  content: "";
  display: inline-block;
  border-top: solid 2px var(--col-5, #00A2B7);
  border-right: solid 2px var(--col-5, #00A2B7);
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.3s ease;
  position: absolute;
  top: 10px;
  left: 9px;
}

.top-sec-recruit {
  padding-top: 20px;
}
.top-sec-recruit figure {
  margin-left: -160px;
  margin-top: 40px;
  width: 80%;
}

.top-sec-recruit-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.top-sec-recruit-left {
  width: 100%;
  max-width: 935px;
  margin-right: auto;
  background: #fff;
  padding: 76px 210px 60px 16px;
}

.top-sec-recruit-left-inner {
  max-width: 484px;
  margin-left: auto;
}

/*---------------------------------

	下層タイトル

---------------------------------*/
.lower-title-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1.6fr;
  grid-auto-flow: column;
  min-height: 651px;
  max-height: 651px;
}
.lower-title-container figure {
  height: 100%;
}
.lower-title-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 414px;
}
.lower-title-container h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
  margin-bottom: 40px;
}

.lower-title-container.grid2 {
  grid-template-rows: 1fr;
  grid-auto-flow: row;
  min-height: 236px;
}

.grid3 .grid-item:nth-of-type(1) {
  background: #fff;
  display: flex;
  align-items: center;
}
.grid3 .grid-item:nth-of-type(3) {
  grid-row: 1/3;
  background: var(--col-10, #EAF7F8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 7% 97px 7%;
}

.grid2 .grid-item:nth-of-type(1) {
  background: #fff;
  display: flex;
  align-items: center;
}
.grid2 .grid-item:nth-of-type(2) {
  background: var(--col-10, #EAF7F8);
}

.lower-head {
  padding: 103px 8px 20px 0;
  margin-left: 20%;
}
.lower-head span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.lower-head .en-ttl {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: var(--col-4, #5BC8D6);
  margin-bottom: -4px;
}
.lower-head .head-ttl {
  font-size: 26px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
}
.lower-head .head-subttl {
  font-size: 18px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
  margin: 4px 0 2px 0;
}

/*---------------------------------

	breadcrumbs

---------------------------------*/
.breadcrumbs-cover {
  background: var(--col-10, #EAF7F8);
  padding: 0 16px;
}

.breadcrumbs {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow: auto;
  width: 100%;
  font-size: 13px;
  padding: 10px 0;
}
.breadcrumbs a {
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}
.breadcrumbs a:after {
  content: "";
  display: inline-block;
  background-image: url(../img/common/img_bread.svg);
  background-size: contain;
  width: 8px;
  height: 16px;
  position: absolute;
  right: -6px;
  top: 5px;
}
.breadcrumbs span {
  position: relative;
  margin-right: 20px;
}

.breadcrumbs span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  max-width: 330px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*---------------------------------

	scroll

---------------------------------*/
.scroll-contents-inner {
  /*padding-top: 40px;*/
  /*margin-top: -40px;*/
}

/*---------------------------------

	business-01

---------------------------------*/
.layout-01-flex .layout-01-box:nth-of-type(odd) {
  background: var(--col-10, #EAF7F8);
}
.layout-01-flex .layout-01-box:nth-of-type(even) {
  background: var(--col-15, #F5FEFF);
}
.layout-01-flex .layout-01-box:nth-of-type(1) .layout-01-box-txt-cover:after {
  content: "1";
}
.layout-01-flex .layout-01-box:nth-of-type(2) .layout-01-box-txt-cover:after {
  content: "2";
}
.layout-01-flex .layout-01-box:nth-of-type(3) .layout-01-box-txt-cover:after {
  content: "3";
}

.layout-01-box-txt-cover:before {
  content: "";
  display: inline-block;
  width: 62px;
  height: 62px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(var(--col-6-rgb, 0, 135, 168), 0.22);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -71px;
}

.layout-01-box-txt-cover:after {
  display: inline-block;
  font-size: 26px;
  font-family: "Roboto", sans-serif;
  color: var(--col-4, #5BC8D6);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -63px;
}

.layout-01-box-txt-cover {
  padding: 0 26px 26px 26px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  position: relative;
}
.layout-01-box-txt-cover h3 {
  font-weight: bold;
  color: var(--col-6, #0087A8);
  font-size: 15px;
  margin-bottom: 24px;
}

.sec-layout-02 figure {
  margin-bottom: 40px;
}

.sec-layout-02-box-cover .sec-layout-02-box:not(:last-of-type) {
  margin-bottom: 60px;
}

.marker {
  background: linear-gradient(transparent 60%, var(--col-16, #FFEDC4) 60%);
  font-weight: bold;
}

.sec-layout-02-txt-name {
  color: var(--col-6, #0087A8);
  margin-bottom: 30px;
}

.sec-layout-03-box-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.sec-layout-03-img {
  width: 50%;
}

.sec-layout-03-txt {
  width: 50%;
  padding-left: 40px;
}
.sec-layout-03-txt h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
  margin-bottom: 32px;
}

.sec-layout-03-txt-name {
  font-weight: bold;
  margin-top: 30px;
}

.sec-layout-03-box-cover .sec-layout-03-box:not(:last-of-type) {
  margin-bottom: 40px;
}

.sec-layout-04 {
  padding-bottom: 20px;
}
.sec-layout-04 .sec-ttl {
  padding-top: 72px;
}

.sec-layout-04-box-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.sec-layout-04-img {
  width: 50%;
}

.sec-layout-04-txt {
  width: 50%;
  max-width: 544px;
}
.sec-layout-04-txt h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
  margin-bottom: 32px;
}

.sec-layout-04-box-cover .sec-layout-04-box {
  margin-bottom: 60px;
}
.sec-layout-04-box-cover .sec-layout-04-box:nth-of-type(even) .sec-layout-04-box-flex {
  flex-direction: row-reverse;
}
.sec-layout-04-box-cover .sec-layout-04-box:nth-of-type(even) .sec-layout-04-txt {
  padding-right: 40px;
  padding-left: 16px;
}
.sec-layout-04-box-cover .sec-layout-04-box:nth-of-type(odd) .sec-layout-04-txt {
  padding-left: 40px;
  padding-right: 16px;
}

/*---------------------------------

	business-02

---------------------------------*/
.list-box {
  background: var(--col-11, #F8F8F8);
  border-radius: 16px;
  padding: 32px 32px 32px 40px;
}
.list-box ol, .list-box ul {
  list-style: none;
}
.list-box ol li, .list-box ul li {
  position: relative;
}
.list-box ol li:not(:last-of-type), .list-box ul li:not(:last-of-type) {
  margin-bottom: 24px;
}
.list-box a {
  color: var(--col-6, #0087A8);
}

.list-ol {
  counter-reset: number 0;
}
.list-ol li {
  padding-left: 56px;
}
.list-ol li:before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 0;
}
.list-ol li:after {
  counter-increment: number 1;
  content: counter(number) "";
  font-family: "Roboto", sans-serif;
  color: var(--col-4, #5BC8D6);
  font-size: 26px;
  position: absolute;
  left: 13px;
  top: -6px;
}

.list-circle li {
  padding-left: 26px;
}
.list-circle li:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--col-4, #5BC8D6);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.list-check li {
  padding-left: 44px;
  position: relative;
}
.list-check li:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 0;
  border: solid 1px var(--col-12, #E8E8E8);
  border-radius: 4px;
}
.list-check li:after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  background-size: contain;
  background-image: url("../img/layout/img_list-check.svg");
  left: 0;
  top: 5px;
}

.slide-01-cover {
  max-width: 1600px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.slide-02-cover {
  max-width: 1600px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.slide-03-cover {
  max-width: 1600px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.slider01 .swiper-button-prev, .slider02 .swiper-button-prev, .slider03 .swiper-button-prev {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: 30%;
  border-radius: 0px 4px 4px 0px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  left: 0;
  transition: 0.3s ease;
}
.slider01 .swiper-button-prev:after, .slider02 .swiper-button-prev:after, .slider03 .swiper-button-prev:after {
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  right: 16px;
}
.slider01 .swiper-button-next, .slider02 .swiper-button-next, .slider03 .swiper-button-next {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: 30%;
  border-radius: 4px 0px 0px 4px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  right: 0;
  transition: 0.3s ease;
}
.slider01 .swiper-button-next:after, .slider02 .swiper-button-next:after, .slider03 .swiper-button-next:after {
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  right: 20px;
}
.slider01 .swiper-button-next:after, .slider01 .swiper-button-prev:after, .slider02 .swiper-button-next:after, .slider02 .swiper-button-prev:after, .slider03 .swiper-button-next:after, .slider03 .swiper-button-prev:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 2px var(--col-6, #0087A8);
  border-right: solid 2px var(--col-6, #0087A8);
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
}

.slider01 .swiper {
  width: 100%;
  overflow: hidden;
  margin-left: auto;
}
.slider01 .swiper .swiper-slide {
  min-height: 350px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.slider01 .swiper .swiper-slide .slider01-inner {
  margin: 16px;
  color: #fff;
  font-weight: bold;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  letter-spacing: 0.9px;
  text-align: center;
  font-size: 18px;
  z-index: 1;
}
.slider01 .swiper .swiper-slide .slider01-inner p:first-of-type {
  font-size: 26px;
  font-family: "Roboto", sans-serif;
  color: var(--col-13, #E37E52);
  letter-spacing: 1.3px;
}
.slider01 .swiper .swiper-slide .slider01-inner .slider01-tel {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  margin: 12px 0 16px;
  letter-spacing: 1.5px;
}
.slider01 .swiper .swiper-slide .slider01-inner .slider01-btn {
  width: 203px;
  height: 55px;
  border: 1px solid #FFFFFF;
  text-align: center;
  display: block;
  text-decoration: none;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider01 .swiper .swiper-slide:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(var(--col-6-rgb, 0, 135, 168), 0.45);
}

.slider02 .swiper {
  width: 100%;
  overflow: hidden;
  margin-right: auto;
}

.slider03 .swiper {
  width: 100%;
  overflow: hidden;
  margin-left: auto;
}
.slider03 .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.slider03-item {
  background: var(--col-10, #EAF7F8);
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.slider03-item img {
  margin-bottom: 20px;
}
.slider03-item h3 {
  font-weight: bold;
  color: var(--col-6, #0087A8);
  margin-bottom: 16px;
  padding: 0 26px;
  font-size: 15px;
}
.slider03-item p {
  padding: 0 26px;
  font-size: 15px;
  flex-grow: 1;
}

.slider01-slide_1 {
  background-image: url("../img/layout/slide/img_slideblock-01-01.jpg");
}

.slider01-slide_2 {
  background-image: url("../img/layout/slide/img_slideblock-01-02.jpg");
}

.slider01-slide_3 {
  background-image: url("../img/layout/slide/img_slideblock-01-03.jpg");
}

.slider01-slide_4 {
  background-image: url("../img/layout/slide/img_slideblock-01-04.jpg");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .slider01-slide_1 {
    background-image: url("../img/layout/slide/2x/img_slideblock-01-01@2x.jpg");
  }
  .slider01-slide_2 {
    background-image: url("../img/layout/slide/2x/img_slideblock-01-02@2x.jpg");
  }
  .slider01-slide_3 {
    background-image: url("../img/layout/slide/2x/img_slideblock-01-03@2x.jpg");
  }
  .slider01-slide_4 {
    background-image: url("../img/layout/slide/2x/img_slideblock-01-04@2x.jpg");
  }
}
.movie-cover {
  max-width: 604px;
  margin: 0 auto 80px auto;
}

.movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------------------------------

	business-03

---------------------------------*/
.sec-subttl {
  font-size: 15px;
  color: var(--col-7, #464646);
  margin-left: 8px;
}

.tbl-box ul {
  list-style: none;
  margin-top: 30px;
}

.tbl-design01 {
  border-collapse: collapse;
  width: 100%;
}
.tbl-design01 tr:nth-child(odd) {
  background: var(--col-11, #F8F8F8);
}
.tbl-design01 th, .tbl-design01 td {
  padding: 18px 20px;
}
.tbl-design01 th {
  text-align: center;
  width: 28%;
}

.tbl-design02 {
  border-collapse: collapse;
  width: 100%;
  border-top: solid 1px var(--col-12, #E8E8E8);
}
.tbl-design02 th, .tbl-design02 td {
  padding: 18px 20px;
  border-bottom: solid 1px var(--col-12, #E8E8E8);
}
.tbl-design02 th {
  text-align: center;
  width: 28%;
  background: var(--col-11, #F8F8F8);
}

.tbl-designir th {
  width: 35%;
}

.tbl-scroll {
  overflow-x: auto;
}

.tbl-design03 {
  border-collapse: collapse;
  table-layout: fixed;
  font-weight: bold;
  width: 100%;
  min-width: 700px;
  text-align: center;
}
.tbl-design03 thead th {
  padding: 14px 8px;
  border-radius: 8px 8px 0px 0px;
}
.tbl-design03 thead th:nth-child(1) {
  width: 26%;
}
.tbl-design03 thead th:nth-child(3) {
  background: var(--col-6, #0087A8);
  color: #fff;
}
.tbl-design03 thead th:nth-child(4) {
  background-color: var(--col-13, #E37E52);
  color: #fff;
}
.tbl-design03 tbody {
  border-top: 2px solid var(--col-7, #464646);
}
.tbl-design03 tbody tr th {
  border-bottom: dashed 1px var(--col-7, #464646);
  padding: 14px 8px;
}
.tbl-design03 tbody tr td {
  padding: 18px 20px;
  border-bottom: dashed 1px var(--col-7, #464646);
}
.tbl-design03 tbody tr td:nth-child(3) {
  color: var(--col-6, #0087A8);
  background: var(--col-9, #F2FDFD);
}
.tbl-design03 tbody tr td:nth-child(3) .maru {
  border-color: var(--col-6, #0087A8);
}
.tbl-design03 tbody tr td:nth-child(3) .sankaku {
  background-color: var(--col-6, #0087A8);
}
.tbl-design03 tbody tr td:nth-child(3) .sankaku:after {
  background-color: var(--col-9, #F2FDFD);
}
.tbl-design03 tbody tr td:nth-child(4) {
  color: var(--col-14, #E34600);
  background: var(--col-16, #FFEDC4);
}
.tbl-design03 tbody tr td:nth-child(4) .maru {
  border-color: var(--col-14, #E34600);
}
.tbl-design03 tbody tr td:nth-child(4) .sankaku {
  background-color: var(--col-14, #E34600);
}
.tbl-design03 tbody tr td:nth-child(4) .sankaku:after {
  background-color: var(--col-16, #FFEDC4);
}
.tbl-design03 .maru {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  border: solid 2px #919191;
}
.tbl-design03 .sankaku {
  background-color: #919191;
  width: 18px;
  height: 18px;
  display: inline-block;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: relative;
}
.tbl-design03 .sankaku:after {
  content: "";
  background-color: #fff;
  width: 12px;
  height: 12px;
  display: inline-block;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 4px;
  left: 3px;
}

.tbl-design04-flex {
  display: flex;
  margin-left: -2px;
  flex-wrap: wrap;
}
.tbl-design04-flex .tbl-design04-box:nth-of-type(1) h3 {
  background: var(--col-13, #E37E52);
}
.tbl-design04-flex .tbl-design04-box:nth-of-type(2) h3 {
  background: var(--col-4, #5BC8D6);
}
.tbl-design04-flex .tbl-design04-box:nth-of-type(3) h3 {
  background: var(--col-4, #5BC8D6);
}

.tbl-design04-box {
  width: calc(33.3333333333% - 2px);
  box-shadow: 0px 3px 4px rgba(145, 145, 145, 0.5019607843);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.tbl-design04-box h3 {
  color: #fff;
  border-radius: 16px 16px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 8px;
}
.tbl-design04-box .tbl-design04-txt {
  padding: 24px 18px 30px 18px;
}
.tbl-design04-box .tbl-design04-topic {
  margin: 0 0 32px;
}
.tbl-design04-box ul {
  margin-bottom: 32px;
}
.tbl-design04-box ul li {
  position: relative;
  padding-left: 48px;
}
.tbl-design04-box ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-size: contain;
  left: 0;
  top: -2px;
}
.tbl-design04-box ul .maru2:before {
  width: 36px;
  height: 36px;
  background-image: url(../img/layout/img_maru2.svg);
}
.tbl-design04-box ul .maru:before {
  width: 36px;
  height: 36px;
  background-image: url(../img/layout/img_maru.svg);
}
.tbl-design04-box ul .sankaku:before {
  width: 36px;
  height: 32px;
  background-image: url(../img/layout/img_sankaku.svg);
}
.tbl-design04-box ul .batu:before {
  width: 32px;
  height: 32px;
  background-image: url(../img/layout/img_batu.svg);
}
.tbl-design04-box ul li:not(:last-of-type) {
  margin-bottom: 39px;
}

/**********20250212追記
*********************/
.tbl-design06 {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
}
.tbl-design06 tr:nth-child(odd) {
  background: var(--col-11, #F8F8F8);
}
.tbl-design06 th, .tbl-design06 td {
  padding: 18px 20px;
  white-space: nowrap;
}
.tbl-design06 th {
  text-align: center;
  width: 28%;
  white-space: nowrap;
}
.tbl-design06 img {
  min-width: 60px;
}

.tbl-fix {
  overflow-x: auto;
  display: block;
}

/**********20250212追記 end
*********************/
.flow-box {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-left: 16px;
}
.flow-box .flow-item:not(:last-of-type) {
  border-left: solid 2px var(--col-4, #5BC8D6);
  padding: 0 16px 50px 32px;
}
.flow-box .flow-item:last-of-type {
  padding: 0 16px 80px 32px;
}

.flow-item {
  position: relative;
  max-width: 540px;
}

.flow-item:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--col-4, #5BC8D6);
  position: absolute;
  left: -13px;
}

.flow-item.flow-item-color:before {
  width: 32px;
  height: 32px;
  background: var(--col-13, #E37E52);
  left: -16px;
}

.flow-item.flow-item-color .flow-item-name {
  color: var(--col-13, #E37E52);
}

.flow-item-name {
  font-weight: bold;
}

.sec-tbl-05 {
  padding-bottom: 80px;
}

/*---------------------------------

	faq

---------------------------------*/
.qa-accordion-cover {
  margin-bottom: 40px;
}
.qa-accordion-cover .qa-accordion:not(:last-of-type) {
  margin-bottom: 40px;
}

.qa-accordion {
  position: relative;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
}

.qa-title:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 0px;
  border-top: solid 2px var(--col-6, #0087A8);
  border-right: solid 2px var(--col-6, #0087A8);
  transform: rotate(135deg);
  transition: 0.3s ease;
  position: absolute;
  right: 37px;
  top: 30px;
}

.qa-title.qa-open:after {
  transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
}

.qa-title {
  font-weight: bold;
  position: relative;
  padding: 32px 88px 40px 75px;
}

.qa-title:before {
  content: "Q";
  display: inline-block;
  font-size: 30px;
  color: var(--col-6, #0087A8);
  font-family: "Roboto", sans-serif;
  position: absolute;
  left: 32px;
  top: 21px;
  z-index: 1;
}

.qa-content {
  padding: 20px 88px 32px 75px;
  padding: 0 0 32px 0;
  position: relative;
  display: none;
}
.qa-content a {
  text-decoration: underline;
  color: var(--col-6, #0087A8);
}
.qa-content p {
  padding-right: 88px;
  margin-left: 75px;
}

.qa-content:before {
  content: "A";
  display: inline-block;
  font-size: 30px;
  color: var(--col-4, #5BC8D6);
  font-family: "Roboto", sans-serif;
  position: absolute;
  left: 32px;
  top: -7px;
}

/*---------------------------------

	recruit

---------------------------------*/
.recruit-accordion-cover .recruit-accordion:not(:last-of-type) {
  margin-bottom: 40px;
}

.recruit-accordion {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 16px;
}

.recruit-title-flex {
  display: flex;
}
.recruit-title-flex figure {
  max-width: 352px;
  height: auto;
  width: 39%;
}
.recruit-title-flex figure img {
  border-radius: 16px 0px 0px 16px;
}
.recruit-title-flex .recruit-txt {
  font-weight: bold;
  padding: 20px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 61%;
  position: relative;
  cursor: pointer;
  border-radius: 0 16px 16px 0;
  transition: 0.3s ease;
}
.recruit-title-flex .recruit-txt h3 {
  font-size: 24px;
  color: var(--col-6, #0087A8);
  margin-bottom: 30px;
}
.recruit-title-flex .recruit-txt:before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
  background: var(--col-10, #EAF7F8);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 15px;
}
.recruit-title-flex .recruit-txt:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 0px;
  border-top: solid 2px var(--col-6, #0087A8);
  border-right: solid 2px var(--col-6, #0087A8);
  transform: rotate(135deg);
  transition: 0.3s ease;
  position: absolute;
  right: 38px;
  bottom: 36px;
}

.recruit-title.recruit-open .recruit-title-flex .recruit-txt:after {
  transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  bottom: 30px;
}

.recruit-content {
  padding: 64px 40px 50px;
  display: none;
}
.recruit-content h4 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
}

/*---------------------------------

	access

---------------------------------*/
.map-cover {
  margin-bottom: 40px;
}

.map {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*---------------------------------

	sitemap

---------------------------------*/
.sec-sitemap {
  padding: 72px 0 88px;
}

.list-box-flex {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
}
.list-box-flex .list-box {
  margin-bottom: 40px;
  width: calc(50% - 16px);
  margin-left: 16px;
}

/*---------------------------------

	privacy-policy

---------------------------------*/
.sec-privacy-policy {
  padding: 72px 0 88px;
}

.privacy-policy-item-cover .privacy-policy-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.privacy-policy-item p:first-of-type {
  color: var(--col-6, #0087A8);
  font-weight: bold;
  margin-bottom: 12px;
}

/*---------------------------------

	thanks 404

---------------------------------*/
.bk-sec-simple {
  background: var(--col-10, #EAF7F8);
}

.sec-simple {
  padding: 191px 0 132px;
}
.sec-simple h2 {
  font-size: 30px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
  color: var(--col-6, #0087A8);
}

/*---------------------------------

	contact

---------------------------------*/
.sec-contact {
  padding: 72px 0 88px;
}

.sec-contact-top {
  margin-bottom: 50px;
}
.sec-contact-top a {
  color: var(--col-6, #0087A8);
  font-weight: bold;
}
.sec-contact-top p:nth-of-type(1) {
  margin-bottom: 24px;
  text-align: center;
}
.sec-contact-top p:nth-of-type(2) {
  font-size: 30px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: 32px;
  color: var(--col-6, #0087A8);
  text-align: center;
  border-bottom: solid 1px var(--col-6, #0087A8);
  padding-bottom: 20px;
}

.form__wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.wpcf7 .template01 div.form__row {
  margin: 0;
  padding: 0;
  margin-top: 32px;
  display: flex;
  align-items: center;
}

.wpcf7 .template01 div.form__row.row-message {
  align-items: flex-start;
}
.wpcf7 .template01 div.form__row.row-message p.form__label {
  margin-top: 12px;
}

.wpcf7 .template01 p.form__label {
  width: 30%;
  min-width: 210px;
  text-align: right;
  padding-right: 30px;
}

.wpcf7 .template01 p.form__body {
  width: 70%;
}

.wpcf7 .template01 p.form__label,
.wpcf7 .template01 p.form__body {
  box-sizing: border-box;
}

.wpcf7 .template01 p.form__label label {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wpcf7 .template01 p.form__label.is-required label::after {
  content: "必須";
  display: inline-block;
  color: var(--col-14, #E34600);
  font-weight: bold;
  border: 1px solid var(--col-14, #E34600);
  border-radius: 8px;
  padding: 4px 14px;
  margin-left: 16px;
}

/* テキストフィールド */
.wpcf7 .template01 input[type=text],
.wpcf7 .template01 input[type=tel],
.wpcf7 .template01 input[type=email],
.wpcf7 .template01 input[type=url],
.wpcf7 .template01 input[type=date],
.wpcf7 .template01 input[type=number],
.wpcf7 .template01 textarea {
  width: 100%;
  margin: 0;
  padding: 17px 16px 18px 16px;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--col-12, #E8E8E8);
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid rgba(0, 0, 255, 0);
  border-radius: 8px;
}

/* テキストフィールド placeholder */
.wpcf7 .template01 input[type=text]::-moz-placeholder, .wpcf7 .template01 input[type=tel]::-moz-placeholder, .wpcf7 .template01 input[type=email]::-moz-placeholder, .wpcf7 .template01 input[type=url]::-moz-placeholder, .wpcf7 .template01 input[type=date]::-moz-placeholder, .wpcf7 .template01 input[type=number]::-moz-placeholder, .wpcf7 .template01 textarea::-moz-placeholder {
  color: #959595;
}
.wpcf7 .template01 input[type=text]::placeholder,
.wpcf7 .template01 input[type=tel]::placeholder,
.wpcf7 .template01 input[type=email]::placeholder,
.wpcf7 .template01 input[type=url]::placeholder,
.wpcf7 .template01 input[type=date]::placeholder,
.wpcf7 .template01 input[type=number]::placeholder,
.wpcf7 .template01 textarea::placeholder {
  color: #959595;
}

.wpcf7 .template01 input[type=text]:-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]:-ms-input-placeholder,
.wpcf7 .template01 input[type=email]:-ms-input-placeholder,
.wpcf7 .template01 input[type=url]:-ms-input-placeholder,
.wpcf7 .template01 input[type=date]:-ms-input-placeholder,
.wpcf7 .template01 input[type=number]:-ms-input-placeholder,
.wpcf7 .template01 textarea:-ms-input-placeholder {
  color: #959595;
}

.wpcf7 .template01 input[type=text]::-ms-input-placeholder,
.wpcf7 .template01 input[type=tel]::-ms-input-placeholder,
.wpcf7 .template01 input[type=email]::-ms-input-placeholder,
.wpcf7 .template01 input[type=url]::-ms-input-placeholder,
.wpcf7 .template01 input[type=date]::-ms-input-placeholder,
.wpcf7 .template01 input[type=number]::-ms-input-placeholder,
.wpcf7 .template01 textarea::-ms-input-placeholder {
  color: #959595;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .template01 input[type=text]:focus,
.wpcf7 .template01 input[type=tel]:focus,
.wpcf7 .template01 input[type=email]:focus,
.wpcf7 .template01 input[type=url]:focus,
.wpcf7 .template01 input[type=date]:focus,
.wpcf7 .template01 input[type=number]:focus,
.wpcf7 .template01 textarea:focus {
  outline: 0;
  border: 1px solid var(--col-4, #5BC8D6);
  background: var(--col-10, #EAF7F8);
}

/* ラジオボタン */
.wpcf7 .template01 span.wpcf7-list-item:not(:last-of-type) {
  margin: 0 8px 0 0;
}

.wpcf7 .template01 input[type=radio] {
  display: none;
}

.wpcf7 .template01 input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 30px;
  font-size: inherit;
  transition: opacity 0.25s ease;
}

.wpcf7 .template01 input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--col-12, #E8E8E8);
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.wpcf7 .template01 input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.wpcf7 .template01 input[type=radio]:checked + span {
  position: relative;
  transition: opacity 0.25s ease;
  color: var(--col-5, #00A2B7);
}

.wpcf7 .template01 input[type=radio]:checked + span::before {
  background-color: #fff;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.wpcf7 .template01 input[type=radio]:checked + span::after {
  opacity: 1;
  width: 12px;
  height: 12px;
  background-color: var(--col-6, #0087A8);
  border-radius: 50%;
  transition: opacity 0.25s ease;
  position: absolute;
  top: 12px;
  left: 4px;
  transform: translateY(-50%);
}

/* 送信ボタン */
.wpcf7 .template01 input[type=submit] {
  width: 260px;
  height: 62px;
  position: absolute;
  left: 0;
  text-decoration: none;
  text-align: center;
  color: #fff;
  z-index: 0;
  font-weight: bold;
  border-radius: 50px;
  padding-left: 16px;
  padding-right: 16px;
  transition: 0.3s ease;
}

.btn-push {
  display: flex;
  width: 100%;
  max-width: 260px;
  height: 62px;
  position: relative;
  text-decoration: none;
  text-align: center;
  color: #fff;
  z-index: 0;
  font-weight: bold;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.btn-push:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  border-radius: 50px;
  transition: 0.3s ease;
  background: var(--gr-col-1, linear-gradient(270deg, #00A2B7 0%, #0070AC 100%));
}

.btn-push:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  border-radius: 50px;
  background: var(--col-3, #002E4B);
}

.wpcf7 .template01 input[type=submit]:disabled {
  cursor: not-allowed;
  box-shadow: none !important;
  border: 1px solid var(--col-11, #F8F8F8) !important;
  background-color: var(--col-11, #F8F8F8) !important;
  color: #999 !important;
}

.wpcf7 .template01 input[type=submit]:focus {
  outline: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  background: #f6eded;
  border: 1px solid #d8232c;
  color: #dc3232;
}

.wpcf7 .template01 .ajax-loader {
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.wpcf7 .template01 textarea {
  height: 210px;
}

.wpcf7 .template01 div.input-cover {
  margin: 40px 0 40px 0;
}

.recap-notice {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.recap-notice a {
  font-weight: bold;
  color: var(--col-5, #00A2B7);
}

/*---------------------------------

	archive-info

---------------------------------*/
.post-archive {
  margin-bottom: 88px;
}
.post-archive .btn-primary-cover2 {
  margin-top: 70px;
}

.post-archive-top {
  padding: 72px 0 40px;
}

.post-ac-cat {
  list-style: none;
  display: flex;
  margin-left: -32px;
}
.post-ac-cat .cat-item {
  margin-left: 32px;
}
.post-ac-cat .cat-item a {
  text-decoration: none;
  background: var(--col-10, #EAF7F8);
  border-radius: 9px;
  color: var(--col-6, #0087A8);
  font-size: 18px;
  font-weight: bold;
  padding: 8px 28px;
}
.post-ac-cat .cat-item.current-cat a {
  background: var(--col-6, #0087A8);
  color: #fff;
}


/************20250212追記
*************************/
.post-ac-cat .cat-item span {
  text-decoration: none;
  background: var(--col-10, #EAF7F8);
  border-radius: 9px;
  color: var(--col-6, #0087A8);
  font-size: 18px;
  font-weight: bold;
  padding: 8px 28px;
}

/************20250212追記 END
*************************/
.post-ac-cover {
  border-top: solid 1px var(--col-4, #5BC8D6);
}

.post-ac {
  border-bottom: solid 1px var(--col-4, #5BC8D6);
}

.post-ac-a {
  text-decoration: none;
  display: block;
  padding: 24px 16px 32px 28px;
}
.post-ac-a .post-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-ac-a .post-title p {
  margin-right: 40px;
  font-weight: bold;
}

.post-ac-top {
  display: flex;
  align-items: center;
  margin-left: -24px;
}
.post-ac-top .post-date {
  margin-bottom: 20px;
  margin-left: 24px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
}

.post-cat {
  list-style: none;
  margin-bottom: 20px;
  margin-left: 24px;
}
.post-cat a {
  border: 1px solid var(--col-4, #5BC8D6);
  border-radius: 9px;
  text-decoration: none;
  padding: 7px 27px;
  display: inline-block;
}
/*20251111*/
.post-cat.no-link-list a{
	pointer-events: none;
	cursor: default;
}

.dli-arrow-right {
  width: 95px;
  min-width: 95px;
  height: 47px;
  background: var(--col-10, #EAF7F8);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dli-arrow-right span {
  position: relative;
  width: 25px;
  transition: 0.3s ease;
}
.dli-arrow-right span:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--col-5, #00A2B7);
}
.dli-arrow-right span:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--col-5, #00A2B7);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 1px;
  right: -1px;
}

/*---------------------------------

	archive-cases

---------------------------------*/
.post-ac-flex {
  display: flex;
  margin-left: -32px;
}

.post-ac-left {
  width: 260px;
  height: 173px;
  margin-left: 32px;
  transition: 0.3s ease;
}
.post-ac-left .post-thumbnail-ac {
  width: 260px;
  height: 173px;
}
.post-ac-left .post-thumbnail-ac img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

.post-ac-right {
  margin-left: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-ac.post-ac-cases .post-ac-a {
  padding: 24px 16px 24px 28px;
}
.post-ac.post-ac-cases .post-ac-a .post-title {
  flex-grow: 1;
}

.post-company-name {
  font-weight: bold;
  margin-top: 8px;
}

/*---------------------------------

	pagination

---------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 0 -25px;
  flex-wrap: wrap;
}
.pagination ul li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--col-4, #5BC8D6);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  transition: all 0.3s ease;
  margin-left: 25px;
  margin-bottom: 10px;
}
.pagination ul li .page-numbers {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--col-10, #EAF7F8);
  border-radius: 50%;
}
.pagination ul li .page-numbers.dots {
  background: #fff;
}
.pagination ul li .current {
  background-color: var(--col-5, #00A2B7);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/*---------------------------------

	single

---------------------------------*/
.single-info .lower-title {
  padding-top: 100px;
  background: var(--col-10, #EAF7F8);
}

.ocean-single {
  padding: 72px 0 88px;
}

.the-content {
  border-bottom: solid 1px var(--col-4, #5BC8D6);
  margin-top: 40px;
  margin-bottom: 60px;
}

.ocean-single-ttl {
  font-size: 26px;
  font-weight: bold;
  color: var(--col-6, #0087A8);
  border-bottom: solid 1px var(--col-4, #5BC8D6);
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.post-thumbnail {
  margin-bottom: 40px;
}

.the-content .post-h3 {
  font-size: 18px;
  color: var(--col-6, #0087A8);
  font-weight: bold;
  margin-bottom: 24px;
}
.the-content a {
  color: var(--col-6, #0087A8);
}
.the-content p, .the-content table {
  margin-bottom: 24px;
}
.the-content .wp-block-image img {
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 40px 0;
  display: block;
  transition: 0.3s ease;
}
.the-content ul, .the-content ol {
  margin-bottom: 24px;
  margin-left: 1.6em;
}
.the-content hr {
  margin: 40px 0;
}
.the-content .wp-block-quote {
  margin: 1em 0;
  position: relative;
  border-left: 3px solid #cfcfcf;
  padding-left: 10px;
}
.the-content .wp-block-quote p {
  position: relative;
  padding-left: 30px;
}
.the-content .wp-block-quote cite {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  margin-top: 1em;
}
.the-content .wp-block-quote:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 8px;
  content: "“";
  color: #cfcfcf;
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  position: absolute;
}

/****20250207追記
***************/
.galleryBox {
  display: flex;
  flex-wrap: wrap;
}
.galleryBox .galleryImg {
  width: 32.6%;
  margin-bottom: 10px;
}
.galleryBox .galleryImg:not(:nth-of-type(3n)) {
  margin-right: 1%;
}

.top-text-box {
  padding-bottom: 0;
}
.top-text-box .top-sec-contents-box {
  border: #f7c3c3 5px solid;
  padding: 15px 20px;
}
/*---------------------------------

	Company philosophy-and-mvv

---------------------------------*/
.layout-05-flex .layout-05-box:nth-of-type(odd) {
  background: var(--col-10, #EAF7F8);
}
.layout-05-flex .layout-05-box:nth-of-type(even) {
  background: var(--col-15, #F5FEFF);
}
/*
.layout-05-flex .layout-05-box:nth-of-type(1) .layout-01-box-txt-cover:after {
  content: "1";
}
.layout-05-flex .layout-05-box:nth-of-type(2) .layout-01-box-txt-cover:after {
  content: "2";
}
.layout-05-flex .layout-01-box:nth-of-type(3) .layout-01-box-txt-cover:after {
  content: "3";
}
  */
/*
.layout-01-box-txt-cover:before {
  content: "";
  display: inline-block;
  width: 62px;
  height: 62px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(var(--col-6-rgb, 0, 135, 168), 0.22);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -71px;
}
*/
/*
.layout-01-box-txt-cover:after {
  display: inline-block;
  font-size: 26px;
  font-family: "Roboto", sans-serif;
  color: var(--col-4, #5BC8D6);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -63px;
}
  */

.layout-05-box-txt-cover {
  padding: 0 26px 26px 26px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  position: relative;
}
.layout-05-box-txt-cover h3 {
  font-weight: bold;
  color: var(--col-6, #0087A8);
  font-size: 15px;
  margin-bottom: 24px;
}
/*20251111*/
.swiper-fade .swiper-slide{
	background-position:right bottom;
}
.post-ac-cat.no-link-list a{
	pointer-events: none;
    cursor: default; /* カーソルを通常に */
}

/*---------------------------------

	f

---------------------------------*/
@media screen and (min-width: 769px) {
  .menu_contents-child a:hover {
    opacity: 0.7;
    transition: 0.3s ease;
  }
  .menu_list:hover:after {
    transform: rotate(315deg);
    transition: 0.3s ease;
    top: 20px;
  }
  .menu_list:hover:before {
    transform: scale(1, 1);
  }
  .menu_list-contact a:hover .menu-contact {
    background: var(--gr-col-2, linear-gradient(90deg, #FF7F00 0%, #E34600 100%));
    transition: 0.3s ease;
    letter-spacing: 2.25px;
    color: #fff;
    border: 1px solid transparent;
  }
  /* タイトルのhover足しました：村田 */
  .menu-container-flex a:hover {
    opacity: 0.7;
  }
  .main_title-btn:hover {
    background: var(--col-6, #0087A8);
    letter-spacing: 2.25px;
  }
  .main_title-btn:hover:before {
    content: "";
    transition: 0.3s ease;
  }
  .bnr-contact-bg:hover:before {
    background: var(--col-6, #0087A8);
    transition: 0.3s ease;
  }
  .bnr-contact-bg:hover .bnr-contact-bg-left:after {
    background: #fff;
    transition: 0.3s ease;
    width: 192px;
    height: 192px;
  }
  /* 村田追加2024.2.26 */
  .bnr-contact-bg:hover .bnr-contact-bg-left span {
    fill: var(--col-14, #E34600);
    transition: 0.3s ease;
  }
  .bnr-contact-bg:hover .bnr-contact-bg-left span .envelope {
    stroke: var(--col-14, #E34600);
  }
  /* ここまで */
  .top-arrow:hover {
    background: var(--col-5, #00A2B7);
    border: 2px solid #FFFFFF;
  }
  .top-arrow:hover .dli-arrow-up {
    color: #fff;
    height: 26px;
  }
  .menu_contents ul li a:hover .menu-arrow-txt:after {
    transform: scale(1, 1);
  }
  .menu_contents ul li a:hover .menu-arrow {
    border: 1px solid #fff;
    background: transparent;
  }
  .btn-primary:hover:before {
    opacity: 0;
  }
  .btn-primary:hover .btn-arrow-primary {
    background: rgba(255, 255, 255, 0.4);
    transition: 0.3s ease;
  }
  .btn-primary:hover span:first-of-type {
    letter-spacing: 2.25px;
    transition: 0.3s ease;
  }
  .cardback-box:hover .cardback-data {
    transform: translateY(0);
  }
  .cardback-box:hover h3 span {
    color: #fff;
  }
  .top-sec-cases-box a:hover {
    background: var(--col-10, #EAF7F8);
  }
  .top-sec-cases-box a:hover figure {
    transform: scale(0.95);
    transition: 0.3s ease;
  }
  .top-sec-cases-box a:hover p {
    color: var(--col-5, #00A2B7);
  }
  .tabcontent-ac:hover {
    background: var(--col-10, #EAF7F8);
  }
  .tabcontent-ac:hover .news-title {
    color: var(--col-6, #0087A8);
  }
  .tabcontent-ac:hover .news-title:before {
    transform: scale(1, 1);
  }
  .tabcontent-ac:hover .btn-top-news-arrow {
    transform: translateY(-50%) translateX(10px);
    -webkit-transform: translateY(-50%) translateX(10px);
    -ms-transform: translateY(-50%) translateX(10px);
    transition: 0.3s ease;
  }
  .tabnav li:hover {
    background: var(--col-5, #00A2B7);
    transition: 0.3s ease;
  }
  .tabnav li:hover label span {
    color: #fff;
  }
  .slider01 .swiper-button-prev:hover, .slider02 .swiper-button-prev:hover, .slider03 .swiper-button-prev:hover {
    background-color: rgb(255, 255, 255);
    transition: 0.3s ease;
  }
  .slider01 .swiper-button-prev:hover:after, .slider02 .swiper-button-prev:hover:after, .slider03 .swiper-button-prev:hover:after {
    right: 20px;
  }
  .slider01 .swiper-button-next:hover, .slider02 .swiper-button-next:hover, .slider03 .swiper-button-next:hover {
    background-color: rgb(255, 255, 255);
    transition: 0.3s ease;
  }
  .slider01 .swiper-button-next:hover:after, .slider02 .swiper-button-next:hover:after, .slider03 .swiper-button-next:hover:after {
    right: 16px;
  }
  .qa-content a:hover {
    opacity: 0.7;
  }
  .list-box a:hover {
    opacity: 0.7;
  }
  .btn-push:hover:before {
    opacity: 0;
  }
  .btn-push:hover .btn-arrow-primary {
    background: rgba(255, 255, 255, 0.4);
    transition: 0.3s ease;
  }
  .btn-push:hover input[type=submit] {
    letter-spacing: 2.25px;
    transition: 0.3s ease;
  }
  .recap-notice a:hover {
    opacity: 0.7;
  }
  .post-ac-cat .cat-item a:hover {
    background: var(--col-6, #0087A8);
    color: #fff;
  }
/*20251111*/
.post-ac-cat.no-link-list .cat-item a:hover{
	background:var(--col-10, #EAF7F8);
	color:var(--col-6, #0087A8);
}
.post-cat.no-link-list a:hover{
    border: 1px solid var(--col-4, #5BC8D6);
	color: var(--col-5, #00A2B7);
	background:#fff;	
}

  .post-ac-a:hover {
    background: var(--col-8, #FAFFFF);
    transform: translateX(10px);
  }
  .post-ac-a:hover .post-title p {
    color: var(--col-6, #0087A8);
  }
  .post-ac-a:hover .dli-arrow-right {
    background: var(--col-4, #5BC8D6);
  }
  .post-ac-a:hover .dli-arrow-right span {
    transform: translateX(8px);
    transition: 0.3s ease;
  }
  .post-ac-a:hover .dli-arrow-right span:before {
    background: #fff;
  }
  .post-ac-a:hover .dli-arrow-right span:after {
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
  }
  .post-ac-a:hover .post-ac-left {
    opacity: 0.7;
  }
  .post-ac-a:hover .post-company-name {
    color: var(--col-6, #0087A8);
  }
  .post-cat a:hover {
    background: var(--col-6, #0087A8);
    color: #fff;
    border: 1px solid var(--col-6, #0087A8);
  }
  .pagination ul li a.page-numbers:hover {
    background: var(--col-5, #00A2B7);
    color: #fff;
  }
  .the-content a:hover {
    opacity: 0.7;
  }
  .breadcrumbs a:hover {
    opacity: 0.7;
  }
  .footer-cover a:hover {
    opacity: 0.7;
  }
  .recruit-title-flex .recruit-txt:hover {
    background: var(--col-10, #EAF7F8);
    transition: 0.3s ease;
  }
}/*# sourceMappingURL=style.css.map */