@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #111111;
  --gray: #444444;
  --l-gray: #EEEEEE;
  --blue: #00ADA9;
  --l-blue:#F1F9F9;
  --yellow:#FAC03D;
  --orange:#F05922;
  --font: "Noto Sans JP",游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --inter:"Inter", sans-serif;
  --inter-tight:"Inter Tight", sans-serif;
  --popping: "Poppins", sans-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;
}

p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  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%;
}

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

foundation/_animation.scss

***************************/
.page_fade {
  -webkit-animation-name: fadeAnime;
          animation-name: fadeAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-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);
  }
}
/* 上から */
.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.-is-fixed {
  z-index: 999;
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2);
  background-color: var(--white);
}
@media screen and (min-width: 1024px) {
  .header.-is-fixed {
    padding: 5px 20px;
  }
}
.header.-is-fixed .header_container {
  align-items: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 7px 10px;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 7px 10px;
    padding-top: 50px;
    padding-right: 50px;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
  background: #fff;
  border: 2px solid var(--blue);
  width: 51px;
  height: 51px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: 3px 3px 0 rgba(0, 173, 170, 0.08);
}

.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: 17px;
  height: 2px;
  background-color: var(--blue);
  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: 17px;
}

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

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

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

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

.header__nav_toggle_title:before {
  content: "MENU";
  font-family: var(--inter);
  font-weight: bold;
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--blue);
}

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

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

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

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
  font-family: var(--inter);
  font-weight: bold;
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--blue);
}

@media screen and (min-width: 1024px) {
  .header__nav_toggle {
    display: none;
  }
  .header__nav_list {
    gap: 0 30px;
  }
}
.header__logo {
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 100%;
    max-width: 200px;
  }
  .header__logo img {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .header__nav {
    max-width: min(100%, 1000px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--l-blue);
    z-index: 6;
    transition: 0.5s;
  }
  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }
  .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;
    gap: 5px;
  }
  .header.-is-open .header__nav_list {
    opacity: 1;
    top: 35%;
    transform: translateY(-35%);
  }
  .header__nav_item {
    width: 100%;
    margin: 0 auto;
  }
  .header__nav_item a {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
    font-weight: bold;
  }
  .header.-is-open .header__nav_item a {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
  }
}
.header__nav_item a {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.header__nav_item a:hover {
  color: var(--blue);
}

.header__left_wrap {
  display: flex;
  align-items: center;
  gap: 15px 5px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .header__left_wrap {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }
}
@media screen and (min-width: 1600px) {
  .header__left_wrap {
    width: 100%;
    max-width: 20%;
  }
}

.header__subtext {
  font-size: 8px;
  letter-spacing: 0.05em;
  font-weight: 600;
  background: var(--blue);
  color: var(--white);
  padding: 2px 6px 3px 6px;
  border-radius: 10px;
  line-height: 2.1;
}
@media screen and (min-width: 1024px) {
  .header__subtext {
    font-size: 12px;
    border-radius: 12px;
    padding: 2px 12px 3px 12px;
    line-height: 1.4;
  }
}

.mv_sp {
  display: block;
  font-size: 3rem;
}
@media screen and (min-width: 1024px) {
  .mv_sp {
    display: none;
  }
}

.mv_pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .mv_pc {
    display: block;
  }
}

.header {
  transition: all 0.5s;
}
.header.-is-fixed .header__left_wrap {
  display: flex;
  flex-direction: row;
  max-width: 410px;
}
.header.-is-fixed .mv_sp {
  display: block;
}
.header.-is-fixed .mv_pc {
  display: none;
}

.fix_item {
  position: fixed;
  bottom: -30px;
  left: -140px;
  z-index: -1;
}

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

layout/_footer.scss

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

footer

////////////////////////*/
.js-pagetop {
  font-size: 3rem;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--black);
}

.js-pagetop a {
  display: block;
  color: var(--white);
}

.footer {
  background: #F9F9F9;
  padding: 50px 0 70px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 120px 0 70px;
  }
}

.footer_container {
  width: 100%;
  max-width: 1730px;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .footer_container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer_logo {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer_logo {
    max-width: 300px;
    margin-bottom: 30px;
  }
}

.footer_textbox p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer_textbox p {
    font-size: 14px;
  }
}
.footer_textbox:last-child p {
  margin-bottom: 15px;
}

.footer .link_bd {
  font-size: 13px;
  padding-right: 15px;
}
.footer .link_bd i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.link_bd {
  color: var(--blue);
  text-decoration: underline;
  font-family: var(--popping);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-right: 20px;
  transition: all 0.5s;
}
.link_bd i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 13px;
}
.link_bd:hover {
  color: var(--blue);
  opacity: 0.6;
  text-decoration: none;
}

.footer__nav {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    gap: 30px;
  }
}

.footer__nav_list {
  width: 100%;
}

.footer__nav_item:first-child a {
  border-top: 1px solid #EAEBEF;
}
.footer__nav_item a {
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid #EAEBEF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 10px;
  align-items: center;
}
.footer__nav_item a::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: var(--blue);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.footer__nav_item a:hover {
  color: var(--blue);
}

.footer_links_title {
  font-size: 11px;
  font-weight: bold;
  font-family: var(--inter);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer_links_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
@media screen and (min-width: 1024px) {
  .footer_links_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer__copyright {
  width: 100%;
  max-width: 1730px;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
  display: block;
  text-align: center;
  font-size: 9px;
  color: #A2A2AB;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 11px;
    text-align: right;
    margin-top: 80px;
  }
}

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

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: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: "Montserrat Alternates", serif;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #38ACEF;
  opacity: 1;
  border-radius: 50%;
}
@media screen and (min-width: 1101px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 60px;
    height: 60px;
    line-height: 4;
    font-size: 16px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 4.5;
}

.wp-pagenavi span.current {
  color: #38ACEF;
  cursor: default;
  background: #E6F8FF;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .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: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumbs li:before {
  font-family: "Remixicon";
}

.breadcrumbs li:before {
  content: "\ea6e";
  margin: 0 10px;
  color: var(--black);
}

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

.breadcrumbs a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  opacity: 0.6;
}

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

layout/_page-title.scss

***************************/
.title01 {
  font-size: 21px;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .title01 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .title01 {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0;
  }
}
.title01 span {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: var(--inter);
  color: var(--blue);
}
@media screen and (min-width: 1300px) {
  .title01 span {
    writing-mode: vertical-rl;
    margin-left: -250px;
    width: 250px;
    display: flex;
    align-items: flex-end;
  }
}

.title02 {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--blue);
  background: var(--l-blue);
  padding: 0 10px;
  text-align: center;
  position: relative;
  display: inline-block;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .title02 {
    font-size: 18px;
  }
}

.title02_wrap {
  text-align: center;
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .title02_wrap {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
.title02_wrap::after {
  content: "";
  background-image: radial-gradient(circle, var(--blue) 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 7px;
  display: block;
  width: 100%;
  height: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.title02_wrap.--bg_white .title02 {
  background: var(--white);
}

.title03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .title03 {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.title03 span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--popping);
  color: var(--blue);
}

.title04 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 60px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  position: relative;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .title04 {
    margin-top: 80px;
    margin-bottom: 30px;
  }
}
.title04::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background: var(--blue);
}
.title04::after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7px;
}

.title05 {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .title05 {
    font-size: 20px;
  }
}

.title06 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .title06 {
    font-size: 18px;
  }
}

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

object/component/_box.scss

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

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

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

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

object/component/_button.scss

***************************/
.btn01 {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--blue);
  font-weight: 500;
  border-radius: 38px;
  background-color: var(--l-blue);
  border: 1px solid var(--blue);
  padding: 11px 40px 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .btn01 {
    font-size: 16px;
  }
}
.btn01.--white {
  background: var(--white);
}
.btn01.--gray {
  background: #e9e9e9;
  border: 1px solid #888;
  color: #888;
}
.btn01.--gray::after {
  display: none;
}
.btn01.--gray:hover {
  background: #e9e9e9;
  border: 1px solid #888;
  color: #888;
}
.btn01::after {
  content: "";
  background: url(../img/common/arrow_b.svg);
  width: 14px;
  height: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.btn01:hover {
  color: var(--l-blue);
  background-color: var(--blue);
}
.btn01:hover::after {
  content: "";
  background: url(../img/common/arrow_l-b.svg);
  width: 14px;
  height: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn02 {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--white);
  font-weight: 500;
  border-radius: 23px;
  background-color: #F05922;
  border: 1px solid #F05922;
  padding: 9px 25px 11px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .btn02 {
    font-size: 15px;
    padding: 11px 20px 12px;
    border-radius: 38px;
  }
}
.btn02:hover {
  color: #F05922;
  background-color: var(--white);
}

.btn03 {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--white);
  font-weight: 500;
  border-radius: 23px;
  background-color: #00947A;
  border: 1px solid #00947A;
  padding: 9px 25px 11px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .btn03 {
    font-size: 15px;
    padding: 11px 20px 12px;
    border-radius: 38px;
  }
}
.btn03:hover {
  color: #00947A;
  background-color: var(--white);
}

.btn04 {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--blue);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--white);
  border: 1px solid var(--blue);
  box-shadow: 6px 6px 0 rgba(0, 173, 170, 0.1);
  padding: 15px 20px 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-weight: 600;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.btn04 i {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .btn04 {
    font-size: 16px;
    padding: 19px 25px 20px;
  }
}
.btn04:hover {
  color: var(--white);
  background-color: var(--blue);
  box-shadow: none;
}

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

object/component/_form.scss

***************************/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=date],
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  background: #fff;
  border: 1px solid #DADADF;
  padding: 18px 20px;
  width: 100%;
  border-radius: 10px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=date]:focus,
select:focus {
  outline: none;
  border-color: #111;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.select_wrap:has(> select:focus)::before {
  border: 1px solid #111;
  border-left: none;
}

textarea {
  background: #fff;
  border: 1px solid #DADADF;
  padding: 15px;
  resize: vertical;
  width: 100%;
  border-radius: 10px;
  height: 300px;
}

textarea:focus {
  outline: none;
  border-color: #111;
}

input[type=checkbox],
input[type=radio] {
  background: var(--white);
  cursor: pointer;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  color: #C2C6CE;
  font-size: 18px;
  font-family: var(--font);
}

textarea::placeholder,
input::placeholder {
  color: #C2C6CE;
  font-size: 18px;
  font-family: var(--font);
}

/* ラジオボタン*/
input[type=radio] {
  display: none;
}

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

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1101px) {
  .wpcf7-radio {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.wpcf7-radio .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #929BA4;
  content: "";
  display: block;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #111111;
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6.3333333333px;
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1101px) {
  .wpcf7-checkbox {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #838791;
  content: "";
  display: block;
  border-radius: 4px;
  left: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
}
.wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #EDEFF3;
  border-bottom: 3px solid #EDEFF3;
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  position: absolute;
  top: 45%;
  transform: rotate(45deg);
  width: 8px;
}

.wpcf7-list-item {
  width: 100%;
  background: #fff;
  border: 1px solid #DBDFE5;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (min-width: 1101px) {
  .wpcf7-list-item {
    max-width: 280px;
  }
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: var(--blue);
  border: 1px solid var(--blue);
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
}

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

.form__container {
  margin-top: 60px;
  border-top: 1px solid #DCE0E4;
  padding-top: 30px;
}
@media screen and (min-width: 700px) {
  .form__container {
    margin-top: 130px;
  }
}

.contact_unit {
  padding: 20px 0;
  display: grid;
  gap: 15px;
}

.contact_dt {
  letter-spacing: 0.05em;
  font-weight: bold;
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 9px;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .contact_dt {
    gap: 12px;
  }
}
.contact_dt span {
  font-weight: 600;
}
.contact_dt label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}

.contact_placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #C2C6CE;
}

/* 必須項目*/
.span-required {
  font-size: 12px;
  font-weight: bold;
  color: var(--white);
  background: #FFA200;
  border-radius: 14px;
  display: inline-block;
  padding: 2px 10px;
  margin-left: 0 !important;
}
.span-required.--gray {
  background: #E8E8EE;
  color: #9EA3AB;
}

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

.privacypolicy_wrap {
  border: 1px solid #A2A4A8;
  padding: 20px;
  border-radius: 5px;
  height: 280px;
  overflow-y: scroll;
}
.privacypolicy_wrap p {
  color: #67686A;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .privacypolicy_wrap p {
    font-size: 15px;
  }
}

.privacypolicy_button_wrap .wpcf7-list-item {
  max-width: 100%;
  border: none;
  padding: 0;
  margin-top: 20px;
}

.contact-form_wrap {
  margin-top: 70px;
  text-align: center;
}
.contact-form_wrap button {
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: 100%;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .contact-form_wrap button {
    font-size: 22px;
    padding: 30px 0;
  }
}

.contact-form_wrap button {
  background: #CDD0D6;
  font-size: 22px;
  border-radius: 48px;
  border: none;
  transition: all 0.5s;
  font-family: var(--font);
  font-weight: 600;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .contact-form_wrap button {
    font-size: 24px;
  }
}
.contact-form_wrap button:hover {
  opacity: 0.6;
}

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

object/object/project/_home.scss

***************************/
.top_mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 65px;
}
@media screen and (min-width: 1024px) {
  .top_mv {
    padding-bottom: 70px;
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}

.top_img {
  width: 100%;
  height: 425px;
}
@media screen and (min-width: 690px) {
  .top_img {
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .top_img {
    width: 100%;
    max-width: calc(100% - 340px - 10%);
  }
}
@media screen and (min-width: 1600px) {
  .top_img {
    width: 100%;
    max-width: 60%;
  }
}
.top_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_title_wrap {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .top_title_wrap {
    max-width: 340px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .top_title_wrap {
    max-width: 20%;
  }
}

.top_title {
  margin: 0 auto;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .top_title {
    max-width: 210px;
  }
}

.top_deco_img {
  position: absolute;
  width: 50%;
  top: 70px;
  right: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .top_deco_img {
    flex-direction: column-reverse;
    top: auto;
    bottom: 0;
    right: -40px;
    width: 40%;
  }
}
@media screen and (min-width: 1600px) {
  .top_deco_img {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (min-width: 1800px) {
  .top_deco_img {
    width: 100%;
    max-width: 800px;
  }
}

.top_deco_img02 {
  width: 100%;
  max-width: 150px;
}
@media screen and (min-width: 1024px) {
  .top_deco_img02 {
    max-width: 246px;
  }
}

.top_right_text {
  display: none;
}
@media screen and (min-width: 1300px) {
  .top_right_text {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: auto;
    margin-top: 128px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    z-index: 6;
  }
  .top_right_text span {
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 1300px) {
  .top_right_text {
    width: 20%;
  }
}

.top_message_wrap {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
.top_message_wrap .container_l {
  padding: 0;
}
@media screen and (min-width: 1300px) {
  .top_message_wrap {
    max-width: 1550px;
    margin-top: 160px;
    margin-bottom: 110px;
  }
}

.top_message_textwrap {
  width: 100%;
  max-width: 645px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-top: 120px;
  padding-bottom: 35px;
}
@media screen and (min-width: 1300px) {
  .top_message_textwrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.top_message_textwrap p {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top_message_textwrap p {
    font-size: 18px;
  }
}
.top_message_textwrap p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .top_message_textwrap p br {
    display: block;
  }
}
.top_message_textwrap .btn_wrap {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .top_message_textwrap .btn_wrap {
    margin-top: 80px;
  }
}
.top_message_textwrap .btn_wrap .btn01 {
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .top_message_textwrap .btn_wrap .btn01 {
    max-width: 300px;
  }
}

.message_img .message_img_wrap {
  overflow: hidden;
  border-radius: 10px;
}
.message_img img {
  border-radius: 10px;
  width: 100%;
}
.message_img .message_text {
  line-height: 1;
  font-size: 10px;
  letter-spacing: 0.03em;
  font-family: var(--popping);
  color: var(--blue);
}
@media screen and (min-width: 540px) {
  .message_img .message_text {
    font-size: 15px;
  }
}
.message_img.--01 {
  margin-left: auto;
  width: 100%;
  max-width: 257px;
  position: relative;
}
.message_img.--01 .message_img_wrap {
  margin-right: 20px;
}
.message_img.--01 .text_top {
  text-align: right;
  margin-bottom: 5px;
}
.message_img.--01 .text_right {
  position: absolute;
  top: 30px;
  right: -11px;
  transform: rotate(90deg);
}
@media screen and (min-width: 540px) {
  .message_img.--01 .text_right {
    right: -20px;
    top: 40px;
  }
}
@media screen and (min-width: 540px) {
  .message_img.--01 {
    max-width: 478px;
  }
}
@media screen and (min-width: 1300px) {
  .message_img.--01 {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.message_img.--02 {
  width: 100%;
  max-width: 120px;
  margin-top: -30px;
  position: relative;
  z-index: 5;
  padding-bottom: 20px;
}
@media screen and (min-width: 540px) {
  .message_img.--02 {
    max-width: 240px;
    margin-top: -80px;
  }
}
@media screen and (min-width: 1300px) {
  .message_img.--02 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: 3;
  }
}
.message_img.--02 .text_top {
  color: #FAC03D;
  padding-bottom: 5px;
}
.message_img.--02 .text_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
.message_img.--03 {
  width: 100%;
  max-width: 153px;
  margin-left: auto;
  margin-right: 20px;
  margin-top: -80px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.message_img.--03 .text_left {
  color: #FAC03D;
  writing-mode: sideways-lr;
}
@media screen and (min-width: 540px) {
  .message_img.--03 {
    max-width: 271px;
    margin-top: -100px;
  }
}
@media screen and (min-width: 1300px) {
  .message_img.--03 {
    position: absolute;
    bottom: 0;
    right: 110px;
    margin-right: 0;
  }
}

.top_about {
  position: relative;
  padding-top: 30px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .top_about {
    padding-top: 70px;
    padding-bottom: 120px;
  }
}
.top_about.bg-active {
  background: var(--l-blue);
  transition: all 1.2s;
}
.top_about .title02_wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.about_deco_img {
  line-height: 1;
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .about_deco_img {
    margin-top: 110px;
  }
}
.about_deco_img.--reverse {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .about_deco_img.--reverse {
    margin-top: 0;
  }
}
.about_deco_img.--reverse img {
  transform: scale(1, -1);
}

.about_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 250px;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .about_title {
    max-width: 299px;
    font-size: 22px;
    margin-bottom: 0;
  }
}

.top_about_wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top_about_wrap {
    max-width: 366px;
  }
}

.about_title_img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.container_l:has(.about_list) {
  overflow: hidden;
}

.about_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 820px) {
  .about_list {
    flex-wrap: nowrap;
  }
}
.about_list li:nth-child(1) {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 820px) {
  .about_list li:nth-child(1) {
    margin-left: 0;
    margin-right: -30px;
  }
}
@media screen and (min-width: 960px) {
  .about_list li:nth-child(1) {
    margin-left: 0;
    margin-right: -60px;
  }
}
.about_list li:nth-child(2) {
  margin-top: -20px;
  margin-right: calc(50% - 54vw);
  position: relative;
  z-index: 6;
}
@media screen and (min-width: 820px) {
  .about_list li:nth-child(2) {
    margin-right: 0;
    margin-top: 100px;
  }
}
@media screen and (min-width: 960px) {
  .about_list li:nth-child(2) {
    margin-right: 0;
    margin-top: 120px;
  }
}
.about_list li:nth-child(3) {
  margin-top: 10px;
  margin-left: calc(50% - 53vw);
}
@media screen and (min-width: 820px) {
  .about_list li:nth-child(3) {
    margin-left: -30px;
  }
}
@media screen and (min-width: 960px) {
  .about_list li:nth-child(3) {
    margin-left: -60px;
  }
}

.about_text {
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 40px;
  margin-bottom: 30px;
}
.about_text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .about_text {
    text-align: center;
    font-size: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .about_text br {
    display: block;
  }
}

.about_deco_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}
.about_deco_wrap img {
  width: 100%;
  max-width: 56px;
}
@media screen and (min-width: 768px) {
  .about_deco_wrap {
    margin-top: 40px;
    margin-bottom: 30px;
    width: 100px;
    height: 100px;
  }
  .about_deco_wrap img {
    width: 100%;
    max-width: 70px;
  }
}

.support_list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .support_list {
    margin-top: 30px;
    gap: 15px;
  }
}

.support_item {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 173, 170, 0.2);
  aspect-ratio: 1/1;
  width: 100%;
  max-width: calc(50% - 5px);
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .support_item {
    max-width: 220px;
    padding: 15px 25px;
    box-shadow: 6px 6px 0 rgba(0, 173, 170, 0.2);
  }
}

.support_item .support_num {
  background: var(--l-blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--popping);
  color: var(--blue);
}
.support_item .support_title {
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--blue);
  line-height: 1.25;
  margin-bottom: 5px;
}
.support_item p {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .support_item .support_title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .support_item p {
    font-size: 14px;
  }
}
.support_item.bg-blue {
  background: #0BB9B5;
  padding: 20px;
}
.support_item.bg-blue img {
  width: 100%;
  max-width: 79px;
}
@media screen and (min-width: 768px) {
  .support_item.bg-blue {
    padding: 20px 30px;
  }
}
.support_item.bg-blue .support_title {
  color: var(--white);
  margin-bottom: 10px;
}
.support_item.bg-yellow {
  background: #FFE330;
  padding: 20px;
}
.support_item.bg-yellow img {
  width: 100%;
  max-width: 56px;
}
@media screen and (min-width: 768px) {
  .support_item.bg-yellow {
    padding: 20px 30px;
  }
}
.support_item.bg-yellow .support_title {
  color: var(--black);
  margin-bottom: 10px;
}
.support_item ul {
  font-size: 13px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .support_item ul {
    font-size: 15px;
  }
}

.support_list.--column2 {
  gap: 10px;
  margin-top: 0;
}
.support_list.--column2 .support_item {
  aspect-ratio: auto;
  max-width: 100%;
  position: relative;
}
.support_list.--column2 .support_item img {
  position: absolute;
  top: 10px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .support_list.--column2 .support_item {
    max-width: calc(50% - 10px);
  }
  .support_list.--column2 .support_item img {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.deco {
  display: grid;
  grid-template-columns: 6px 1fr;
  align-items: baseline;
  gap: 7px;
}
.deco::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: var(--white);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
}

.about_btn_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .about_btn_wrap {
    flex-direction: row;
    padding-top: 30px;
  }
}
.about_btn_wrap li {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about_btn_wrap li {
    margin: 0;
  }
}

.support_plus {
  color: #ADDCDC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support_plus i {
  font-size: 50px;
  line-height: 1.5;
}

.about-swiper {
  margin-top: -80px;
}

.slider-wrapper {
  display: flex;
  overflow: hidden;
}

.slider .swiper-slide {
  width: 100%;
  margin-right: 70px;
  width: 50vw;
}
@media screen and (min-width: 768px) {
  .slider .swiper-slide {
    width: 33.3333333333vw;
  }
}
@media screen and (min-width: 1024px) {
  .slider .swiper-slide {
    width: 16.6666666667vw;
  }
}
.slider .swiper-slide:nth-child(2) {
  margin-top: 40px;
}
.slider .swiper-slide:nth-child(3) {
  margin-top: 110px;
}
.slider .swiper-slide:nth-child(5) {
  margin-top: 110px;
}
.slider .swiper-slide:nth-child(6) {
  margin-top: 70px;
}
.slider img {
  width: 100%;
  border-radius: 10px;
}

.slider--left {
  -webkit-animation: scroll-left 60s infinite linear 0.5s both;
  animation: scroll-left 60s infinite linear 0.5s both;
  display: flex;
  align-items: center;
  will-change: transform;
}

@-webkit-keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.map_wrap {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 130px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .map_wrap {
    margin-top: 250px;
  }
}

.map_title {
  font-size: 32px;
  font-family: var(--popping);
  font-weight: 300;
  font-style: italic;
  color: var(--blue);
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .map_title {
    font-size: 54px;
    top: -40px;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 123.0769%;
  height: 0;
}
@media screen and (min-width: 768px) {
  .map {
    padding-top: 40.5405%;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 80px;
}
@media screen and (min-width: 960px) {
  .access_wrap {
    flex-direction: row;
    gap: 70px;
    margin-top: 80px;
    margin-bottom: 150px;
  }
}

.access_title_en {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: var(--inter);
  color: var(--blue);
}
@media screen and (min-width: 960px) {
  .access_title_en {
    writing-mode: vertical-rl;
    font-size: 12px;
    font-weight: 500;
  }
}

.access_title {
  display: flex;
  flex-direction: column;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.access_title span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .access_title {
    font-size: 22px;
  }
  .access_title span {
    font-size: 14px;
  }
}

.access_address {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .access_address {
    font-size: 14px;
  }
}

.access_img_wrap {
  position: relative;
}
.access_img_wrap .access_img img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 960px) {
  .access_img_wrap {
    width: 100%;
    max-width: 490px;
  }
  .access_img_wrap .access_img {
    max-width: 450px;
  }
}

.access_fukidashi {
  position: absolute;
  top: -30px;
  right: -10px;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .access_fukidashi {
    top: -40px;
    right: 0;
  }
}

.tel_box .tel {
  color: var(--blue);
  font-family: var(--popping);
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.tel_box .tel span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.access_textbox .btn01 {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .access_textbox .btn01 {
    max-width: 300px;
  }
}
@media screen and (min-width: 960px) {
  .access_textbox .btn01 {
    margin-bottom: 0;
  }
}

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

共通

***************************/
.page_mv_wrap {
  background: var(--white);
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_mv_wrap {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

.page_mv_right_text {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page_mv_right_text {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--blue);
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    margin-top: 100px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    padding-right: 50px;
    margin-top: 128px;
  }
  .page_mv_right_text span {
    writing-mode: vertical-rl;
  }
}

.pege_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .pege_title {
    font-size: 36px;
  }
}
.pege_title span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--popping);
  color: var(--blue);
}

.page_mv_img img {
  width: 100%;
}

.anchor_contents {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.anchor_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: auto;
}

.anchor_wrap {
  border: 1px solid var(--blue);
  background: #fff;
  box-shadow: 6px 6px 0 rgba(0, 173, 170, 0.1);
  border-radius: 10px;
  padding: 20px 40px;
  margin-top: 30px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .anchor_wrap {
    margin-top: 60px;
    margin-bottom: 150px;
  }
}

.anchor_item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-right: 10px;
}
.anchor_item:first-child {
  margin-right: 0;
}
.anchor_item a {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

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

object/object/project/_about.scss

***************************/
.bd {
  border: 1px solid #EAEBEF;
}
.bd.--blue {
  border-color: var(--blue);
}

.bd_top {
  border-top: 2px solid #EAEBEF;
}

.bd_bottom {
  border-bottom: 2px solid #EAEBEF;
}

.about01_philosophy_text {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about01_philosophy_text {
    font-size: 24px;
  }
}

.br_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br_pc {
    display: block;
  }
}

.gallery_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .gallery_list {
    gap: 25px;
  }
}

.gallery_item {
  width: 100%;
  max-width: calc(50% - 8px);
}
@media screen and (min-width: 768px) {
  .gallery_item {
    max-width: calc(33.3333333333% - 20px);
  }
}

.gallery_img {
  overflow: hidden;
  border-radius: 10px;
}
.gallery_img img {
  transition: all 0.5s;
}
.gallery_img:hover img {
  transform: scale(1.02);
}

.modaal-container {
  background: transparent;
}

.modaal-content-container {
  padding: 0;
}

.list_type01_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.list_type01_item {
  width: 100%;
  background: #F1F9F9;
  border-radius: 10px;
  padding: 20px 35px 35px;
}
@media screen and (min-width: 768px) {
  .list_type01_item {
    max-width: calc(50% - 10px);
  }
}
@media screen and (min-width: 960px) {
  .list_type01_item {
    padding: 30px 50px 45px;
  }
}
.list_type01_item p {
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .list_type01_item p {
    margin-top: 25px;
  }
}

.list_type01_title {
  text-align: center;
}
.list_type01_title span {
  border-bottom: 2px dotted #00ADA9;
  display: inline;
  line-height: 2.4;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .list_type01_title span {
    font-size: 20px;
  }
}
.list_type01_title .num {
  border-bottom: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--popping);
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}
.list_type01_title .num::before {
  content: "";
  background: url(../img/about/brackets-l.png);
  width: 6px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  display: block;
}
.list_type01_title .num::after {
  content: "";
  background: url(../img/about/brackets-r.png);
  width: 6px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  display: block;
}

.about02 .list_type01_list {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about02 .list_type01_list {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.about02 .btn_wrap {
  margin: 0 auto;
  max-width: 300px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about02 .btn_wrap {
    margin-top: 50px;
  }
}

.list_type02_item {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-top: 1px solid #EAEBEF;
  padding: 20px 0;
}
.list_type02_item:last-child {
  border-bottom: 1px solid #EAEBEF;
}
@media screen and (min-width: 768px) {
  .list_type02_item {
    gap: 100px;
  }
}
@media screen and (min-width: 960px) {
  .list_type02_item {
    gap: 220px;
  }
}

.list_type02_title {
  font-weight: bold;
  letter-spacing: 0.05em;
}

.list_type02_contents {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.list_type03_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.list_type03_item {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 20px 35px 35px;
}
@media screen and (min-width: 768px) {
  .list_type03_item {
    max-width: calc(50% - 10px);
  }
}
@media screen and (min-width: 960px) {
  .list_type03_item {
    padding: 30px 50px 45px;
  }
}
.list_type03_item p {
  line-height: 1.75;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .list_type03_item p {
    margin-top: 20px;
  }
}

.list_type03_title {
  text-align: center;
  line-height: 2.4;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .list_type03_title {
    font-size: 20px;
  }
}

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

object/object/project/_service.scss

***************************/
.service01 .btn_wrap {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .service01 .btn_wrap {
    margin-top: 40px;
  }
}
.service01 .btn01 {
  max-width: 300px;
  margin: 0 auto;
}

.list_type04_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list_type04_list {
  border-radius: 10px;
  background: #F1F9F9;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .list_type04_list {
    padding: 40px;
  }
}

.list_type04_titlebox {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  align-items: center;
}

.list_type04_num {
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--popping);
  letter-spacing: 0.05em;
  width: 36px;
  height: 36px;
}

.list_type04_title {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .list_type04_title {
    font-size: 20px;
  }
}
.list_type04_title:has(span) {
  display: flex;
  flex-direction: column;
}
.list_type04_title span {
  font-size: 12px;
}

.list_type04_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.list_type04_list p {
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .list_type04_list p {
    width: 100%;
    max-width: 720px;
  }
}

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

object/object/project/_flow.scss

***************************/
.list_type05_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #EAEBEF;
  padding: 30px 0;
}
.list_type05_item:last-child {
  border-bottom: 1px solid #EAEBEF;
}
@media screen and (min-width: 768px) {
  .list_type05_item {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 40px 0;
  }
}
@media screen and (min-width: 960px) {
  .list_type05_item {
    gap: 120px;
  }
}

.list_type05_title {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 15px;
  align-items: center;
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
}
.list_type05_title span {
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 15px;
  text-align: center;
  padding: 5px 12px;
  line-height: 1.4;
  font-family: var(--popping);
}
@media screen and (min-width: 768px) {
  .list_type05_title {
    width: 100%;
    max-width: 380px;
  }
}

.bg_gray {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .bg_gray {
    padding: 25px;
  }
}

.list_type05_contents {
  width: 100%;
}

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

object/object/project/_contact.scss

***************************/
.contact_telbox {
  border-radius: 10px;
  padding: 35px 10px 34px;
}
.contact_telbox .tel_box {
  gap: 10px 20px;
}
.contact_telbox .tel_box .tel {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .contact_telbox .tel_box .tel {
    font-size: 36px;
  }
}

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

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: 451px) {
  .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(--black);
}

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

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

.fc--red {
  color: red;
}

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

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

.line_blue {
  display: inline;
  background: #D7F1F1;
}

.small {
  font-size: 10px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .small {
    font-size: 12px;
  }
}

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

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

.lineheight2 {
  line-height: 2;
}

.lineheight15 {
  line-height: 1.5;
}

.vertical {
  writing-mode: vertical-rl;
}
/*# sourceMappingURL=style.css.map */