@charset "UTF-8";
/*----------------------------------
reset
----------------------------------*/
body {
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}
body *,
body :after,
body :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
body :after,
body :before {
  text-decoration: inherit;
  vertical-align: inherit;
}
body * {
  padding: 0;
  margin: 0;
}
body audio:not([controls]) {
  display: none;
  height: 0;
}
body hr {
  overflow: visible;
}
body article,
body aside,
body details,
body figcaption,
body figure,
body footer,
body header,
body main,
body menu,
body nav,
body section,
body summary {
  display: block;
}
body summary {
  display: list-item;
}
body small {
  font-size: 80%;
}
body [hidden],
body template {
  display: none;
}
body abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}
body li,
body ol {
  list-style: none;
}
body a {
  background-color: transparent;
  text-decoration: none;
  color: #000;
}
body a:active,
body a:hover {
  outline-width: 0;
  text-decoration: none;
}
body code,
body kbd,
body pre,
body samp {
  font-family: monospace, monospace;
}
body b,
body strong {
  font-weight: bolder;
}
body dfn {
  font-style: italic;
}
body mark {
  color: #000;
}
body sub,
body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
body sub {
  bottom: -0.25em;
}
body sup {
  top: -0.5em;
}
body [role=button],
body [type=button],
body [type=reset],
body [type=submit],
body button {
  cursor: pointer;
  background-color: transparent;
}
body [disabled] {
  cursor: default;
}
body [type=number] {
  width: auto;
}
body [type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
}
body [type=search]::-webkit-search-cancel-button,
body [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
body textarea {
  overflow: auto;
  resize: vertical;
}
body button,
body input,
body optgroup,
body select,
body textarea {
  font: inherit;
}
body optgroup {
  font-weight: 700;
}
body button {
  overflow: visible;
}
body [type=button]::-moz-focus-inner,
body [type=reset]::-moz-focus-inner,
body [type=submit]::-moz-focus-inner,
body button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}
body [type=button]::-moz-focus-inner,
body [type=reset]::-moz-focus-inner,
body [type=submit]::-moz-focus-inner,
body button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
body [type=reset],
body [type=submit],
body button,
body html [type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}
body button,
body select {
  text-transform: none;
}
body select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
body select::-ms-expand {
  display: none;
}
body select::-ms-value {
  color: currentColor;
}
body legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
body ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
body [type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
  outline-offset: -2px;
}
body img {
  border-style: none;
  image-rendering: auto;
}
body progress {
  vertical-align: baseline;
}
body svg:not(:root) {
  overflow: hidden;
}
body audio,
body canvas,
body progress,
body video {
  display: inline-block;
}
@media screen {
  body [hidden~=screen] {
    display: inherit;
  }
  body [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
body [aria-busy=true] {
  cursor: progress;
}
body [aria-controls] {
  cursor: pointer;
}
body [aria-disabled] {
  cursor: default;
}

html {
  font-size: 62.5%;
}

/*--------------------body--------------------*/
body {
  margin: 0;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  scroll-behavior: smooth;
  opacity: 0;
  -webkit-animation: fadeInAll 0.5s ease forwards;
          animation: fadeInAll 0.5s ease forwards;
}
@-webkit-keyframes fadeInAll {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAll {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body * {
  font-family: "Zen Kaku Gothic Antique", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", メイリオ, sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.7647058824;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  color: #505050;
}
@media (max-width: 767px) {
  body * {
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
}
body main {
  overflow: hidden;
}
body section {
  position: relative;
}
body .inner {
  max-width: 1260px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  body .inner {
    max-width: 600px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
body a,
body button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  body a:hover,
body button:hover {
    opacity: 0.5;
  }
}
body a,
body p {
  width: 100%;
}
body img {
  height: auto;
  vertical-align: middle;
}
body sup {
  font-size: 75%;
}
body sub {
  font-size: 75%;
}

/*--------------------utility--------------------*/
@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.c-box {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 90px 80px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .c-box {
    padding-right: 6.4285714286vw;
    padding-left: 6.4285714286vw;
  }
}
@media (max-width: 767px) {
  .c-box {
    border-radius: 10px;
    padding: 20px 20px 50px;
  }
}

.c-ttlwrap .ttl {
  text-align: center;
  position: relative;
}
.c-ttlwrap .ttl .ttl--01 {
  width: 435px;
  position: relative;
  z-index: 1;
  padding-top: 90px;
}
@media (max-width: 767px) {
  .c-ttlwrap .ttl .ttl--01 {
    width: 250px;
    padding-top: 50px;
  }
}
.c-ttlwrap .ttl .ttl--02 {
  width: 200px;
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% + 160px);
}
@media (min-width: 768px) and (max-width: 1000px) {
  .c-ttlwrap .ttl .ttl--02 {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .c-ttlwrap .ttl .ttl--02 {
    width: 80px;
    left: calc(50% + 85px);
  }
}
.c-ttlwrap .subttl {
  font-size: 3.3rem;
  letter-spacing: 0.05em;
  line-height: 1.5151515152;
  text-align: center;
  font-weight: bold;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .c-ttlwrap .subttl {
    font-size: 2.4rem;
    line-height: 1.5833333333;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/*--------------------c-deco--------------------*/
.c-deco {
  position: absolute;
}
@media (min-width: 768px) {
  .c-deco {
    width: 500px;
  }
}
@media (max-width: 767px) {
  .c-deco {
    width: 300px;
  }
}
.c-deco img {
  width: 100%;
}
.c-deco img.is-animating {
  -webkit-animation: jelly 0.8s linear 0s 1;
          animation: jelly 0.8s linear 0s 1;
}

@media (min-width: 768px) {
  .mainvisual .c-deco.deco--01 {
    top: -184px;
    left: calc(50% - 866px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--01 {
    top: -84px;
    left: calc(50% - 275px);
  }
}
@media (min-width: 768px) {
  .mainvisual .c-deco.deco--02 {
    top: -213px;
    left: calc(50% - 425px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--02 {
    top: -86px;
    left: 50%;
  }
}
@media (min-width: 768px) {
  .mainvisual .c-deco.deco--03 {
    top: -208px;
    left: calc(50% + 105px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--03 {
    top: 95px;
    left: calc(50% - 391px);
  }
}
@media (min-width: 768px) {
  .mainvisual .c-deco.deco--04 {
    top: 40px;
    left: calc(50% + 472px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--04 {
    top: 30px;
    left: calc(50% - 145px);
  }
}
@media (min-width: 768px) {
  .mainvisual .c-deco.deco--05 {
    top: 179px;
    left: calc(50% - 748px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--05 {
    top: 89px;
    left: calc(50% + 80px);
  }
}
@media (min-width: 768px) {
  .mainvisual .c-deco.deco--06 {
    top: 365px;
    left: calc(50% + 127px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--06 {
    top: 343px;
    left: calc(50% - 380px);
  }
}
@media (min-width: 768px) {
  .mainvisual .c-deco.deco--07 {
    top: 485px;
    left: calc(50% + 440px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--07 {
    top: 312px;
    left: calc(50% + 5px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--08 {
    top: 410px;
    left: calc(50% - 70px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--09 {
    top: 480px;
    left: calc(50% - 250px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--10 {
    top: 280px;
    right: calc(50% - 442px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--11 {
    top: 270px;
    left: calc(50% - 532px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--12 {
    top: 575px;
    left: calc(50% - 580px);
  }
}
@media (max-width: 767px) {
  .mainvisual .c-deco.deco--13 {
    top: 500px;
    right: calc(50% - 510px);
  }
}

@media (min-width: 768px) {
  .statement .c-deco.deco--01 {
    top: -150px;
    left: calc(50% - 904px);
  }
}
@media (max-width: 767px) {
  .statement .c-deco.deco--01 {
    top: -10px;
    left: calc(50% + 15px);
  }
}
@media (min-width: 768px) {
  .statement .c-deco.deco--02 {
    top: -130px;
    left: calc(50% - 35px);
  }
}
@media (max-width: 767px) {
  .statement .c-deco.deco--02 {
    top: 85px;
    left: calc(50% - 275px);
  }
}
@media (min-width: 768px) {
  .statement .c-deco.deco--03 {
    top: 120px;
    left: calc(50% - 536px);
  }
}
@media (max-width: 767px) {
  .statement .c-deco.deco--03 {
    top: 144px;
    left: calc(50% - 523px);
  }
}
@media (min-width: 768px) {
  .statement .c-deco.deco--04 {
    top: 400px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .statement .c-deco.deco--04 {
    top: 100px;
    right: calc(50% - 557px);
  }
}
@media (min-width: 768px) {
  .statement .c-deco.deco--05 {
    top: 135px;
    left: calc(50% + 315px);
  }
}

@media (min-width: 768px) {
  .contents01 .c-deco.deco--01 {
    top: -192px;
    left: calc(50% - 833px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--01 {
    top: -25px;
    left: -110px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--02 {
    top: -200px;
    left: calc(50% + 576px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--02 {
    top: -60px;
    right: -93px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--03 {
    top: 7.9411764706%;
    left: calc(50% + 313px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--03 {
    top: 13%;
    left: -132px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--04 {
    top: 13.5294117647%;
    left: calc(50% - 500px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--04 {
    top: 17.5%;
    right: -150px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--05 {
    top: 28.5294117647%;
    left: calc(50% - 935px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--05 {
    top: 27.3%;
    right: -52px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--06 {
    top: 45.5882352941%;
    left: calc(50% + 360px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--06 {
    top: 31.5%;
    left: -156px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--07 {
    bottom: 7.9411764706%;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--07 {
    top: 46.25%;
    right: -98px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--08 {
    bottom: 11.7647058824%;
    left: calc(50% + 467px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--08 {
    top: 52%;
    left: -102px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--09 {
    bottom: 0;
    left: calc(50% - 969px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--09 {
    top: 64.5%;
    right: -128px;
  }
}
@media (min-width: 768px) {
  .contents01 .c-deco.deco--10 {
    bottom: -220px;
    left: calc(50% - 322px);
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--10 {
    top: 69.5%;
    left: -135px;
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--11 {
    top: 82%;
    left: -106px;
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--12 {
    top: 82%;
    right: -115px;
  }
}
@media (max-width: 767px) {
  .contents01 .c-deco.deco--13 {
    bottom: -210px;
    right: -90px;
  }
}

@media (min-width: 768px) {
  .contents02 .c-deco.deco--01 {
    top: 25px;
    left: calc(50% - 822px);
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--01 {
    top: 20px;
    left: -43px;
  }
}
@media (min-width: 768px) {
  .contents02 .c-deco.deco--02 {
    top: -60px;
    left: calc(50% + 435px);
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--02 {
    top: 29.298245614%;
    left: -112px;
  }
}
@media (min-width: 768px) {
  .contents02 .c-deco.deco--03 {
    top: 285px;
    left: calc(50% + 500px);
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--03 {
    top: 26.3157894737%;
    right: -146px;
  }
}
@media (min-width: 768px) {
  .contents02 .c-deco.deco--04 {
    bottom: -80px;
    left: calc(50% - 838px);
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--04 {
    top: 45.6140350877%;
    right: -146px;
  }
}
@media (min-width: 768px) {
  .contents02 .c-deco.deco--05 {
    bottom: -105px;
    left: calc(50% + 345px);
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--05 {
    top: 50.8771929825%;
    left: calc(50% - 171px);
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--06 {
    top: 75.4385964912%;
    left: -124px;
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--07 {
    bottom: -185px;
    right: -20px;
  }
}
@media (max-width: 767px) {
  .contents02 .c-deco.deco--08 {
    bottom: -230px;
    right: -146px;
  }
}

@media (min-width: 768px) {
  .contents03 .c-deco.deco--01 {
    top: 70px;
    left: calc(50% - 835px);
  }
}
@media (max-width: 767px) {
  .contents03 .c-deco.deco--01 {
    top: 40px;
    left: -113px;
  }
}
@media (min-width: 768px) {
  .contents03 .c-deco.deco--02 {
    top: 231px;
    left: calc(50% + 400px);
  }
}
@media (max-width: 767px) {
  .contents03 .c-deco.deco--02 {
    top: 52.1276595745%;
    left: -115px;
  }
}
@media (min-width: 768px) {
  .contents03 .c-deco.deco--03 {
    top: 456px;
    left: calc(50% - 900px);
  }
}
@media (max-width: 767px) {
  .contents03 .c-deco.deco--03 {
    top: 41.4893617021%;
    right: -130px;
  }
}
@media (min-width: 768px) {
  .contents03 .c-deco.deco--04 {
    bottom: -320px;
    left: calc(50% - 600px);
  }
}
@media (max-width: 767px) {
  .contents03 .c-deco.deco--04 {
    top: 69.1489361702%;
    right: -190px;
  }
}
@media (min-width: 768px) {
  .contents03 .c-deco.deco--05 {
    bottom: -285px;
    left: calc(50% + 350px);
  }
}
@media (max-width: 767px) {
  .contents03 .c-deco.deco--05 {
    bottom: -200px;
    left: -128px;
  }
}

@media (min-width: 768px) {
  .sns .c-deco.deco--01 {
    bottom: -330px;
    left: calc(50% - 822px);
  }
}
@media (max-width: 767px) {
  .sns .c-deco.deco--01 {
    top: 4px;
    right: -160px;
  }
}
@media (min-width: 768px) {
  .sns .c-deco.deco--02 {
    top: 0;
    left: calc(50% + 115px);
  }
}
@media (max-width: 767px) {
  .sns .c-deco.deco--02 {
    bottom: -258px;
    left: -110px;
  }
}

/*--------------------animation--------------------*/
@-webkit-keyframes jelly {
  0%, 100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.97, 1.03);
  }
  50% {
    transform: scale(1.03, 0.97);
  }
  75% {
    transform: scale(0.99, 1.01);
  }
}
@keyframes jelly {
  0%, 100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.97, 1.03);
  }
  50% {
    transform: scale(1.03, 0.97);
  }
  75% {
    transform: scale(0.99, 1.01);
  }
}
.blur-in,
.scale-in,
.bounce-in {
  opacity: 0;
  position: relative;
}

#suge-zo_saibo {
  /*--------------------header--------------------*/
  /*--------------------footer--------------------*/
  /*--------------------main--------------------*/
}
#suge-zo_saibo .l-header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header {
    height: 64px;
    padding: 0 20px;
  }
}
#suge-zo_saibo .l-header .l-header__logo {
  position: relative;
  z-index: 101;
}
#suge-zo_saibo .l-header .l-header__logo a {
  display: block;
}
#suge-zo_saibo .l-header .l-header__logo a img {
  width: 145px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__logo a img {
    width: 85px;
  }
}
#suge-zo_saibo .l-header .l-header__hamburger {
  width: 54px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__hamburger {
    width: 42px;
    height: 24px;
  }
}
#suge-zo_saibo .l-header .l-header__hamburger span {
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 5px;
  background-color: #606060;
  position: relative;
  transition: all 0.3s cubic-bezier(0.83, 0, 0.17, 1);
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__hamburger span {
    width: 42px;
  }
}
#suge-zo_saibo .l-header .l-header__hamburger span::before, #suge-zo_saibo .l-header .l-header__hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 54px;
  height: 3px;
  background-color: #606060;
  transition: all 0.3s cubic-bezier(0.83, 0, 0.17, 1);
  border-radius: 5px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__hamburger span::before, #suge-zo_saibo .l-header .l-header__hamburger span::after {
    width: 42px;
  }
}
#suge-zo_saibo .l-header .l-header__hamburger span::before {
  top: -15px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__hamburger span::before {
    top: -10px;
  }
}
#suge-zo_saibo .l-header .l-header__hamburger span::after {
  top: 15px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__hamburger span::after {
    top: 10px;
  }
}
#suge-zo_saibo .l-header.is-active span {
  background-color: transparent;
}
#suge-zo_saibo .l-header.is-active span::before {
  transform: translateY(15px) rotate(30deg);
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header.is-active span::before {
    transform: translateY(10px) rotate(30deg);
  }
}
#suge-zo_saibo .l-header.is-active span::after {
  transform: translateY(-15px) rotate(-30deg);
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header.is-active span::after {
    transform: translateY(-10px) rotate(-30deg);
  }
}
#suge-zo_saibo .l-header .l-header__nav {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.83, 0, 0.17, 1);
  position: fixed;
  z-index: 100;
  width: 100%;
  max-width: 470px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 80px 0 40px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav {
    max-width: inherit;
    padding: 64px 0 20px;
  }
}
#suge-zo_saibo .l-header .l-header__nav * {
  text-align: center;
}
#suge-zo_saibo .l-header .l-header__nav.is-open {
  opacity: 1;
  visibility: visible;
}
#suge-zo_saibo .l-header .l-header__nav.is-open .l-header__nav-list {
  transform: translateX(0);
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  padding: 0 40px;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.83, 0, 0.17, 1);
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list {
    padding: 0 20px;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li {
  width: 100%;
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a {
  position: relative;
  padding: 35px 45px 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a {
    padding: 30px 45px 30px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a:hover {
    opacity: 1;
  }
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a:hover .txt--01 img:nth-of-type(1) {
    opacity: 0;
    visibility: hidden;
  }
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a:hover .txt--01 img:nth-of-type(2) {
    opacity: 1;
    visibility: visible;
  }
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a:hover .txt--02 {
    color: #ff466e;
  }
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a:hover::before {
    opacity: 1;
  }
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a:hover::after {
    opacity: 0;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 {
  position: relative;
  width: 100%;
  height: 40px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 {
    height: 38px;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 img:nth-of-type(1) {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 img:nth-of-type(1) {
    display: none;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 img:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--01 img:nth-of-type(2) {
    opacity: 1;
    visibility: visible;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--02 {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a .txt--02 {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ff466e;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a::before, #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  transition: all 0.3s ease-in-out;
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a::before {
  background: url("/suge-zo_saibo/assets/images/common/arrow_down_pink.svg") no-repeat center/contain;
  opacity: 0;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a::before {
    opacity: 1;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a::after {
  background: url("/suge-zo_saibo/assets/images/common/arrow_down.svg") no-repeat center/contain;
  opacity: 1;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a::after {
    display: none;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top {
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top {
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding-top: 25px;
    justify-content: center;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top .logo {
  margin-left: 50px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top .logo {
    margin-left: 5px;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top .logo img {
  width: 158px;
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top .txt--02 {
  font-size: 3rem;
  width: auto;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li a.top .txt--02 {
    font-size: 2.4rem;
  }
}
#suge-zo_saibo .l-header .l-header__nav .l-header__nav-list li + li {
  border-top: solid 1px #505050;
}
#suge-zo_saibo .l-header .l-header__nav-bg {
  position: fixed;
  z-index: 99;
  width: 100svw;
  height: 100svh;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.83, 0, 0.17, 1);
  pointer-events: none;
  background-color: rgba(35, 24, 21, 0);
}
#suge-zo_saibo .l-header .l-header__nav-bg.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background-color: rgba(35, 24, 21, 0.5);
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-header .l-header__nav-bg {
    display: none;
  }
}
#suge-zo_saibo .l-footer {
  background: #fff;
  padding: 40px 0;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer {
    padding: 80px 0 30px;
  }
}
#suge-zo_saibo .l-footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer .inner {
    flex-direction: column;
  }
}
#suge-zo_saibo .l-footer .inner .l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  #suge-zo_saibo .l-footer .inner .l-footer__nav-list {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 5px;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer .inner .l-footer__nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 45px;
  }
}
#suge-zo_saibo .l-footer .inner .l-footer__nav-list li a {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
#suge-zo_saibo .l-footer .inner .l-footer__nav-list li a::before {
  content: "";
  background: url("/suge-zo_saibo/assets/images/common/arrow_right.svg") no-repeat center/contain;
  display: block;
  width: 6px;
  height: 13px;
  margin-right: 6px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer .inner .l-footer__nav-list li a::before {
    width: 7px;
    height: 14px;
    margin-right: 8px;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer .inner .l-footer__nav-list li a {
    font-size: 1.4rem;
    padding: 5px 0;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer .inner .l-footer__nav-list li {
    border-bottom: solid 1px #505050;
  }
}
#suge-zo_saibo .l-footer .inner small {
  display: block;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  #suge-zo_saibo .l-footer .inner small {
    font-size: 1rem;
    text-align: center;
  }
}
#suge-zo_saibo .main {
  margin-top: 80px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main {
    margin-top: 64px;
  }
}
#suge-zo_saibo .main .c-bg {
  background: url("/suge-zo_saibo/assets/images/contents_bg.png") no-repeat center top/cover;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .c-bg {
    background: url("/suge-zo_saibo/assets/images/contents_bg_sp.png") no-repeat center top/cover;
  }
}
#suge-zo_saibo .main .mainvisual {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .mainvisual {
    height: 650px;
  }
}
#suge-zo_saibo .main .mainvisual h1 {
  position: relative;
}
#suge-zo_saibo .main .mainvisual h1 .bg {
  position: absolute;
  opacity: 0;
}
@media (min-width: 768px) {
  #suge-zo_saibo .main .mainvisual h1 .bg {
    top: calc(50% - 443px + 57px);
    left: calc(50% - 384px);
    width: 799px;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .mainvisual h1 .bg {
    top: calc(50% - 218px - 15px);
    left: calc(50% - 191px);
    width: 396px;
  }
}
#suge-zo_saibo .main .mainvisual h1 .logo {
  opacity: 0;
  width: 509px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  #suge-zo_saibo .main .mainvisual h1 .logo {
    margin-top: 111px;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .mainvisual h1 .logo {
    width: 252px;
    margin-top: -27px;
  }
}
#suge-zo_saibo .main .statement {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .statement {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#suge-zo_saibo .main .statement .txt,
#suge-zo_saibo .main .statement .txt span {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1.9230769231;
  text-align: center;
  color: #ff466e;
  font-weight: bold;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .statement .txt,
#suge-zo_saibo .main .statement .txt span {
    font-size: 1.4rem;
    line-height: 1.9230769231;
  }
}
#suge-zo_saibo .main .statement .txt .en,
#suge-zo_saibo .main .statement .txt span .en {
  font-size: 2.9rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .statement .txt .en,
#suge-zo_saibo .main .statement .txt span .en {
    font-size: 1.6rem;
  }
}
#suge-zo_saibo .main .statement .txt.txt--large span,
#suge-zo_saibo .main .statement .txt span.txt--large span {
  font-size: 3.4rem;
  line-height: 1.4615384615;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .statement .txt.txt--large span,
#suge-zo_saibo .main .statement .txt span.txt--large span {
    font-size: 1.9rem;
  }
}
#suge-zo_saibo .main .statement .txt + .txt {
  padding-top: 30px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .statement .txt + .txt {
    padding-top: 20px;
  }
}
#suge-zo_saibo .main .contents {
  padding-top: 80px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 {
    padding-top: 50px;
  }
}
#suge-zo_saibo .main .contents01 .list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list {
    margin-top: 30px;
    gap: 30px;
  }
}
#suge-zo_saibo .main .contents01 .list li {
  background-color: #fff;
  width: calc((100% - 40px) / 3);
  min-height: 430px;
  border-radius: 10px;
  padding: 20px 20px 25px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #suge-zo_saibo .main .contents01 .list li {
    row-gap: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #suge-zo_saibo .main .contents01 .list li {
    width: calc((100% - 40px) / 2);
    min-height: inherit;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list li {
    width: 100%;
    min-height: inherit;
    padding: 20px 15px;
  }
}
#suge-zo_saibo .main .contents01 .list li h3 {
  font-size: 1.9rem;
  line-height: 1.4736842105;
  font-weight: bold;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list li h3 {
    font-size: 1.7rem;
    line-height: 1.6470588235;
    min-height: inherit;
  }
}
#suge-zo_saibo .main .contents01 .list li h3 + img {
  margin-top: 10px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list li h3 + img {
    margin-top: 20px;
  }
}
#suge-zo_saibo .main .contents01 .list li p {
  margin-top: 10px;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list li p {
    margin-top: 20px;
  }
}
#suge-zo_saibo .main .contents01 .list li a {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  color: #ff8291;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list li a {
    text-underline-offset: 5px;
  }
}
#suge-zo_saibo .main .contents01 .list li .btn {
  background: #ff8291;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  font-size: 1.7rem;
  line-height: 1.1904761905;
  padding: 10px 15px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents01 .list li .btn {
    margin-top: 20px;
    min-height: 44px;
    font-size: 1.7rem;
  }
}
#suge-zo_saibo .main .contents01 .list li.gradation {
  background: url("/suge-zo_saibo/assets/images/contents01_list_bg.png") no-repeat center/cover;
}
#suge-zo_saibo .main .contents01 .list li.gradation h3 {
  color: #fff;
  font-weight: 900;
}
#suge-zo_saibo .main .contents01 .list li.gradation p {
  color: #fff;
  font-weight: 500;
}
#suge-zo_saibo .main .contents01 .list li.gradation a {
  color: #fff;
  font-weight: 500;
}
#suge-zo_saibo .main .contents02 .lead {
  text-align: center;
}
#suge-zo_saibo .main .contents02 .list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list {
    flex-direction: column;
    margin-top: 40px;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
}
#suge-zo_saibo .main .contents02 .list li {
  width: calc((100% - 60px) / 3);
}
@media (min-width: 768px) {
  #suge-zo_saibo .main .contents02 .list li {
    min-width: 310px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #suge-zo_saibo .main .contents02 .list li {
    width: calc((100% - 60px) / 2);
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li {
    width: 100%;
  }
}
#suge-zo_saibo .main .contents02 .list li a h3 {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  text-align: center;
  color: #ff466e;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a h3 {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    align-items: flex-end;
  }
}
#suge-zo_saibo .main .contents02 .list li a h3::before, #suge-zo_saibo .main .contents02 .list li a h3::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 45px;
  border-radius: 10px;
  background-color: #ff466e;
  margin-top: 5px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a h3::before, #suge-zo_saibo .main .contents02 .list li a h3::after {
    height: 20px;
    margin-top: 2px;
  }
}
#suge-zo_saibo .main .contents02 .list li a h3::before {
  transform: rotate(-30deg);
  margin-right: 20px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a h3::before {
    margin-right: 11px;
  }
}
#suge-zo_saibo .main .contents02 .list li a h3::after {
  transform: rotate(30deg);
  margin-left: 18px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a h3::after {
    margin-left: 10px;
  }
}
#suge-zo_saibo .main .contents02 .list li a h3.ajust::before {
  margin-right: 10px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a h3.ajust::before {
    margin-right: 11px;
  }
}
#suge-zo_saibo .main .contents02 .list li a h3.ajust::after {
  margin-left: 7px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a h3.ajust::after {
    margin-left: 10px;
  }
}
#suge-zo_saibo .main .contents02 .list li a img {
  display: block;
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents02 .list li a img {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents03 .subttl {
    font-size: 2.2rem;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
  }
}
#suge-zo_saibo .main .contents03 .u-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents03 .u-wrap {
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents03 .txt {
    margin-right: auto;
    margin-left: auto;
  }
}
#suge-zo_saibo .main .contents03 .img {
  text-align: center;
}
#suge-zo_saibo .main .contents03 .img img {
  width: 100%;
  max-width: 750px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .contents03 .img img {
    max-width: 200px;
    border-radius: 12px;
  }
}
#suge-zo_saibo .main .banner {
  padding-top: 75px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner {
    padding-top: 40px;
  }
}
#suge-zo_saibo .main .banner a.link {
  display: block;
  width: 664px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link {
    width: 270px;
  }
}
#suge-zo_saibo .main .banner a.link h3 {
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  color: #ff466e;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link h3 {
    font-size: 1.6rem;
    line-height: 1.375;
  }
}
#suge-zo_saibo .main .banner a.link h3 * {
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  color: #ff466e;
  font-weight: bold;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link h3 * {
    font-size: 1.6rem;
    line-height: 1.375;
  }
}
#suge-zo_saibo .main .banner a.link h3::before, #suge-zo_saibo .main .banner a.link h3::after {
  content: "";
  width: 2px;
  height: 30px;
  border-radius: 10px;
  background-color: #ff466e;
  position: absolute;
  bottom: -5px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link h3::before, #suge-zo_saibo .main .banner a.link h3::after {
    height: 20px;
    height: 50px;
  }
}
#suge-zo_saibo .main .banner a.link h3::before {
  transform: rotate(-30deg);
  left: -15px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link h3::before {
    left: -24px;
  }
}
#suge-zo_saibo .main .banner a.link h3::after {
  transform: rotate(30deg);
  right: -15px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link h3::after {
    right: -24px;
  }
}
#suge-zo_saibo .main .banner a.link img {
  display: block;
  margin-top: 25px;
  width: 100%;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .banner a.link img {
    margin-top: 15px;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}
#suge-zo_saibo .main .sns {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}
#suge-zo_saibo .main .sns p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns p {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
#suge-zo_saibo .main .sns p::before, #suge-zo_saibo .main .sns p::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  border-radius: 10px;
  background-color: #505050;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns p::before, #suge-zo_saibo .main .sns p::after {
    height: 30px;
    margin-top: -5px;
  }
}
#suge-zo_saibo .main .sns p::before {
  transform: rotate(-30deg);
  margin-right: 22px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns p::before {
    margin-right: 20px;
  }
}
#suge-zo_saibo .main .sns p::after {
  transform: rotate(30deg);
  margin-left: 14px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns p::after {
    margin-left: 12px;
  }
}
#suge-zo_saibo .main .sns .sns__list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns .sns__list {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
#suge-zo_saibo .main .sns .sns__list li a img {
  width: auto;
  height: 60px;
}
@media (max-width: 767px) {
  #suge-zo_saibo .main .sns .sns__list li a img {
    height: 42px;
  }
}
/*# sourceMappingURL=style.css.map */