@charset "utf-8";

/* 
=================================================================================

▼▼▼　テンプレJS用のCSS。不要なものは削除　▼▼▼

=================================================================================
*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  color: #231815;
}
h1, h2, h3, h4, h5 {
  line-height: 1.5;
}

@media screen and (min-width: 750px) {
  /* PC用 */
  html {
    font-size: 10px;
  }
}
.inner {
  position: relative;
  max-width: calc(100vw - 10rem);
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  /* SP用 */
  html {
    font-size: calc(10vw / 750 * 100); /* 最大値749px、文字サイズ10pxの場合 */
  }
  .inner {
    max-width: calc(100vw - 10rem);
  }
}

@media screen and (min-width: 750px) {/* PC用 */
  .pt80 {
    padding-top: 8rem !important;
  }
  .pt120 {
    padding-top: 12rem !important;
  }
  .pt180 {
    padding-top: 18rem !important;
  }
  .pb120 {
    padding-bottom: 12rem !important;
  }
  .pb150 {
    padding-bottom: 15rem !important;
  }
  .pb200 {
    padding-bottom: 20rem !important;
  }
  .pb300 {
    padding-bottom: 30rem !important;
  }
}
@media screen and (max-width: 768px) {/* SP用 */
  .sp_pt120 {
    padding-top: 12rem !important;
  }
  .sp_pb120 {
    padding-bottom: 12rem !important;
  }
  .sp_pb160 {
    padding-bottom: 16rem !important;
  }
  .sp_pb260 {
    padding-bottom: 26rem !important;
  }
}

section[class^="area"] {
  position: relative;
}

i[id] + section[class^="area"] { margin-top: 5rem; }

body {
  width: 100%;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  overflow: clip;
  position: relative;
}

/* ID登録用 */
i[id] {
  font-size: 0;
  display: block;
}
@media screen and (min-width: 750px) {/* PC用 */
  .mv {
    text-align: center;
    background: url(/img/ofuroCP2026/bg01.webp) bottom 22% center / 100% auto no-repeat,
    linear-gradient(0, 
    #fff 75%, 
    #FFF5EE 100%
    );
    padding: 2rem 0;
  }
}

.sec01 {
  background: linear-gradient(0, 
  rgba(255,255,255,0) 75%, 
  rgba(255,255,255,1) 100%
  ),
  url(/img/ofuroCP2026/bg02.webp) bottom center / cover no-repeat;
  border-bottom: 3px solid;
}
.sec01 .box01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.sec01 .box01_01 .box01_01 {
  flex: 1;
}
@media screen and (min-width: 769px) {/* PC用 */
  .sec02 {
    background: url(/img/ofuroCP2026/bg04.webp) bottom center / 100% auto no-repeat,
    url(/img/ofuroCP2026/bg03.webp) top center / 9rem auto repeat;
  }
}
@media screen and (max-width: 768px) {/* SP用 */
  .sec02 {
    background: url(/img/ofuroCP2026/bg04_sp.webp) bottom center / 100% auto no-repeat,
    url(/img/ofuroCP2026/bg03.webp) top center / 6rem auto repeat;
  }
}
.sec02 .box02 {
  position: relative;
  aspect-ratio: 286 / 289;
  margin: 0 auto;
  background: url(/img/ofuroCP2026/img08.webp) top center / contain no-repeat;
}
.sec02 .box02 .box02_01 {
  position: relative;
  padding-top: 9%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.sec02 .box02 .img {
  border: 1px solid;
}
.sec02 .box02 .btn {
  margin-top: 2rem;
}

.sec02 .box04 .bnr {
  border: 2px solid;
}
@media screen and (max-width: 768px) {/* SP用 */
  .sec02 .box04 .bnr {
    border: 1px solid;
  }
}

.sec03 {
  border-bottom: 3px solid;
}

.sec04 {
  background: url(/img/ofuroCP2026/bg05.webp) bottom center / cover no-repeat;
}

.sec04 .box01 {
  border: 4px solid;
  display: table;
  margin: 0 auto;
  padding: 0 0.5em;
}
@media screen and (max-width: 768px) {/* SP用 */
  .sec04 .box01 {
    border: 2px solid;
  }
}
.sec04 .box02 {
  background: #fff;
  border: 2px solid;
  padding: 3em 2em;
}
@media screen and (max-width: 768px) {/* SP用 */
  .sec04 .box02 {
    padding: 2em 1.5em;
  }
}

/* 
=================================================================================

▼▼▼　色　▼▼▼

=================================================================================
*/
/* ▼ black ▼ */
.black { color: #231815 !important;}
.bg_black { background: #231815 !important; }
/* ▲ black ▲ */

/* ▼ red ▼ */
.red { color: #C30D23 !important; }
.bg_red { background: #C30D23 !important; }
/* ▲ red ▲ */

/* ▼ purple ▼ */
.purple { color: #CCCDFB !important; }
.bg_purple { background: #CCCDFB !important; }
/* ▲ purple ▲ */

/* ▼ white ▼ */
.white { color: #fff !important; }
.bg_white { background: #fff !important; }
/* ▲ white ▲ */

/* 
=================================================================================

▼▼▼　文字　▼▼▼

=================================================================================
*/
.go { font-family: "Noto Sans JP", sans-serif; }

/* googleマテリアルアイコン */
body .material-symbols-outlined {
  font-size: inherit;
  vertical-align: baseline;
  line-height: inherit;
}

/* 
=================================================================================

▼▼▼　サンプルボタン　▼▼▼

=================================================================================
*/

/* ▼ btn01 ▼ */
.btn01 > a {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1.5em 1em 1.5em;
  gap: 0.5em;
  background: #C30D23;
  color: #fff;
}
/* ▲ btn01 ▲ */

/* ▼ btn02 ▼ */
.btn02 > * {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.5em 1em 2.5em;
  gap: 1em;
  background: #231815;
  color: #fff;
  transition: .5s all;
}
.btn02 > *:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background: #ccc;
  color: #231815;
}
.btn02 > * .arrow {
  color: #231815;
  background: #fff;
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5em;
  height: 2em;
  overflow: hidden;
  overflow: clip;
  position: relative;
}
.btn02:hover > * .arrow > * {
  animation: btn02_move .5s 1;
}
@keyframes btn02_move {
  0% { transform: translateX(0); }
  49% { transform: translateX(5em); }
  50% { transform: translateX(-5em); }
  51% { transform: translateX(-5em); }
  100% { transform: translateX(0); }
}
/* ▲ btn02 ▲ */

/* ▼ btn03 ▼ */
.btn03 {
  border-radius: 50vmin;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3));
}
.btn03 > a {
  background: #C30D23;
  color: #fff;
  text-align: center;
  padding: 1em 1.5em 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow: clip;
  border-radius: 50vmin;
}
.btn03 > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #231815;
  border-radius: 50vmin;
  transform: translateX(-100%);
  transition: .5s all;
}
.btn03 a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn03:hover > *::after {
  transform: translateX(0);  
}
/* ▲ btn03 ▲ */

/* ▼ btn04 ▼ */
.btn04 {
  border-radius: 50vmin;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3));
}
.btn04 > a {
  background: #231815;
  color: #fff;
  text-align: center;
  padding: 1em;
  gap: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  overflow: clip;
  border-radius: 50vmin;
}
.btn04 > a .txt {
  flex: 1;
  text-align: center;
}
.btn04 > a .arrow {
  color: #231815;
  background: #fff;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 80%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn04 > *::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 1) 100%,
    rgba(255, 255, 255, 0) 0%
  );
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }

  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }

  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}
/* ▲ btn04 ▲ */

/* ▼ btn05 ▼ */
.btn05 {
  padding-bottom: 1rem;
}
.btn05 > a {
  text-align: center;
  padding: .4em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 1rem;
  color: #fff;
  background: #ff80ab;
  box-shadow: 0 1rem 0 #ea769c;
  transition: .5s all;
}
.btn05 > a:hover {
  box-shadow: 0 0 0 #ea769c;
  opacity: 1;
  filter: alpha(opacity=100);
  background: #e63862;
}
.btn05 > a small {
  font-size: 60%;
}
/* ▲ btn05 ▲ */

/* ▼ btn06 ▼ */
.btn06 {
}
.btn06 > a {
  text-align: center;
  padding: .4em 1em .4em 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50vmin;
  color: #e63862;
  background: #fff;
  border: 2px solid #e63862;
  transition: .5s all;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.1));
}
.btn06 > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  color: #fff;
  background: #e63862;
}
.btn06 .txt {
  margin: auto;
}
/* ▲ btn06 ▲ */

/* ▼ btn07 ▼ */
.btn07 {
  padding-bottom: 1rem;
}
.btn07 > a {
  text-align: center;
  padding: .4em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 1rem;
  color: #fff;
  background: #ea769c;
  box-shadow: 0 1rem 0 #eee;
  transition: .5s all;
}
.btn07 > a:hover {
  box-shadow: 0 0 0 #eee;
  opacity: 1;
  filter: alpha(opacity=100);
  background: #1B9F6A;
  transform: scale(1.1);
}
.btn07 > a small {
  font-size: 60%;
}
/* ▲ btn07 ▲ */

/* ▼ btn08 ▼ */
.btn08 > a {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1.5em;
  gap: 0.5em;
  border: 2px solid #00DCFF;
  border-radius: 50vmin;
  color: #00DCFF;
  text-decoration: none;
  text-shadow: 
    0 0 .5rem rgba(0, 220, 255, 0.4),
    0 0 1rem rgba(0, 220, 255, 0.4),
    0 0 2rem rgba(0, 220, 255, 0.5);
  box-shadow:
    0 0 .5rem rgba(0, 220, 255, 0.3),
    0 0 1.5rem rgba(0, 220, 255, 0.3),
    0 0 2rem rgba(0, 220, 255, 0.4),
    inset 0 0 .5rem rgba(0, 220, 255, 0.3),
    inset 0 0 1rem rgba(0, 220, 255, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}
/* ▲ btn08 ▲ */

/* ▼ btn09 ▼ */
.btn09 > a {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1.5em;
  gap: 0.5em;
  color: #fff;
  background: linear-gradient(
    270deg,
    rgba(202, 110, 24, 0.94) 0%,
    rgb(196, 127, 62) 25%,
    rgb(226, 235, 103) 50%,
    rgb(196, 127, 62) 75%,
    rgba(202, 110, 24, 0.94) 100%
  );
  background-size: 600% 600%;
  animation: gradientFlow 12s linear infinite;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn09 > a:hover {
  transform: scale(1.05);
}

/* 一方向ループ */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* ▲ btn09 ▲ */

/* 
=================================================================================

▼▼▼　header　▼▼▼

=================================================================================
*/

header {
  padding: 2rem;
  background: #fff;
}

/* 
=================================================================================

▼▼▼　ちらつき対策（CSS）　▼▼▼

=================================================================================
*/

.loading {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-out;
  opacity: 1;
  pointer-events: all;
}

/* ローディングアニメーション */
.loading img {
  animation: loadingRotate 2s linear infinite;
}

/* ローディングアイコンの回転アニメーション */
@keyframes loadingRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ローディング完了後の状態 */
.loading.loaded {
  opacity: 0;
  pointer-events: none;
}

/* 
=================================================================================

▼▼▼　footer　▼▼▼

=================================================================================
*/

.universal-footer {
  background-color: #fff;
  padding-bottom: 10px;
  padding-top: 10px;
}
@media only screen and (max-width: 480px) {
  .universal-footer {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.45);
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
  }
}
.universal-footer .br::before {
  content: "\A";
  white-space: pre;
}
@media only screen and (min-width: 481px) {
  .universal-footer .br--sp::before {
    content: "";
  }
}
.universal-footer .universal-footer__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}
@media only screen and (min-width: 481px) {
  .universal-footer .universal-footer__container {
    max-width: 960px;
  }
}
.universal-footer .universal-footer__row {
  margin-left: auto;
  margin-right: auto;
}
.universal-footer .universal-footer__row:before {
  box-sizing: border-box;
  content: " ";
  display: table;
}
.universal-footer .universal-footer__row:after {
  clear: both;
}
@media only screen and (min-width: 481px) {
  .universal-footer .universal-footer__row {
    display: table;
    padding-left: 81px;
    position: relative;
  }
}
@media only screen and (min-width: 481px) {
  .universal-footer .universal-footer__col-pmark-image {
    display: block;
    font-size: 0;
    left: 0;
    position: absolute;
    top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-pmark-image {
    display: none;
  }
}
.universal-footer .universal-footer__col-main {
  font-size: 10px;
  line-height: 20px;
  line-height: 15px;
  line-height: 2;
  margin: 0 10px;
  padding-top: 0;
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main {
    line-height: 1.5;
  }
}
@media only screen and (min-width: 481px) {
  .universal-footer .universal-footer__col-main {
    padding-top: 9px;
  }
}
.universal-footer .universal-footer__col-main a {
  color: inherit;
  text-decoration: none;
}
.universal-footer .universal-footer__col-main p {
  margin-top: 10px;
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main p {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 481px) {
  .universal-footer .universal-footer__col-main p {
    margin-top: 0;
  }
}
.universal-footer .universal-footer__col-main .universal-footer__col-main__definition-term {
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main .universal-footer__col-main__definition-term {
    display: block;
    margin-bottom: 5px;
  }
}
.universal-footer .universal-footer__col-main .universal-footer__col-main__definition-description {
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main .universal-footer__col-main__definition-description a {
    line-height: 20px;
  }
}
.universal-footer .universal-footer__col-main .universal-footer__col-main__list {
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main .universal-footer__col-main__list {
    display: inline;
  }
}
.universal-footer .universal-footer__col-main .universal-footer__col-main__list:after {
  content: " | ";
}
.universal-footer .universal-footer__col-main .universal-footer__col-main__list:last-child::after {
  content: "";
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main .universal-footer__col-main__list:nth-child(2)::after {
    content: "";
  }
}
@media only screen and (max-width: 480px) {
  .universal-footer .universal-footer__col-main .universal-footer__col-main__list:nth-of-type(3)::before {
    content: "\A";
    white-space: pre;
  }
}