/**
* @file
* このテーマのメインのcssファイル
*/
* {
  box-sizing: border-box;
}
html {
  font-size: 1rem;
}
body {
  position: relative;
  font-family: fot-udkakugoc80-pro, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: var(--size-14);
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
ul, ol {
  margin:0;
  padding:0;
}
li {
  list-style-type: none;
}
p {
  margin:0;
  padding:0;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: var(--black);
}
a, a:hover, button, button:hover, img, article, input, textarea {
  text-decoration:none;
  -webkit-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
  -moz-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
  -o-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
  -ms-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
	transition: 0.3s cubic-bezier(0.25,1,0.5,1);
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
  margin:0;
  padding:0;
	line-height: 1.5;
}
dl, dt, dd {
  margin:0;
  padding:0;
}
input:focus, textarea:focus {
  outline:none;
}
input, textarea, button {
  border: none;
  background: none;
}
button {
  cursor: pointer;
  display: block;
  width: 100%;
}
figure,figcaption {
  margin: 0;
  padding: 0;
}
/* ローディング中のスタイル */
.wf-loading {
	opacity: 0;
  background-color: var(--white);
}
.wf-active {
	opacity: 1;
	transition: opacity 0.3s ease;
}
.wf-inactive {
	opacity: 1;
}

/*        ---hover---        */
@media (hover: hover) {
  .p-links__content-item-link:hover .p-links__content-item-text {
    color: var(--green);
  }
  .p-bottom__link:hover {
    background-color: var(--white);
  }
  .p-bottom__link:hover .p-bottom__link-text {
    color: var(--green);
  }
  .p-bottom__link:hover .p-bottom__link-icon-wrapper {
    border: solid var(--size-1) var(--green);
  }
  .p-bottom__link:hover .p-bottom__link-icon.is-hover {
    display: block;
  }
  .p-bottom__link:hover .p-bottom__link-icon.is-default {
    display: none;
  }
  .p-bottom__logo-link:hover {
    opacity: .64;
  }
}


/*        ---component---        */
.c-width {
  display: block;
	padding: 0 var(--size-48);
	margin: 0 auto;
}
.c-width-960 {
  max-width: 960px;
  margin: auto;
}
.c-width-1152 {
  max-width: 1152px;
  margin: auto;
}
.c-width-1248 {
  max-width: 1248px;
  margin: auto;
}
.c-ratio-1 {
  aspect-ratio: 1 / 1;
}
.c-ratio-silver {
  aspect-ratio: 2.414 / 1;
}
.c-ratio-golden {
  aspect-ratio: 1.618 / 1;
}
.c-only-sp {
  display: none;
}
.c-only-pc {
  display: block;
}
.c-only-sp__flex {
  display: none;
}
.c-only-pc__flex {
  display: flex;
}

@media screen and (max-width:960px){

}
@media screen and (max-width:768px){
  .c-width {
    padding: 0 var(--size-16);
  }
  .c-only-sp {
    display: block;
  }
  .c-only-pc {
    display: none;
  }
  .c-only-sp__flex {
    display: flex;
  }
  .c-only-pc__flex {
    display: none;
  }
}

/* header */
.l-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  max-width: calc(793px + 96px);
  width: 100%;
}
.l-header__text {
  padding: var(--size-16);
  max-width: 667px;
  width: 100%;
  background-color: var(--green);
  color: var(--white);
  border-radius: 0 0 var(--size-16) var(--size-16);
  margin: 0 auto;
  text-align: center;
}
.l-header__border {
  position: absolute;
  top: var(--size-24);
  left: 0;
  z-index: -1;
  width: 100%;
  padding: 0 var(--size-48);
}

@media screen and (max-width:768px) {
  .l-header {
  padding: 0 var(--size-32);
}
.l-header__text {
  padding: var(--size-10);
  font-size: var(--size-10);
  border-radius: 0 0 var(--size-12) var(--size-12);
}
.l-header__border {
  top: var(--size-16);
  padding: 0 var(--size-16);
}
}


/* footer */
.l-footer {
  padding-top: var(--size-24);
}
.l-footer__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-10);
  color: var(--white);
}
.l-footer__text-title {
  font-size: var(--size-11);
  padding: 0 var(--size-8);
  border: solid var(--size-1) var(--white);
  flex-shrink: 0;
}
.l-footer__text-des {
  font-size: var(--size-13);
}

@media screen and (max-width:768px){
  .l-footer {
    padding-top: var(--size-16);
  }
  .l-footer__text {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-6);
  }
  .l-footer__text-title {
    font-size: var(--size-10);
    padding: 0 var(--size-6);
  }
  .l-footer__text-des {
    font-size: var(--size-11);
  }
}


/* layout */
.l-wrapper {
  background-color: var(--bg-green);
  padding: var(--size-48) var(--size-48) var(--size-24);
  overflow: hidden;
}
.l-main {
  position: relative;
  background-image: linear-gradient(0deg, transparent calc(100% - 0.5px), rgba(143, 195, 31, .08) calc(100% - 0.5px)),
                    linear-gradient(90deg, transparent calc(100% - 0.5px), rgba(143, 195, 31, .08) calc(100% - 0.5px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: var(--white);
  border-radius: var(--size-48);
}
.l-main__corner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.l-main__corner-bg {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 0 0 var(--size-64);
  background-color: var(--bg-green);
}
.l-main__corner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
}
.l-mv {
  padding-top: var(--size-148);
}
@media screen and (max-width:768px) {
  .l-wrapper {
    padding: var(--size-32) var(--size-8) var(--size-16);
  }
  .l-main {
    border-radius: var(--size-24);
  }
  .l-main__corner-bg {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 0 0 var(--size-40);
  }
  .l-main__corner-img {
    width: 64px;
  }
  .l-mv {
    padding-top: var(--size-96);
  }
}


/*         ---project---          */
.p-mv__main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--size-48);
}
.p-mv__main-title {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  margin-bottom: clamp(1.5rem, 0.268rem + 5.26vw, 5rem);
  padding-left: var(--size-48);
  flex-shrink: 0;
}
.p-mv__main-title-first {
  font-size: 62px;
  font-size: clamp(1.75rem, 1.002rem + 3.19vw, 3.875rem);
}
.p-mv__main-title-second {
  font-size: 93px;
  font-size: clamp(2.375rem, 1.165rem + 5.16vw, 5.813rem);
}
.p-mv__main-title-second-small {
  font-size: 69px;
  font-size: clamp(2rem, 1.186rem + 3.47vw, 4.313rem);
}
.p-mv__main-img-wrapper {
  position: relative;
  width: 467px;
  width: clamp(11.25rem, 4.934rem + 26.95vw, 29.188rem);
}
.p-mv__main-img-text {
  position: absolute;
  top: 0;
  right: 86%;
  width: 288px;
}
.p-mv__main-img-text-bg {
  width: 100%;
}
.p-mv__main-img-text-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 100%;
  padding: 0 var(--size-24);
}
.p-mv__main-img-text-first {
  font-size: var(--size-18);
}
.p-mv__main-img-text-second {
  font-size: var(--size-28);
  font-size: clamp(1.188rem, 0.989rem + 0.85vw, 1.75rem);
}
.p-mv__list-icon {
  position: relative;
  z-index: 1;
  width: 182px;
  margin-bottom: -16px;
}
.p-mv__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--size-8);
}
.p-mv__item {
  display: flex;
  align-items: center;
  gap: var(--size-8);
  padding: var(--size-16) var(--size-24);
  background-color: var(--green-thin01);
  border-radius: var(--size-8) 0 0 var(--size-8);
}
.p-mv__item:nth-child(2), .p-mv__item:nth-child(4) {
  border-radius: 0 var(--size-8) var(--size-8) 0;
}
.p-mv__item-icon {
  width: var(--size-20);
}
.p-mv__item-text {
  font-size: var(--size-24);
}
.p-mv__arrow-wrapper {
  width: 100%;
  margin: var(--size-24) 0;
  text-align: center;
}
.p-mv__arrow {
  width: var(--size-36);
}
.p-mv__text {
  text-align: center;
}
.p-mv__text-title {
  font-size: var(--size-42);
  font-size: clamp(1.5rem, 1.104rem + 1.69vw, 2.625rem);
}
.p-mv__text-title-small {
  font-size: var(--size-35);
  font-size: clamp(1.313rem, 1.004rem + 1.31vw, 2.188rem);
}
.p-mv__text-des {
  font-size: var(--size-27);
  font-size: clamp(1.125rem, 0.927rem + 0.85vw, 1.688rem);
}
.p-mv__text-des-small {
  font-size: var(--size-17);
}

.l-point {
  position: relative;
}
.p-point__num-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  width: 138px;
  width: clamp(4.5rem, 3.048rem + 6.2vw, 8.625rem);
  height: 138px;
  height: clamp(4.5rem, 3.048rem + 6.2vw, 8.625rem);
  border: solid var(--size-4) var(--border-green);
  background-color: var(--white);
  border-radius: 50%;
}
.p-point__num-wrapper::after {
  position: absolute;
  bottom: var(--size-4);
  right: var(--size-4);
  content: "";
  width: var(--size-36);
  height: var(--size-2);
  background-color: var(--black);
  transform: rotate(45deg);
  transform-origin: right;
}
.p-point__num-title {
  font-size: var(--size-13);
}
.p-point__num {
  font-size: var(--size-40);
  font-size: clamp(1.5rem, 1.148rem + 1.5vw, 2.5rem);
}
.p-point__head {
  padding-top: var(--size-24);
  text-align: center;
}
.p-point__head-title {
  display: inline;
  font-size: var(--size-48);
  font-size: clamp(1.5rem, 0.972rem + 2.25vw, 3rem);
  background: linear-gradient(var(--green), var(--green)) 0 100% / 100% 2px no-repeat;
  padding-bottom: var(--size-8);
}
.p-point__head-des {
  font-size: var(--size-18);
  margin-top: var(--size-32);
}
.p-point__content-list {
  display: flex;
  gap: var(--size-16);
  margin-top: var(--size-56);
}
.p-point__content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--size-24) var(--size-32);
  background-color: var(--white);
  border: solid var(--size-2) var(--green);
}
.p-point__content-item:first-child {
  border-radius: var(--size-16) 0 0 var(--size-16);
  width: 31%;
}
.p-point__content-item:nth-child(2) {
  width: calc(38% - var(--size-32));
}
.p-point__content-item:last-child {
  border-radius: 0 var(--size-16) var(--size-16) 0;
  width: 31%;
}
.p-point__content-item-img {
  width: 148px;
  margin-top: -24px;
}
.p-point__content-item-title {
  text-align: center;
}
.p-point__content-item-title-main {
  font-size: var(--size-23);
}
.p-point__content-item-title-sub {
  margin-top: var(--size-8);
}
.p-point__des {
  margin-top: var(--size-32);
  text-align: center;
  font-size: var(--size-20);
}
.p-point__des-span {
  font-size: var(--size-28);
}
.p-point02__content {
  margin-top: var(--size-32);
  padding: var(--size-96);
  border-radius: var(--size-48);
  background-color: var(--green-thin02);
}
.p-point02__list {
  display: flex;
  gap: var(--size-24);
  align-items: center;
}
.p-point02__item-icon {
  flex-shrink: 0;
}
.p-point02__item-icon-plus {
  width: var(--size-32);
  width: clamp(1rem, 0.648rem + 1.5vw, 2rem);
}
.p-point02__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-16);
  padding: var(--size-64) var(--size-24) var(--size-24);
  background-color: var(--white);
  border-radius: var(--size-16);
  border: solid var(--size-2) var(--green);
  aspect-ratio: 1 / 1;
  width: 100%;
}
.p-point02__item-title {
  font-size: var(--size-32);
  font-size: clamp(1.188rem, 0.901rem + 1.22vw, 2rem);
  text-align: center;
}
.p-point02__item-icon01 {
  width: 140px;
}
.p-point02__item-icon02 {
  width: 124px;
}
.p-point02__item-icon03 {
  width: 129px;
}
.p-point02__des {
  margin-top: var(--size-48);
  font-size: var(--size-18);
  text-align: center;
}
.p-point03__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--size-24);
  margin-top: var(--size-32);
  padding: var(--size-64) var(--size-96);
  background-color: #E4EFC9;
  border-radius: var(--size-16);
}
.p-point03__item {
  display: flex;
  align-items: center;
  gap: var(--size-10);
}
.p-point03__item-icon {
  width: var(--size-20);
}
.p-point03__item-text {
  font-size: var(--size-26);
  font-size: clamp(0.938rem, 0.695rem + 1.03vw, 1.625rem);
}
.p-point03__img {
  position: absolute;
  bottom: -16px;
  right: 0;
  height: 465px;
  height: clamp(18.75rem, 15.119rem + 15.49vw, 29.063rem);
}

.p-links__wrapper {
  padding: var(--size-96);
  background-color: var(--white);
  border: solid var(--size-2) var(--green);
  border-radius: var(--size-48);
  margin-top: var(--size-32);
}
.p-links__content-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--size-10);
  font-size: var(--size-24);
}
.p-links__content-title::before {
  content: "";
  width: var(--size-20);
  height: var(--size-20);
  border-radius: var(--size-2);
  background-color: var(--green);
  flex-shrink: 0;
}
.p-links__content-list {
  margin-top: var(--size-32);
}
.p-links__content-item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-24);
  padding: var(--size-24) 0;
}
.p-links__content-item-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--size-1);
  background-image: radial-gradient(circle, #808080 .5px, transparent .5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 3px 1px;
}
.p-links__content-item:last-child .p-links__content-item-link {
  padding-bottom: 0;
}
.p-links__content-item-icon {
  width: var(--size-15);
}
.p-links__content-item-text-head {
  font-size: var(--size-15);
  line-height: 1.5;
  padding-bottom: var(--size-4);
}
.p-links__content-item-text-title {
  font-size: var(--size-21);
  line-height: 1.5;
}
.l-bottom {
  padding-bottom: 144px;
}
.p-bottom__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-10);
  width: 100%;
  height: 124px;
  background-color: var(--green);
  border: solid var(--size-1) var(--green);
  border-radius: var(--size-8);
}
.p-bottom__link-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--size-32);
  height: var(--size-32);
  border-radius: 50%;
  border: solid var(--size-1) var(--white);
}
.p-bottom__link-icon {
  width: var(--size-12);
}
.p-bottom__link-icon.is-default {
  display: block;
}
.p-bottom__link-icon.is-hover {
  display: none;
}
.p-bottom__link-text {
  font-size: var(--size-24);
  color: var(--white);
}
.p-bottom__logo {
  display: flex;
  gap: var(--size-40);
  align-items: center;
  justify-content: center;
  margin-top: var(--size-120);
}
.p-bottom__logo-01 {
  width: 250px;
}
.p-bottom__logo-02 {
  width: 188px;
}
@media screen and (max-width:1248px) {
  .p-point03__list {
    padding: var(--size-32) var(--size-40);
  }
}
@media screen and (max-width:1148px) {
  .p-mv__main {
    flex-direction: column;
    align-items: center;
    gap: var(--size-32);
  }
  .p-mv__main-img-wrapper {
    margin: 0 0 0 auto;
  }
  .p-mv__main-title {
    text-align: center;
    margin-bottom: 0;
    padding-left: 0;
  }
  .p-point03__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width:768px) {
  .p-mv__main {
    gap: var(--size-24);
    margin-bottom: -48px;
  }
	.p-mv__main-img-text {
    position: absolute;
    top: 0;
    right: 78%;
    width: 180px;
  }
  .p-mv__main-img-text-inner {
    padding: 0 var(--size-8);
  }
  .p-mv__main-img-text-first {
    font-size: var(--size-12);
  }
  .p-mv__list-icon {
    width: 112px;
    margin-bottom: -8px;
  }
  .p-mv__list {
    grid-template-columns: 1fr;
    gap: var(--size-8);
  }
  .p-mv__item {
    gap: var(--size-6);
    padding: var(--size-10) var(--size-16);
    border-radius: var(--size-4);
  }
  .p-mv__item:nth-child(2), .p-mv__item:nth-child(4) {
    border-radius: var(--size-4);
  }
  .p-mv__item-icon {
    width: var(--size-12);
  }
  .p-mv__item-text {
    font-size: var(--size-15);
  }
  .p-mv__arrow-wrapper {
    margin: var(--size-16) 0;
  }
  .p-mv__arrow {
    width: var(--size-24);
  }
  .p-mv__text {
    text-align: center;
  }
  .p-mv__text-des-small {
    font-size: var(--size-15);
  }

  .p-point__num-wrapper {
    left: 50%;
    transform: translateX(-50%);
    top: -56px;
    border: solid var(--size-4) var(--border-green);
  }
  .p-point__num-wrapper::after {
    bottom: var(--size-1);
    right: var(--size-1);
    width: var(--size-24);
  }
  .p-point__num-title {
    font-size: var(--size-11);
  }
  .p-point__head {
    padding-top: var(--size-24);
  }
  .p-point__head-des {
    font-size: var(--size-15);
    margin-top: var(--size-24);
    text-align: left;
  }
  .p-point__content-list {
    flex-direction: column;
    gap: var(--size-8);
    margin-top: var(--size-40);
  }
  .p-point__content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--size-16) var(--size-24);
  }
  .p-point__content-item:first-child {
    border-radius: var(--size-10) var(--size-10) 0 0;
    width: 100%;
  }
  .p-point__content-item:nth-child(2) {
    width: 100%;
  }
  .p-point__content-item:last-child {
    border-radius: 0 0 var(--size-10) var(--size-10);
    width: 100%;
  }
  .p-point__content-item-img {
    width: 96px;
    margin-top: -16px;
  }
  .p-point__content-item-title {
    text-align: center;
  }
  .p-point__content-item-title-main {
    font-size: var(--size-18);
  }
  .p-point__content-item-title-sub {
    margin-top: var(--size-4);
    font-size: var(--size-12);
  }
  .p-point__des {
    margin-top: var(--size-24);
    font-size: var(--size-15);
  }
  .p-point__des-span {
    font-size: var(--size-21);
  }
  .p-point02__content {
    margin-top: var(--size-24);
    padding: var(--size-24);
    border-radius: var(--size-24);
  }
  .p-point02__list {
    flex-direction: column;
    gap: var(--size-8);
  }
  .p-point02__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--size-16);
    padding: var(--size-16);
    background-color: var(--white);
    border-radius: var(--size-10);
    aspect-ratio: inherit;
  }
  .p-point02__item-icon01 {
    width: 96px;
  }
  .p-point02__item-icon02 {
    width: 80px;
  }
  .p-point02__item-icon03 {
    width: 84px;
  }
  .p-point02__des {
    margin-top: var(--size-32);
    font-size: var(--size-15);
    text-align: left;
  }
  .p-point03__list {
    grid-template-columns: 1fr;
    gap: var(--size-16);
    margin-top: var(--size-32);
    padding: var(--size-16) var(--size-24);
    border-radius: var(--size-10);
  }
  .p-point03__item {
    gap: var(--size-6);
  }
  .p-point03__item-icon {
    width: var(--size-10);
  }
  .p-point03__img {
    right: -40px;
    bottom: -40px;
  }
  
  .p-links__wrapper {
    padding: var(--size-40) var(--size-24);
    border-radius: var(--size-24);
    margin-top: var(--size-24);
  }
  .p-links__content-title {
    gap: var(--size-6);
    font-size: var(--size-17);
  }
  .p-links__content-title::before {
    width: var(--size-12);
    height: var(--size-12);
  }
  .p-links__content-list {
    margin-top: var(--size-24);
  }
  .p-links__content-item-link {
    gap: var(--size-16);
    padding: var(--size-16) 0;
  }
  .p-links__content-item-icon {
    width: var(--size-10);
  }
  .p-links__content-item-text-head {
    font-size: var(--size-12);
  }
  .p-links__content-item-text-title {
    font-size: var(--size-16);
  }
  
  .l-bottom {
    padding-bottom: 80px;
  }
  .p-bottom__link {
    gap: var(--size-6);
    width: 100%;
    height: 80px;
    border-radius: var(--size-6);
  }
  .p-bottom__link-icon-wrapper {
    width: var(--size-24);
    height: var(--size-24);
  }
  .p-bottom__link-icon {
    width: var(--size-8);
  }
  .p-bottom__link-text {
    font-size: var(--size-18);
  }
  .p-bottom__logo {
    flex-direction: column;
    gap: var(--size-24);
    margin-top: var(--size-72);
  }
  .p-bottom__logo-01 {
    width: 160px;
  }
  .p-bottom__logo-02 {
    width: 160px;
  }
}