@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto+Condensed:wght@100..900&display=swap');


/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
a img {
  border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
  font-feature-settings: 'palt';
  outline: none;
}
html, body {
  font-family: var(--font-sans);
  /*text-align: justify;*/
  font-size: 10px;
  /*scroll-behavior: smooth;*/
  /*-webkit-overflow-scrolling: touch;*/
  font-weight: var(--regular);
  color: var(--color-txt);
}
a {
  display: inline-block;
  color: initial;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}
button {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  letter-spacing: 0;
}
input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="checkbox"] {
  position: relative;
  min-width: 1.4rem;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--color-white);
  border: 0.2rem solid rgb(0 73 93 / 0.5);
  margin: 0 1rem -0.2rem 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.2s;
  cursor: pointer;
}
input[type="checkbox"]:checked {
  background-color: var(--color-green);
  box-shadow: none;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  content: '';
  top: 40%;
  left: 50%;
  width: 0.5rem;
  height: 0.7rem;
  border-right: 0.1rem solid var(--color-white);
  border-bottom: 0.1rem solid var(--color-white);
  transform: translate(-50%, -50%) rotate(50deg);
}
/*
p, dt, dd {
  overflow-wrap: break-word;
}
*/
body {
  margin: auto;
}
small {
  font-size: 70%;
}
main {
  overflow: hidden;
}
li {
  list-style: none;
}
@media screen and (max-width: 767px) {
  ::-webkit-scrollbar{
    width: 0;
  }
}
@media screen and (max-width: 1460px) {
  html, body {
    font-size: calc(1000vw / 1460);
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: calc(1000vw / 390);
  }
}
.sp,
.spi {
  display: none !important;
}
.pc {
  display: block !important;
}
.pci {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .spi {
    display: inline-block !important;
  }
  .pc,
  .pci {
    display: none !important;
  }
}

/* ----------------------------------
common
---------------------------------- */
:root {
  --color-green: #00495D;
  --color-green-bg: #EFF4F5;
  --color-pink: #C25C71;
  --color-white: #fff;
  --color-txt: #333333;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --font-en: "Roboto Condensed", sans-serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
}
.is-hide {
  display: none !important;
}
.en {
  font-family: var(--font-en);
}

a {
  transition: .3s;
}
a:hover {
  opacity: 0.5;
}
::placeholder {
  color: #B1B9BA;
}
body.fixed {
  /* width: 100%;
  height: 100%;
  position: fixed; */
  overflow: hidden;
}
.flex {
  display: flex;
}
.in {
  max-width: 136rem;
  margin: 0 auto;
}
.df-ttl {
  margin-bottom: 7.7rem;
}
.df-ttl .ttl-h2 {
  font-size: 7.2rem;
  font-weight: var(--semibold);
  font-family: var(--font-en);
  color: var(--color-green);
  line-height: 1.3;
}
.df-ttl .ttl-sub {
  margin-top: -0.5rem;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}
.txt {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 2;
}
.ttl-h2-serif {
  font-size: 4rem;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  color: var(--color-green);
  line-height: 1.4;
}
.ttl-h2-serif span {
  color: var(--color-pink);
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 5rem;
  border-radius: 5rem;
  border: 1px solid rgb(0 73 93 / 0.5);
  background: var(--color-white);
  font-size: 1.4rem;
  font-weight: var(--medium);
  letter-spacing: 0.06em;
  color: var(--color-green);
  transition: .3s;
}
.button.button-more {
  margin: 2rem 0 0 auto;
  width: 10rem;
  height: 2.6rem;
  border: none;
  background: var(--color-white);
  color: var(--color-pink);
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: var(--medium);
}
.button:not(.button-more) span {
  position: relative;
  padding-right: 2.5rem;
}
.button:not(.button-more) span::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/common/icon_button_arrow.svg) center/contain no-repeat;
  transform: translateY(-50%);
  transition: .3s;
}
.button.button-disabled {
  pointer-events: none;
}
.button.button-disabled span::after {
  content: none;
}
.button.button-disabled span {
  padding: 0;
}
.button.no-arrow span::after {
  content: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}
@media screen and (min-width: 768px) {
  .button:not(.button-more):hover {
    background: var(--color-green);
    color: var(--color-white);
    opacity: 1;
  }
  .button:not(.button-more):hover span::after {
    background-image: url(../img/common/icon_button_arrow_wh.svg);
  }
}
@media screen and (max-width: 767px) {
  .df-ttl {
    margin-bottom: 4.7rem;
  }
  .df-ttl .ttl-h2 {
    font-size: 5.4rem;
    line-height: 1.1;
  }
  .df-ttl .ttl-sub {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .ttl-h2-serif {
    font-size: 3rem;
  }
  .txt {
    font-size: 1.4rem;
  }
  .in {
    max-width: none;
    padding: 0 2rem;
  }
}


/* ----------------------------------
header
---------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 2rem;
  z-index: 10;
  transition: .3s;
}
header .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
}
header .in .logo {
  width: 27rem;
}
header .in .logo .color {
  display: none;
}
header.fixed .in .logo .color {
  display: block;
}
header.fixed .in .logo img:not(.color) {
  display: none;
}
header .in .tel a {
  padding-left: 4.4rem;
  background: url(../img/common/ico-dial.png) center left / 3.6rem auto no-repeat;
  color: var(--color-white);
  font-size: 3rem;
  font-family: var(--font-en);
  font-weight: var(--semibold);
  letter-spacing: -0.01em;
  transition: .3s;
}
header .in .tel small {
  display: block;
  padding: 1rem 1.6rem 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-align: right;
  color: var(--color-white);
  transition: .3s;
}
header .in .center .top {
  display: flex;
  justify-content: center;
}
header .in .center .top li:not(:first-of-type) {
  border-left: 1px solid var(--color-white)
}
header .in .center .top li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  width: auto;
  padding: 0 2rem;
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
header .in .center .top li a span {
  padding-left: 3rem;
  position: relative;
}
header .in .center .top li.contact a span {
  padding: 0;
}
header .in .center .top li a span::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .in .center .top li:nth-of-type(1) a span::before {
  width: 1.8rem;
  height: 2rem;
  background: url(../img/common/ico-menu01.png) center/contain no-repeat;
}
header .in .center .top li:nth-of-type(2) a span::before {
  width: 1.4rem;
  height: 1.9rem;
  background: url(../img/common/ico-menu03.png) center/contain no-repeat;
}
header .in .center .top li:nth-of-type(3) a span::before {
  width: 1.7rem;
  height: 2rem;
  background: url(../img/common/ico-menu02.png) center/contain no-repeat;
}
header .in .center .top li:nth-of-type(4) a span::before {
  width: 1.9rem;
  height: 1.9rem;
  background: url(../img/common/ico-menu04.png) center/contain no-repeat;
}
header .in .center .top li a:hover {
  background: var(--color-green);
  opacity: 1;
}
header .in .center .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10.1rem;
}
header .in .center .bottom li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  padding: 0 1.1rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--color-white);
  transition: .3s;
}
header .in .center .bottom li.accordion::after {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1;
}
header .in .center .bottom li > a {
  color: var(--color-white);
  transition: .3s;
}
header .in .center .bottom .accordion-contents {
  position: absolute;
  top: 99%;
  left: 50%;
  width: max-content;
  padding: 3.2rem 4rem;
  background: var(--color-white);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 10;
}
header .in .center .bottom .accordion-contents .txt-wrap {
  width: 100%;
  color: var(--color-txt);
}
header .in .center .bottom .accordion-contents .ttl {
  margin-bottom: 1.1rem;
  font-size: 2.4rem;
  font-family: var(--font-serif);
  font-weight: var(--semibold);
  letter-spacing: 0.06em;
}
header .in .center .bottom .accordion-contents .txt {
  font-size: 1.4rem;
}
header .in .center .bottom .accordion-contents .flex {
  display: flex;
  gap: 2rem;
  margin-top: 2.7rem;
}
header .in .center .bottom .accordion-contents a {
  width: 20rem;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
header .in .center .bottom .accordion-contents a img {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
header .in .center .tel {
  display: none;
}
header.fixed {
  background: var(--color-white);
  box-shadow: 1.41px 1.41px 1rem rgb(0 0 0 / 0.1);
}
header.fixed .in .center .bottom li,
header.fixed .in .center .bottom li > a {
  color: var(--color-txt);
}
header.fixed .in .tel a,
header.fixed .in .tel small {
  color: var(--color-green);
}
header.fixed .in .tel a {
  background-image: url(../img/common/ico-dial-grn.png);
}
.hamburger {
  display: none;
}
@media screen and (min-width: 768px) {
  header .in .center .bottom li.accordion:hover .accordion-ttl {
    position: relative;
    z-index: 2;
    color: var(--color-white) !important;
  }
  header .in .center .bottom li.accordion:hover .accordion-contents {
    opacity: 1;
    pointer-events: auto;
  }
  header .in .center .bottom li.accordion:hover::after {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 1rem 1.5rem;
  }
  header .in {
    padding: 0;
  }
  header .in > .tel {
    display: none;
  }
  header .in .center::after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100vw;
    height: 7rem;
    background: #F9EEF0;
    pointer-events: none;
  }
  header .in .center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    background: #F9EEF0;
    overflow: auto;
    padding: 10rem 0 17rem;
  }
  header .in .center .bottom {
    display: block;
    padding: 0 2rem 0;
    height: auto;
  }
  header .in .center .bottom li {
    padding: 0;
    display: block;
    height: auto;
    font-size: 1.5rem;
    border-bottom: 1px solid rgb(194 92 113 / 0.2);
    color: var(--color-txt);
  }
  header .in .center .bottom li > a {
    color: var(--color-txt);
  }
  header .in .center .bottom li > a,
  header .in .center .bottom li .accordion-ttl {
    position: relative;
    display: block;
    padding: 2rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
  }
  header .in .center .bottom li > a::after {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url(../img/common/icon_button_arrow-pk.svg) center / contain no-repeat;
    transform: translateY(-50%);
  }
  header .in .center .bottom li .accordion-ttl::after,
  header .in .center .bottom li .accordion-ttl::before {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    content: "";
    display: block;
    width: 1.4rem;
    height: 0.2rem;
    background: var(--color-pink);
    transform: translateY(-50%);
    transition: .3s;
  }
  header .in .center .bottom li .accordion-ttl::after {
    transform: translateY(-50%) rotate(90deg);
  }
  header .in .center .bottom li .accordion-ttl.open::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
  header .in .center .tel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    margin: 4rem 2rem 0;
    background: var(--color-white);
    border-radius: 5rem;
  }
  header .in .center .tel a {
    background-image: url(../img/common/ico-dial-grn.png);
    color: var(--color-green);
  }
  header .in .tel small {
    padding-top: 0.4rem;
    padding-right: 2.1rem;
    color: var(--color-green);
  }
  header .in .center .top {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 1px;
    background: #F9EEF0;
    flex-wrap: wrap;
    z-index: 2;
  }
  header .in .center .top li {
    width: calc(25% - (1px * 3 / 4));
  }
  header .in .center .top li.contact {
    width: 100%;
    border-left: none;
  }
  header .in .center .top li a {
    align-items: flex-start;
    width: 100%;
    height: 7.5rem;
    font-size: 1.2rem;
    padding: 0 1rem;
    line-height: 1.2;
    text-align: center;
  }
  header .in .center .top li a span {
    padding: 4rem 0 0 0;
  }
  header .in .center .top li.pt a span {
    padding-top: 4.7rem;
  }
  header .in .center .top li a span::before {
    left: 50%;
    transform: translateX(-50%);
  }
  header .in .center .top li:nth-of-type(1) a span::before {
    top: 0.8rem;
    width: 2.3rem;
    height: 2.556rem;
  }
  header .in .center .top li:nth-of-type(2) a span::before {
    width: 2.2rem;
    height: 2.5rem;
    top: 1rem;
  }
  header .in .center .top li:nth-of-type(3) a span::before {
    width: 2.5rem;
    height: 2.4rem;
    top: 1rem;
  }
  header .in .center .top li:nth-of-type(4) a span::before {
    width: 2.4rem;
    height: 2.4rem;
    top: 0.9rem;
  }
  header .in .center .top li.contact a {
    height: 5rem;
    align-items: center;
    font-size: 1.5rem;
  }
  header .in .logo {
    position: relative;
    width: 22rem;
    z-index: 2;
  }
  header .hamburger {
    position: relative;
    display: block;
    height: 4.5rem;
    width: 12rem;
    background: var(--color-white);
    border-radius: 3rem;
    color: var(--color-pink);
    font-size: 1.4rem;
    font-family: var(--font-en);
    font-weight: var(--medium);
  }
  header .hamburger span {
    position: absolute;
    right: 6.1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  header .hamburger::after,
  header .hamburger::before {
    position: absolute;
    top: calc(50% - 0.25rem);
    right: 2.4rem;
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--color-pink);
    transform: translateY(-50%);
    transition: .3s;
  }
  header .hamburger::before {
    top: calc(50% + 0.25rem);
  }
  header.fixed {
    background: #F9EEF0;
    box-shadow: none;
  }
  header .hamburger.open::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  header .hamburger.open::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  header .in .center .bottom .accordion-contents {
    position: static;
    width: 100%;
    padding: 0 0 2rem;
    background: none;
    transform: unset;
    opacity: 1;
    pointer-events: auto;
    display: none;
    transition: unset;
  }
  header .in .center .bottom .accordion-contents .txt-wrap {
    display: none;
  }
  header .in .center .bottom .accordion-contents .flex {
    margin: 0;
    gap: 2rem 1rem;
    flex-wrap: wrap;
  }
  header .in .center .bottom .accordion-contents a {
    width: calc(50% - 0.5rem);
    font-size: 1.5rem;
  }
}

.fixedButton {
  position: fixed;
  display: none;
  z-index: 6;
}
.fixedButton .pc {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 14rem;
  border-radius: 100%;
  background: var(--color-pink);
  box-shadow: 0.2rem 0 3rem rgb(0 0 0 / 0.1);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: var(--bold);
  letter-spacing: 0.06em;
  line-height: 1.4;
  z-index: 6;
  text-align: center;
}
.fixedButton .pc span {
  padding-top: 3.7rem;
  background: url(../img/common/ico-menu04.png) center top/2.4rem auto no-repeat;
}
.fixedButton .pc:hover {
  background: var(--color-green);
  opacity: 1;
}
.fixedButton .flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .fixedButton .flex {
    position: fixed;
    bottom: -1px;
    left: 50%;
    display: flex;
    justify-content: center;
    gap: 0.1rem;
    transform: translateX(-50%);
    z-index: 6;
    background: var(--color-white);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .fixedButton .pc {
    display: none !important;
  }
  .fixedButton .sp {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 18.6rem;
    height: 5rem;
    background: var(--color-pink);
    color: var(--color-white);
    opacity: 1 !important;
  }
  .fixedButton .sp span {
    position: relative
  }
  .fixedButton .sp span::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .fixedButton .sp.tel {
    border-top-left-radius: 0.8rem;
  }
  .fixedButton .sp.tel span {
    padding-left: 2.6rem;
    font-size: 2rem;
    font-family: var(--font-en);
    font-weight: var(--bold);
    letter-spacing: -0.01em;
  }
  .fixedButton .sp.tel span::before {
    width: 1.9rem;
    height: 1.3rem;
    background: url(../img/common/ico-dial.png) center/contain no-repeat;
  }
  .fixedButton .sp.tel small {
    margin-top: 0.2rem;
    font-size: 1rem;
    font-weight: var(--regular);
    letter-spacing: 0.06em;
  }
  .fixedButton .sp.contact {
    border-top-right-radius: 0.8rem;
    font-size: 1.2rem;
    font-weight: var(--bold);
    letter-spacing: 0.06em;
  }
  .fixedButton .sp.contact span {
    padding-left: 2.6rem;
  }
  .fixedButton .sp.contact span::before {
    width: 1.9rem;
    height: 1.9rem;
    background: url(../img/common/ico-menu04.png) center/contain no-repeat;
  }
} 


/* ----------------------------------
case study
---------------------------------- */
#case-study {
  padding: 8.3rem 0 0;
}
#case-study .df-ttl {
  position: relative;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}
#case-study .swiper {
  position: relative;
  margin-top: -4.9rem;
  padding: 12.2rem 0 10rem;
  overflow: visible;
}
#case-study .swiper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100vw;
  margin-left: calc(100% - 100vw - 12rem);
  height: 100%;
  background: var(--color-green-bg);
}
#case-study .swiper-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 2;
}
#case-study .swiper-slide {
  width: 40rem;
  min-width: 40rem;
}
#case-study .swiper-slide:not(:last-of-type) {
  margin-right: 6rem;
}
#case-study .swiper-slide a {
  display: block;
}
#case-study .swiper-slide .img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.3rem;
  width: 100%;
  aspect-ratio: 1 / 0.65;
}
#case-study .swiper-slide .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
#case-study .swiper-slide .ttl {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: var(--medium);
  letter-spacing: 0.06em;
  line-height: 1.5;
}
#case-study .swiper-slide .data {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem 1rem;
}
#case-study .swiper-slide .data dt {
  width: 5rem;
  padding: 0.4rem 0;
  font-size: 1.2rem;
  background: var(--color-green);
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.06em;
}
#case-study .swiper-slide .data dd {
  width: calc(100% - 5rem - 1rem);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
#case-study .swiper-controll {
  position: absolute;
  right: 0;
  top: -2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#case-study .swiper-controll .button {
  margin-right: 2rem;
}
#case-study .swiper-button-prev,
#case-study .swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: var(--color-green);
  margin: 0;
}
#case-study .swiper-button-prev img,
#case-study .swiper-button-next img {
  width: 1rem;
}
#case-study .swiper-button-prev::after,
#case-study .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 767px) {
  #case-study {
    padding-top: 9rem;
  }
  #case-study .swiper {
    padding: 9.4rem 0 6.9rem;
    margin-top: -4rem;
  }
  #case-study .swiper::before {
    width: calc(100% + 4rem);
    left: -2rem;
    margin: 0;
  }
  #case-study .swiper-slide:not(:last-of-type) {
    margin-right: 4rem;
  }
  #case-study .swiper-slide {
    width: 28rem;
    min-width: 28rem;
  }
  #case-study .swiper-controll {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 5rem;
  }
  #case-study .swiper-controll .button {
    width: 22rem;
    margin-right: 1rem;
  }
}


/* ----------------------------------
voice
---------------------------------- */
#voice .in {
  padding-bottom: 10rem;
}
#voice .ttl-h2-serif {
  text-align: center;
  margin-bottom: 5.5rem;
}
#voice .swiper {
  overflow: visible;
}
#voice .swiper-wrapper {
  display: flex;
}
#voice .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 40rem;
  min-width: 40rem;
  margin: 0 2rem;
  padding: 6rem 4rem;
  border-radius: 2rem;
  color: var(--color-white);
}
#voice .swiper-slide .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(25px);
  transform: translate(-50%, -50%) scale(1.5);
}
#voice .swiper-slide::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: var(--color-green);
  opacity: 0.65;
  z-index: -1;
}
#voice .swiper-slide:nth-of-type(even)::after {
  background: var(--color-pink);
}
#voice .swiper-slide .ttl-h3 {
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: var(--medium);
  letter-spacing: 0.06em;
  line-height: 1.5;
}
#voice .swiper-slide .txt {
  font-size: 1.4rem;
}
#voice .swiper-slide .name {
  margin-bottom: 4.7rem;
  text-align: center;
}
#voice .swiper-slide .name .img {
  position: relative;
  overflow: hidden;
  width: 7rem;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  margin: 0 auto;
}
#voice .swiper-slide .name .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
#voice .swiper-slide .name .txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1;
}
#voice .button {
  margin: 4rem auto 0;
}
#voice .button.button-more {
  margin: 2rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  #voice .in {
    padding-top: 9.5rem; 
  }
  #voice .ttl-h2-serif {
    margin-bottom: 4.2rem;
  }
  #voice .swiper-slide {
    width: 28rem;
    margin: 0 1.5rem;
    min-width: 28rem;
    padding: 3rem 2rem;
  }
  #voice .swiper-slide .name {
    margin-bottom: 3.5rem;
  }
  #voice .swiper-slide .ttl-h3 {
    font-size: 1.8rem;
  }
  #voice .swiper-slide .txt {
    opacity: 0.5;
  }
}


/* ----------------------------------
staff
---------------------------------- */
#staff {
  padding-bottom: 13rem;
}
#staff .in {
  position: relative;
}
#staff .button {
  position: absolute;
  right: 12rem;
  top: 3.3rem;
}
#staff .df-ttl {
  margin-bottom: 0;
}
#staff .flex {
  position: relative;
  flex-wrap: wrap;
  gap: 8rem 4rem;
  align-items: flex-start;
  padding: 12rem 0;
  margin-top: -5.2rem;
}
#staff .flex::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 100vw;
  margin-right: calc(100% - 100vw - 24rem);
  height: 100%;
  background: var(--color-green-bg);
}
#staff .flex .item {
  position: relative;
  width: calc(25% - (4rem * 3 / 4));
  z-index: 2;
}
#staff .flex .item a {
  display: block;
}
#staff .flex .item .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40rem;
  margin-bottom: 1.6rem;
}
#staff .flex .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
#staff .flex .item .img .name-en {
  position: absolute;
  bottom: 1.9rem;
  right: 1.9rem;
  font-size: 1.6rem;
  font-family: var(--font-en);
  color: var(--color-white);
  opacity: 0.9;
  letter-spacing: 0.2em;
}
#staff .flex .item .name {
  font-size: 2.4rem;
  font-weight: var(--medium);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
#staff .flex .item .name small {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  font-weight: var(--regular);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  #staff {
    position: relative;
    padding: 6.1rem 0 7rem;
  }
  #staff::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: calc(100% - 6rem);
    height: 100%;
    background: var(--color-green-bg);
    z-index: -1;
  }
  #staff .df-ttl {
    margin-bottom: 4rem;
  }
  #staff .flex {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 6rem 1rem;
  }
  #staff .flex .item {
    width: calc(50% - (1rem * 1 / 2));
  }
  #staff .flex .item .img {
    margin-bottom: 1.16rem;
    height: 22rem;
  }
  #staff .flex .item .img .name-en {
    font-size: 1.2rem;
    right: 1.7rem;
    bottom: 1.9rem;
  }
  #staff .flex .item .name {
    font-size: 2rem;
  }
  #staff .flex .item .name small {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
  #staff .button {
    position: static;
    margin: 5rem auto 0;
  }
  #staff .flex::after {
    content: none;
  }
}



/* ----------------------------------
pager
---------------------------------- */
.pager {
  position: relative;
  z-index: 2;
  margin-top: 10rem;
}
.pager .nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #707070;
  background: var(--color-white);
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: var(--medium);
  color: var(--color-green);
  transition: .3s;
}
.pager .page-numbers img {
  width: 0.494rem;
  transition: .3s;
}
.pager .page-numbers.current {
  background: var(--color-green);
  color: var(--color-white);
}
.pager .page-numbers:not(.current):hover {
  background: var(--color-green);
  color: var(--color-white);
  opacity: 1;
}
.pager .page-numbers:not(.current):hover img {
  filter: invert(1);
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 7rem;
  }
  .pager .nav-links {
    gap: 0.2rem;
  }
}



/* ----------------------------------
footer
---------------------------------- */
footer {
  margin-top: 14rem;
  padding: 11rem 0 9.3rem;
  background: var(--color-green);
}
footer .in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 6.8rem;
  color: var(--color-white);
}
footer .in .left .logo {
  width: 40rem;
}
footer .in .left .data {
  margin-top: 6.6rem;
}
footer .in .left .data .tel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
footer .in .left .data .tel a {
  padding-left: 3.5rem;
  background: url(../img/common/ico-dial.png) center left/2.7rem auto no-repeat;
  color: var(--color-white);
  font-size: 2.4rem;
  font-family: var(--font-en);
  font-weight: var(--semibold);
  letter-spacing: -0.01em;
}
footer .in .left .data .tel small {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
footer .in .left .data .address {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
footer .in .left .data .address a {
  display: block;
  width: max-content;
  margin-top: 1.2rem;
  padding-top: 0.5rem;
  padding-left: 2.3rem;
  background: url(../img/common/ico-menu02.png) bottom left/auto 100% no-repeat;
  color: var(--color-white);
}

footer .in .right {
  display: flex;
  gap: 8.6rem;
  margin-right: 6rem;
}
footer .in .right .list li > a,
footer .in .right .list li .accordion-ttl {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
  color: var(--color-white);
}
footer .in .right .list li + li {
  margin-top: 6rem;
}
footer .in .right .list li .accordion-ttl {
  margin-bottom: 3rem;
  pointer-events: none;
}
footer .in .right .list li .accordion-contents a {
  display: block;
  font-size: 1.4rem;
  color: var(--color-white);
  opacity: 0.5;
  letter-spacing: 0.06em;
}
footer .in .right .list li .accordion-contents a:hover {
  opacity: 1;
}
footer .in .right .list li .accordion-contents a + a {
  margin-top: 1.7rem;
}
footer .in .right .list li .accordion-contents a img {
  display: none;
}

footer .in .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 2.1rem;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  color: var(--color-white);
}
footer .in .bottom .sns {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
footer .in .bottom .sns .ttl {
  font-size: 1.4rem;
  font-weight: var(--regular);
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
footer .in .bottom .sns .list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
footer .in .bottom .sns .instagram {
  width: 3rem;
}
footer .in .bottom .sns .facebook {
  width: 3.2rem;
}
footer .in .bottom .sns .youtube {
  width: 3.5rem;
}
footer .in .bottom .links {
  display: flex;
  align-items: center;
  gap: 2.9rem;
}
footer .in .bottom .links a {
  font-size: 1.2rem;
  color: var(--color-white);
  opacity: 0.5;
  letter-spacing: 0.06em;
}
footer .in .bottom .links a:hover {
  opacity: 1;
}
footer .in .bottom .links .copy {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 8rem;
    padding: 8rem 0 8.9rem;
  } 
  footer .in {
    gap: 0;
  }
  footer .in .left .logo {
    width: 33rem;
  }
  footer .in .left .data {
    margin-top: 5rem;
  }
  footer .in .right {
    display: block;
    width: 100%;
    margin: 6rem 0 0;
  }
  footer .in .right .list li {
    border-bottom: 1px solid rgb(255 255 255 / 0.2);
  }
  footer .in .right .list li > a,
  footer .in .right .list li .accordion-ttl {
    position: relative;
    display: block;
    padding: 2rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
  }
  footer .in .right .list li > a::after {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url(../img/common/icon_button_arrow.svg) center / contain no-repeat;
    transform: translateY(-50%);
    filter: invert(100) brightness(100);
  }
  footer .in .right .list li .accordion-ttl::before,
  footer .in .right .list li .accordion-ttl::after {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    content: "";
    display: block;
    width: 1.4rem;
    height: 0.2rem;
    background: var(--color-white);
    transform: translateY(-50%);
    transition: .3s;
  }
  footer .in .right .list li .accordion-ttl::after {
    transform: translateY(-50%) rotate(90deg);
  }
  footer .in .right .list li .accordion-ttl.open::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
  footer .in .right .list li + li {
    margin: 0;
  }
  footer .in .right .list li .accordion-ttl {
    margin: 0;
    pointer-events: auto;
  }
  footer .in .right .list li .accordion-contents {
    display: none;
    padding-bottom: 2rem;
  }
  footer .in .bottom {
    display: block;
    margin: 6rem -2rem 0;
    padding-top: 5rem;
    width: calc(100% + 4rem);
  }
  footer .in .bottom .sns {
    flex-direction: column;
    gap: 2rem;
  }
  footer .in .bottom .sns .list {
    gap: 2rem;
  }
  footer .in .bottom .links {
    margin-top: 5.3rem;
    justify-content: center;
  }
  footer .in .right .list li .accordion-contents .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 1rem;
  }
  footer .in .right .list li .accordion-contents .inner a {
    width: calc(50% - 0.5rem);
    font-size: 1.5rem;
    margin: 0 !important;
    opacity: 1;
  }
  footer .in .right .list li .accordion-contents .inner a img {
    display: block;
    margin-bottom: 1rem;
  }
}



.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
/* アニメーション */
.anime.slideUp,
.anime.slideLeft,
.anime.slideRight,
.anime.fadeIn {
  opacity: 0;
}
.anime.slideUp.active {
  animation: slideUp .5s .05s ease-out forwards;
}
.anime.slideLeft.active {
  animation: slideLeft .5s .05s ease-out forwards;
}
.anime.slideRight.active {
  animation: slideRight .5s .05s ease-out forwards;
}
.anime.fadeIn.active {
  animation: fadeIn .5s .2s ease-out forwards;
}
.anime.scaleDown.active img {
  animation: img-scale 7s ease-out forwards;
}
span.anime.slideLeft {
  display: inline-block;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes img-scale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
	
}