@charset "UTF-8";
@font-face {
  font-family: "SourceHan";
  src: url(../font/SourceHanSerif.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url(../font/optima.ttf) format("truetype");
  font-display: swap;
}
@font-face {
  font-family: " Muli";
  src: url(../font/Muli-Regular.ttf) format("truetype");
  font-display: swap;
}
html {
  font-size: 62.5%;
}

body {
  font-family: "YuMincho", "游明朝体";
  line-height: 1.2;
  color: #272727;
  background-color: #ffffff;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

p, li, th, td, a, dt, dd {
  font-size: 1.6rem;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-out;
  color: #333;
}

a:hover {
  opacity: 0.75;
  cursor: pointer;
}

label,
button {
  font-size: 1.7rem;
  line-height: 1.7rem;
  letter-spacing: 5.1px;
  color: #707070;
}

label {
  display: block;
  margin-bottom: 10px;
}

input,
textarea,
button {
  box-shadow: 2px 2px 4px rgba(72, 46, 30, 0.1019607843);
  border: none;
}

input,
textarea {
  width: 100%;
}

input {
  margin-bottom: 30px;
  height: 40px;
}

textarea {
  margin-bottom: 50px;
  height: 200px;
}

button {
  background: #fff;
  padding: 8px 32px;
}

button:hover {
  opacity: 0.75;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 1.6rem;
  }
  p, ul, ol, li, th, td, a, dt, dd {
    font-size: 1.2rem;
  }
  label, button {
    font-size: 1.4rem;
    line-height: 1.4rem;
    letter-spacing: 4.2px;
  }
}
.wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 100%;
  }
}
.load-fade-100,
.load-fade-200,
.load-fade-300,
.load-fade-400,
.load-fade-500,
.load-fade-600 {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.load-fade-100.is-show,
.load-fade-200.is-show,
.load-fade-300.is-show,
.load-fade-400.is-show,
.load-fade-500.is-show,
.load-fade-600.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.top-banner {
  background-size: cover;
  height: 330px;
  width: 100%;
}
.top-banner .banner-wrapper,
.top-banner .minds-banner-wrapper {
  padding-top: 92px;
}
.top-banner .banner-wrapper img,
.top-banner .minds-banner-wrapper img {
  display: inline-block;
  height: 77px;
  width: auto;
  margin-bottom: 30px;
}
.top-banner .banner-wrapper p,
.top-banner .minds-banner-wrapper p {
  display: block;
  font-size: 2rem;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(28, 52, 20, 0.6745098039);
}

@media screen and (max-width: 1024px) {
  .top-banner {
    height: 180px;
  }
  .top-banner .banner-wrapper,
  .top-banner .minds-banner-wrapper {
    padding-top: 100px;
    padding-left: 30px;
  }
  .top-banner .banner-wrapper img,
  .top-banner .minds-banner-wrapper img {
    margin-bottom: 0;
  }
  .top-banner .banner-wrapper p,
  .top-banner .minds-banner-wrapper p {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-banner {
    height: 132px;
  }
  .top-banner .banner-wrapper,
  .top-banner .minds-banner-wrapper {
    padding-top: 70px;
  }
  h4 {
    font-size: 1.6rem;
  }
  h5 {
    font-size: 1.4rem;
  }
}
header {
  padding-left: 40px;
  height: 120px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .header {
  display: flex;
  justify-content: space-between;
}
header .header .header-icon {
  padding-top: 8px;
  display: block;
  width: 11rem;
}
header .header .header-icon a {
  display: inline-block;
}
header .header .header-icon a p:first-child {
  font-size: 1.1rem;
  line-height: 1.8rem;
}
header .header .header-icon a p:last-child {
  font-size: 1.6rem;
  line-height: 2.7rem;
}
header .header .header-nav ul {
  display: flex;
  justify-content: space-between;
}
header .header .header-nav ul li {
  position: relative;
}
header .header .header-nav ul li a,
header .header .header-nav ul li .accordion {
  font-size: 1.4rem;
  color: #8d7867;
  padding: 0 40px;
  line-height: 120px;
  letter-spacing: 1.4px;
  display: inline-block;
  cursor: pointer;
}
header .header .header-nav ul li a span,
header .header .header-nav ul li .accordion span {
  display: none;
}
header .header .header-nav ul li a:hover,
header .header .header-nav ul li .accordion:hover {
  opacity: 0.6;
}
header .header .header-nav ul li.link-contact a {
  color: #fff;
  background: #8d7867;
}
header .header .header-nav-elem-nest {
  padding-top: 2rem;
  display: none;
}
@media screen and (min-width: 1024px) {
  header .header .header-nav-elem-nest {
    position: absolute;
    left: 4rem;
    top: 8rem;
  }
}
header .header .header-nav-elem-nest .header-nav-elem-nest-elem {
  background-color: #F4EDE2;
  padding: 1rem;
  width: 22rem;
}
header .header .header-nav-elem-nest .header-nav-elem-nest-elem .header-nav-elem-nest-anker {
  padding: 1rem;
  line-height: initial;
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px) {
  header .header .header-nav-elem-nest .header-nav-elem-nest-elem {
    width: 23rem;
  }
}
header .header .header-nav-elem-nest .header-nav-elem-nest-elem + .header-nav-elem-nest-elem {
  margin-top: 0.2rem;
}
header .header .hamburger_btn,
header .header .black-bg {
  display: none;
}

@media screen and (max-width: 1024px) {
  header {
    height: 50px;
    background: transparent;
  }
  header .header {
    position: relative;
    justify-content: end;
  }
  header .header .header-icon {
    display: none;
  }
  header .header .header-nav {
    position: fixed;
    width: 290px;
    height: 100vh;
    background: #E3D4C8;
    top: 0;
    right: -290px;
    padding: 96px 0 0 50px;
    z-index: 300;
    transition: all 0.6s;
    overflow: scroll;
  }
  header .header .header-nav ul {
    display: block;
  }
  header .header .header-nav ul li {
    margin-bottom: 24px;
  }
  header .header .header-nav ul li a,
  header .header .header-nav ul li .accordion {
    font-size: 1.8rem;
    letter-spacing: 1.8px;
    padding: 0;
    line-height: 2.4rem;
  }
  header .header .header-nav ul li a span,
  header .header .header-nav ul li .accordion span {
    display: block;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.2rem;
  }
  header .header .header-nav ul li .accordion {
    position: relative;
    font-size: 1.4rem;
  }
  header .header .header-nav ul li .accordion::after {
    border-right: solid 1.5px #8d7867;
    border-top: solid 1.5px #8d7867;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: -3rem;
    top: 32%;
    transform: rotate(135deg);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    width: 8px;
  }
  header .header .header-nav ul li .accordion.open::after {
    top: 45%;
    transform: rotate(-45deg);
  }
  header .header .header-nav ul li.link-contact a {
    color: #8d7867;
    background: none;
  }
  header .header .hamburger_btn {
    display: block;
    width: 50px;
    height: 50px;
    background: #8d7867;
    z-index: 9999;
  }
  header .header .hamburger_btn:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  header .header .hamburger_btn .hamburger_line {
    position: absolute;
    top: 0;
    right: 12px;
    width: 26px;
    height: 1px;
    background-color: #fff;
    transition: all 0.6s;
  }
  header .header .hamburger_btn .hamburger_line_1 {
    top: 17px;
  }
  header .header .hamburger_btn .hamburger_line_2 {
    top: 25px;
  }
  header .header .hamburger_btn .hamburger_line_3 {
    top: 33px;
  }
  header .header .black-bg {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background: rgba(142, 127, 127, 0.9019607843) 0% 0% no-repeat padding-box;
    opacity: 0;
    visibility: hidden; /* 非表示にしておきます */
    transition: all 0.6s;
    cursor: pointer;
    z-index: 200;
  }
  .nav-open header .header .header-nav {
    right: 0;
  }
  .nav-open header .header .hamburger_btn .hamburger_line_1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open header .header .hamburger_btn .hamburger_line_2 {
    width: 0;
    left: 50%;
  }
  .nav-open header .header .hamburger_btn .hamburger_line_3 {
    transform: rotate(-45deg);
    top: 25px;
  }
  .nav-open header .header .black-bg {
    opacity: 0.8;
    visibility: visible;
  }
}
main {
  padding-top: 120px;
}

@media screen and (max-width: 1024px) {
  main {
    padding-top: 0;
  }
}
footer {
  background: #8d7867;
  height: 300px;
}

.footer-nav {
  padding-top: 140px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 90px;
}
.footer-nav ul li a {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  footer {
    height: auto;
  }
  .footer-nav {
    padding-top: 46px;
    padding-bottom: 28px;
  }
  .footer-nav ul {
    display: block;
  }
  .footer-nav ul li {
    margin-bottom: 34px;
    text-align: center;
  }
}
.fv {
  position: relative;
}
.fv .swiper {
  z-index: 1;
}
.fv .swiper .swiper-slide source,
.fv .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.fv .fv-text-container {
  text-align: center;
  position: absolute;
  margin: auto;
  top: 25%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.fv .fv-text-container .fv-text-en {
  margin-bottom: 30px;
}
.fv .fv-text-container .fv-text-en p {
  font-size: 7.7rem;
  line-height: 9.4rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(18, 38, 44, 0.2);
}
.fv .fv-text-container .fv-text-ja p {
  font-size: 1.8rem;
  line-height: 2.3rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(18, 38, 44, 0.2);
}

@media screen and (max-width: 1024px) {
  .fv .fv-text-container {
    top: 15%;
  }
  .fv .fv-text-container .fv-text-en p {
    font-size: 6rem;
    line-height: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    height: 608px;
    position: relative;
  }
  .fv .swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%; /* トリミングしたい枠の幅 */
    height: 608px; /* トリミングしたい枠の高さ */
  }
  .fv .swiper .swiper-slide source,
  .fv .swiper .swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 608px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .fv .fv-text-container {
    top: 150px;
  }
  .fv .fv-text-container .fv-text-en {
    margin-bottom: 36px;
  }
  .fv .fv-text-container .fv-text-en p {
    font-size: 4rem;
    line-height: 4.9rem;
  }
  .fv .fv-text-container .fv-text-ja p {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
.sdgs-sp,
.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sdgs-sp,
  .br-sp {
    display: block;
  }
  .sdgs-sp {
    position: absolute;
    width: 326px;
    padding: 18px 10px 18px 20px;
    display: flex;
    gap: 10px;
    background: transparent linear-gradient(90deg, #EACDB5 0%, #C6DDD0 100%) 0% 0% no-repeat padding-box;
    left: 0;
    bottom: -40px;
    z-index: 80;
  }
  .sdgs-sp .sdgs-sp-img {
    width: 95px;
  }
  .sdgs-sp .sdgs-sp-img picture source,
  .sdgs-sp .sdgs-sp-img picture img {
    width: 100%;
    height: auto;
  }
  .sdgs-sp .sdgs-sp-text-container {
    display: table;
  }
  .sdgs-sp .sdgs-sp-text-container .sdgs-sp-text {
    display: table-cell;
    vertical-align: middle;
  }
  .sdgs-sp .sdgs-sp-text-container .sdgs-sp-text p {
    font-size: 1.1rem;
    line-height: 1.3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(18, 38, 44, 0.2);
  }
}
#minds {
  margin-bottom: 180px;
}
#minds .minds-container {
  max-width: 1000px;
  padding: 140px 0 160px;
  margin: 0 auto;
}
#minds .minds-container .minds-content {
  display: flex;
  gap: 32px;
}
#minds .minds-container .minds-content .minds-text {
  width: 536px;
  padding-top: 60px;
}
#minds .minds-container .minds-content .minds-text > p:first-child {
  margin-bottom: 52px;
  line-height: 3.5rem;
}
#minds .minds-container .minds-content .minds-img {
  width: 432px;
}
#minds .minds-container .minds-content .minds-img picture source,
#minds .minds-container .minds-content .minds-img picture img {
  width: 100%;
  height: auto;
}
#minds .minds-big-img picture source,
#minds .minds-big-img picture img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #minds .minds-container {
    padding: 92px 20px 46px;
  }
}
@media screen and (max-width: 768px) {
  #minds {
    margin-bottom: 80px;
  }
  #minds .minds-container .minds-content {
    display: block;
  }
  #minds .minds-container .minds-content .minds-text {
    padding-top: 0;
    width: 100%;
  }
  #minds .minds-container .minds-content .minds-text > p:first-child {
    margin-bottom: 22px;
    line-height: 2.4rem;
  }
  #minds .minds-container .minds-content .minds-img {
    width: 100%;
    max-width: 600px;
    padding-left: 5px;
    padding-right: 10px;
    margin: 0 auto;
    text-align: center;
  }
  #minds .minds-container .minds-content .minds-img picture source,
  #minds .minds-container .minds-content .minds-img picture img {
    max-width: 400px;
    display: inline-block;
  }
}
.projects .title-sp {
  display: block;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.projects .swiper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.projects .project1 .projects-img::before {
  z-index: 20;
  content: "01";
}
.projects .project2 .projects-img::before {
  z-index: 20;
  content: "03";
}
.projects .project3 .projects-img::before {
  z-index: 20;
  content: "04";
}
.projects .project4 .projects-img::before {
  z-index: 20;
  content: "02";
}
.projects .project5 .projects-img::before {
  z-index: 20;
  content: "06";
}
.projects .project6 .projects-img::before {
  z-index: 20;
  content: "07";
}
.projects .project7 .projects-img::before {
  z-index: 20;
  content: "05";
}
.projects .project8 .projects-img::before {
  z-index: 20;
  content: "08";
}

@media screen and (max-width: 768px) {
  .projects .swiper {
    max-width: 500px;
  }
  .projects .title-sp {
    display: block;
    padding: 0 20px;
  }
  .projects .projects-container {
    display: grid;
    grid-template-columns: 1fr 160px 1fr 160px;
    grid-template-rows: 300px 80px;
  }
  .projects .projects-container .projects-title {
    position: relative;
  }
  .projects .projects-container .projects-title:before {
    position: absolute;
    right: auto;
    bottom: auto;
    top: 0;
    left: 0;
    font-size: 14rem;
    line-height: 16.5rem;
    color: #fff;
  }
  .projects .projects-container.project1 .projects-title:before {
    content: "01";
  }
  .projects .projects-container.project2 .projects-title:before {
    content: "03";
  }
  .projects .projects-container.project3 .projects-title:before {
    content: "04";
  }
  .projects .projects-container.project4 .projects-title:before {
    content: "02";
  }
  .projects .projects-container.project5 .projects-title:before {
    content: "06";
  }
  .projects .projects-container.project6 .projects-title:before {
    content: "07";
  }
  .projects .projects-container.project7 .projects-title:before {
    content: "05";
  }
  .projects .projects-container.project8 .projects-title:before {
    content: "08";
  }
  .projects .projects-container .projects-title {
    grid-column: 2/5;
  }
  .projects .projects-container .title-pc {
    display: none;
  }
  .projects .projects-container .projects-title {
    grid-row: 1/2;
    padding-top: 180px;
    padding-left: 20px;
  }
  .projects .projects-container .projects-title p {
    font-size: 1.2rem;
    line-height: 2rem;
    letter-spacing: 1.8px;
  }
  .projects .projects-container .projects-img {
    grid-column: 4/5;
    grid-row: 1/2;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 20px;
  }
  .projects .projects-container .projects-img:before {
    display: none;
  }
  .projects .projects-container .projects-img picture source,
  .projects .projects-container .projects-img picture img {
    width: 100%;
    min-width: 145px;
    height: auto;
    max-height: 173px;
  }
  .projects .projects-container + .projects-container {
    margin-top: 20px;
  }
  .projects .project1 .projects-img,
  .projects .project2 .projects-img,
  .projects .project3 .projects-img,
  .projects .project4 .projects-img,
  .projects .project5 .projects-img,
  .projects .project6 .projects-img,
  .projects .project7 .projects-img,
  .projects .project8 .projects-img {
    padding-top: 120px;
  }
}
.webp .projects .project1 .projects-img {
  background-image: url(../img/top/projects/projects1-bg.webp);
  background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
}
.webp .projects .project2 .projects-img {
  background-image: url(../img/top/projects/projects1-bg.webp);
  background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
}
.webp .projects .project3 .projects-img {
  background-image: url(../img/top/projects/projects6-bg.webp);
  background-image: image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
}
.webp .projects .project4 .projects-img {
  background-image: url(../img/top/projects/projects4-bg.webp);
  background-image: image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
}
.webp .projects .project5 .projects-img {
  background-image: url(../img/top/projects/projects2-bg.webp);
  background-image: image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
}
.webp .projects .project6 .projects-img {
  background-image: url(../img/top/projects/projects3-bg.webp);
  background-image: image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
}
.webp .projects .project7 .projects-img {
  background-image: url(../img/top/projects/projects5-bg.webp);
  background-image: image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
}
.webp .projects .project8 .projects-img {
  background-image: url(../img/top/projects/projects7-bg.webp);
  background-image: image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
}

@media screen and (max-width: 768px) {
  .webp .projects .project1 .projects-img,
  .webp .projects .project2 .projects-img,
  .webp .projects .project3 .projects-img,
  .webp .projects .project4 .projects-img,
  .webp .projects .project5 .projects-img,
  .webp .projects .project6 .projects-img,
  .webp .projects .project7 .projects-img,
  .webp .projects .project8 .projects-img {
    background-image: none;
  }
  .webp .projects .project1 {
    background-image: url(../img/top/projects/projects1-bg.webp);
    background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  }
  .webp .projects .project2 {
    background-image: url(../img/top/projects/projects1-bg.webp);
    background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  }
  .webp .projects .project3 {
    background-image: url(../img/top/projects/projects6-bg.webp);
    background-image: image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
  }
  .webp .projects .project4 {
    background-image: url(../img/top/projects/projects4-bg.webp);
    background-image: image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
  }
  .webp .projects .project5 {
    background-image: url(../img/top/projects/projects2-bg.webp);
    background-image: image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
  }
  .webp .projects .project6 {
    background-image: url(../img/top/projects/projects3-bg.webp);
    background-image: image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
  }
  .webp .projects .project7 {
    background-image: url(../img/top/projects/projects5-bg.webp);
    background-image: image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
  }
  .webp .projects .project8 {
    background-image: url(../img/top/projects/projects7-bg.webp);
    background-image: image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
  }
}
.no-webp .projects .project1 .projects-img {
  background-image: url(../img/top/projects/projects1-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
}
.no-webp .projects .project3 .projects-img {
  background-image: url(../img/top/projects/projects6-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects6-bg.jpg) 1x, url(../img/top/projects/projects6-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.jpg) 1x, url(../img/top/projects/projects6-bg@2x.jpg) 2x);
}
.no-webp .projects .project4 .projects-img {
  background-image: url(../img/top/projects/projects4-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects4-bg.jpg) 1x, url(../img/top/projects/projects4-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.jpg) 1x, url(../img/top/projects/projects4-bg@2x.jpg) 2x);
}
.no-webp .projects .project5 .projects-img {
  background-image: url(../img/top/projects/projects2-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects2-bg.jpg) 1x, url(../img/top/projects/projects2-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.jpg) 1x, url(../img/top/projects/projects2-bg@2x.jpg) 2x);
}
.no-webp .projects .project6 .projects-img {
  background-image: url(../img/top/projects/projects3-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects3-bg.jpg) 1x, url(../img/top/projects/projects3-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.jpg) 1x, url(../img/top/projects/projects3-bg@2x.jpg) 2x);
}
.no-webp .projects .project7 .projects-img {
  background-image: url(../img/top/projects/projects5-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects5-bg.jpg) 1x, url(../img/top/projects/projects5-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.jpg) 1x, url(../img/top/projects/projects5-bg@2x.jpg) 2x);
}
.no-webp .projects .project8 .projects-img {
  background-image: url(../img/top/projects/projects7-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects7-bg.jpg) 1x, url(../img/top/projects/projects7-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.jpg) 1x, url(../img/top/projects/projects7-bg@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .no-webp .projects .project1 .projects-img,
  .no-webp .projects .project2 .projects-img,
  .no-webp .projects .project3 .projects-img,
  .no-webp .projects .project4 .projects-img,
  .no-webp .projects .project5 .projects-img,
  .no-webp .projects .project6 .projects-img,
  .no-webp .projects .project7 .projects-img,
  .no-webp .projects .project8 .projects-img {
    background-image: none;
  }
  .no-webp .projects .project1 {
    background-image: url(../img/top/projects/projects1-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project2 {
    background-image: url(../img/top/projects/projects1-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project3 {
    background-image: url(../img/top/projects/projects6-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects6-bg.jpg) 1x, url(../img/top/projects/projects6-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.jpg) 1x, url(../img/top/projects/projects6-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project4 {
    background-image: url(../img/top/projects/projects4-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects4-bg.jpg) 1x, url(../img/top/projects/projects4-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.jpg) 1x, url(../img/top/projects/projects4-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project5 {
    background-image: url(../img/top/projects/projects2-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects2-bg.jpg) 1x, url(../img/top/projects/projects2-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.jpg) 1x, url(../img/top/projects/projects2-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project6 {
    background-image: url(../img/top/projects/projects3-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects3-bg.jpg) 1x, url(../img/top/projects/projects3-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.jpg) 1x, url(../img/top/projects/projects3-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project7 {
    background-image: url(../img/top/projects/projects5-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects5-bg.jpg) 1x, url(../img/top/projects/projects5-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.jpg) 1x, url(../img/top/projects/projects5-bg@2x.jpg) 2x);
  }
  .no-webp .projects .project8 {
    background-image: url(../img/top/projects/projects7-bg.jpg);
    background-image: image-set(url(../img/top/projects/projects7-bg.jpg) 1x, url(../img/top/projects/projects7-bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.jpg) 1x, url(../img/top/projects/projects7-bg@2x.jpg) 2x);
  }
}
.swiper-button-next.scroll {
  top: calc(100% - 22px);
  width: 100px;
}
.swiper-button-next.scroll:before {
  position: absolute;
  content: "scroll";
  bottom: 22px;
  right: 72px;
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: #272727;
}
.swiper-button-next.scroll:after {
  position: absolute;
  content: "";
  bottom: 35px;
  right: 22px;
  width: 35px;
  height: 8px;
  border-bottom: #272727 solid 1px;
  border-right: #272727 solid 1px;
  transform: skew(45deg);
}
.swiper-button-next.scroll:hover {
  opacity: 0.8;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev.arrow::after,
.swiper-button-next.arrow::after {
  animation: blink 1s ease-in-out infinite alternate;
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev.arrow::after {
  top: 350px;
  border-bottom: 20px solid transparent;
  border-right: 30px solid #8d7867;
  border-top: 20px solid transparent;
}

/* 次への矢印カスタマイズ */
.swiper-button-next.arrow::after {
  top: 350px;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #8d7867;
  border-top: 20px solid transparent;
}

@media screen and (max-width: 768px) {
  .swiper-button-next.scroll {
    display: none;
  }
}
#contact .contact-container {
  padding-top: 200px;
}
#contact .contact-container .section-title {
  text-align: center;
  padding-bottom: 45px;
}
#contact .contact-container .contact-form {
  background: #f5ede1;
  padding: 120px 0 100px;
}
#contact .contact-container .contact-form .form-list {
  width: 500px;
  margin: 0 auto;
}
#contact .contact-container .contact-form .form-list .button {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #contact .contact-container {
    padding-top: 60px;
  }
  #contact .contact-container .section-title {
    padding-bottom: 0;
  }
  #contact .contact-container .contact-form {
    padding: 52px;
  }
  #contact .contact-container .contact-form .form-list {
    width: 100%;
  }
}
.section-title h2 {
  margin-bottom: 30px;
}
.section-title h2 picture source,
.section-title h2 picture img {
  width: auto;
  height: 70px;
}
.section-title p {
  font-size: 2rem;
  line-height: 3.4rem;
  margin-bottom: 30px;
  letter-spacing: 6px;
}

@media screen and (max-width: 768px) {
  .section-title h2 {
    margin-bottom: 12px;
  }
  .section-title h2 picture source,
  .section-title h2 picture img {
    height: 35px;
  }
  .section-title.title-sp h2 img {
    height: 45px;
  }
  .section-title p {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 44px;
    letter-spacing: 3.6px;
  }
}
a.more {
  display: inline-block;
  padding-right: 83px;
}
a.more p {
  font-size: 2.6rem;
  line-height: 3rem;
  display: inline-block;
  position: relative;
}
a.more p::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 17px;
  right: -74px;
  line-height: 3rem;
}
a.more p::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  right: -83px;
  line-height: 3rem;
}

@media screen and (max-width: 768px) {
  a.more {
    padding-right: 60px;
    margin-bottom: 36px;
  }
  a.more p {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  a.more p::before {
    width: 41.5px;
    height: 1px;
    top: 11px;
    right: -50px;
  }
  a.more p::after {
    width: 11px;
    height: 11px;
    top: 5px;
    right: -56px;
  }
}
.swiper-pagination {
  display: none;
}

@media screen and (max-width: 768px) {
  .swiper-pagination {
    display: block;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 15px 15px;
  }
  /* ページネーションのサイズと色 */
  .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background-color: #fff;
    opacity: 1;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
  }
}
.complete {
  padding-top: 60px;
}
.complete h2,
.complete p,
.complete a {
  text-align: center;
}
.complete h2,
.complete p {
  padding-bottom: 60px;
}

.area {
  overflow: hidden;
}

.wrap {
  display: flex;
}

.item {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}

.projects-guide-container {
  padding: 0px 20px 46px;
}
.projects-guide-container .projects-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .projects-guide-container .projects-wrap {
    display: flex;
    align-items: center;
  }
}
.projects-guide-container .projects-wrap .projects-text p {
  line-height: 2.4rem;
}
@media screen and (min-width: 769px) {
  .projects-guide-container .projects-wrap .projects-text p {
    line-height: 3.5rem;
  }
}
.projects-guide-container .projects-wrap .projects-text .more {
  margin-top: 30px;
}
.projects-guide-container .projects-wrap .projects-text .more p {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .projects-guide-container .projects-wrap .projects-text .more p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .projects-guide-container .projects-wrap .projects-text {
    width: 55%;
  }
}
.projects-guide-container .projects-wrap .projects-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 36px;
}
@media screen and (min-width: 769px) {
  .projects-guide-container .projects-wrap .projects-img {
    width: 45%;
    padding-left: 2rem;
  }
}

main {
  background: #F9F9F9 0% 0% no-repeat padding-box;
}

.top-banner .minds-banner-wrapper picture source,
.top-banner .minds-banner-wrapper picture img {
  height: 77px;
}

@media screen and (max-width: 1024px) {
  .top-banner .minds-banner-wrapper picture source,
  .top-banner .minds-banner-wrapper picture img {
    height: 35px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-banner .minds-banner-wrapper picture source,
  .top-banner .minds-banner-wrapper picture img {
    height: 28px;
  }
}
.webp .minds-banner {
  background-image: url(../img/our-minds/ourmindspage-headerimg.webp);
  background-image: image-set(url(../img/our-minds/ourmindspage-headerimg.webp) 1x, url(../img/our-minds/ourmindspage-headerimg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/our-minds/ourmindspage-headerimg.webp) 1x, url(../img/our-minds/ourmindspage-headerimg@2x.webp) 2x);
}

.no-webp .minds-banner {
  background-image: url(../img/our-minds/ourmindspage-headerimg.jpg);
  background-image: image-set(url(../img/our-minds/ourmindspage-headerimg.jpg) 1x, url(../img/our-minds/ourmindspage-headerimg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/our-minds/ourmindspage-headerimg.jpg) 1x, url(../img/our-minds/ourmindspage-headerimg@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .webp .minds-banner {
    background-image: url(../img/our-minds/ourmindspage-headerimg-sp.webp);
    background-image: image-set(url(../img/our-minds/ourmindspage-headerimg-sp.webp) 1x, url(../img/our-minds/ourmindspage-headerimg-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/our-minds/ourmindspage-headerimg-sp.webp) 1x, url(../img/our-minds/ourmindspage-headerimg-sp@2x.webp) 2x);
  }
  .no-webp .minds-banner {
    background-image: url(../img/our-minds/ourmindspage-headerimg-sp.jpg);
    background-image: image-set(url(../img/our-minds/ourmindspage-headerimg-sp.jpg) 1x, url(../img/our-minds/ourmindspage-headerimg-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/our-minds/ourmindspage-headerimg-sp.jpg) 1x, url(../img/our-minds/ourmindspage-headerimg-sp@2x.jpg) 2x);
  }
}
.minds-overview {
  display: flex;
  gap: 64px;
  padding: 148px 0 130px;
}
.minds-overview .img picture source,
.minds-overview .img picture img {
  height: 140px;
  width: auto;
}
.minds-overview .text {
  width: 480px;
}
.minds-overview .text p {
  line-height: 3rem;
}

@media screen and (max-width: 1024px) {
  .minds-overview {
    padding: 40px 24px 30px 32px;
  }
  .minds-overview .img {
    flex: 1;
  }
  .minds-overview .img picture source,
  .minds-overview .img picture img {
    width: 100%;
    height: auto;
  }
  .minds-overview .text {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .minds-overview {
    display: block;
    padding: 40px 24px 24px 32px;
  }
  .minds-overview .img {
    margin-bottom: 30px;
  }
  .minds-overview .img picture source,
  .minds-overview .img picture img {
    width: 268px;
    height: auto;
  }
  .minds-overview .text {
    width: 100%;
  }
  .minds-overview .text p {
    line-height: 2.4rem;
  }
}
.minds-images {
  background: transparent linear-gradient(91deg, #F4DFBD 0%, #E1EDE3 100%) 0% 0% no-repeat padding-box;
  margin-top: 205px;
  margin-bottom: 225px;
}
.minds-images .wrapper {
  position: relative;
  height: 455px;
  width: 100vw;
  max-width: 1600px;
}
.minds-images .wrapper .images source,
.minds-images .wrapper .images img {
  position: absolute;
  display: inline-block;
}
.minds-images .wrapper .images-1 source,
.minds-images .wrapper .images-1 img {
  top: -250px;
  right: 0px;
  width: 670px;
  height: auto;
}
.minds-images .wrapper .images-2 source,
.minds-images .wrapper .images-2 img {
  top: 180px;
  right: 530px;
  width: 470px;
  height: auto;
}
.minds-images .wrapper .images-3 source,
.minds-images .wrapper .images-3 img {
  top: -120px;
  left: 90px;
  width: 310px;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .minds-images {
    margin-bottom: 100px;
  }
  .minds-images .wrapper {
    height: 300px;
  }
  .minds-images .wrapper .images-1 source,
  .minds-images .wrapper .images-1 img {
    top: -150px;
    width: 420px;
  }
  .minds-images .wrapper .images-2 source,
  .minds-images .wrapper .images-2 img {
    top: 50px;
    width: 340px;
    right: 270px;
  }
  .minds-images .wrapper .images-3 source,
  .minds-images .wrapper .images-3 img {
    width: 200px;
    top: -190px;
    left: 90px;
  }
}
@media screen and (max-width: 768px) {
  .minds-images {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .minds-images .wrapper {
    height: 140px;
    max-width: 400px;
  }
  .minds-images .wrapper .images-1 source,
  .minds-images .wrapper .images-1 img,
  .minds-images .wrapper .images-2 source,
  .minds-images .wrapper .images-2 img,
  .minds-images .wrapper .images-3 source,
  .minds-images .wrapper .images-3 img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .minds-images .wrapper .images-1 source,
  .minds-images .wrapper .images-1 img {
    width: 220px;
    top: -100px;
  }
  .minds-images .wrapper .images-2 source,
  .minds-images .wrapper .images-2 img {
    width: 154px;
    height: 150px;
    top: 40px;
    right: 140px;
  }
  .minds-images .wrapper .images-3 source,
  .minds-images .wrapper .images-3 img {
    width: 100px;
    left: 0;
    top: -80px;
  }
}
.message {
  margin-bottom: 150px;
}
.message .wrapper h2 {
  font-size: 2.6rem;
  line-height: 4.5rem;
  font-family: Muli, Optima, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-bottom: 75px;
  position: relative;
  color: #6e6e6e;
}
.message .wrapper h2::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  bottom: -8px;
  left: 0;
  background-color: #e3b8a2;
}
.message .wrapper .message-overview,
.message .message-text .message-overview {
  margin-bottom: 80px;
}
.message .wrapper .message-overview p,
.message .message-text .message-overview p {
  font-size: 2.6rem;
  line-height: 3.3rem;
  letter-spacing: 2.6px;
  color: #6e6e6e;
}
.message .wrapper .message-detail,
.message .message-text .message-detail {
  line-height: 2.8rem;
}

@media screen and (max-width: 1024px) {
  .message {
    margin-bottom: 120px;
    padding: 0 26px;
  }
  .message .wrapper h2 {
    margin-bottom: 40px;
  }
  .message .wrapper .message-overview,
  .message .message-text .message-overview {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .message .wrapper .message-overview p {
    font-size: 2rem;
    line-height: 3rem;
    letter-spacing: 2px;
  }
}
.message-images-1 {
  background-size: cover;
  margin-top: 80px;
  margin-bottom: 180px;
  height: 260px;
}
.message-images-1 .wrapper {
  position: relative;
}
.message-images-1 .wrapper .image-list {
  position: absolute;
  width: 810px;
  font-size: 0;
  top: -80px;
  left: 95px;
}
.message-images-1 .wrapper .image-list picture {
  display: inline-block;
  width: 33.3333333333%;
}
.message-images-1 .wrapper .image-list picture source,
.message-images-1 .wrapper .image-list picture img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .message-images-1 .wrapper {
    max-width: 700px;
  }
  .message-images-1 .wrapper .image-list {
    width: 700px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .message-images-1 {
    height: 173px;
    margin-bottom: 60px;
  }
  .message-images-1 .wrapper .image-list {
    width: 100%;
  }
  .message-images-1 .wrapper .image-list picture source,
  .message-images-1 .wrapper .image-list picture img {
    width: 230px;
  }
  .message-images-1 .wrapper .image-list picture:first-child, .message-images-1 .wrapper .image-list picture:nth-child(2) {
    display: none;
  }
}
.webp .message-images-1 {
  background-image: url(../img/our-minds/message-bg.webp);
  background-image: image-set(url(../img/our-minds/message-bg.webp) 1x, url(../img/our-minds/message-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/our-minds/message-bg.webp) 1x, url(../img/our-minds/message-bg@2x.webp) 2x);
}

.no-webp .message-images-1 {
  background-image: url(../img/our-minds/message-bg.jpg);
  background-image: image-set(url(../img/our-minds/message-bg.jpg) 1x, url(../img/our-minds/message-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/our-minds/message-bg.jpg) 1x, url(../img/our-minds/message-bg@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .webp .message-images-1 {
    background-image: url(../img/our-minds/message-bg-sp.webp);
    background-image: image-set(url(../img/our-minds/message-bg-sp.webp) 1x, url(../img/our-minds/message-bg-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/our-minds/message-bg-sp.webp) 1x, url(../img/our-minds/message-bg-sp@2x.webp) 2x);
  }
  .no-webp .message-images-1 {
    background-image: url(../img/our-minds/message-bg-sp.jpg);
    background-image: image-set(url(../img/our-minds/message-bg-sp.jpg) 1x, url(../img/our-minds/message-bg-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/our-minds/message-bg-sp.jpg) 1x, url(../img/our-minds/message-bg-sp@2x.jpg) 2x);
  }
}
div.message {
  margin-bottom: 110px;
}

@media screen and (max-width: 1024px) {
  div.message {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 768px) {
  div.message .wrapper .message-overview p {
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: 0;
  }
}
.message-images-2 {
  padding-bottom: 126px;
}
.message-images-2 .wrapper {
  position: relative;
  height: 600px;
  width: 100vw;
  max-width: 1600px;
}
.message-images-2 .wrapper .images-2 source,
.message-images-2 .wrapper .images-2 img {
  position: absolute;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
}
.message-images-2 .wrapper .images-2-1 source,
.message-images-2 .wrapper .images-2-1 img {
  top: 50%;
  left: 50%;
  width: 880px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.message-images-2 .wrapper .images-2-2 source,
.message-images-2 .wrapper .images-2-2 img {
  top: 50px;
  left: 0px;
  width: 317px;
  height: auto;
}
.message-images-2 .wrapper .images-2-3 source,
.message-images-2 .wrapper .images-2-3 img {
  right: 0px;
  width: 420px;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .message-images-2 {
    margin-bottom: 60px;
  }
  .message-images-2 .wrapper {
    height: 300px;
  }
  .message-images-2 .wrapper .images-2-1 source,
  .message-images-2 .wrapper .images-2-1 img {
    top: 90%;
    width: 600px;
  }
  .message-images-2 .wrapper .images-2-2 source,
  .message-images-2 .wrapper .images-2-2 img {
    top: 30px;
    left: 10px;
    width: 230px;
  }
  .message-images-2 .wrapper .images-2-3 source,
  .message-images-2 .wrapper .images-2-3 img {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .message-images-2 {
    padding-bottom: 0;
  }
  .message-images-2 .wrapper {
    height: 200px;
    max-width: 400px;
  }
  .message-images-2 .wrapper .images-2-1 source,
  .message-images-2 .wrapper .images-2-1 img {
    width: 217px;
    height: 126px;
    top: 70%;
  }
  .message-images-2 .wrapper .images-2-2 source,
  .message-images-2 .wrapper .images-2-2 img {
    width: 133px;
    height: 115px;
    top: -20px;
    left: 10px;
  }
  .message-images-2 .wrapper .images-2-3 source,
  .message-images-2 .wrapper .images-2-3 img {
    width: 120px;
    height: 114px;
    right: 10px;
  }
}
.message-bottom {
  background: #FFFFFF 0% 0% no-repeat padding-box;
}
.message-bottom .message-bottom-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 75px;
  justify-content: left;
}
.message-bottom .message-bottom-wrapper .bottom-img {
  font-size: 0;
  max-width: 530px;
  width: 100%;
}
.message-bottom .message-bottom-wrapper .bottom-img picture {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.message-bottom .message-bottom-wrapper .bottom-img picture source,
.message-bottom .message-bottom-wrapper .bottom-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.message-bottom .message-bottom-wrapper .message-text {
  max-width: 595px;
  width: 100%;
  padding: 88px 20px 20px 0;
}

@media screen and (max-width: 1024px) {
  .message-bottom .message-bottom-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .message-bottom .message-bottom-wrapper {
    display: block;
  }
  .message-bottom .message-bottom-wrapper .bottom-img {
    max-width: 100%;
  }
  .message-bottom .message-bottom-wrapper .bottom-img picture {
    display: block;
    max-width: 375px;
    margin: 0 auto;
  }
  .message-bottom .message-bottom-wrapper .message-text {
    padding: 60px 26px;
    max-width: 100%;
  }
  .message-bottom .message-bottom-wrapper .message-text .message-overview p {
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: 1.8px;
  }
}
div.message.message-bottom-wrapper {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  div.message.message-bottom-wrapper {
    padding: 0;
  }
}
.top-banner .banner-wrapper picture source,
.top-banner .banner-wrapper picture img {
  height: 96px;
}

@media screen and (max-width: 1024px) {
  .top-banner .banner-wrapper picture source,
  .top-banner .banner-wrapper picture img {
    height: 60px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-banner .banner-wrapper picture source,
  .top-banner .banner-wrapper picture img {
    height: 48px;
  }
}
.webp .projects-banner {
  background-image: url(../img/projects/projectpage-headerimg.webp);
  background-image: image-set(url(../img/projects/projectpage-headerimg.webp) 1x, url(../img/projects/projectpage-headerimg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-headerimg.webp) 1x, url(../img/projects/projectpage-headerimg@2x.webp) 2x);
}

.no-webp .projects-banner {
  background-image: url(../img/projects/projectpage-headerimg.jpg);
  background-image: image-set(url(../img/projects/projectpage-headerimg.jpg) 1x, url(../img/projects/projectpage-headerimg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-headerimg.jpg) 1x, url(../img/projects/projectpage-headerimg@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .webp .projects-banner {
    background-image: url(../img/projects/projectpage-headerimg-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-headerimg-sp.webp) 1x, url(../img/projects/projectpage-headerimg-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-headerimg-sp.webp) 1x, url(../img/projects/projectpage-headerimg-sp@2x.webp) 2x);
  }
  .no-webp .projects-banner {
    background-image: url(../img/projects/projectpage-headerimg-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-headerimg-sp.jpg) 1x, url(../img/projects/projectpage-headerimg-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-headerimg-sp.jpg) 1x, url(../img/projects/projectpage-headerimg-sp@2x.jpg) 2x);
  }
}
@media screen and (min-width: 1024px) {
  .projects-summery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    row-gap: 3rem;
  }
}
.projects-container {
  display: grid;
  grid-template-columns: calc(100% - 1200px) 1fr 2fr;
  grid-template-rows: 140px 200px 250px;
}
.projects-container .section-title,
.projects-container .projects-title {
  padding-left: 20px;
}
.projects-container .section-title {
  grid-column: 2/3;
}
.projects-container .projects-title {
  grid-column: 2/4;
}
.projects-container .projects-title-text {
  margin-bottom: 20px;
}
.projects-container .more {
  background: linear-gradient(transparent 75%, #ffce5b 25%);
}
.projects-container .section-title {
  padding-top: 100px;
  grid-row: 1/2;
}
.projects-container .title-pc {
  display: block;
}
.projects-container .projects-title {
  grid-row: 2/3;
  z-index: 10;
}
.projects-container .projects-title p {
  font-size: 1.8rem;
  line-height: 4rem;
  letter-spacing: 4.5px;
  font-family: "SourceHan", Optima, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 1024px) {
  .projects-container .projects-title p {
    font-size: 1.8rem;
  }
}
.projects-container .projects-img {
  z-index: 1;
  grid-column: 3/4;
  grid-row: 1/4;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  opacity: 0.7;
}
@media screen and (min-width: 1024px) {
  .projects-container .projects-img {
    grid-column: 2/4;
    grid-row: 1/5;
    justify-content: end;
  }
}
.projects-container .projects-img:before {
  position: absolute;
  right: 90px;
  bottom: 50px;
  font-size: 21rem;
  line-height: 25rem;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .projects-container .projects-img:before {
    font-size: 16rem;
  }
}
.projects-container .projects-img picture {
  display: inline-block;
}
.projects-container .projects-img picture source,
.projects-container .projects-img picture img {
  width: 320px;
  height: auto;
}

.projects-container + .projects-container {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .projects-summery-contents {
    width: 48%;
    grid-template-rows: 100px 100px 100px;
  }
}
@media screen and (min-width: 1024px) {
  .projects-summery-contents .projects-img {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 4rem;
    opacity: 0.7;
  }
}

.project1 .projects-img::before {
  z-index: 20;
  content: "01";
}

.project2 .projects-img::before {
  z-index: 20;
  content: "03";
}

.project3 .projects-img::before {
  z-index: 20;
  content: "04";
}

.project4 .projects-img::before {
  z-index: 20;
  content: "02";
}

.project5 .projects-img::before {
  z-index: 20;
  content: "06";
}

.project6 .projects-img::before {
  z-index: 20;
  content: "07";
}

.project7 .projects-img::before {
  z-index: 20;
  content: "05";
}

.project8 .projects-img::before {
  z-index: 20;
  content: "08";
}

@media screen and (max-width: 768px) {
  .projects .swiper {
    max-width: 500px;
  }
  .projects .title-sp {
    display: block;
    padding: 0 20px;
  }
  .projects .projects-container {
    display: grid;
    grid-template-columns: 1fr 160px 1fr 160px;
    grid-template-rows: 300px 80px;
  }
  .projects .projects-container .projects-title {
    position: relative;
  }
  .projects .projects-container .projects-title:before {
    position: absolute;
    right: auto;
    bottom: auto;
    top: 0;
    left: 0;
    font-size: 14rem;
    line-height: 16.5rem;
    color: #fff;
  }
  .projects .projects-container.project1 .projects-title:before {
    content: "01";
  }
  .projects .projects-container.project2 .projects-title:before {
    content: "03";
  }
  .projects .projects-container.project3 .projects-title:before {
    content: "04";
  }
  .projects .projects-container.project4 .projects-title:before {
    content: "02";
  }
  .projects .projects-container.project5 .projects-title:before {
    content: "06";
  }
  .projects .projects-container.project6 .projects-title:before {
    content: "07";
  }
  .projects .projects-container.project7 .projects-title:before {
    content: "05";
  }
  .projects .projects-container.project8 .projects-title:before {
    content: "08";
  }
  .projects .projects-container .projects-title {
    grid-column: 2/5;
  }
  .projects .projects-container .title-pc {
    display: none;
  }
  .projects .projects-container .projects-title {
    grid-row: 1/2;
    padding-top: 180px;
    padding-left: 20px;
  }
  .projects .projects-container .projects-title p {
    font-size: 1.2rem;
    line-height: 2rem;
    letter-spacing: 1.8px;
  }
  .projects .projects-container .projects-img {
    grid-column: 4/5;
    grid-row: 1/2;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 20px;
  }
  .projects .projects-container .projects-img:before {
    display: none;
  }
  .projects .projects-container .projects-img picture source,
  .projects .projects-container .projects-img picture img {
    width: 100%;
    min-width: 145px;
    height: auto;
    max-height: 173px;
  }
  .projects .projects-container + .projects-container {
    margin-top: 20px;
  }
  .projects .project1 .projects-img,
  .projects .project2 .projects-img,
  .projects .project3 .projects-img,
  .projects .project4 .projects-img,
  .projects .project5 .projects-img,
  .projects .project6 .projects-img,
  .projects .project7 .projects-img,
  .projects .project8 .projects-img {
    padding-top: 120px;
  }
}
.webp .projects-summery .project1 .projects-img {
  background-image: url(../img/top/projects/projects1-bg.webp);
  background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
}
.webp .projects-summery .project2 .projects-img {
  background-image: url(../img/top/projects/projects1-bg.webp);
  background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
}
.webp .projects-summery .project3 .projects-img {
  background-image: url(../img/top/projects/projects6-bg.webp);
  background-image: image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
}
.webp .projects-summery .project4 .projects-img {
  background-image: url(../img/top/projects/projects4-bg.webp);
  background-image: image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
}
.webp .projects-summery .project5 .projects-img {
  background-image: url(../img/top/projects/projects2-bg.webp);
  background-image: image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
}
.webp .projects-summery .project6 .projects-img {
  background-image: url(../img/top/projects/projects3-bg.webp);
  background-image: image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
}
.webp .projects-summery .project7 .projects-img {
  background-image: url(../img/top/projects/projects5-bg.webp);
  background-image: image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
}
.webp .projects-summery .project8 .projects-img {
  background-image: url(../img/top/projects/projects7-bg.webp);
  background-image: image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
}

@media screen and (max-width: 768px) {
  .webp .projects-summery .project1 .projects-img,
  .webp .projects-summery .project2 .projects-img,
  .webp .projects-summery .project3 .projects-img,
  .webp .projects-summery .project4 .projects-img,
  .webp .projects-summery .project5 .projects-img,
  .webp .projects-summery .project6 .projects-img,
  .webp .projects-summery .project7 .projects-img,
  .webp .projects-summery .project8 .projects-img {
    background-image: none;
  }
  .webp .projects-summery .project1 {
    background-image: url(../img/top/projects/projects1-bg.webp);
    background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project2 {
    background-image: url(../img/top/projects/projects1-bg.webp);
    background-image: image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.webp) 1x, url(../img/top/projects/projects1-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project3 {
    background-image: url(../img/top/projects/projects6-bg.webp);
    background-image: image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.webp) 1x, url(../img/top/projects/projects6-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project4 {
    background-image: url(../img/top/projects/projects4-bg.webp);
    background-image: image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.webp) 1x, url(../img/top/projects/projects4-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project5 {
    background-image: url(../img/top/projects/projects2-bg.webp);
    background-image: image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.webp) 1x, url(../img/top/projects/projects2-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project6 {
    background-image: url(../img/top/projects/projects3-bg.webp);
    background-image: image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.webp) 1x, url(../img/top/projects/projects3-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project7 {
    background-image: url(../img/top/projects/projects5-bg.webp);
    background-image: image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.webp) 1x, url(../img/top/projects/projects5-bg@2x.webp) 2x);
  }
  .webp .projects-summery .project8 {
    background-image: url(../img/top/projects/projects7-bg.webp);
    background-image: image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.webp) 1x, url(../img/top/projects/projects7-bg@2x.webp) 2x);
  }
}
.no-webp .projects-summery .project1 .projects-img {
  background-image: url(../img/top/projects/projects1-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects1-bg.jpg) 1x, url(../img/top/projects/projects1-bg@2x.jpg) 2x);
}
.no-webp .projects-summery .project3 .projects-img {
  background-image: url(../img/top/projects/projects6-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects6-bg.jpg) 1x, url(../img/top/projects/projects6-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects6-bg.jpg) 1x, url(../img/top/projects/projects6-bg@2x.jpg) 2x);
}
.no-webp .projects-summery .project4 .projects-img {
  background-image: url(../img/top/projects/projects4-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects4-bg.jpg) 1x, url(../img/top/projects/projects4-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects4-bg.jpg) 1x, url(../img/top/projects/projects4-bg@2x.jpg) 2x);
}
.no-webp .projects-summery .project5 .projects-img {
  background-image: url(../img/top/projects/projects2-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects2-bg.jpg) 1x, url(../img/top/projects/projects2-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects2-bg.jpg) 1x, url(../img/top/projects/projects2-bg@2x.jpg) 2x);
}
.no-webp .projects-summery .project6 .projects-img {
  background-image: url(../img/top/projects/projects3-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects3-bg.jpg) 1x, url(../img/top/projects/projects3-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects3-bg.jpg) 1x, url(../img/top/projects/projects3-bg@2x.jpg) 2x);
}
.no-webp .projects-summery .project7 .projects-img {
  background-image: url(../img/top/projects/projects5-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects5-bg.jpg) 1x, url(../img/top/projects/projects5-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects5-bg.jpg) 1x, url(../img/top/projects/projects5-bg@2x.jpg) 2x);
}
.no-webp .projects-summery .project8 .projects-img {
  background-image: url(../img/top/projects/projects7-bg.jpg);
  background-image: image-set(url(../img/top/projects/projects7-bg.jpg) 1x, url(../img/top/projects/projects7-bg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/top/projects/projects7-bg.jpg) 1x, url(../img/top/projects/projects7-bg@2x.jpg) 2x);
}

.projects-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 0;
}
.projects-list .project-container {
  padding-top: 80px;
  margin-top: -80px;
}
.projects-list .project-container .project {
  margin-bottom: 100px;
  padding: 100px 0;
  background-size: cover;
}
.projects-list .project-container .project .project-content {
  width: 100%;
  max-width: 770px;
  padding: 140px 100px 140px 70px;
  background: rgba(255, 255, 255, 0.7) 0% 0% no-repeat padding-box;
  position: relative;
}
.projects-list .project-container .project .project-content::before {
  position: absolute;
  font-size: 20rem;
  color: #b17c21;
  opacity: 0.43;
  font-family: "Optima", Optima, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  top: -100px;
  left: 70px;
}
.projects-list .project-container .project .project-content .project-title {
  margin-bottom: 50px;
}
.projects-list .project-container .project .project-content .project-title h2 {
  font-size: 2rem;
  letter-spacing: 3px;
}
.projects-list .project-container .project .project-content .project-text p,
.projects-list .project-container .project .project-content .project-text li {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
.projects-list .project-container .project .project-content .project-text p a,
.projects-list .project-container .project .project-content .project-text li a {
  font-size: 1.4rem;
  text-decoration: underline;
}
.projects-list .project-container .project .project-content .project-text ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}
.projects-list .project-container .project .project-content .project-text .banner-link {
  display: block;
  max-width: 380px;
  margin-top: 2rem;
}
.projects-list .project-container .project .project-content .project-list-title {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  border-left: 1.2px solid;
  padding-left: 1.5rem;
}
.projects-list .project-container .project-odd .project-content {
  margin: 0 0 0 auto;
}
.projects-list #project-1 .project .project-content::before {
  content: "01";
}
.projects-list #project-3 .project .project-content::before {
  content: "03";
}
.projects-list #project-4 .project .project-content::before {
  content: "04";
}
.projects-list #project-2 .project .project-content::before {
  content: "02";
}
.projects-list #project-6 .project .project-content::before {
  content: "06";
}
.projects-list #project-7 .project .project-content::before {
  content: "07";
}
.projects-list #project-5 .project .project-content::before {
  content: "05";
}
.projects-list #project-8 .project .project-content::before {
  content: "08";
}
.projects-list #project-8 .project .project-content .sdgs-img {
  padding-top: 80px;
  width: 350px;
}
.projects-list #project-8 .project .project-content .sdgs-img source picture,
.projects-list #project-8 .project .project-content .sdgs-img source img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .projects-list {
    padding: 0;
  }
  .projects-list .project-container {
    padding-top: 50px;
    margin-top: -50px;
  }
  .projects-list .project-container .project .project-content {
    padding: 140px 20px;
  }
}
@media screen and (max-width: 768px) {
  .projects-list {
    padding-bottom: 0;
  }
  .projects-list .project-container .project {
    padding: 0 0 60px 75px;
    margin-bottom: 0;
  }
  .projects-list .project-container .project .project-content {
    padding: 26px 24px 30px;
  }
  .projects-list .project-container .project .project-content::before {
    font-size: 8rem;
    line-height: 9.5rem;
    top: 26px;
    left: -55px;
  }
  .projects-list .project-container .project .project-content .project-title {
    padding-left: 20px;
    margin-bottom: 24px;
  }
  .projects-list .project-container .project .project-content .project-title h2 {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .projects-list .project-container .project .project-content .project-text p,
  .projects-list .project-container .project .project-content .project-text li {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .projects-list .project-container .project .project-content .project-text p a,
  .projects-list .project-container .project .project-content .project-text li a {
    font-size: 1.2rem;
  }
  .projects-list .project-container .project .project-content .project-text ul {
    padding-left: 1.8rem;
  }
  .projects-list .project-container .project-odd .project-content {
    margin: 0;
  }
  .projects-list #project-5 .project .project-content .sdgs-img {
    padding-top: 30px;
    width: 175px;
    margin: 0 auto;
  }
  .projects-list #project-5 .project .project-content .sdgs-img picture source,
  .projects-list #project-5 .project .project-content .sdgs-img picture img {
    width: 100%;
    height: auto;
  }
}
.webp .projects-list #project-1 .project {
  background-image: url(../img/projects/projectpage-img1.webp);
  background-image: image-set(url(../img/projects/projectpage-img1.webp) 1x, url(../img/projects/projectpage-img1@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img1.webp) 1x, url(../img/projects/projectpage-img1@2x.webp) 2x);
}
.webp .projects-list #project-3 .project {
  background-image: url(../img/projects/projectpage-img0.webp);
}
.webp .projects-list #project-4 .project {
  background-image: url(../img/projects/projectpage-img6.webp);
  background-image: image-set(url(../img/projects/projectpage-img6.webp) 1x, url(../img/projects/projectpage-img6@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img6.webp) 1x, url(../img/projects/projectpage-img6@2x.webp) 2x);
}
.webp .projects-list #project-2 .project {
  background-image: url(../img/projects/projectpage-img4.webp);
  background-image: image-set(url(../img/projects/projectpage-img4.webp) 1x, url(../img/projects/projectpage-img4@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img4.webp) 1x, url(../img/projects/projectpage-img4@2x.webp) 2x);
}
.webp .projects-list #project-6 .project {
  background-image: url(../img/projects/projectpage-img2.webp);
  background-image: image-set(url(../img/projects/projectpage-img2.webp) 1x, url(../img/projects/projectpage-img2@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img2.webp) 1x, url(../img/projects/projectpage-img2@2x.webp) 2x);
}
.webp .projects-list #project-7 .project {
  background-image: url(../img/projects/projectpage-img3.webp);
  background-image: image-set(url(../img/projects/projectpage-img3.webp) 1x, url(../img/projects/projectpage-img3@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img3.webp) 1x, url(../img/projects/projectpage-img3@2x.webp) 2x);
}
.webp .projects-list #project-5 .project {
  background-image: url(../img/projects/projectpage-img5.webp);
  background-image: image-set(url(../img/projects/projectpage-img5.webp) 1x, url(../img/projects/projectpage-img5@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img5.webp) 1x, url(../img/projects/projectpage-img5@2x.webp) 2x);
}
.webp .projects-list #project-8 .project {
  background-image: url(../img/projects/projectpage-img7.webp);
  background-image: image-set(url(../img/projects/projectpage-img7.webp) 1x, url(../img/projects/projectpage-img7@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img7.webp) 1x, url(../img/projects/projectpage-img7@2x.webp) 2x);
}

.no-webp .projects-list #project-1 .project {
  background-image: url(../img/projects/projectpage-img1.jpg);
  background-image: image-set(url(../img/projects/projectpage-img1.jpg) 1x, url(../img/projects/projectpage-img1@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img1.jpg) 1x, url(../img/projects/projectpage-img1@2x.jpg) 2x);
}
.no-webp .projects-list #project-3 .project {
  background-image: url(../img/projects/projectpage-img0.jpg);
}
.no-webp .projects-list #project-4 .project {
  background-image: url(../img/projects/projectpage-img6.jpg);
  background-image: image-set(url(../img/projects/projectpage-img6.jpg) 1x, url(../img/projects/projectpage-img6@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img6.jpg) 1x, url(../img/projects/projectpage-img6@2x.jpg) 2x);
}
.no-webp .projects-list #project-2 .project {
  background-image: url(../img/projects/projectpage-img4.jpg);
  background-image: image-set(url(../img/projects/projectpage-img4.jpg) 1x, url(../img/projects/projectpage-img4@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img4.jpg) 1x, url(../img/projects/projectpage-img4@2x.jpg) 2x);
}
.no-webp .projects-list #project-6 .project {
  background-image: url(../img/projects/projectpage-img2.jpg);
  background-image: image-set(url(../img/projects/projectpage-img2.jpg) 1x, url(../img/projects/projectpage-img2@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img2.jpg) 1x, url(../img/projects/projectpage-img2@2x.jpg) 2x);
}
.no-webp .projects-list #project-7 .project {
  background-image: url(../img/projects/projectpage-img3.jpg);
  background-image: image-set(url(../img/projects/projectpage-img3.jpg) 1x, url(../img/projects/projectpage-img3@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img3.jpg) 1x, url(../img/projects/projectpage-img3@2x.jpg) 2x);
}
.no-webp .projects-list #project-5 .project {
  background-image: url(../img/projects/projectpage-img5.jpg);
  background-image: image-set(url(../img/projects/projectpage-img5.jpg) 1x, url(../img/projects/projectpage-img5@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img5.jpg) 1x, url(../img/projects/projectpage-img5@2x.jpg) 2x);
}
.no-webp .projects-list #project-8 .project {
  background-image: url(../img/projects/projectpage-img7.jpg);
  background-image: image-set(url(../img/projects/projectpage-img7.jpg) 1x, url(../img/projects/projectpage-img7@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/projects/projectpage-img7.jpg) 1x, url(../img/projects/projectpage-img7@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .webp .projects-list #project-1 .project {
    background-image: url(../img/projects/projectpage-img1-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img1-sp.webp) 1x, url(../img/projects/projectpage-img1-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img1-sp.webp) 1x, url(../img/projects/projectpage-img1-sp@2x.webp) 2x);
  }
  .webp .projects-list #project-3 .project {
    background-image: url(../img/projects/projectpage-img0-sp.webp);
  }
  .webp .projects-list #project-4 .project {
    background-image: url(../img/projects/projectpage-img6-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img6-sp.webp) 1x, url(../img/projects/projectpage-img6-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img6-sp.webp) 1x, url(../img/projects/projectpage-img6-sp@2x.webp) 2x);
  }
  .webp .projects-list #project-2 .project {
    background-image: url(../img/projects/projectpage-img4-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img4-sp.webp) 1x, url(../img/projects/projectpage-img4-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img4-sp.webp) 1x, url(../img/projects/projectpage-img4-sp@2x.webp) 2x);
  }
  .webp .projects-list #project-6 .project {
    background-image: url(../img/projects/projectpage-img2-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img2-sp.webp) 1x, url(../img/projects/projectpage-img2-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img2-sp.webp) 1x, url(../img/projects/projectpage-img2-sp@2x.webp) 2x);
  }
  .webp .projects-list #project-7 .project {
    background-image: url(../img/projects/projectpage-img3-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img3-sp.webp) 1x, url(../img/projects/projectpage-img3-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img3-sp.webp) 1x, url(../img/projects/projectpage-img3-sp@2x.webp) 2x);
  }
  .webp .projects-list #project-5 .project {
    background-image: url(../img/projects/projectpage-img5-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img5-sp.webp) 1x, url(../img/projects/projectpage-img5-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img5-sp.webp) 1x, url(../img/projects/projectpage-img5-sp@2x.webp) 2x);
  }
  .webp .projects-list #project-8 .project {
    background-image: url(../img/projects/projectpage-img7-sp.webp);
    background-image: image-set(url(../img/projects/projectpage-img7-sp.webp) 1x, url(../img/projects/projectpage-img7-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img7-sp.webp) 1x, url(../img/projects/projectpage-img7-sp@2x.webp) 2x);
  }
  .no-webp .projects-list #project-1 .project {
    background-image: url(../img/projects/projectpage-img1-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img1-sp.jpg) 1x, url(../img/projects/projectpage-img1-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img1-sp.jpg) 1x, url(../img/projects/projectpage-img1-sp@2x.jpg) 2x);
  }
  .no-webp .projects-list #project-3 .project {
    background-image: url(../img/projects/projectpage-img0-sp.jpg);
  }
  .no-webp .projects-list #project-4 .project {
    background-image: url(../img/projects/projectpage-img6-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img6-sp.jpg) 1x, url(../img/projects/projectpage-img6-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img6-sp.jpg) 1x, url(../img/projects/projectpage-img6-sp@2x.jpg) 2x);
  }
  .no-webp .projects-list #project-2 .project {
    background-image: url(../img/projects/projectpage-img4-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img4-sp.jpg) 1x, url(../img/projects/projectpage-img4-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img4-sp.jpg) 1x, url(../img/projects/projectpage-img4-sp@2x.jpg) 2x);
  }
  .no-webp .projects-list #project-6 .project {
    background-image: url(../img/projects/projectpage-img2-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img2-sp.jpg) 1x, url(../img/projects/projectpage-img2-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img2-sp.jpg) 1x, url(../img/projects/projectpage-img2-sp@2x.jpg) 2x);
  }
  .no-webp .projects-list #project-7 .project {
    background-image: url(../img/projects/projectpage-img3-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img3-sp.jpg) 1x, url(../img/projects/projectpage-img3-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img3-sp.jpg) 1x, url(../img/projects/projectpage-img3-sp@2x.jpg) 2x);
  }
  .no-webp .projects-list #project-5 .project {
    background-image: url(../img/projects/projectpage-img5-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img5-sp.jpg) 1x, url(../img/projects/projectpage-img5-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img5-sp.jpg) 1x, url(../img/projects/projectpage-img5-sp@2x.jpg) 2x);
  }
  .no-webp .projects-list #project-8 .project {
    background-image: url(../img/projects/projectpage-img7-sp.jpg);
    background-image: image-set(url(../img/projects/projectpage-img7-sp.jpg) 1x, url(../img/projects/projectpage-img7-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/projects/projectpage-img7-sp.jpg) 1x, url(../img/projects/projectpage-img7-sp@2x.jpg) 2x);
  }
}
.services-banner .banner-wrapper p {
  font-size: 6rem;
}
.services-banner .banner-wrapper .sub {
  margin-top: 1rem;
  display: block;
  font-size: 2rem;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(28, 52, 20, 0.6745098039);
  margin-top: 70px;
}

@media screen and (max-width: 1024px) {
  .services-banner .banner-wrapper {
    padding-top: 70px;
  }
  .services-banner .banner-wrapper p {
    font-size: 3rem;
    display: block;
  }
  .services-banner .banner-wrapper .sub {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .services-banner .banner-wrapper {
    padding-top: 50px;
  }
  .services-banner .banner-wrapper p {
    font-size: 2rem;
    display: block;
  }
  .services-banner .banner-wrapper .sub {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
.webp .services-banner {
  background-image: url(../img/shining-woman/shiningwoman-headerimg.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-headerimg.webp) 1x, url(../img/shining-woman/shiningwoman-headerimg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-headerimg.webp) 1x, url(../img/shining-woman/shiningwoman-headerimg@2x.webp) 2x);
}

.no-webp .services-banner {
  background-image: url(../img/shining-woman/shiningwoman-headerimg.jpg);
  background-image: image-set(url(../img/shining-woman/shiningwoman-headerimg.jpg) 1x, url(../img/shining-woman/shiningwoman-headerimg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-headerimg.jpg) 1x, url(../img/shining-woman/shiningwoman-headerimg@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .webp .services-banner {
    background-image: url(../img/shining-woman/shiningwoman-headerimg-sp.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-headerimg-sp.webp) 1x, url(../img/shining-woman/shiningwoman-headerimg-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-headerimg-sp.webp) 1x, url(../img/shining-woman/shiningwoman-headerimg-sp@2x.webp) 2x);
  }
  .no-webp .services-banner {
    background-image: url(../img/shining-woman/shiningwoman-headerimg-sp.jpg);
    background-image: image-set(url(../img/shining-woman/shiningwoman-headerimg-sp.jpg) 1x, url(../img/shining-woman/shiningwoman-headerimg-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-headerimg-sp.jpg) 1x, url(../img/shining-woman/shiningwoman-headerimg-sp@2x.jpg) 2x);
  }
}
.services-summery {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.7rem;
}
@media screen and (min-width: 960px) {
  .services-summery {
    max-width: 1080px;
    margin-right: 8.5rem;
    margin-left: initial;
    padding-top: 8rem;
    padding-bottom: 14rem;
  }
}
@media screen and (min-width: 1600px) {
  .services-summery {
    margin-right: auto;
    margin-left: auto;
  }
}
.services-summery .services-container {
  position: relative;
  width: 85%;
  display: flex;
  align-items: center;
  height: 18rem;
  padding-left: 4rem;
  padding-right: 8rem;
}
.services-summery .services-container::before {
  font-size: 5rem;
  color: white;
  position: absolute;
  top: 1rem;
  left: 3%;
  font-family: "SourceHan", Optima, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container::before {
    font-size: 8rem;
    left: 5%;
    top: 3rem;
  }
}
@media screen and (min-width: 960px) {
  .services-summery .services-container {
    width: 100%;
    height: 28rem;
    justify-content: flex-start;
    padding-left: 11rem;
  }
}
.services-summery .services-container .services-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container .services-title {
    flex-direction: row;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.services-summery .services-container .services-title .services-title-text {
  text-align: center;
}
.services-summery .services-container .services-title .services-title-text p {
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 4.5px;
  font-family: "SourceHan", Optima, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container .services-title .services-title-text p {
    font-size: 2.4rem;
  }
}
.services-summery .services-container .services-title .more-link .more-elem {
  position: relative;
  display: block;
  width: 5rem;
}
.services-summery .services-container .services-title .more-link .more-elem::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 17px;
  line-height: 3rem;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container .services-title .more-link .more-elem::before {
    top: 0;
  }
}
.services-summery .services-container .services-title .more-link .more-elem::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  right: -8px;
  line-height: 3rem;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container .services-title .more-link .more-elem::after {
    top: -9px;
  }
}
.services-summery .services-container .services-img {
  position: absolute;
  width: 13rem;
  right: -18%;
  bottom: -3rem;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container .services-img {
    width: 24rem;
    right: -8%;
    bottom: -7rem;
  }
}
.services-summery .services-container + .services-container {
  margin-top: 6rem;
}
@media screen and (min-width: 960px) {
  .services-summery .services-container + .services-container {
    margin-top: 12rem;
  }
}

.project-1::before {
  z-index: 20;
  content: "01";
}

.project-2::before {
  z-index: 20;
  content: "02";
}

.project-3::before {
  z-index: 20;
  content: "03";
}

.project-4::before {
  z-index: 20;
  content: "04";
}

.project-5::before {
  z-index: 20;
  content: "05";
}

.project-6::before {
  z-index: 20;
  content: "06";
}

.webp .services-summery .project-1 {
  background-image: url(../img/shining-woman/shiningwoman-bg01-sp.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-bg01-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg01-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg01-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg01-sp@2x.webp) 2x);
}
.webp .services-summery .project-2 {
  background-image: url(../img/shining-woman/shiningwoman-bg02-sp.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-bg02-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg02-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg02-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg02-sp@2x.webp) 2x);
}
.webp .services-summery .project-3 {
  background-image: url(../img/shining-woman/shiningwoman-bg03-sp.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-bg03-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg03-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg03-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg03-sp@2x.webp) 2x);
}
.webp .services-summery .project-4 {
  background-image: url(../img/shining-woman/shiningwoman-bg04-sp.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-bg04-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg04-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg04-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg04-sp@2x.webp) 2x);
}
.webp .services-summery .project-5 {
  background-image: url(../img/shining-woman/shiningwoman-bg05-sp.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-bg05-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg05-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg05-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg05-sp@2x.webp) 2x);
}
.webp .services-summery .project-6 {
  background-image: url(../img/shining-woman/shiningwoman-bg06-sp.webp);
  background-image: image-set(url(../img/shining-woman/shiningwoman-bg06-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg06-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg06-sp.webp) 1x, url(../img/shining-woman/shiningwoman-bg06-sp@2x.webp) 2x);
}
@media screen and (min-width: 960px) {
  .webp .services-summery .project-1 {
    background-image: url(../img/shining-woman/shiningwoman-bg01.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-bg01.webp) 1x, url(../img/shining-woman/shiningwoman-bg01@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg01.webp) 1x, url(../img/shining-woman/shiningwoman-bg01@2x.webp) 2x);
  }
  .webp .services-summery .project-2 {
    background-image: url(../img/shining-woman/shiningwoman-bg02.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-bg02.webp) 1x, url(../img/shining-woman/shiningwoman-bg02@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg02.webp) 1x, url(../img/shining-woman/shiningwoman-bg02@2x.webp) 2x);
  }
  .webp .services-summery .project-3 {
    background-image: url(../img/shining-woman/shiningwoman-bg03.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-bg03.webp) 1x, url(../img/shining-woman/shiningwoman-bg03@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg03.webp) 1x, url(../img/shining-woman/shiningwoman-bg03@2x.webp) 2x);
  }
  .webp .services-summery .project-4 {
    background-image: url(../img/shining-woman/shiningwoman-bg04.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-bg04.webp) 1x, url(../img/shining-woman/shiningwoman-bg04@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg04.webp) 1x, url(../img/shining-woman/shiningwoman-bg04@2x.webp) 2x);
  }
  .webp .services-summery .project-5 {
    background-image: url(../img/shining-woman/shiningwoman-bg05.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-bg05.webp) 1x, url(../img/shining-woman/shiningwoman-bg05@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg05.webp) 1x, url(../img/shining-woman/shiningwoman-bg05@2x.webp) 2x);
  }
  .webp .services-summery .project-6 {
    background-image: url(../img/shining-woman/shiningwoman-bg06.webp);
    background-image: image-set(url(../img/shining-woman/shiningwoman-bg06.webp) 1x, url(../img/shining-woman/shiningwoman-bg06@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/shining-woman/shiningwoman-bg06.webp) 1x, url(../img/shining-woman/shiningwoman-bg06@2x.webp) 2x);
  }
}

.service-summery {
  padding-top: 12rem;
  padding-bottom: 12rem;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.service-summery .service-img {
  display: none;
}
@media screen and (min-width: 960px) {
  .service-summery .service-img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 960px) {
  .service-summery {
    margin-top: 10rem;
  }
}
.service-summery .service-summery-container {
  padding: 6rem 4rem;
  width: 90%;
  background: rgba(255, 255, 255, 0.7) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container {
    width: 65%;
    padding: 8rem 6rem;
    margin-left: 5%;
  }
}
.service-summery .service-summery-container .heading-wrap .heading {
  margin-bottom: 15px;
  font-size: 2.6rem;
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container .heading-wrap .heading {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container .heading-wrap p {
    font-size: 1.4rem;
  }
}
.service-summery .service-summery-container .service-text {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container .service-text {
    margin-top: 40px;
  }
}
.service-summery .service-summery-container .service-text .service-paragraph .sub-heading {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 600;
  padding-left: 1rem;
  border-left: 1px solid #272727;
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container .service-text .service-paragraph .sub-heading {
    font-size: 1.6rem;
    border-left: 1.5px solid #272727;
  }
}
.service-summery .service-summery-container .service-text .service-paragraph p {
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container .service-text .service-paragraph p {
    font-size: 1.4rem;
  }
}
.service-summery .service-summery-container .service-text .service-paragraph + .service-paragraph {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .service-summery .service-summery-container .service-text .service-paragraph + .service-paragraph {
    margin-top: 30px;
  }
}

.webp .service-summery {
  background-size: cover;
}
.webp .service-summery-project1 {
  background-image: url(../img/shining-woman/servicepage-img01-sp.webp);
  background-image: image-set(url(../img/shining-woman/servicepage-img01-sp.webp) 1x, url(../img/shining-woman/servicepage-img01-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/servicepage-img01-sp.webp) 1x, url(../img/shining-woman/servicepage-img01-sp@2x.webp) 2x);
}
.webp .service-summery-project2 {
  background-image: url(../img/shining-woman/servicepage-img02-sp.webp);
  background-image: image-set(url(../img/shining-woman/servicepage-img02-sp.webp) 1x, url(../img/shining-woman/servicepage-img02-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/servicepage-img02-sp.webp) 1x, url(../img/shining-woman/servicepage-img02-sp@2x.webp) 2x);
}
.webp .service-summery-project3 {
  background-image: url(../img/shining-woman/servicepage-img03-sp.webp);
  background-image: image-set(url(../img/shining-woman/servicepage-img03-sp.webp) 1x, url(../img/shining-woman/servicepage-img03-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/servicepage-img03-sp.webp) 1x, url(../img/shining-woman/servicepage-img03-sp@2x.webp) 2x);
}
.webp .service-summery-project4 {
  background-image: url(../img/shining-woman/servicepage-img04-sp.webp);
  background-image: image-set(url(../img/shining-woman/servicepage-img04-sp.webp) 1x, url(../img/shining-woman/servicepage-img04-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/servicepage-img04-sp.webp) 1x, url(../img/shining-woman/servicepage-img04-sp@2x.webp) 2x);
}
.webp .service-summery-project5 {
  background-image: url(../img/shining-woman/servicepage-img05-sp.webp);
  background-image: image-set(url(../img/shining-woman/servicepage-img05-sp.webp) 1x, url(../img/shining-woman/servicepage-img05-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/servicepage-img05-sp.webp) 1x, url(../img/shining-woman/servicepage-img05-sp@2x.webp) 2x);
}
.webp .service-summery-project6 {
  background-image: url(../img/shining-woman/servicepage-img06-sp.webp);
  background-image: image-set(url(../img/shining-woman/servicepage-img06-sp.webp) 1x, url(../img/shining-woman/servicepage-img06-sp@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/shining-woman/servicepage-img06-sp.webp) 1x, url(../img/shining-woman/servicepage-img06-sp@2x.webp) 2x);
}
@media screen and (min-width: 960px) {
  .webp .service-summery {
    background-image: none;
  }
}

.simple-section {
  padding: 100px 0;
}
.simple-section .section-title {
  margin-bottom: 50px;
}
.simple-section .section-title h2 {
  font-size: 3.6rem;
}
.simple-section .section-text {
  margin-bottom: 50px;
}
.simple-section .section-text h3,
.simple-section .section-text h4,
.simple-section .section-text h5,
.simple-section .section-text p {
  margin-bottom: 30px;
}
.simple-section .section-text p.list-top {
  margin-bottom: 0;
}
.simple-section .section-text p,
.simple-section .section-text li {
  line-height: 3rem;
}
.simple-section .section-text ul.list-disc {
  list-style-type: disc;
  list-style-position: inside;
}

@media screen and (max-width: 1024px) {
  .simple-section.wrapper {
    padding: 70px 20px;
  }
}
@media screen and (max-width: 768px) {
  .simple-section .section-title {
    margin-bottom: 30px;
  }
  .simple-section .section-title h2 {
    font-size: 2.4rem;
  }
  .simple-section .section-text {
    margin-bottom: 30px;
  }
  .simple-section .section-text h3,
  .simple-section .section-text h4,
  .simple-section .section-text h5,
  .simple-section .section-text p {
    margin-bottom: 20px;
  }
  .simple-section .section-text p,
  .simple-section .section-text li {
    line-height: 2rem;
  }
}
.company .top-banner {
  margin-bottom: 100px;
}
.company .top-banner .banner-wrapper picture source,
.company .top-banner .banner-wrapper picture img {
  width: auto;
  height: 96px;
}

@media screen and (max-width: 1024px) {
  .company .top-banner .banner-wrapper picture source,
  .company .top-banner .banner-wrapper picture img {
    height: 60px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .company .top-banner .banner-wrapper picture source,
  .company .top-banner .banner-wrapper picture img {
    height: 48px;
  }
}
.company {
  padding: 120px 0;
}
.company h2 {
  margin-bottom: 50px;
  text-align: center;
}
.company table {
  margin: 0 auto;
}
.company table,
.company td,
.company th {
  border: 1px solid #eee;
  border-collapse: collapse;
}
.company td,
.company th {
  padding: 10px 30px;
}
.company tr td:first-child {
  text-align: center;
  background: #FDF6F9;
}

@media screen and (max-width: 1024px) {
  .company {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  th,
  td {
    display: block;
  }
}
.webp .company-banner {
  background-image: url(../img/company/companypage-headerimg.webp);
  background-image: image-set(url(../img/company/companypage-headerimg.webp) 1x, url(../img/company/companypage-headerimg@2x.webp) 2x);
  background-image: -webkit-image-set(url(../img/company/companypage-headerimg.webp) 1x, url(../img/company/companypage-headerimg@2x.webp) 2x);
}

.no-webp .company-banner {
  background-image: url(../img/company/companypage-headerimg.jpg);
  background-image: image-set(url(../img/company/companypage-headerimg.jpg) 1x, url(../img/company/companypage-headerimg@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/company/companypage-headerimg.jpg) 1x, url(../img/company/companypage-headerimg@2x.jpg) 2x);
}

@media screen and (max-width: 768px) {
  .webp .company-banner {
    background-image: url(../img/company/companypage-headerimg-sp.webp);
    background-image: image-set(url(../img/company/companypage-headerimg-sp.webp) 1x, url(../img/company/companypage-headerimg-sp@2x.webp) 2x);
    background-image: -webkit-image-set(url(../img/company/companypage-headerimg-sp.webp) 1x, url(../img/company/companypage-headerimg-sp@2x.webp) 2x);
  }
  .no-webp .company-banner {
    background-image: url(../img/company/companypage-headerimg-sp.jpg);
    background-image: image-set(url(../img/company/companypage-headerimg-sp.jpg) 1x, url(../img/company/companypage-headerimg-sp@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/company/companypage-headerimg-sp.jpg) 1x, url(../img/company/companypage-headerimg-sp@2x.jpg) 2x);
  }
}/*# sourceMappingURL=style.css.map */