@charset "UTF-8";

/* =========================================================
  common (環境定義)
========================================================= */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --baseColor: #f9f7ed;
  --accentColor: #d8a500;
  --selectionColor: 216 165 0;
  --subColor: ;
  --txtprimaryColor: #64656c;
  --txtboldColor: #242426;
}

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background: #fff;
  background: var(--baseColor) url(../img/bg.png) repeat center;
  background-blend-mode: luminosity;
  color: var(--txtprimaryColor);
  font: 1.4rem / 1.8 'Shippori Mincho', "Helvetica Neue",Arial,"Noto Sans JP", '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 400;
  letter-spacing: .2em;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
  -webkit-font-smoothing: antialiased;
}

em {
  font-weight: bold;
  font-style: inherit;
}

a {
  transition: all ease .1s;
  outline : none;
}

a:hover {
  color: var(--accentColor);
  text-decoration: none;
}

::selection {
  background-color: rgba(var(--selectionColor) / 0.3);
}

/* =========================================================
  layout
========================================================= */

/* primary layout
------------------------------------ */

#wrapper {
  overflow: hidden;
  position: relative;
}

.l-container {
  position: relative;
  background: #fff;
}

h2 {
  font-size: clamp(2.6rem, 3.8vw, 4.6rem);
  color: #2d3340;
  font-weight: 500;
  letter-spacing: .18em;
}

.c-headWhite {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 0 1em;
  text-align: center;
  color: #fff;
}

.c-headWhite span {
  font-size: 1.8rem;
  color: #94959B;
  letter-spacing: .3em;
}

.c-headBlack {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 0 1em;
  color: #242426;
  font-weight: 600;
  writing-mode: vertical-rl;
}

.c-headBlack span {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  color: #94959B;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

h2 em {
  color: #f3717e;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
}

/* header
------------------------------------ */

.l-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2.8em 1.6em;
  z-index: 1;
}

.c-primaryLogo {
  flex: 0 0 200px;
}

.c-primaryLogo a {
  display: inline-block;
}

.c-primaryLogo img {
  width: 180px;
}

.c-globalNavi {
  flex: 1 0 auto;
}

.c-globalNavi_list {
  display: flex;
  justify-content: flex-end;
  gap: 0 3em;
  font-size: clamp(1.3rem, 1.4vw, 1.8rem);
  font-weight: 600;
}

.c-snsNavi {
  display: flex;
  justify-content: flex-end;
  flex: 25% 0 0;
  gap: 0 1em;
}

@media screen and (max-width: 830px) {
  .c-globalNavi {
    display: none;
  }
  .c-snsNavi {
    flex: 1 0 auto;
  }
  .c-primaryLogo img {
    width: 150px;
  }
}

@media screen and (max-width: 350px) {
  .c-primaryLogo {
    flex: 0 0 184px;
  }
  .c-primaryLogo img {
    width: 120px;
  }
  .m-iconTwitter,
  .m-iconYoutube {
    width: 40px;
    height: 40px;
  }
}


/********** keyvisual **********/

.s-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 56vw, 80vw);
}

.m-heroCatch {
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 1;
  font-size: clamp(3rem, 6vw, 8rem);
  line-height: clamp(4rem, 8vw, 11rem);
}

.m-heroStage {
  position: absolute;
  right: -10px;
  width: 80%;
}

.m-heroStage img {
  width: 100%;
}

/* kago_walkanim */
.c-kagoAnim_wrapper {
  display: block;
  position: absolute;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: 1;
  top: 10%;
  right: 13%;
}

.m-kagoAnim_pic {
  width: 26vw;
  height: 34vw;
  background-image: url(../img/illust_kago.png);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  mix-blend-mode: overlay;
}

.m-kagoAnim_pic.is-animWalk {
  animation-name: upDown;
  animation-iteration-count: 34;
  animation-duration: .3s;
  animation-direction: alternate;
  transition-property: transform;
}

.c-kagoAnim_wrapper[data-order="is-walkLeft"] {
  animation-name: GoLeft;
}

@keyframes GoLeft {
  0% {
    right: -20%;
  }
  100% {
    right: 10%;
  }
}

@keyframes upDown {
  0% {
    top: 0;
  }
  100% {
    top: 12px;
  }
}

.c-news {
  position: absolute;
  left: 5%;
  top: 37vw;
  width: 80%;
  max-width: 700px;
  padding: 2em;
  background: #fff;
  border-left: 1px solid #c3c2bf;
}

.m-newsTitle {
  margin: 0 0 0.6em;
  padding: 0 0 0 0.6em;
  text-align: left;
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  font-weight: 600;
  border-left: 6px solid #64656c;
}

.c-newsHeadline {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: .8em 0;
  font-size: 1.5rem;
}

.c-newsHeadline dt {
  flex: 0 0 140px;
}

.c-newsHeadline dd {
  width: calc(100% - 140px - 2em);
}

.c-newsHeadline dd a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 600px) {
  .c-newsHeadline {
    font-size: 1.2rem;
  }
  .c-newsHeadline dt {
    flex: 0 0 120px;
  }
  .c-newsHeadline dd {
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 570px) {
  .demo_wrap {
    top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .c-news {
    width: 90%;
    padding: 1.4em;
    top: 40vw;
  }
}

/* intro
------------------------------------ */

.s-intro {
  position: relative;
  height: clamp(400px, 60vw, 70vw);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-intro::after {
  content: " ";
  position: absolute;
  top: 0px;
  right: -30%;
  width: 90%;
  height: 90%;
  background: url(../img/symbolmark_kagome.png) no-repeat center;
  background-size: contain;
  opacity: .6;
}

.c-introOrigin {
  position: absolute;
  display: flex;
  align-items: flex-start;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  writing-mode: vertical-rl;
  gap: 1em 0;
  width: 100%;
  z-index: 1;
}

.m-introOrigin_head {
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  line-height: 2.6;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.m-introOrigin_body {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 2.6;
  letter-spacing: 0.5em;
}

.u-qMark_up,
.u-qMark_bottom {
  writing-mode: horizontal-tb;
  line-height: 1;
}

.u-qMark_up {
  vertical-align: super;
}

.u-qMark_bottom {
  vertical-align: baseline;
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}


/* division
------------------------------------ */

.s-division {
  padding: 12em 0;
  background: #242426;
}

.c-divisionBox {
  display: flex;
  width: 80%;
  max-width: 1240px;
  margin: 0px auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6em 0;
}

/* card_anim */
.c-cardContainer {
  position: relative;
  width: calc(100% / 3);
  aspect-ratio: 3 / 4;
  perspective: 1000px;
}

.active {
  transform: translateZ(0px) rotateY(180deg) !important;
}

.active::after {
  display: none;
}

.c-cardItem {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: translateZ(-60px);
  -moz-backface-visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-cardItem::after {
  content: " ";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
}

.c-cardItem:hover {
  transform: translateZ(0px);
}

.c-cardItem:hover::after {
  opacity: 1;
}

.c-cardItem.u-cardDisabled {
  pointer-events: none
}

.c-cardItem .c-cardItem_side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}

.c-cardItem .m-cardFront {
  z-index: 2;
}

.c-cardItem .m-cardBack {
  transform: rotateY(180deg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.c-cardItem .c-divisionInfo {
  padding: 1.4em 10px;
  color: #fff;
}

.m-cardFront .c-divisionInfo p {
  font-size: 1.6rem;
}

.u-infoPreview {
  text-align: center;
}

.m-cardBack .c-divisionInfo h3 {
  padding: 0 0 .6em;
  font-size: clamp(2.4rem, 2.8vw, 3.4rem);
  line-height: 1.3;
}

.m-divisionInfo_p {
  position: relative;
  margin: 0 0 1.2em;
  padding: 1em;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
}

.m-divisionInfo_p::after, .m-divisionInfo_p::before {
  position: absolute;
  content: " ";
  display: block;
  height: 0.92em;
  width: 1.42em;
}

.m-divisionInfo_p::before {
  border-image-slice: 2 0 0 2;
  border-left: 1px solid #ababab;
  border-top: 1px solid #ababab;
  left: 0;
  top: 0;
}

.m-divisionInfo_p::after {
  border-bottom: 1px solid;
  border-image-slice: 0 2 2 0;
  border-right: 1px solid #ababab;
  bottom: 0;
  right: 0;
}

.m-cardFront .c-divisionBadge {
  width: 100%;
  height: clamp(240px, 30vw, 466px);
  max-width: 324px;
  max-height: 373px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}

.m-cardFront .m-badgeImg_01 {
  background-image: url(../img/badge_division01.png);
}

.m-cardFront .m-badgeImg_02 {
  background-image: url(../img/badge_division02.png);
}

.m-cardFront .m-badgeImg_03 {
  background-image: url(../img/badge_division03.png);
}

.m-cardFront .m-badgeImg_04 {
  background-image: url(../img/badge_division_disabled.png);
}

.m-cardBack {
  position: relative;
}

.m-cardBack .reviews {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.m-cardBack .reviews p {
  color: #c4c4c4;
  font-weight: 300;
  margin: 1px 0 0 6px;
  transition: 0.3s ease-in-out;
}

.m-cardBack .reviews:hover p {
  color: #555;
}

.m-cardBack ul {
  padding-left: 20px;
}

.m-cardBack li {
  line-height: 22px;
  margin: 0 0 10px;
  list-style: disc outside;
}

.m-divisionLof {
  position: relative;
  margin: 0 0 0.2em;
  padding: .4em 0 .4em 1.6em;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.3;
}

.m-divisionLof::before,
.m-divisionLof::after {
  display: inline-block;
  position: absolute;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #d8a500;
  content: " ";
}

.m-divisionLof::before {
  top: calc(50% - 6px);
  left: 0;
}

.m-divisionLof::after {
  top: calc(50% + 5px);
  left: 6px;
}

.c-divisionLof_list {
  display: flex;
  flex-direction: column;
  padding-left: 0!important;
  width: 70%;
}

.m-divisionLof_sticky {
  display: inline-block;
  position: relative;
  padding: .5em 1.3em .5em 1em;
  background-color: #6b6b6b;
  color: #fff;
}

.m-divisionLof_sticky::before {
  position: absolute;
  bottom: -2px;
  right: 8px;
  z-index: -1;
  transform: rotate(5deg);
  width: 70%;
  height: 50%;
  background-color: #000;
  content: "";
  filter: blur(4px);
}

@media screen and (min-width: 1410px) {
  .c-cardContainer {
    aspect-ratio: 3 / 3;
  }
}

@media screen and (max-width: 960px) {
  .c-divisionBox {
    flex-direction: column;
    gap: 0;
  }
  .c-cardContainer {
    width: 70%;
    margin: 0px auto;
    aspect-ratio: 3 / 3;
  }
  .m-cardFront .c-divisionBadge {
    height: inherit;
  }
  .u-hideSwitch {
    display: none;
  }
  .c-divisionLof_list {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .c-divisionBox {
    flex-direction: column;
    gap: 5em 0;
  }
  .m-cardFront .c-divisionInfo p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .c-cardContainer {
    width: 100%;
  }
  .c-divisionBox {
    gap: 3em 0;
  }
  .m-cardFront .c-divisionInfo p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .c-cardContainer {
    width: 85%;
  }
  .s-division {
    padding: 8em 0 6em;
  }
  .c-divisionBox {
    width: 100%;
    gap: 0;
  }
  .m-cardFront .c-divisionBadge {
    width: 60%;
    height: 70%;
  }
  .c-cardItem .c-divisionInfo {
    padding: 1.4em 2em;
  }
}


/* work
------------------------------------ */

.s-work {
  position: relative;
  width: 90%;
  max-width: 1136px;
  margin: 0px auto;
  padding: 12em 0;
}

.s-work::before {
  content: " ";
  position: absolute;
  width: 196px;
  height: 116px;
  left: 0;
  background-image: url(../img/img_cloud_l.png);
  animation : infinity-scroll-right 30s infinite linear both;
}

.s-work h2 {
  float: right;
  right: 30%;
}

.c-workBox {
  clear: both;
}

.c-workBox_item {
  display: flex;
}

.m-workItem_l {
  flex-direction: row-reverse;
}

.m-workItem_r {
  text-align: right;
}

.c-workBox_itemTxt {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 50%;
  padding: 0 1.8em;
}

.c-workBox_itemTxt::before {
  position: absolute;
  top: 20px;
  left: -130px;
  font-size: clamp(20rem, 32vw, 40rem);
  color: #fff;
  line-height: 1;
  opacity: .4;
  z-index: -1;
}

.u-workBox_num01::before {
  content: "壱";
}

.u-workBox_num02::before {
  content: "弐";
  right: -100px;
}

.u-workBox_num03::before {
  content: "参";
}

.c-workBox_itemTxt h3 {
  margin: 0 0 0.4em;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  font-weight: 600;
}

.m-c-workBox_itemDescription {
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
}

.c-workBox_itemPic {
  display: flex;
  align-items: center;
  width: 35%;
  background: #DFC193;
  aspect-ratio: 3 / 3.6;
}

.c-workBox_itemPic img {
  width: 100%;
  max-width: 400px;
}

/* modal */
.c-modalWrap input {
  display: none;
}

.m-modalLabel_open,
.m-modalLabel_close {
  cursor: pointer;
}

.m-modalLabel_open {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  padding: 1.6em 1em 2.3em;
  text-align: center;
  color: var(--txtprimaryColor);
  font-weight: 600;
  border: 1px solid var(--txtprimaryColor);
  border-radius: 50%;
}

.m-modalLabel_open:hover {
  background-color: rgb(255 255 255 / 50%);
}

.m-modalLabel_open::after {
  position: absolute;
  top: 3.6em;
  right: 2.1em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2.2em;
  height: .5em;
  background-color: var(--txtprimaryColor);
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
  transition: transform .3s;
}

.m-modalLabel_open:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}

.u-workBox_num02 .m-modalLabel_open::after {
  transform: scaleX(-1);
  right: 0;
}

.u-workBox_num02 .m-modalLabel_open:hover::after {
  transform: translateY(0) scaleX(-1.4);
}

.c-modalWindow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.m-modalInput_open:checked + label + input + .c-modalWindow {
  display: block;
  animation: u-modalAnim .3s;
}

.c-modalWindow_Wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 87%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}

.m-modalLabel_close {
  background-color: #777;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2.4%;
  z-index: 99999;
  font-size: 1.3em;
}

.c-modalWindow_content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.m-workItem_r .c-modalWindow_content {
  text-align: left;
}

.m-modalHead {
  margin: 0 0 1em;
  padding: 0 0 0.3em;
  border-bottom: 1px solid #ccc;
  font-size: 1.8rem;
  font-weight: 600;
}

.m-modalList {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 600;
}

.m-modalList li {
  margin: 0 0 1em;
}

.u-mgnBottom {
  margin: 0 0 2em;
}

.m-modalWindow_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes u-modalAnim {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .s-work {
    padding: 8em 0 3em;
  }
  .s-work::before {
    width: 30%;
    height: 100%;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .s-work h2 {
    float: inherit;
    right: inherit;
    left: 50%;
  }
  .c-workBox {
    width: 70%;
    margin: 0px auto;
  }
  .c-workBox_item {
    flex-direction: column;
    gap: 1em 0;
    margin: 0 0 5em;
  }
  .c-workBox_itemTxt,
  .c-workBox_itemPic {
    width: 100%;
  }
  .c-workBox_itemTxt {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }
  .c-workBox_itemTxt::before {
    top: -30px;
    left: -80px;
    font-size: 20rem;
  }
  .c-workBox_itemPic {
    aspect-ratio: inherit;
  }
  .c-workBox_itemPic img {
    width: 60%;
    max-width: inherit;
    margin: auto;
  }
  .m-workItem_r {
    text-align: left;
  }
  .c-modalWindow_content {
    padding: 30px 35px;
  }
}

@media screen and (max-width: 600px) {
  .m-modalLabel_open {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  .m-modalLabel_open {
    width: 60px;
    height: 60px;
    padding: 12px 0;
    font-size: 1.2rem;
  }
  .m-modalLabel_open::after {
    width: 1.8em;
    top: 3.2em;
    right: 1.7em;
  }
  .u-workBox_num02 .m-modalLabel_open::after {
      transform: translateY(-50%);
      right: 1.7em;
  }
  .u-workBox_num02 .m-modalLabel_open:hover::after {
    transform: translateY(-50%) scaleX(1.4);
  }
}

@media screen and (max-width: 480px) {
  .c-workBox {
    width: 90%;
  }
  .c-modalWindow_content {
    padding: 30px 20px;
  }
  .s-work h2 {
    top: -20px;
  }
}

/* about
------------------------------------ */

.s-about {
  position: relative;
  display: flex;
  padding: 14em 0;
  background: #fff;
}

.s-about::before {
  content: " ";
  position: absolute;
  top: 140px;
  right: 0;
  width: 30%;
  height: 100px;
  background-image: url(../img/img_wave.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  opacity: .6;
}

.s-about h2 {
  top: -2em;
  left: 5em;
}

.c-profileList {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  left: -2em;
  font-size: clamp(1.2rem, 1.9vw, 1.8rem);
  letter-spacing: .16em;
}

.c-profileList dt {
  width: 40%;
  padding: .8em 2em;
  text-align: right;
  color: #74757B;
  font-weight: 600;
}

.c-profileList dd {
  width: 60%;
  padding: .8em 2em;
  text-align: left;
  color: #242426;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .s-about {
    padding: 9em 0 5em;
  }
  .s-about h2 {
    left: 3em;
  }
  .s-about::before {
    top: 120px;
    right: -40px;
  }
}

@media screen and (max-width: 600px) {
  .s-about h2 {
    left: 2em;
  }
  .c-profileList dt,
  .c-profileList dd {
    padding: 0.8em 1em;
  }
}

@media screen and (max-width: 480px) {
  .s-about h2 {
    left: 1em;
  }
  .s-about::before {
    width: 43%;
    top: 60px;
  }
  .c-profileList {
    left: -1.2em;
  }
  .c-profileList dt {
    width: 30%;
  }
  .c-profileList dd {
    width: 70%;
  }
}

/* urge
------------------------------------ */

.s-urge {
  position: relative;
  padding: 12em 0;
}

.s-urge h2 {
  font-size: clamp(2.1rem, 3.2vw, 4rem);
  writing-mode: inherit;
  letter-spacing: .1em;
}

.c-urgeWrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0px auto;
}

.c-urgeWrap::before {
  content: " ";
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/img_corner_l.png) no-repeat;
  width: 20%;
  height: 20%;
  background-size: contain;
}

.c-urgeWrap::after {
  content: " ";
  position: absolute;
  bottom: -50px;
  right: 0;
  background: url(../img/img_corner_r.png) no-repeat 100% 100%;
  width: 20%;
  height: 20%;
  background-size: contain;
}

.m-urgeWrap_lead {
  margin: 0 0 1.8em;
  text-align: center;
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  line-height: 2.3;
}

.c-urgeButton_area {
  width: 90%;
  text-align: center;
}

.m-urgeButton {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  padding: 1em 0;
  font-size: clamp(1.3rem, 1.7vw, 2rem);
  font-weight: 600;
  background: none;
  color: var(--accentColor);
  border: 1px solid;
  border-radius: 60px;
  transition: background-color .25s;
}

.m-urgeButton:hover {
  background-color: var(--accentColor);
  border-color: transparent;
  color: #fff;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 600px) {
  .c-urgeWrap::before {
    width: 15%;
    height: 15%;
  }
  .c-urgeWrap::after {
    width: 15%;
    height: 15%;
  }
}

@media screen and (max-width: 480px) {
  .s-urge {
    padding: 8em 0;
  }
  .c-urgeWrap::before {
    width: 10%;
    height: 10%;
    top: -50px;
  }
  .c-urgeWrap::after {
    width: 10%;
    height: 10%;
    bottom: -60px;
  }
  .s-urge h2 {
    line-height: 1.5;
  }
  .m-urgeWrap_lead {
    line-height: 1.8;
  }
}

/* footer
------------------------------------ */

.l-footer {
  position: relative;
}

.s-footContent {
  padding: 1.4em 0;
  background: #3c414c;
}

.c-footContent_list {
  display: flex;
  justify-content: space-between;
  padding: 4em;
  background: #616267;
}

.c-footIcon_sns {
  display: flex;
  gap: 0 2em;
}

.c-footMeta {
  display: flex;
  flex-direction: column;
  gap: 1.2em 0;
  color: #fff;
}

.m-footLogo img {
  width: 80px;
}

.m-footMeta_company a:not(:last-child):after {
  content: "|";
  padding: 0 .6em;
  color: #fff;
}

.c-footMeta_copy {
  color: #bdbdbd;
  line-height: 2;
}

.c-footMeta_copy small {
  letter-spacing: .1em;
}

@media screen and (max-width: 768px) {
  .m-footLogo img {
    width: 24%;
  }
  .c-footMeta_copy {
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .m-footMeta_company {
    display: flex;
    flex-direction: column;
  }
  .c-footContent_list {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 2em 0;
  }
  .m-footMeta_company a:not(:last-child):after {
    content: none;
  }
  .c-footMeta_copy {
    padding: 0.8em 0 0;
    line-height: 1.4;
  }
  .m-footLogo img {
    width: 30%;
  }
}

/* policy
------------------------------------ */

#policy-wrapper .l-header {
  padding: 2em;
}

.s-policy {
  padding: 5em 0;
}

.s-policy .c-innerContent {
  width: 80%;
}

.s-policy h2 {
  margin: 0 0 1.4em;
  font-size: 3rem;
  line-height: 1.3;
}

.s-policy p {
  margin: 0 0 1.2em;
  line-height: 2;
}

.u-policyLink {
  color: var(--baseColor);
  text-decoration: underline;
  word-break: break-all;
}

.c-btnTop {
  margin: 4em 0 0;
  text-align: center;
}

/* =========================================================
  utility
========================================================= */

/* br
------------------------------------ */

.u-brLine_intro {
  display: none !important;
}

@media screen and (max-width: 480px) {
  .u-brLine_intro {
    display: block !important;
  }
}

/* button
------------------------------------ */

.m-iconTwitter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.m-iconTwitter path {
  fill: #c3c8cb;
}

.m-iconTwitter:hover path {
  fill: #1da1f2;
}

.m-iconYoutube {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.m-iconYoutube path {
  fill: #c3c8cb;
}

.m-iconYoutube:hover path {
  fill: #da1725;
}

@media screen and (max-width: 350px) {
  .m-iconTwitter,
  .m-iconYoutube {
    width: 40px;
    height: 40px;
  }
}

/* animation function
------------------------------------ */
.u-hidden {
  visibility: hidden;
}

.is-fadeinUp_kagome {
  animation-name: fadeinUp_kagome;
  animation-duration: 2.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.u-fadeinUp {
  animation: is-slideinUp 1s cubic-bezier(0.03, 0.16, 0.39, 0.99) both, is-fadeIn 1s cubic-bezier(0.03, 0.16, 0.39, 0.99) both;
  visibility: visible !important;
}

@keyframes is-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeinUp_kagome {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes is-slideinUp {
  from {
    transform: translateY(50px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-300%);
  }
  to {
    transform: translateX(800%);
  }
}

.is-fadeinTxt {
  display: block;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 300% 300%;
}

.is-fadeinTxt.is-slideinTxt_side {
  background-image: linear-gradient(to right, #64656c 30%, rgba(255, 255, 255, 0) 60%);
  background-position: left 100% center;
  transform: translate(-20px, 0);
  animation: toRight var(--duration, 2.1s) var(--ease) var(--delay, 0.3s) forwards;
}

@keyframes toRight {
  100% {
    transform: translate(0, 0);
    background-position: left 0% center;
  }
}

/*** blur ***/

.is-inviewBlur {
  opacity: 0;
  transition: transform 0.5s linear;
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.blur {
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}

@keyframes imageBlur {
  from {
    opacity: 0;
    filter: blur(15px);
  }

  to {
    opacity: 1;
    filter: blur(0px);
  }
}
