@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-black: #000;
  --color-red: #cc0000;
  --color-yellow: #ffd200;
  --color-light-yellow: #fff7d8;
  --color-pink: #ea6182;
  --color-orange: #f39800;
  --color-green: #7fbe26;
  --color-light-green: #c0dc96;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1100px;
  --width-content-l: 1370px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-zen-maru: "Zen Maru Gothic", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-page-top: 99;
  --z-index-fixed-btn: 100;
}

/*!
foundation > reset
------------------------------
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 0.8em 0;
  padding: 0;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
  vertical-align: middle;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.4;
  font-size: clamp(0px, 1.4vw, 16px);
  color: var(--color-black);
  background-color: #fff;
  font-family: var(--font-family-base);
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: clamp(0px, 3.8dvw, 28px);
  }
}
p,
table th,
table td {
  word-break: break-all;
  overflow-wrap: break-word;
}

table th,
table td {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

a,
button,
a::after,
a::before,
button::after,
button::before {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.6;
}

.l-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.l-wrapper .main {
  flex: 1;
}

/* TEL無効 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/*!
utility > utility
------------------------------
*/
.bold {
  font-weight: bold !important;
}

.al-l {
  text-align: left !important;
}

.al-r {
  text-align: right !important;
}

.al-c {
  text-align: center !important;
}

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

.mt1em {
  margin-top: 1em;
}

.under-line {
  text-decoration: underline;
}

.sp {
  display: block;
}

br.sp {
  display: inline;
}

.pc,
br.pc {
  display: none;
}

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

  br.pc {
    display: inline;
  }

  .sp,
br.sp {
    display: none;
  }
}
.sr-only {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
layout > container
------------------------------
*/
.l-container,
.l-container-l {
  width: 90%;
  margin: 0 auto;
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

/*!
layout > header
------------------------------
*/
.header {
  width: 100%;
  height: clamp(0px, 5.8vw, 70px);
  background-color: #fff;
}

.header-inner {
  height: 100%;
  padding: 0 clamp(0px, 2.5vw, 30px) 0 clamp(0px, 2.9vw, 35px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: clamp(0px, 12.5vw, 152px);
}

.header-ttl {
  width: clamp(0px, 19.7vw, 240px);
}

.header-ttl path,
.header-ttl polygon {
  fill: var(--color-red);
}

@media screen and (max-width: 767px) {
  .header {
    height: clamp(0px, 13.4dvw, 100px);
  }

  .header-inner {
    padding: 0 clamp(0px, 3.4dvw, 25px) 0 clamp(0px, 2.7dvw, 20px);
  }

  .header-logo {
    width: clamp(0px, 29dvw, 217px);
  }

  .header-ttl {
    width: clamp(0px, 46.2dvw, 346px);
  }
}
/*!
layout > footer
------------------------------
*/
.footer {
  background-color: var(--color-red);
  padding: clamp(0px, 2.1vw, 25px) 0;
}

.footer-logo {
  width: clamp(0px, 32.8vw, 400px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: clamp(0px, 2.7dvw, 20px) 0 clamp(0px, 3.4dvw, 25px);
    margin-bottom: clamp(0px, 10.7vw, 40px);
  }

  .footer-logo {
    width: clamp(0px, 65.4dvw, 490px);
  }
}
/*!
layout > page-top
------------------------------
*/
.page-top {
  position: fixed;
  bottom: 2%;
  right: 3%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-red);
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s;
  z-index: var(--z-index-page-top);
}

@media screen and (max-width: 767px) {
  .page-top {
    width: 40px;
    height: 40px;
  }
}
.page-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 3px #fff;
  border-left: solid 3px #fff;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: all 0.2s;
}

@media screen and (max-width: 767px) {
  .page-top::before {
    width: 10px;
    height: 10px;
  }
}
.page-top:hover {
  opacity: 0.7;
}

.page-top.is-show {
  transition: opacity 2s;
  opacity: 0.9;
  visibility: visible;
}

/*!
page > common
------------------------------
*/
.fixed-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .fixed-btn {
    display: block;
    width: calc(100% + clamp(0px, 0.53vw, 2px));
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-fixed-btn);
    transition: opacity 2s;
  }
}
/* ------------------------- */
.bottom-txt {
  font-size: clamp(0px, 1.4vw, 16px);
  text-align: right;
  margin: 0 2.5em 0.5em 0;
}

@media screen and (max-width: 767px) {
  .bottom-txt {
    font-size: clamp(0px, 2.7dvw, 20px);
    margin-right: 1em;
  }
}
/* ------------------------- */
.btn-wrap {
  background-color: #fff;
  display: inline-block;
  -webkit-clip-path: polygon(0 0, 99% 0, 100% 8%, 100% 100%, 1% 100%, 0 88%);
          clip-path: polygon(0 0, 99% 0, 100% 8%, 100% 100%, 1% 100%, 0 88%);
}

.btn {
  width: clamp(0px, 41.5vw, 507px);
  display: block;
  margin: 0 auto;
  transition: all 1s;
  position: relative;
}

@media screen and (max-width: 767px) {
  .btn {
    width: clamp(0px, 90.7dvw, 680px);
  }

  .btn svg {
    width: 100%;
  }
}
/* ------------------------- */
.btn-2 {
  font-size: clamp(0px, 1.6vw, 19px);
  font-family: var(--font-zen-maru);
  font-weight: bold;
  color: var(--color-red);
  letter-spacing: -0.05em;
  line-height: 1.5;
  border: 2px solid var(--color-red);
  display: inline-block;
  background-color: #fff;
  padding: 0.5em 2.9em 0.5em 1em;
  position: relative;
}

.btn-2::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: clamp(0px, 1vw, 12px) 0 clamp(0px, 1vw, 12px) clamp(0px, 1.9vw, 22px);
  border-color: transparent transparent transparent var(--color-black);
  position: absolute;
  top: 0;
  right: clamp(0px, 0.6vw, 7px);
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .btn-2 {
    width: clamp(0px, 89.4dvw, 670px);
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: clamp(0px, 4.4dvw, 33px);
  }

  .btn-2::before {
    border-width: clamp(0px, 2.7dvw, 20px) 0 clamp(0px, 2.7dvw, 20px) clamp(0px, 4.3dvw, 32px);
  }
}
/* ------------------------- */
.btn-3 {
  width: clamp(0px, 35.7vw, 436px);
  aspect-ratio: 436/78;
  display: block;
  background-color: var(--color-red);
  border: 2px solid var(--color-red);
  padding: clamp(0px, 0.9vw, 10px) clamp(0px, 2.5vw, 30px);
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.btn-3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: clamp(0px, 1vw, 12px) 0 clamp(0px, 1vw, 12px) clamp(0px, 1.9vw, 22px);
  border-color: transparent transparent transparent var(--color-black);
  position: absolute;
  top: 0;
  right: clamp(0px, 0.3vw, 3px);
  bottom: 0;
  margin: auto;
}

.btn-3:hover {
  opacity: 1;
  background-color: #fff;
}

.btn-3:hover path {
  fill: var(--color-red);
}

@media screen and (max-width: 767px) {
  .btn-3 {
    width: clamp(0px, 89.4dvw, 670px);
  }

  .btn-3 svg {
    width: clamp(0px, 73.9dvw, 554px);
  }

  .btn-3::before {
    border-width: clamp(0px, 2.7dvw, 20px) 0 clamp(0px, 2.7dvw, 20px) clamp(0px, 4.3dvw, 32px);
  }
}
/* ------------------------- */
.box-wht {
  background-color: #fff;
  padding: clamp(0px, 1.3vw, 15px);
}

.box-wht-scroll {
  max-height: clamp(0px, 26.2vw, 320px);
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .box-wht {
    padding: clamp(0px, 4dvw, 30px) clamp(0px, 2dvw, 15px);
  }

  .box-wht-scroll {
    max-height: clamp(0px, 85.4dvw, 640px);
  }
}
/* ------------------------- */
.sns-txt {
  width: clamp(0px, 29vw, 354px);
  margin: 0 auto clamp(0px, 2.9vw, 35px);
}

.sns-list {
  display: flex;
  justify-content: center;
  gap: clamp(0px, 2.5vw, 30px);
}

.sns-list > li {
  width: clamp(0px, 4.1vw, 50px);
}

@media screen and (max-width: 767px) {
  .sns-txt {
    width: clamp(0px, 89.4dvw, 670px);
    margin: 0 auto clamp(0px, 7.4dvw, 55px);
  }

  .sns-list {
    gap: clamp(0px, 8dvw, 60px);
  }

  .sns-list > li {
    width: clamp(0px, 13.4dvw, 100px);
  }
}
/*!
page > list
------------------------------
*/
.list > li {
  font-size: clamp(0px, 1.4vw, 16px);
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
  font-feature-settings: "palt";
}

.list > li::before {
  content: "○";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .list > li {
    font-size: clamp(0px, 3.5dvw, 26px);
    line-height: 1.54;
  }
}
.list-2 > li {
  font-size: clamp(0px, 1.4vw, 16px);
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
  font-feature-settings: "palt";
}

.list-2 > li::before {
  content: "●";
  width: 1em;
  height: 1em;
  font-size: 0.5em;
  position: absolute;
  top: 0.75em;
  left: 1em;
}

.list > li > .list-2 {
  margin-left: -1.2em;
}

@media screen and (max-width: 767px) {
  .list-2 > li {
    font-size: clamp(0px, 3.5dvw, 26px);
    line-height: 1.54;
  }
}
.list-3 > li {
  font-size: clamp(0px, 1.4vw, 16px);
  line-height: 1.6;
  position: relative;
  padding-left: 0.8em;
  font-feature-settings: "palt";
}

.list-3 > li::before {
  content: "・";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .list-3 > li {
    font-size: clamp(0px, 3.5dvw, 26px);
    line-height: 1.54;
  }
}
.list-note > li {
  font-size: clamp(0px, 1.4vw, 16px);
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
  font-feature-settings: "palt";
}

.list-note > li::before {
  content: "※";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .list-note > li {
    font-size: clamp(0px, 3.5dvw, 26px);
    line-height: 1.54;
  }
}
/*!
page > mv
------------------------------
*/
.mv {
  background-color: var(--color-yellow);
  padding: clamp(0px, 3.7vw, 45px) 0 clamp(0px, 5.4vw, 65px);
}

.mv-ttl {
  width: clamp(0px, 64vw, 782px);
  margin: 0 auto clamp(0px, 2.5vw, 30px);
}

.mv-box {
  background-color: #fff7d8;
  border-radius: clamp(0px, 1.7vw, 20px);
  position: relative;
  margin-bottom: clamp(0px, 2.9vw, 35px);
}

.mv-date {
  width: clamp(0px, 39.7vw, 484px);
  position: absolute;
  top: clamp(-30px, -2.73vw, 0px);
  left: 50%;
  transform: translateX(-50%);
}

.mv-gift {
  display: flex;
  align-items: flex-end;
  gap: clamp(0px, 3.7vw, 45px);
}

.mv-btn {
  margin-top: clamp(0px, 5vw, 60px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mv {
    padding: clamp(0px, 4.7dvw, 35px) 0 clamp(0px, 13.4dvw, 100px);
  }

  .mv-ttl {
    width: clamp(0px, 93.9dvw, 704px);
    margin: 0 auto clamp(0px, 6.7dvw, 50px);
  }

  .mv-box {
    border-radius: clamp(0px, 2.7dvw, 20px);
    margin-bottom: clamp(0px, 6.7dvw, 50px);
    padding-top: clamp(0px, 8dvw, 60px);
  }

  .mv-date {
    width: clamp(0px, 84.6dvw, 634px);
    top: clamp(-38px, -5.07vw, 0px);
  }

  .mv-date img {
    width: 100%;
  }

  .mv-gift {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    flex-direction: column;
    align-items: normal;
    gap: clamp(0px, 12.7dvw, 95px);
  }

  .mv-btn {
    margin-top: clamp(0px, 8dvw, 60px);
  }

  .mv-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    transform: translateY(0.67vw);
  }
}
/*!
page > about
------------------------------
*/
.about {
  background-color: var(--color-light-yellow);
  padding: clamp(0px, 7.8vw, 95px) 0 clamp(0px, 4.1vw, 50px);
}

.about-inner {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

.about-ttl {
  width: clamp(0px, 48vw, 586px);
  margin: 0 auto clamp(0px, 2.9vw, 35px);
}

.about-txt {
  font-family: var(--font-zen-maru);
  font-size: clamp(0px, 2.2vw, 26px);
  line-height: 1.9;
  letter-spacing: -0.05em;
  margin-bottom: clamp(0px, 3.7vw, 45px);
}

.about-txt > span {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background: #fff;
}

.about-txt-2 {
  width: clamp(0px, 39.7vw, 485px);
  margin: 0 auto clamp(0px, 0.9vw, 10px);
}

.about-txt-3 {
  font-size: clamp(0px, 1.4vw, 16px);
  line-height: 1.625;
  text-align: center;
  margin-bottom: clamp(0px, 7.4vw, 90px);
}

@media screen and (max-width: 767px) {
  .about {
    padding: clamp(0px, 14.7dvw, 110px) 0 0;
  }

  .about-inner {
    max-width: 100%;
  }

  .about-ttl {
    width: 100vw;
    margin: 0 calc(50% - 50vw) clamp(0px, 13.4dvw, 100px);
  }

  .about-txt {
    font-size: clamp(0px, 4.7dvw, 35px);
    margin: 0 -0.4em clamp(0px, 8.7dvw, 65px);
  }

  .about .box-wht {
    font-size: clamp(0px, 3.5dvw, 26px);
  }

  .about-txt-2 {
    width: clamp(0px, 92dvw, 690px);
    margin: 0 clamp(-7px, -0.93vw, 0px) clamp(0px, 1.4dvw, 10px);
  }

  .about-txt-3 {
    font-size: clamp(0px, 3.5dvw, 26px);
    line-height: 1.54;
    text-align: left;
    margin-bottom: clamp(0px, 12dvw, 90px);
  }
}
/*!
page > about > desc
------------------------------
*/
.about .desc-ttl {
  font-size: clamp(0px, 1.7vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 1.5em 0 0.5em;
}

@media screen and (max-width: 767px) {
  .about .desc-ttl {
    font-size: clamp(0px, 4.3dvw, 32px);
  }
}
/*!
page > about > ex
------------------------------
*/
.about .ex {
  background-color: var(--color-yellow);
  background-image: url("../img/bg_stripe.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
  padding: clamp(0px, 4.1vw, 50px);
  border-radius: clamp(0px, 1.4vw, 16px);
  margin-top: clamp(0px, 6.6vw, 80px);
}

.about .ex-ttl {
  width: clamp(0px, 60.9vw, 744px);
  margin: 0 auto clamp(0px, 1.3vw, 15px);
}

.about .ex-img {
  width: 95.5%;
  margin: 0 auto;
}

.about .ex-btn {
  margin-top: clamp(0px, 1.3vw, 15px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about .ex {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: clamp(0px, 9.4dvw, 70px) 0 clamp(0px, 13.4dvw, 100px);
    border-radius: 0;
    margin-top: clamp(0px, 13.4dvw, 100px);
    background-size: clamp(0px, 40.8dvw, 306px);
  }

  .about .ex-ttl {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .about .ex-img {
    width: 90%;
  }

  .about .ex-btn {
    margin-top: clamp(0px, 2.7dvw, 20px);
  }
}
/*!
page > info
------------------------------
*/
.info {
  padding: clamp(0px, 4.1vw, 50px) 0 clamp(0px, 9.9vw, 120px);
}

.info-logo {
  width: clamp(0px, 20.5vw, 250px);
  margin: 0 auto clamp(0px, 6.6vw, 80px);
  position: relative;
}

.info-logo-txt {
  font-size: clamp(0px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  width: clamp(0px, 5vw, 60px);
  aspect-ratio: 60/30;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: calc(100% + clamp(0px, 3.7vw, 45px));
  transform: translateY(-50%);
}

.info-logo-txt > span {
  transform: translateY(-0.05em);
}

@media screen and (max-width: 767px) {
  .info {
    padding: clamp(0px, 6.7dvw, 50px) 0 clamp(0px, 14.7dvw, 110px);
  }

  .info-logo {
    width: clamp(0px, 44.3dvw, 332px);
    margin: 0 auto clamp(0px, 10.7dvw, 80px);
  }

  .info-logo-txt {
    font-size: clamp(0px, 3.5dvw, 26px);
    width: clamp(0px, 10.7dvw, 80px);
    top: auto;
    right: auto;
    transform: none;
    position: relative;
    margin: 0 auto clamp(0px, 4.7dvw, 35px);
  }

  .info-logo-txt > span {
    transform: translateY(-0.01em);
  }
}
/*!
page > sustaina
------------------------------
*/
.sustaina {
  background: linear-gradient(0deg, #ffffff 0%, #bae2f8 100%);
  padding: clamp(0px, 8.2vw, 100px) 0 clamp(0px, 11.5vw, 140px);
  position: relative;
}

.sustaina .l-container {
  position: relative;
  z-index: 0;
}

.sustaina::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/bg_sustaina.png");
  background-repeat: no-repeat;
  background-position: top clamp(0px, 10.7dvw, 80px) center;
  background-size: clamp(0px, 111.8vw, 1366px) auto;
  pointer-events: none;
}

.sustaina-ttl {
  width: clamp(0px, 50.1vw, 612px);
  margin: 0 auto clamp(0px, 2.1vw, 25px);
}

.sustaina-txt {
  font-family: var(--font-zen-maru);
  font-size: clamp(0px, 2vw, 24px);
  line-height: 1.75;
  letter-spacing: -0.05em;
}

.sustaina-txt .color-1,
.sustaina-txt .color-2,
.sustaina-txt .color-3 {
  color: #fff;
  line-height: 1.3;
}

.sustaina-txt .color-1 {
  background-color: var(--color-pink);
}

.sustaina-txt .color-2 {
  background-color: var(--color-orange);
}

.sustaina-txt .color-3 {
  background-color: var(--color-green);
}

.sustaina-txt .color-col {
  display: inline-flex;
  gap: clamp(0px, 0.5vw, 5px);
}

.sustaina-col2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0px, 2.5vw, 30px);
}

.sustaina-col2-l {
  width: 595px;
  max-width: 54%;
}

.sustaina-col2-r {
  width: 454px;
  max-width: 41.3%;
}

.sustaina-img {
  width: 100%;
}

.sustaina-list {
  font-family: var(--font-zen-maru);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0px, 0.9vw, 10px);
}

.sustaina-list > li {
  border: 3px solid currentColor;
  border-radius: clamp(0px, 0.9vw, 10px);
  padding: clamp(0px, 0.9vw, 10px) clamp(0px, 0.6vw, 7px);
  background-color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  justify-content: center;
}

.sustaina-list > li.color-1 {
  border-color: var(--color-pink);
}

.sustaina-list > li.color-2 {
  border-color: var(--color-orange);
}

.sustaina-list > li.color-3 {
  border-color: var(--color-green);
}

.sustaina-list-ttl {
  font-size: clamp(0px, 2.1vw, 25px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5em;
}

.sustaina-list > li.color-1 .sustaina-list-ttl {
  color: var(--color-pink);
}

.sustaina-list > li.color-2 .sustaina-list-ttl {
  color: var(--color-orange);
}

.sustaina-list > li.color-3 .sustaina-list-ttl {
  color: var(--color-green);
}

.sustaina-list-order {
  align-self: center;
}

.sustaina-list-order > li {
  font-size: clamp(0px, 1.7vw, 20px);
  line-height: 1.56;
  display: flex;
  align-items: flex-start;
  gap: clamp(0px, 0.3vw, 3px);
}

.sustaina-list > li .num {
  color: #fff;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-indent: 0;
}

.sustaina-list > li.color-1 .num {
  background-color: var(--color-pink);
}

.sustaina-list > li.color-2 .num {
  background-color: var(--color-orange);
}

.sustaina-list > li.color-3 .num {
  background-color: var(--color-green);
}

.sustaina-list > li .num > span {
  transform: translateY(-0.05em);
  font-size: 0.9em;
}

.sustaina-list > li .txt {
  transform: translateY(-0.2em);
}

.sustaina-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: clamp(0px, 4.1vw, 50px);
}

@media screen and (max-width: 767px) {
  .sustaina {
    padding: clamp(0px, 10.7dvw, 80px) 0 clamp(0px, 27.4dvw, 205px);
  }

  .sustaina::before {
    background-image: url("../img/bg_sustaina_sp.png");
    background-position: top center;
    background-size: 100% auto;
  }

  .sustaina-ttl {
    width: clamp(0px, 81.6dvw, 612px);
    margin: 0 auto clamp(0px, 10.7dvw, 80px);
  }

  .sustaina-txt {
    font-size: clamp(0px, 4.6dvw, 34px);
    line-height: 1.86;
    margin: 0 -0.5em;
  }

  .sustaina-txt .color-col {
    gap: clamp(0px, 1.4dvw, 10px);
  }

  .sustaina-col2 {
    flex-direction: column;
    row-gap: clamp(0px, 6.7dvw, 50px);
    margin-bottom: clamp(0px, 4dvw, 30px);
  }

  .sustaina-col2-l {
    width: 100%;
    max-width: 100%;
  }

  .sustaina-col2-r {
    width: 100%;
    max-width: 100%;
  }

  .sustaina-list {
    grid-template-columns: 1fr;
    gap: clamp(0px, 2.7dvw, 20px);
  }

  .sustaina-list > li {
    justify-content: normal;
    border-radius: clamp(0px, 2.7dvw, 20px);
    padding: clamp(0px, 2.7dvw, 20px) clamp(0px, 4dvw, 30px);
  }

  .sustaina-list-ttl {
    font-size: clamp(0px, 6.3dvw, 47px);
  }

  .sustaina-list-order > li {
    font-size: clamp(0px, 4.7dvw, 35px);
    gap: clamp(0px, 1.1dvw, 8px);
  }

  .sustaina-btn {
    margin-top: clamp(0px, 13.4dvw, 100px);
  }
}
/*!
page > project
------------------------------
*/
.project {
  background-color: var(--color-light-green);
  position: relative;
}

.project::after {
  content: "";
  width: clamp(0px, 90.1vw, 1100px);
  height: auto;
  aspect-ratio: 1100/300;
  background-image: url("../img/bg_project.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: clamp(-245px, -20vw, 0px);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.project-inner {
  padding: clamp(0px, 8.2vw, 100px) 0 clamp(0px, 9.1vw, 110px);
  position: relative;
}

.project-inner::before {
  content: "";
  width: clamp(0px, 8.7vw, 106px);
  height: auto;
  aspect-ratio: 106/80;
  background-image: url("../img/img_foot.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: clamp(0px, 5.4vw, 65px);
  right: clamp(0px, 0.7vw, 8px);
  z-index: 1;
}

.project-inner::after {
  content: "";
  width: clamp(0px, 20.3vw, 248px);
  height: auto;
  aspect-ratio: 248/182;
  background-image: url("../img/img_foot_02.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: clamp(0px, 0.9vw, 10px);
  left: 0;
}

.project-box {
  background-color: #fff;
  padding: clamp(0px, 6.6vw, 80px) clamp(0px, 4.1vw, 50px) clamp(0px, 4.1vw, 50px);
  border-radius: clamp(0px, 2vw, 24px);
}

.project-ttl {
  width: clamp(0px, 43.4vw, 530px);
  margin: 0 auto clamp(0px, 3.3vw, 40px);
}

.project-lead {
  width: clamp(0px, 53.2vw, 650px);
  margin: 0 auto clamp(0px, 1.7vw, 20px);
}

.project-txt {
  font-family: var(--font-zen-maru);
  font-size: clamp(0px, 2vw, 24px);
  color: var(--color-red);
  line-height: 1.75;
  text-align: center;
  margin-bottom: clamp(0px, 3.3vw, 40px);
}

.project-img {
  width: clamp(0px, 59.8vw, 730px);
  margin: 0 auto;
}

.project-btn {
  margin-top: clamp(0px, 1.7vw, 20px);
}

.project-icon {
  display: none;
}

@media screen and (max-width: 767px) {
  .project .l-container {
    width: 93.3%;
  }

  .project::after {
    width: 97.6%;
    top: clamp(-170px, -22.7vw, 0px);
    left: clamp(0px, 0.4dvw, 3px);
    transform: none;
  }

  .project-inner {
    padding: clamp(0px, 8dvw, 60px) 0 clamp(0px, 13.4dvw, 100px);
  }

  .project-inner::before {
    width: clamp(0px, 20.3dvw, 152px);
    aspect-ratio: 152/102;
    background-image: url("../img/img_foot_sp.svg");
    top: clamp(0px, 7.4dvw, 55px);
    right: 0;
  }

  .project-inner::after {
    width: clamp(0px, 24dvw, 180px);
    aspect-ratio: 180/116;
    background-image: url("../img/img_foot_02_sp.svg");
    bottom: clamp(0px, 3.4dvw, 25px);
    left: 0;
  }

  .project-box {
    padding: clamp(0px, 10.7dvw, 80px) clamp(0px, 2dvw, 15px) clamp(0px, 9.4dvw, 70px);
    position: relative;
  }

  .project-ttl {
    width: clamp(0px, 70.7dvw, 530px);
    margin-top: 0 auto clamp(0px, 4dvw, 30px);
  }

  .project-lead {
    width: clamp(0px, 86.7dvw, 650px);
    margin: 0 auto clamp(0px, 4dvw, 30px);
  }

  .project-txt {
    font-size: clamp(0px, 4.6dvw, 34px);
  }

  .project-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw) -10.7vw;
    overflow: hidden;
  }

  .project-img img {
    width: 110.6%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .project-icon {
    display: flex;
    align-items: center;
    gap: clamp(0px, 0.8dvw, 6px);
    position: absolute;
    top: -5.6vw;
    left: clamp(0px, 2dvw, 15px);
  }

  .project-icon > li {
    width: clamp(0px, 16dvw, 120px);
  }
}
/*!
page > group
------------------------------
*/
.group {
  padding: clamp(0px, 5.4vw, 65px) 0 clamp(0px, 2.9vw, 35px);
}

.group-col2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 1.3vw, 15px);
  margin-bottom: clamp(0px, 4.1vw, 50px);
}

.group-col2-l {
  width: clamp(0px, 7.9vw, 96px);
}

.group-txt {
  font-family: var(--font-zen-maru);
  font-size: clamp(0px, 2.5vw, 30px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.group-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0px, 4.1vw, 50px) clamp(0px, 0.9vw, 10px);
  margin-bottom: clamp(0px, 9.1vw, 110px);
}

.group-list > li {
  text-align: center;
  max-height: 140px;
}

.group-list > li .logo {
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.group-list > li:nth-child(6) .logo,
.group-list > li:nth-child(7) .logo,
.group-list > li:nth-child(8) .logo,
.group-list > li:nth-child(9) .logo,
.group-list > li:nth-child(10) .logo {
  height: 115px;
}

.group-list > li.nichiikids .group-list-txt {
  width: 90%;
  display: block;
  margin-left: auto;
}

.group-list-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.group-list-txt {
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  text-decoration: underline;
  margin-top: auto;
}

.group-list-link .logo {
  display: block;
}

.group-list > li.nichiikids .logo {
  width: 140px;
  margin: 0 auto;
  transform: translate(10px, 4px);
}

.group-list > li.nichiikids .group-list-link {
  width: 226px;
  position: relative;
}

.group-list > li.nichiikids .group-list-link::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 226/165;
  background-image: url("../img/bg_nichiikids.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -6px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .group {
    padding: clamp(0px, 9.4dvw, 70px) 0 19.4vw;
  }

  .group .l-container {
    width: 94%;
  }

  .group-col2 {
    gap: clamp(0px, 2dvw, 15px);
    margin-bottom: clamp(0px, 13.4dvw, 100px);
  }

  .group-col2-l {
    width: clamp(0px, 16dvw, 120px);
  }

  .group-txt {
    font-size: clamp(0px, 4.6dvw, 34px);
  }

  .group-logo-wrap {
    width: 100%;
  }

  .group-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0px, 5.4dvw, 40px) clamp(0px, 1.4dvw, 10px);
  }

  .group-list > li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }

  .group-list > li .logo {
    height: 100%;
  }

  .group-list > li:nth-child(6) .logo,
.group-list > li:nth-child(7) .logo,
.group-list > li:nth-child(8) .logo,
.group-list > li:nth-child(9) .logo,
.group-list > li:nth-child(10) .logo {
    height: 100%;
  }

  .group-list > li.nissay-info-tech .logo {
    overflow: hidden;
  }

  .group-list > li.taiju-life .logo img {
    width: clamp(0px, 42.7dvw, 320px);
  }

  .group-list > li.nw-life .logo img {
    width: clamp(0px, 47.4dvw, 355px);
  }

  .group-list > li.hanasaku-life .logo img {
    width: clamp(0px, 44.3dvw, 332px);
  }

  .group-list > li.nissay-plus .logo img {
    width: clamp(0px, 37.8dvw, 283px);
  }

  .group-list > li.nissay-info-tech .logo img {
    width: 110%;
    max-width: none;
    transform: translateY(-1.33vw);
  }

  .group-list > li.nichiigakkan .logo img {
    width: clamp(0px, 36dvw, 270px);
  }

  .group-list > li.nichiikids .logo {
    width: clamp(0px, 23.1dvw, 173px);
    transform: translate(10px, 4px);
  }

  .group-list-txt {
    font-size: clamp(0px, 3dvw, 22px);
  }

  .group-list > li.nichiikids .group-list-link {
    width: clamp(0px, 50.2dvw, 376px);
    left: -4vw;
  }

  .group-list > li.nichiikids .group-list-link::before {
    aspect-ratio: 376/206;
    background-image: url("../img/bg_nichiikids_sp.png");
    top: -0.53vw;
    left: 0;
  }
}
/*!
print
------------------------------
*/
@page {
  size: A4 portrait;
  margin: 0;
}
@media print {
  * {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  html,
body {
    width: 1200px;
    height: auto;
    -webkit-print-color-adjust: exact;
    transform: scale(0.95);
    transform-origin: center top;
  }

  header {
    position: relative !important;
  }

  main {
    padding-top: 0 !important;
  }
}