@charset "UTF-8";

/*!
  Theme Name: sori-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: sori-theme2025 framework
  Version: 2.0
  Date: 2025.12.12
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #040000;
  --gray: #AAAAAA;
  --blue: #1B2D76;
  --l-blue: #CDDFF1;
  --red: #C8322C;
  --font: "Zen Old Mincho", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --zenold: "Zen Old Mincho", serif;
  --heebo: "Heebo", sans-serif;
  --zen-antique: "Zen Antique Soft", serif;
  --noto-serif: "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  p {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

.en {
  font-family: var(--heebo);
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
          animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
          animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}
.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
          animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 0;
  transition: all 0.5s;
}

.header_wrap {
  padding: 0 15px;
}

.header__logo {
  display: inline-block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.header__logo_type02 {
  display: none;
}

.header__logo_type01 {
  font-size: 14px;
  display: flex;
  font-weight: bold;
  flex-direction: column;
  background: var(--white);
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 188px;
  height: 188px;
}

.header__logo_type02 {
  font-size: 24px;
}
.header__logo_type02 img {
  margin-right: 10px;
}

.header__nav_item .header__nav_link {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: var(--zen-antique);
  color: var(--white);
}
.header__nav_item .header__nav_link:hover {
  color: var(--blue);
}

.header.-is-fixed {
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  background: var(--white);
  z-index: 999;
}
.header.-is-fixed .header__logo_type01 {
  display: none;
}
.header.-is-fixed .header__logo_type02 {
  display: block;
}
.header.-is-fixed .header__nav_item .header__nav_link {
  color: var(--black);
}
.header.-is-fixed .header__nav_item .header__nav_link:hover {
  color: var(--blue);
}
.header.-is-fixed .header__nav_item .btn01 {
  background: var(--blue);
  color: var(--white);
}
.header.-is-fixed .header__nav_item .btn01::before {
  background: rgb(130, 146, 196);
}
.header.-is-fixed .header__nav_item .btn01:hover {
  border: 1px solid var(--blue);
  background: var(--white);
  color: var(--black);
}
.header.-is-fixed .header__nav_item .btn01:hover i {
  color: var(--white);
}

.header.-is-open .header__nav_item .header__nav_link {
  color: var(--black);
}
.header.-is-open .header__nav_item .header__nav_link:hover {
  color: var(--blue);
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #231815;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header__nav_toggle_title:before {
  content: "メニュー";
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "とじる";
}

@media screen and (min-width: 1024px) {
  .header__nav_toggle {
    display: none;
  }
  .header__nav_list {
    gap: 0 30px;
  }
}
.header__nav_item .btn01 {
  border: 1px solid transparent;
}
.header__nav_item .btn01::before {
  background: var(--blue);
}
.header__nav_item .btn01:hover i {
  color: var(--blue);
}

@media screen and (max-width: 1023px) {
  .header {
    background: var(--white);
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  }
  .header__logo {
    z-index: 10;
  }
  .header__logo_type01 {
    display: none;
  }
  .header__logo_type02 {
    display: block;
  }
  .header__nav {
    max-width: min(100%, 1000px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
  }
  .header__nav_list {
    flex-direction: column;
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
  }
  .header__nav_item a {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
  }
  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }
  .header.-is-open .header__nav_list {
    opacity: 1;
    top: 35%;
    transform: translateY(-35%);
  }
  .header.-is-open .header__nav_item a {
    opacity: 1;
    visibility: visible;
    transition: all 1.5s ease;
  }
  .header.-is-open .header__nav_item {
    width: 100%;
  }
  .header.-is-open .header__nav_item:has(.btn01) {
    margin-top: 20px;
  }
  .header.-is-open .header__nav_item .btn01 {
    padding: 9px 10px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    color: var(--white);
    opacity: 1;
    border: 1px solid var(--blue);
    background: var(--blue);
  }
  .header.-is-open .header__nav_item .btn01::before {
    background: rgb(130, 146, 196);
  }
  .header.-is-open .header__nav_item .btn01 i {
    color: var(--white);
  }
  .header.-is-open .header__nav_item .btn01:hover {
    background: var(--white);
    color: var(--black);
  }
  .header.-is-open .header__nav_item .btn01:hover i {
    color: var(--white);
  }
  .header.-is-open .header__nav_item .btn01:hover::before {
    background: var(--blue);
  }
}
/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.js-pagetop {
  font-size: 12px;
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 500;
  font-family: var(--heebo);
  writing-mode: vertical-rl;
  color: var(--blue);
  font-weight: 600;
}
@media screen and (min-width: 845px) {
  .js-pagetop {
    bottom: auto;
    top: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .js-pagetop {
    right: 40px;
  }
}
.js-pagetop a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.js-pagetop a .fa-chevron-up {
  width: 38px;
  height: 38px;
  display: block;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.5s;
}
.js-pagetop a:hover .fa-chevron-up {
  background: var(--blue);
  color: var(--white);
}

.footer_contact {
  background: #555555;
  padding: 60px 0 90px;
}

.footer_contact_title {
  font-family: var(--heebo);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.footer_contact_text {
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
}

.footer__nav {
  position: relative;
}

.footer__nav_contents {
  border-bottom: 1px solid #DDDDDD;
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
}
.footer__nav_contents .flexbox {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__nav_contents .flexbox {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 845px) {
  .footer__nav_contents .flexbox {
    align-items: flex-start;
  }
}

.footer__nav_address_box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer__nav_logo {
  width: 100%;
  max-width: 143px;
}

.footer__nav_title {
  font-size: 15px;
  font-weight: bold;
  font-family: var(--noto-serif);
  margin-bottom: 10px;
}

.footer__nav_address_item {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--zen-antique);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer__nav_address_item:last-child {
  margin-bottom: 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 252px;
  margin-right: auto;
}
@media screen and (min-width: 360px) {
  .footer__nav {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav {
    max-width: 330px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .footer__nav {
    padding-right: 0;
  }
}

.footer__nav_item a {
  font-size: 14px;
  font-family: var(--zen-antique);
}

.footer__nav_contents-last {
  padding: 25px 0;
}
.footer__nav_contents-last ul {
  gap: 25px;
}
.footer__nav_contents-last li a {
  font-size: 12px;
  font-family: var(--zen-antique);
  letter-spacing: 0.04em;
}
.footer__nav_contents-last li:first-child {
  position: relative;
}
.footer__nav_contents-last li:first-child::after {
  content: "";
  width: 1px;
  height: 11px;
  display: block;
  background: #DDDDDD;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.footer__copyright {
  color: var(--gray);
  font-size: 10px;
  font-family: var(--zen-antique);
  letter-spacing: 0.04em;
}

.tel_num {
  font-size: 36px;
  font-family: var(--heebo);
  font-weight: 600;
  line-height: 1.2;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 15px;
}
.tel_num i {
  font-size: 15px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
}

.tel_text {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.tel_box_wrap {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .tel_box_wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.tel_box {
  display: flex;
  align-items: center;
}
.tel_box .tel_text {
  padding-left: 10px;
}
.tel_box.footer {
  display: block;
}
.tel_box.footer .tel_num i {
  background: rgba(255, 255, 255, 0.45);
}
.tel_box.footer .tel_text {
  padding-left: 50px;
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #121212;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--heebo);
  margin: 5px;
  width: 39px;
  height: 39px;
  line-height: 2.6;
  display: block;
  text-decoration: none;
  padding: 0;
  background: transparent;
  opacity: 1;
  border-radius: 50%;
}

.wp-pagenavi span.current {
  color: #121212;
  cursor: default;
  background: #E1E2E6;
}

.wp-pagenavi a:hover {
  background: #E1E2E6;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: #fff;
  border: 1px solid #27387D;
}
.wp-pagenavi .previouspostslink i,
.wp-pagenavi .nextpostslink i {
  font-weight: 500;
  color: #27387D;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background: #27387D;
}
.wp-pagenavi .previouspostslink:hover i,
.wp-pagenavi .nextpostslink:hover i {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 30px;
  }
  .wp-pagenavi .nextpostslink {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 40px;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 390px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  font-size: 14px;
  font-weight: 500;
  color: #B8B8B8;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li:before {
  content: url(img/common/breadcrumbs_arrow.png);
  margin: 0 10px;
  color: #B8B8B8;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #B8B8B8;
}

.breadcrumbs a:hover {
  color: #999999;
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.65;
}
.title01 span {
  color: var(--blue);
  font-family: var(--heebo);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 540px) {
  .title01 {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .title01 {
    font-size: 40px;
  }
}
.title01:has(span) {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .title01.type02 {
    writing-mode: vertical-rl;
  }
}

.title02 {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.65;
}
.title02 span {
  color: var(--blue);
  font-family: var(--heebo);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 540px) {
  .title02 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .title02 {
    font-size: 36px;
  }
}
.title02:has(span) {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .title02.type02 {
    writing-mode: vertical-rl;
  }
}

.fc--white .title02 span {
  color: var(--white);
}

.title03 {
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.65;
}
.title03 span {
  color: var(--blue);
  font-family: var(--heebo);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 540px) {
  .title03 {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .title03 {
    font-size: 40px;
  }
}
.title03:has(span) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title04 {
  font-size: 21px;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .title04 {
    font-size: 28px;
  }
}

.title05 {
  font-size: 21px;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .title05 {
    font-size: 24px;
  }
}

.title06 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .title06 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.title06 span {
  font-size: 13px;
  font-weight: 600;
  color: #CCCCCC;
  font-family: var(--heebo);
  letter-spacing: 0.06em;
  display: block;
}
.title06::before {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  background: #DBDBEA;
}
.title06::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}

.title07 {
  font-size: 18px;
  font-weight: bold;
  color: var(--blue);
  letter-spacing: 0.06em;
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .title07 {
    font-size: 20px;
  }
}
.title07::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--blue);
  display: block;
}

.title08 {
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .title08 {
    font-size: 21px;
    margin-top: 20px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container_l {
  max-width: 1270px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_m {
  max-width: 1130px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 980px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  border-radius: 28px;
  background-color: var(--white);
  padding: 9px 10px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.btn01::before {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: rgba(85, 85, 85, 0.45);
  border-radius: 50%;
  transition: all 0.5s;
}
.btn01 .fa-envelope {
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 21px;
}
.btn01:has(.ri-arrow-right-s-line) {
  padding-right: 10px;
}
.btn01:has(.ri-arrow-right-s-line)::after {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: var(--blue);
  border-radius: 50%;
  margin-left: auto;
}
.btn01:has(.ri-arrow-right-s-line) .ri-arrow-right-s-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  color: var(--white);
}
.btn01:hover {
  color: var(--white);
  opacity: 1;
  background: var(--blue);
}
.btn01:hover::before {
  background: #D8E0E2;
}

.btn02 {
  font-size: 16px;
  letter-spacing: 0.04em;
  position: relative;
  padding-right: 48px;
}
.btn02 i {
  color: var(--blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 5;
}
.btn02::after {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.btn02:hover {
  opacity: 1;
}
.btn02:hover i {
  color: var(--white);
}
.btn02:hover::after {
  background: var(--blue);
  border: 1px solid var(--blue);
}

.btn03 {
  font-size: 16px;
  letter-spacing: 0.04em;
  position: relative;
  padding-right: 48px;
}
.btn03 i {
  color: var(--blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 5;
}
.btn03::after {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: transparent;
  border: 1px solid var(--white);
  background: var(--white);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.btn03:hover {
  opacity: 1;
}
.btn03:hover i {
  color: var(--white);
}
.btn03:hover::after {
  background: var(--blue);
  border: 1px solid var(--blue);
}

.btn04 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  border-radius: 28px;
  background-color: var(--white);
  padding: 9px 10px;
  width: 100%;
  max-width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border: 1px solid var(--blue);
}
.btn04::before {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: var(--blue);
  border-radius: 50%;
  transition: all 0.5s;
}
.btn04 .ri-arrow-left-s-line {
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 21px;
}
.btn04:hover {
  color: var(--white);
  opacity: 1;
  background: var(--blue);
}
.btn04:hover::before {
  background: #fff;
}
.btn04:hover .ri-arrow-left-s-line {
  color: var(--blue);
}

.link_text {
  color: var(--blue);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--blue);
  transition: all 0.5s;
  padding-bottom: 1px;
}
.link_text:hover {
  color: var(--blue);
  border-bottom: 1px solid transparent;
}
.link_text.--small {
  font-size: 14px;
}

.btn05 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  border-radius: 31px;
  background-color: var(--white);
  padding: 10px 30px;
  width: 100%;
  max-width: 280px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
  position: relative;
  border: 1px solid var(--blue);
}
.btn05 span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.btn05 .ri-arrow-right-s-line {
  color: var(--white);
}
.btn05:hover {
  color: var(--white);
  opacity: 1;
  background: var(--blue);
}
.btn05:hover::before {
  background: #fff;
}
.btn05:hover .ri-arrow-right-s-line {
  color: var(--white);
}

.btn06 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  border-radius: 28px;
  background-color: var(--white);
  padding: 9px 60px;
  width: 100%;
  max-width: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border: 1px solid var(--blue);
  padding-left: 45px;
}
.btn06::after {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: var(--blue);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.btn06 .ri-arrow-right-s-line {
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
  z-index: 5;
}
.btn06:hover {
  color: var(--white);
  opacity: 1;
  background: var(--blue);
}
.btn06:hover::before {
  background: #fff;
}
.btn06:hover .ri-arrow-left-s-line {
  color: var(--blue);
}

/***************************

object/component/_form.scss

***************************/
.contact-form__check a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact_dl {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact_dl {
    margin-top: 40px;
  }
}

.contact_unit {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact_unit {
    flex-direction: row;
    position: relative;
  }
  .contact_unit::before {
    content: "";
    width: 100%;
    max-width: 260px;
    height: 100%;
    display: block;
    background: #EFF0F3;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-bottom: 1px solid #fff;
  }
}

.contact_dt {
  width: 100%;
  background: #EFF0F3;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .contact_dt {
    max-width: 260px;
    padding: 20px 35px;
    padding-right: 15px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.contact_dt label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

input {
  font-family: var(--font);
}

textarea {
  font-family: var(--font);
}

.contact_dd {
  width: 100%;
  padding: 20px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .contact_dd {
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #DDDDDD;
  }
}
.contact_dd input[type=text],
.contact_dd input[type=email],
.contact_dd input[type=tel],
.contact_dd textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #DDDDDD;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .contact_dd input[type=text],
.contact_dd input[type=email],
.contact_dd input[type=tel],
.contact_dd textarea {
    max-width: 675px;
  }
}

.contact_dd ::-moz-placeholder {
  color: #AAAAAA;
  font-family: var(--font);
}

.contact_dd ::placeholder {
  color: #AAAAAA;
  font-family: var(--font);
}

textarea {
  height: 223px;
}

.contact-form__check {
  padding-top: 40px;
  text-align: center;
}

select {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #DDDDDD;
  background-image: url("img/common/arrow-down-s-line.svg");
  background-repeat: no-repeat;
  background-size: 17px auto;
  /* 画像のサイズ（幅 高さ）*/
  background-position: right 20px center;
  /* 画像の位置 */
  font-family: var(--font);
}
@media screen and (min-width: 768px) {
  select {
    max-width: 338px;
  }
}

select::-ms-expand {
  display: none;
}

.span-required {
  font-size: 12px;
  letter-spacing: 0.02em;
  background: var(--blue);
  color: var(--white);
  padding: 0 5px;
  font-weight: bold;
}
.span-required.--gray {
  background: #CCCCCC;
  color: var(--black);
}

.bd-b-none {
  border-bottom: none;
}

input[type=checkbox] {
  display: none;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  width: 100%;
  max-width: 353px;
  margin: 0 auto;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label a:first-of-type {
  margin-left: 5px;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #929BA4;
  content: "";
  display: block;
  border-radius: 0;
  left: 5px;
  top: 50%;
  width: 19px;
  height: 19px;
}

.privacypolicy-check .wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #595555;
  border-bottom: 3px solid #595555;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 13px;
  transform: rotate(45deg);
  width: 8px;
}

.privacypolicy-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.privacypolicy-check input[type=checkbox] {
  border: none;
}

.contact-btn_wrap {
  width: 100%;
  max-width: 283px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 40px;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .contact-btn_wrap {
    margin-top: 60px;
  }
}
.contact-btn_wrap:hover .wpcf7-submit {
  background: var(--blue);
  color: var(--white);
}

.contact-btn_wrap .wpcf7-submit {
  display: block;
  text-align: center;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
  border-radius: 31px;
  border: 1px solid var(--blue);
  width: 100%;
  cursor: pointer;
  transition: all 0.75s;
}

.arrow_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: var(--blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow_btn i {
  color: var(--white);
}

/***************************

object/object/project/_home.scss

***************************/
.top_mv {
  position: relative;
  height: 100vh;
}
.top_mv .top-mySwiper img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top_mv_textbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 5;
  color: #fff;
  width: 100%;
}

.top-mySwiper .swiper-slide img {
  width: 100%;
}

.top-swiper_container {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 100%;
  max-width: 550px;
  z-index: 3;
}

.top_mv_title {
  font-weight: 400;
  font-size: 8vw;
  line-height: 1.7;
  letter-spacing: 0.06em;
  background: linear-gradient(transparent 98%, #fff 0%);
  display: inline;
}
@media screen and (min-width: 768px) {
  .top_mv_title {
    font-size: 64px;
  }
}

.top_mv_title_le {
  letter-spacing: -2rem;
}
@media screen and (min-width: 768px) {
  .top_mv_title_le {
    letter-spacing: -3rem;
  }
}

.top_mv_text {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-top: 30px;
  width: 100%;
  max-width: 535px;
}
@media screen and (min-width: 768px) {
  .top_mv_text {
    font-size: 18px;
  }
}

.top_news_container {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 6;
  width: 100%;
}
.top_news_container .top_news_wrap {
  margin-right: calc(50% - 50vw);
  gap: 10px 30px;
  background: #fff;
  padding: 15px 20px;
}
.top_news_container .btn02 {
  margin-left: auto;
}

.top_news_title {
  font-size: 18px;
  color: var(--blue);
  font-family: var(--heebo);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.top_news_list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_news_list {
    width: calc(100% - 100px);
  }
}

.top_news_link {
  gap: 0 30px;
}
.top_news_link:hover {
  opacity: 1;
}
.top_news_link:hover .news_title {
  color: var(--blue);
}

.date {
  color: var(--gray);
  font-family: var(--heebo);
  font-weight: 600;
  font-size: 14px;
}

.news_title {
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.top_service {
  margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .top_service {
    margin-top: 140px;
    margin-bottom: 70px;
  }
}
.top_service .container_l {
  position: relative;
}
.top_service.top_company {
  margin-top: 0;
}

.top_service_textbox {
  width: 100%;
  background: var(--white);
  padding: 30px 0;
}
@media screen and (min-width: 1024px) {
  .top_service_textbox {
    padding: 50px;
    max-width: 530px;
    padding-bottom: 0;
  }
  .top_service_textbox.--left {
    position: absolute;
    bottom: -70px;
    left: 0;
    padding-left: 15px;
  }
  .top_service_textbox.--right {
    position: absolute;
    bottom: -70px;
    right: 0;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1325px) {
  .top_service_textbox.--left {
    padding-left: 0;
  }
  .top_service_textbox.--right {
    padding-right: 0;
  }
}
.top_service_textbox .title02 {
  margin-bottom: 30px;
}
.top_service_textbox .btn02_wrap {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .top_service_textbox .btn02_wrap {
    margin-top: 40px;
  }
}

.top_service .container_m {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .top_service .container_m {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .top_bg_right {
    margin-right: calc(50% - 50vw);
  }
}
.top_bg_right img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .top_bg_left {
    margin-left: calc(50% - 50vw);
  }
}
.top_bg_left img {
  width: 100%;
}

.top_group {
  margin-top: 100px;
  padding: 80px 0;
  background: url(img/top/group_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.top_group p br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top_group p br {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .top_group {
    margin-top: 180px;
    padding: 120px 0;
  }
}
.top_group .title03 {
  position: relative;
}
.top_group .title03::before {
  content: "";
  display: block;
  background: url(img/top/group_logo_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  width: 100%;
  height: 150px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 650px) {
  .top_group .title03::before {
    width: 100%;
    height: 278px;
  }
}

.top_group_anchor_list {
  padding: 10px 5px;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 729px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 650px) {
  .top_group_anchor_list {
    flex-direction: column;
    max-width: 320px;
  }
}
.top_group_anchor_list::before {
  content: "";
  background: url(img/top/group_anchor_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .top_group_anchor_list::before {
    content: "";
    background: url(img/top/group_anchor_bg02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
}

.top_group_anchor_link {
  width: 100%;
  max-width: 250px;
  height: 100%;
  max-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.top_group_anchor_link .cat_list {
  justify-content: center;
}
.top_group_anchor_link::after {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  border: 1px solid var(--blue);
  border-radius: 50%;
  margin-top: auto;
  transition: all 0.5s;
}
.top_group_anchor_link i {
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: var(--blue);
  text-align: center;
}
.top_group_anchor_link:hover::after {
  background: var(--blue);
}
.top_group_anchor_link:hover i {
  color: var(--white);
}

.top_group_anchor_item {
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 650px) {
  .top_group_anchor_item {
    max-width: 650px;
  }
}

.top_group_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .top_group_list {
    gap: 25px;
    margin-top: 90px;
  }
}

.top_group_contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top_group_contents {
    flex-direction: row;
  }
  .top_group_contents figcaption {
    width: 100%;
    max-width: 350px;
  }
}

.top_group_img {
  overflow: hidden;
}

.top_group_item .group_title {
  margin-bottom: 20px;
}
.top_group_item p {
  margin: 30px 0;
  line-height: 1.6;
}

.cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
  border-radius: 11px;
  color: #121212;
  background: #E1E2E6;
  padding: 0 11px;
}
@media screen and (min-width: 768px) {
  .cat {
    font-size: 15px;
  }
}

.top_news {
  padding: 100px 0;
}
@media screen and (min-width: 768px) {
  .top_news {
    padding: 140px 0;
  }
}

.top_news_bg {
  background: linear-gradient(340deg, rgba(216, 224, 226, 0.25), rgba(219, 219, 234, 0.25));
  margin-right: calc(50% - 50vw);
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_news_bg {
    padding-top: 0;
  }
}
.top_news_bg .news_wrap {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .top_news_bg .news_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .top_news_bg .top_news_wrap {
    margin-top: 60px;
  }
  .top_news_bg .title01 {
    margin-top: -60px;
  }
}
.top_news_bg .container_m {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top_news_bg .container_m {
    margin-left: 50px;
    margin-right: auto;
  }
}

.top_news_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .top_news_wrap .title01 {
    width: 100%;
    max-width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .top_news_wrap .container_m {
    margin-left: 60px;
  }
}
.top_news_wrap .news_wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_news_wrap {
    flex-direction: row;
    gap: 80px;
  }
}

.news_wrap .btn02_wrap {
  text-align: right;
  margin-top: 40px;
}

.news_link .date {
  max-width: 90px;
  width: 100%;
}

.news_link {
  position: relative;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
  padding-right: 50px;
}
.news_link .ri-arrow-right-s-line {
  color: var(--blue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 6;
}
.news_link::after {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 50%;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.news_link:hover {
  opacity: 1;
}
.news_link:hover::after {
  background: var(--blue);
}
.news_link:hover .ri-arrow-right-s-line {
  color: var(--white);
}

.news_list .news_textbox {
  gap: 0 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .news_list .news_textbox {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .news_list .news_title {
    width: 100%;
    max-width: 690px;
  }
}

.top_service_list {
  margin-top: 30px;
}
.top_service_list .btn02 {
  padding: 30px 0;
  border-bottom: 1px solid #DDDDDD;
}
.top_service_list li:first-child .btn02 {
  border-top: 1px solid #DDDDDD;
}

.top_join {
  margin: 150px 15px 100px;
  position: relative;
  background: url(img/top/join.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-shadow: 0 0 15px rgba(46, 61, 55, 0.45);
}
@media screen and (min-width: 768px) {
  .top_join {
    margin: 200px 30px 160px;
  }
}

.top_join_textbox {
  width: 100%;
  max-width: 565px;
  padding: 100px 0 80px;
}
@media screen and (min-width: 768px) {
  .top_join_textbox {
    padding: 190px 0 150px;
  }
}
.top_join_textbox .title02 {
  margin-bottom: 40px;
}

.join_text {
  text-shadow: 0 0 0 transparent;
  position: absolute;
  top: -50px;
  left: 20px;
  font-family: var(--heebo);
  color: #E7E8ED;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.597;
}
@media screen and (min-width: 390px) {
  .join_text {
    top: -60px;
    left: 20px;
    font-size: 80px;
  }
}
@media screen and (min-width: 540px) {
  .join_text {
    top: -80px;
    left: 20px;
    font-size: 100px;
  }
}
@media screen and (min-width: 768px) {
  .join_text {
    font-size: 144px;
    top: -120px;
    left: 50px;
  }
}

.top_works {
  margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .top_works {
    margin-top: 140px;
  }
}
.top_works .works_list {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .top_works .works_list {
    margin-top: 40px;
  }
}
.top_works .btn02_wrap {
  text-align: right;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .top_works .btn02_wrap {
    margin-top: 40px;
  }
}

/***************************

下層共通

***************************/
.page_mv_wrap {
  position: relative;
}
.page_mv_wrap::before {
  content: "";
  width: calc(100% - 1270px);
  height: 110px;
  display: block;
  background-color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .page_mv_wrap::before {
    height: 125px;
  }
}

.page_mv_titlewrap {
  width: 100%;
  max-width: 1270px;
  padding: 0 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.page_mv_titlewrap::after {
  content: "";
  width: 100%;
  max-width: calc(100% - 20px);
  height: 110px;
  display: block;
  background: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .page_mv_titlewrap::after {
    max-width: 600px;
    height: 125px;
  }
}

.page_mv_title {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.06em;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .page_mv_title {
    font-size: 40px;
  }
}
.page_mv_title span {
  font-size: 14px;
  font-family: var(--heebo);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
}

.page_mv_img {
  height: 500px;
}
@media screen and (min-width: 540px) {
  .page_mv_img {
    height: 520px;
  }
}
.page_mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media screen and (min-width: 540px) {
  .page_mv_img img {
    -o-object-position: center;
       object-position: center;
  }
}

.sec_first {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .sec_first {
    margin-top: 120px;
  }
}

.sec_last {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .sec_last {
    margin-bottom: 160px;
  }
}

/***************************

object/object/project/_news.scss

***************************/
.news_contents {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .news_contents {
    padding: 30px 0;
  }
}

.news_btn_wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .news_btn_wrap {
    margin-top: 60px;
  }
}
.news_btn_wrap .btn04 {
  margin: 0 auto;
}
.news_contents a{
   color: var(--blue);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--blue);
  transition: all 0.5s;
  padding-bottom: 1px;
}
.news_contents a:hover{
   color: var(--blue);
  border-bottom: 1px solid transparent;
}

 .news_contents p:has(.aligncenter){
  text-align: center;
 }

  .news_contents p:has(.alignright){
  text-align: right;
 }
/***************************

object/object/project/_company.scss

***************************/
.company01_wrap:has(.greeting_img) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 960px) {
  .company01_wrap:has(.greeting_img) {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 960px) {
  .greeting_img {
    width: 100%;
    max-width: 434px;
  }
}

.company01_wrap:has(.greeting_img) .company01_textbox {
  width: 100%;
  max-width: 608px;
}

.company01_textbox p {
  letter-spacing: 0.02em;
}

.company01_namebox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .company01_namebox {
    margin-top: 50px;
  }
}

.company02_item .group_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.company02_item .group_title .en {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-weight: 600;
}

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

.company .company02_item {
  margin: -15px;
}
@media screen and (min-width: 686px) {
  .company .company02_item:last-child {
    margin-top: -55px;
  }
}
@media screen and (min-width: 1004px) {
  .company .company02_item:last-child {
    margin-top: -15px;
  }
}

.company02_item {
  width: 100%;
  max-width: 350px;
  background: linear-gradient(340deg, #D8E0E2, #DBDBEA);
  border-radius: 50%;
  padding: 30px;
  position: relative;
}
.company02_item::before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  display: block;
  border-radius: 50%;
  z-index: 6;
}

.company02_wrap {
  width: 100%;
  max-width: 324px;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
}
.company02_wrap p {
  line-height: 1.6;
  width: 100%;
  max-width: 250px;
  text-align: left;
}
.company02_wrap p.fz-14 {
  text-align: center;
}

/***************************

object/object/project/_privacy.scss

***************************/
.page_privacy p,
.page_terms p {
  letter-spacing: 0.02em;
}
.page_privacy .title07,
.page_terms .title07 {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_privacy .title07,
.page_terms .title07 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
.page_privacy .privacy_box,
.page_terms .privacy_box {
  width: 100%;
  max-width: 640px;
}

.bg_l-blue {
  background: #EFF0F3;
  padding: 20px;
}

.privacy_box {
  margin-top: 30px;
}
.privacy_box .tel_box {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.tel_box .ri-phone-fill {
  color: var(--white);
}

/***************************

object/object/project/_contact.scss

***************************/
@media screen and (min-width: 768px) {
  .page_contact01 .privacy_box {
    padding: 40px 60px;
  }
}
.page_contact01 .title06 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_contact01 .title06 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .page_contact01 .tel_num {
    font-size: 44px;
  }
}

/***************************

object/object/project/_group.scss

***************************/
.group_img {
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .group_img {
    margin-bottom: 60px;
  }
}
.group_img img {
  width: 100%;
}

.page_group01 .title06,
.page_group02 .title06 {
  margin-bottom: 0;
}

.group_title_wrap {
  gap: 5px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .group_title_wrap {
    margin-bottom: 30px;
  }
}

.list_type01_item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list_type01_item {
    position: relative;
  }
  .list_type01_item::before {
    content: "";
    width: 100%;
    max-width: 253px;
    height: 100%;
    display: block;
    background: #EFF0F3;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 768px) {
  .list_type01_item:first-child {
    border-top: 1px solid #fff;
  }
}

.list_type01_title {
  width: 100%;
  background: #EFF0F3;
  border-bottom: 1px solid #fff;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .list_type01_title {
    max-width: 253px;
    padding-left: 35px;
  }
}

@media screen and (min-width: 768px) {
  .list_type01_item:first-child .list_type01_contents {
    border-top: 1px solid #DDDDDD;
  }
}

.list_type01_contents {
  border-bottom: 1px solid #DDDDDD;
  padding: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list_type01_contents {
    max-width: calc(100% - 253px);
    padding-left: 35px;
  }
}

.flex_contents ul {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .flex_contents ul {
    max-width: 50%;
  }
}

.page_group01 .home-faq-list {
  margin-top: 30px;
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .page_group01 .home-faq-list {
    margin-top: 40px;
  }
}
.page_group01 .accordion-content {
  border: 1px solid #DDDDDD;
  border-top: none;
  padding: 30px;
}
@media screen and (min-width: 960px) {
  .page_group01 .accordion-content {
    padding: 30px 40px;
  }
}

.group_btn_wrap {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .group_btn_wrap {
    margin-top: 40px;
  }
}
.group_btn_wrap a {
  margin: 0 auto;
}

/***************************

object/object/project/_recruit.scss

***************************/
.page_recruit01 .title02 {
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_recruit01 .title02 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.recruit01_wrap {
  background: linear-gradient(rgba(49, 65, 131, 0.14), rgba(27, 45, 118, 0.14));
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.recruit01_wrap::before {
  content: "";
  width: 100%;
  max-width: 250px;
  height: 100%;
  background: url(../img/recruit/message_bg.png);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .recruit01_wrap::before {
    max-width: 500px;
  }
}

.recruit01_textimg {
  position: absolute;
  bottom: -40px;
  left: 10px;
  z-index: 5;
}

.recruit01_box {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px 0;
}
@media screen and (min-width: 960px) {
  .recruit01_box {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .recruit01_box.container_m {
    padding-left: 0;
    padding-right: 0;
  }
}

.recruit01_textbox {
  font-size: 16px;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 478px;
}

@media screen and (min-width: 960px) {
  .recruit01_imgbox {
    margin-right: -120px;
    margin-top: -100px;
    margin-bottom: -100px;
  }
}
.recruit01_imgbox ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruit01_imgbox ul li:first-of-type {
  margin-right: 40px;
}
.recruit01_imgbox ul li:last-of-type {
  margin-left: 40px;
}
@media screen and (min-width: 960px) {
  .recruit01_imgbox ul li:first-of-type {
    margin-right: 140px;
  }
  .recruit01_imgbox ul li:last-of-type {
    margin-left: 140px;
  }
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .home-faq-list {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.accordion-title {
  font-size: 18px;
  letter-spacing: 0.02em;
  background: #EFF0F3;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .accordion-title {
    padding-left: 30px;
    padding-right: 15px;
  }
}
.accordion-title span {
  width: 38px;
  height: 38px;
  display: block;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-title i {
  color: #fff;
  transform: scale(1, -1);
}
.accordion-title.open i {
  transform: scale(-1, 1);
}

.accordion-content {
  padding-top: 20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .accordion-content {
    padding-top: 40px;
  }
}

.recruit04_link_box {
  margin-bottom: 40px;
}
.recruit04_link_box p {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .recruit04_link_box {
    margin-bottom: 60px;
  }
  .recruit04_link_box p {
    font-size: 28px;
  }
}

.recruit .company02_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.recruit .company02_item {
  width: 100%;
  max-width: 276px;
  background: linear-gradient(340deg, #D8E0E2, #DBDBEA);
  border-radius: 50%;
  padding: 25px;
  position: relative;
}
.recruit .company02_item::before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  display: block;
  border-radius: 50%;
  z-index: 6;
}
.recruit .company02_wrap {
  width: 100%;
  max-width: 235px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  gap: 20px;
}
.recruit .company02_wrap p {
  line-height: 1.6;
  width: 100%;
  max-width: 178px;
  text-align: center;
}

.list_type02_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .list_type02_list {
    gap: 30px;
  }
}

.list_type02_item {
  background: linear-gradient(315deg, #D8E0E2, #E4E8ED, #DBDBEA);
  border-radius: 9px;
  padding: 25px;
  width: 100%;
}
@media screen and (min-width: 690px) {
  .list_type02_item {
    max-width: calc(50% - 15px);
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 960px) {
  .list_type02_item {
    max-width: calc(33.3333333333% - 20px);
  }
}

.list_type02_title {
  background: #fff;
  padding: 0 8px;
  display: inline-block;
  font-size: 21px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
@media screen and (min-width: 690px) {
  .list_type02_title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.list_type02_title span {
  color: var(--blue);
  font-size: 11px;
  vertical-align: text-top;
  letter-spacing: 0.02em;
  margin-right: 2px;
}

/***************************

object/object/project/_service.scss

***************************/
.anchor_wrap {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .anchor_wrap {
    margin-bottom: 100px;
  }
}

.anchor_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 15px;
}

.anchor_item {
  letter-spacing: 0.04em;
}
.anchor_item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.anchor_item span {
  width: 29px;
  height: 29px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.anchor_item span i {
  color: var(--blue);
}

.service_main_wrap {
  margin-top: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service_main_wrap {
    margin-top: 60px;
  }
}
.service_main_wrap .swiper-pagination {
  z-index: 5;
  bottom: -30px;
}

.service_detail_wrap {
  margin-top: 40px;
  background: #F7F8F8;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .service_detail_wrap {
    margin-top: 80px;
    padding: 60px 0;
  }
}
.service_detail_wrap.--type02 {
  background: transparent;
  padding: 0;
}
.service_detail_wrap.--type02 .service-works_wrap {
  margin-top: 0;
}

.swiper-pagination-bullet {
  background: #ECEFF0;
  opacity: 1;
  width: 6px;
  height: 6px;
}

.swiper-pagination-bullet-active {
  background: #273636;
}

.service-works_wrap {
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service-works_wrap {
    margin-top: 40px;
  }
}
.service-works_wrap p {
  line-height: 1.625;
  letter-spacing: 0.02em;
}
.service-works_wrap.swiper.container_m {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.service-works_wrap .swiper-slide .swiper-img {
  width: 100%;
}
.service-works_wrap .swiper-slide .swiper-img img {
  width: 100%;
}

.service_address {
  color: #B9B9B9;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .service_address {
    margin-bottom: 20px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  border: 1px solid var(--blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
.swiper-button-next {
    top: 100px;
  }
}
@media screen and (max-width: 540px) {
  .swiper-button-prev,
.swiper-button-next {
    top: 60px;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 8px;
  color: var(--blue);
  font-weight: bold;
}

/***************************

object/object/project/_works.scss

***************************/
.works_select {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .works_select {
    flex-direction: row;
  }
}
.works_select .archive_box {
  width: 100%;
  max-width: 212px;
}

.works_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 10px;
}
@media screen and (min-width: 768px) {
  .works_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px 20px;
  }
}

.works_link:hover .works_img img {
  transform: scale(1.03);
}

.works_img {
  overflow: hidden;
}
.works_img img {
  transition: all 0.5s;
}

.works_item figcaption {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .works_item figcaption {
    margin-top: 20px;
  }
}
.works_item .title08 {
  margin-top: 5px;
}

.works_contents {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .works_contents {
    padding: 30px 0;
  }
}

.works-mySwiper.container_s {
  padding: 0;
}
.works-mySwiper .swiper-slide img {
  width: 100%;
}

.works_main_wrap {
  position: relative;
  padding-bottom: 40px;
}
.works_main_wrap .swiper-pagination-bullet {
  background: #E7E8ED;
  margin: 0 10px !important;
}
@media screen and (min-width: 768px) {
  .works_main_wrap .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.works_main_wrap .swiper-pagination-bullet-active {
  background: #1B2D76;
}

.button-next_works {
  top: 50%;
}

.button-next_works.swiper-button-next {
  right: -10px;
}
.button-next_works.swiper-button-prev {
  left: -10px;
}
@media screen and (min-width: 768px) {
  .button-next_works.swiper-button-next {
    right: -15px;
  }
  .button-next_works.swiper-button-prev {
    left: -15px;
  }
}
@media screen and (min-width: 1024px) {
  .button-next_works.swiper-button-next {
    right: -50px;
  }
  .button-next_works.swiper-button-prev {
    left: -50px;
  }
}

.list_type03_list {
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .list_type03_list {
    margin-top: 30px;
  }
}

.list_type03_item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  border-top: 1px solid #DDDDDD;
  padding: 20px 0;
}
.list_type03_item:first-child {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .list_type03_item {
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 30px 0;
  }
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 391px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

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

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--gray);
}

.fc--white {
  color: var(--white);
}

.fc--black {
  color: var(--black);
}

.fc--blue {
  color: var(--blue);
}

.fc--l-blue {
  color: var(--l-blue);
}

.fc--red {
  color: var(--red);
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.wpcf7-spinner{
  display: none;
}
/*# sourceMappingURL=style.css.map */