@charset "UTF-8";
/*==================================================================
    style.css
===================================================================*/
:root {
  --s0: 0.5em;
  --s1: calc(var(--s0) * 1);
  --s2: calc(var(--s0) * 2);
  --s3: calc(var(--s0) * 3);
  --s4: calc(var(--s0) * 4);
  --s5: calc(var(--s0) * 5);
  --s6: calc(var(--s0) * 6);
  --s7: calc(var(--s0) * 7);
  --s8: calc(var(--s0) * 8);
  --s10: calc(var(--s0) * 10);
  --s13: calc(var(--s0) * 13);
  --s15: calc(var(--s0) * 15);
  --s19: calc(var(--s0) * 19);
  --s9: calc(var(--s0) * 9);
  --s11: calc(var(--s0) * 11);
  --s12: calc(var(--s0) * 12);
  --s14: calc(var(--s0) * 14);
}

:root {
  --spa: 15px;
}
@media screen and (max-width: 768px) {
  :root {
    --spa: 5.6vw;
  }
}

:root {
  --k: #111;
  --k2: #3d3d3d;
  --k3: #555;
  --w: #fff;
  --g1: #f5f5f5;
  --g2: #ededed;
  --g3: #ccc;
  --g4: #aaa;
  --g5: #777;
  --g6: #666;
  --c1: #279cd8;
  --c2: #66caf2;
  --c3: #d8695d;
  --c4: #50cc85;
  --c5: #b277e0;
  --c6: #e0c332;
  --cCaution: #e20c0c;
}

:root {
  --fzS: 1.4rem;
  --fz: 1.6rem;
  --fzM: 1.8rem;
  --fzL: 2rem;
}
@media screen and (max-width: 768px) {
  :root {
    --fzS: 1.3rem;
    --fz: 1.5rem;
    --fzM: 1.7rem;
    --fzL: 1.9rem;
  }
}

:root {
  --lhS: 1.4;
  --lh: 1.8;
  --lhL: 2.4;
}
@media screen and (max-width: 768px) {
  :root {
    --lhS: 1.4;
    --lh: 1.8;
    --lhL: 2.4;
  }
}

:root {
  --font1: "";
  --font2: "";
}

:root {
  --bdrs1: 4px;
  --bdrs2: 6px;
  --opacity: 0.5;
  --bxs1: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  --bxs2: 0px -6px 0px -2px rgba(0, 0, 0, 0.2) inset;
  --txs1: 0px 0px 12px rgba(0, 0, 0, 0.6);
  --grd1: linear-gradient(135deg, #ffa84c 0%, #ff7b0d 100%);
}

:root {
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --linear: cubic-bezier(0, 0, 1, 1);
  --In: cubic-bezier(0.42, 0, 1, 1);
  --Out: cubic-bezier(0, 0, 0.58, 1);
  --InOut: cubic-bezier(0.42, 0, 0.58, 1);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --time: 200ms;
  --transition: all var(--time) var(--Out);
  --ease1: all var(--time) var(--ease);
  --ease2: all var(--time) cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease3: all var(--time) var(--easeInOutCubic);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
html {
  overflow-x: hidden;
  background: #fff;
  font-size: 62.5%;
}

body {
  min-width: 320px;
  word-wrap: break-word;
  overflow: hidden;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: none;
}

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

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

abbr {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  vertical-align: bottom;
}

strong {
  font-style: normal;
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: normal;
}

pre,
code,
kbd,
samp {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a,
img,
button,
input[type=button],
input[type=submit],
.touch-hover {
  -webkit-tap-highlight-color: transparent;
}

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

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
}

/*  list
---------------------------------------------*/
li {
  list-style: none;
  line-height: 1;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: var(--g1);
  margin-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: var(--font1) !important;
}

.font2 {
  font-family: var(--font2) !important;
}

/*  color
---------------------------------------------*/
.white {
  color: var(--w);
}

.black {
  color: var(--k);
}

.c-caution {
  color: var(--cCaution);
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

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

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

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

/* font-size
---------------------------------------------*/
.fz {
  font-size: var(--fz);
}

.fz-s {
  font-size: var(--fzS);
  line-height: var(--lhS);
}

.fz-l {
  font-size: var(--fzL);
  line-height: var(--lhL);
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", Arial, "Hiragino sans", "Hiragino Kaku Gothic ProN", "Meiryo";
  font-size: var(--fz);
  color: var(--k2);
  font-weight: 400;
  line-height: 1;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 374px) {
  html,
  body {
    font-size: 9px;
    line-height: 1;
  }
}
/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0), local(メイリオ);
  font-weight: 100;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1), local(メイリオ);
  font-weight: 200;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2), local(メイリオ);
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3), local(メイリオ);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4), local(メイリオ);
  font-weight: 500;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5), local(メイリオ ボールド);
  font-weight: 600;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6), local(メイリオ ボールド);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7), local(メイリオ ボールド);
  font-weight: 800;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8), local(メイリオ ボールド);
  font-weight: 900;
}
@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9), local(メイリオ ボールド);
  font-weight: 900;
}
/* -----------------------------------------------
    p
------------------------------------------------*/
p {
  font-size: var(--fz);
  line-height: var(--lh);
}

/* ======= hiwrite ======= */
::-moz-selection {
  background: #a6d2fc;
}
::selection {
  background: #a6d2fc;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  background: linear-gradient(transparent 80%, #ff0 80%);
}

/* ======= 上付き文字、下付き文字 ======= */
.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.subText {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

/* ======= 注釈 ======= */
.annotation {
  color: #666;
  font-size: var(--fzS);
}

/* -----------------------------------------------
    link
------------------------------------------------*/
a {
  text-decoration: none;
  transition: var(--transition);
}

.pc a:hover {
  text-decoration: none;
}

/*  a img
---------------------------------------------*/
a img {
  transition: var(--transition);
}

a[href^="tel:"] {
  cursor: default;
}

/* ======= hover ======= */
a[href^="tel:"]:hover img {
  opacity: 1;
}

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: var(--c1);
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: var(--c1);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #dc4b22;
  outline-offset: 4px;
  border-radius: 4px;
}

/* マウス操作時は出さない（保険） */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 980px;
  padding-right: var(--spa);
  padding-left: var(--spa);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: auto;
  }
}
.container.-large {
  max-width: 1230px;
}
@media screen and (max-width: 768px) {
  .container.-large {
    max-width: auto;
  }
}
@media screen and (min-width: 1501px) {
  .container.-large {
    max-width: 1430px;
  }
}
.container.-small {
  max-width: 860px;
}
@media screen and (max-width: 768px) {
  .container.-small {
    max-width: auto;
  }
}
.container.-min {
  max-width: 690px;
}
@media screen and (max-width: 768px) {
  .container.-min {
    max-width: auto;
  }
}
.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    form
===================================================================*/
/*  reset
---------------------------------------------*/
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

legend {
  display: none;
}

input,
select,
textarea,
button {
  font-size: var(--fz);
  vertical-align: middle;
  color: var(--k);
  height: auto;
}
@media screen and (max-width: 768px) {
  input,
  select,
  textarea,
  button {
    font-size: 1.6rem;
  }
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: normal;
  border-radius: var(--bdrs1);
}

/* ======= outline ======= */
input[type=email],
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  outline: none;
}

/* ======= label ======= */
label {
  margin-right: 1em;
  line-height: 1;
}

/*  autofill
---------------------------------------------*/
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px rgb(250, 250, 250) inset;
}

/*  focus
---------------------------------------------*/
input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--c1);
}

/*  input.short
---------------------------------------------*/
input.short,
select.short,
textarea.short {
  width: 40%;
}

@media screen and (max-width: 768px) {
  input.short,
  select.short,
  textarea.short {
    width: 100%;
  }
}
/*  must 必須項目の※
---------------------------------------------*/
.must {
  color: var(--cCaution);
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: -0.4em;
  right: -0.2rem;
}

/*  button submit
---------------------------------------------*/
input[type=button],
input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  color: var(--w);
  background-color: var(--c1);
  border: 0;
  padding: 0rem 3rem;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
  border-radius: var(--bdrs1);
  height: 50px;
  position: relative;
  transition: var(--transition);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    headline
===================================================================*/
/*==================================================================
    .h01
===================================================================*/
.h01 {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.75em 0;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  color: #767676;
}
@media screen and (max-width: 768px) {
  .h01 {
    align-items: center;
    gap: 0.4em 0;
    font-size: 1.2rem;
  }
}
.h01.-voice, .h01.-howto, .h01.-campaign {
  align-items: center;
  color: var(--w);
}
.h01.-where {
  align-items: center;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    btn
===================================================================*/
/*==================================================================
    .btn01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    table
===================================================================*/
/*==================================================================
    .tbl01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    list
===================================================================*/
/*==================================================================
    .li01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    header
===================================================================*/
/*==================================================================
    .header
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    hamburger menu
===================================================================*/
/*==================================================================
    .hamburger
===================================================================*/
.hamburger {
  width: 60px;
  height: 60px;
  padding-top: 18px;
  background-color: #ccc;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
  display: block;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  font: inherit;
  color: inherit;
  margin: 0;
  overflow: visible;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 60px;
    height: 60px;
    padding-top: 18px;
    margin: 0;
  }
}
.hamburger_inner {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger_box {
  display: inline-block;
  top: 50%;
  left: 0;
  margin-top: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--k);
  border-radius: 0px;
  position: absolute;
  transition: var(--transition);
}
.hamburger_box::before, .hamburger_box::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--k);
  border-radius: 0px;
  position: absolute;
  left: 0;
  transition: var(--transition);
}
.hamburger_box::before {
  top: -7px;
}
.hamburger_box::after {
  bottom: -7px;
}

/*  spin
---------------------------------------------*/
.hamburger--spin_box {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin_box::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin_box::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* ======= active ======= */
.hamburger.-active {
  mix-blend-mode: normal;
}
.hamburger.-active .hamburger_box {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff !important;
}
.hamburger.-active .hamburger_box::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  background-color: #fff !important;
}
.hamburger.-active .hamburger_box::after {
  background-color: #fff !important;
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    global nav
===================================================================*/
/*==================================================================
    .nav-open
===================================================================*/
.nav-open01 {
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  transition: var(--transition);
  overflow-y: scroll;
}
.nav-open01__inner {
  padding: 80px 30px;
}
.nav-open01__inner__logo {
  margin-bottom: 30px;
}
.nav-open01__inner__list {
  text-align: center;
  margin-bottom: 30px;
}
.nav-open01__inner__list li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-open01__inner__list li a {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--w);
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav-open01.-active {
  visibility: visible;
  opacity: 1;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    footer
===================================================================*/
/*==================================================================
    .footer
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    mainView
===================================================================*/
/*==================================================================
    .screen
===================================================================*/
.screen {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.screen::before {
  display: block;
  content: "";
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #0e57b2 0%, #7bd3ff 54.5%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  animation: fade-out 2s ease-in 1s forwards;
}
.screen .airplane {
  position: absolute;
  top: 70vh;
  left: 0;
  transform: translate(-100%, 0);
  z-index: 3;
  animation: airplane-move 1.5s linear 1s forwards;
}
@media screen and (max-width: 768px) {
  .screen .airplane {
    top: 60vh;
  }
}
.screen .airplane img {
  width: 146px;
}
@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes airplane-move {
  0% {
    transform: translate(-100%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(120vw, -32vh);
    opacity: 0;
  }
}

/*==================================================================
    .hero
===================================================================*/
.hero {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding-top: 80px;
  width: 100%;
  height: 1174px;
  background-image: linear-gradient(180deg, #0e57b2 0%, #7bd3ff 54.5%);
  background-repeat: repeat-x;
  background-position: 50% 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 70px;
    width: 100%;
    height: 888px;
  }
}
.hero::after {
  display: block;
  content: "";
  width: 100%;
  height: 235px;
  background-color: var(--w);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .hero::after {
    height: 206px;
  }
}
.hero::before {
  display: block;
  content: "";
  width: 1348px;
  height: 580px;
  background-image: url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02.png");
  background-image: -webkit-image-set(url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02.webp") type("image/webp"), url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02.png") type("image/png"));
  background-image: image-set(url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02.webp") type("image/webp"), url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02.png") type("image/png"));
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hero::before {
    width: 478px;
    height: 367px;
    background-image: url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02_sp.png");
    background-image: -webkit-image-set(url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02_sp.webp") type("image/webp"), url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02_sp.png") type("image/png"));
    background-image: image-set(url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02_sp.webp") type("image/webp"), url("/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_bg_02_sp.png") type("image/png"));
    background-size: 100% 100%;
    bottom: 30px;
  }
}
.hero .kamifubuki {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero_copy {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 27px;
  animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  .hero_copy {
    margin-bottom: 24px;
  }
  .hero_copy img {
    max-width: 216px;
  }
}
.hero_copy::before {
  display: block;
  content: "";
  width: 114px;
  height: 40px;
  background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/hero_icon_crown.svg);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hero_copy::before {
    width: 99px;
    height: 35px;
    background-size: 100% 100%;
    margin-bottom: 25px;
  }
}
.hero_copy.is-active {
  animation-play-state: running;
}
.hero_lead {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--w);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero_lead {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.hero_lead span {
  color: var(--w);
}
.hero_btn {
  position: absolute;
  top: 650px;
  right: 50%;
  margin-right: -500px;
  z-index: 999;
  animation-play-state: paused;
}
@media screen and (max-width: 1030px) {
  .hero_btn {
    top: 500px;
    right: 25px;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .hero_btn {
    top: 515px;
    right: 50%;
    margin-right: -180px;
  }
}
.hero_btn img {
  width: 129px;
}
@media screen and (max-width: 768px) {
  .hero_btn img {
    width: 102px;
  }
}
.hero_btn.is-active {
  animation-play-state: running;
}
.hero_btn a {
  display: block;
}
.hero_btn a:hover {
  opacity: 0.6;
}
.hero_icon {
  animation-play-state: paused;
  position: absolute;
  z-index: -1;
}
.hero_icon.is-active {
  animation-play-state: running;
}
.hero_icon.-kumo01 {
  top: 290px;
  left: 50%;
  margin-left: -530px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-kumo01 {
    width: 254px;
    top: 170px;
    margin-left: -370px;
  }
}
.hero_icon.-kumo02 {
  top: 110px;
  right: 50%;
  margin-right: -500px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-kumo02 {
    width: 147px;
    top: 30px;
    margin-right: -230px;
  }
}
.hero_icon.-kumo03 {
  top: 505px;
  right: 50%;
  margin-right: -610px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-kumo03 {
    width: 106px;
    top: 356px;
    margin-right: -210px;
  }
}
.hero_icon.-fubuki01 {
  top: 95px;
  left: 50%;
  margin-left: -360px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-fubuki01 {
    display: none;
    width: 117px;
    top: 15px;
    margin-left: -190px;
  }
}
.hero_icon.-fubuki02 {
  top: 275px;
  left: 50%;
  margin-left: -640px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-fubuki02 {
    display: none;
  }
}
.hero_icon.-fubuki03 {
  top: 340px;
  right: 50%;
  margin-right: -450px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-fubuki03 {
    display: none;
    width: 193px;
    top: 435px;
    margin-right: -190px;
  }
}
.hero_icon.-fubuki04 {
  top: 805px;
  left: 50%;
  margin-left: -330px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-fubuki04 {
    display: none;
    top: 665px;
    margin-left: -100px;
  }
}
.hero_icon.-person01 {
  top: 690px;
  left: 50%;
  margin-left: -440px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-person01 {
    width: 54px;
    top: 585px;
    margin-left: -170px;
  }
}
.hero_icon.-person02 {
  top: 640px;
  left: 50%;
  margin-left: -210px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-person02 {
    width: 52px;
    top: 515px;
    margin-left: -110px;
  }
}
.hero_icon.-person03 {
  top: 705px;
  right: 50%;
  margin-right: -105px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-person03 {
    width: 62px;
    top: 610px;
    margin-right: -65px;
  }
}
.hero_icon.-person04 {
  top: 655px;
  right: 50%;
  margin-right: -305px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-person04 {
    width: 52px;
    top: 670px;
    margin-right: -145px;
  }
}
.hero_icon.-person05 {
  top: 935px;
  left: 50%;
  margin-left: -80px;
}
@media screen and (max-width: 768px) {
  .hero_icon.-person05 {
    width: 124px;
    top: 750px;
    margin-left: -150px;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: var(--transition);
  animation-duration: var(--time);
  animation-fill-mode: both;
}

.animate.-animated {
  visibility: visible;
}

.-op0 {
  opacity: 0;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.-a0 {
  animation-duration: 0s;
  animation-fill-mode: both;
}

.-a1 {
  animation-duration: 0.1s;
  animation-fill-mode: both;
}

.-a2 {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.-a3 {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.-a4 {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.-a5 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.-a6 {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.-a7 {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.-a8 {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.-a9 {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.-a10 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.-a11 {
  animation-duration: 1.1s;
  animation-fill-mode: both;
}

.-a12 {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.-a13 {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.-a14 {
  animation-duration: 1.4s;
  animation-fill-mode: both;
}

.-a15 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.-a16 {
  animation-duration: 1.6s;
  animation-fill-mode: both;
}

.-a17 {
  animation-duration: 1.7s;
  animation-fill-mode: both;
}

.-a18 {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}

.-a19 {
  animation-duration: 1.9s;
  animation-fill-mode: both;
}

.-a20 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.-a21 {
  animation-duration: 2.1s;
  animation-fill-mode: both;
}

.-a22 {
  animation-duration: 2.2s;
  animation-fill-mode: both;
}

.-a23 {
  animation-duration: 2.3s;
  animation-fill-mode: both;
}

.-a24 {
  animation-duration: 2.4s;
  animation-fill-mode: both;
}

.-a25 {
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.-a26 {
  animation-duration: 2.6s;
  animation-fill-mode: both;
}

.-a27 {
  animation-duration: 2.7s;
  animation-fill-mode: both;
}

.-a28 {
  animation-duration: 2.8s;
  animation-fill-mode: both;
}

.-a29 {
  animation-duration: 2.9s;
  animation-fill-mode: both;
}

.-a30 {
  animation-duration: 3s;
  animation-fill-mode: both;
}

.-a31 {
  animation-duration: 3.1s;
  animation-fill-mode: both;
}

.-a32 {
  animation-duration: 3.2s;
  animation-fill-mode: both;
}

.-a33 {
  animation-duration: 3.3s;
  animation-fill-mode: both;
}

.-a34 {
  animation-duration: 3.4s;
  animation-fill-mode: both;
}

.-a35 {
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.-a36 {
  animation-duration: 3.6s;
  animation-fill-mode: both;
}

.-a37 {
  animation-duration: 3.7s;
  animation-fill-mode: both;
}

.-a38 {
  animation-duration: 3.8s;
  animation-fill-mode: both;
}

.-a39 {
  animation-duration: 3.9s;
  animation-fill-mode: both;
}

.-a40 {
  animation-duration: 4s;
  animation-fill-mode: both;
}

.-a41 {
  animation-duration: 4.1s;
  animation-fill-mode: both;
}

.-a42 {
  animation-duration: 4.2s;
  animation-fill-mode: both;
}

.-a43 {
  animation-duration: 4.3s;
  animation-fill-mode: both;
}

.-a44 {
  animation-duration: 4.4s;
  animation-fill-mode: both;
}

.-a45 {
  animation-duration: 4.5s;
  animation-fill-mode: both;
}

.-a46 {
  animation-duration: 4.6s;
  animation-fill-mode: both;
}

.-a47 {
  animation-duration: 4.7s;
  animation-fill-mode: both;
}

.-a48 {
  animation-duration: 4.8s;
  animation-fill-mode: both;
}

.-a49 {
  animation-duration: 4.9s;
  animation-fill-mode: both;
}

.-a50 {
  animation-duration: 5s;
  animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.-ad0 {
  animation-delay: 0s;
}

.-ad1 {
  animation-delay: 0.1s;
}

.-ad2 {
  animation-delay: 0.2s;
}

.-ad3 {
  animation-delay: 0.3s;
}

.-ad4 {
  animation-delay: 0.4s;
}

.-ad5 {
  animation-delay: 0.5s;
}

.-ad6 {
  animation-delay: 0.6s;
}

.-ad7 {
  animation-delay: 0.7s;
}

.-ad8 {
  animation-delay: 0.8s;
}

.-ad9 {
  animation-delay: 0.9s;
}

.-ad10 {
  animation-delay: 1s;
}

.-ad11 {
  animation-delay: 1.1s;
}

.-ad12 {
  animation-delay: 1.2s;
}

.-ad13 {
  animation-delay: 1.3s;
}

.-ad14 {
  animation-delay: 1.4s;
}

.-ad15 {
  animation-delay: 1.5s;
}

.-ad16 {
  animation-delay: 1.6s;
}

.-ad17 {
  animation-delay: 1.7s;
}

.-ad18 {
  animation-delay: 1.8s;
}

.-ad19 {
  animation-delay: 1.9s;
}

.-ad20 {
  animation-delay: 2s;
}

.-ad21 {
  animation-delay: 2.1s;
}

.-ad22 {
  animation-delay: 2.2s;
}

.-ad23 {
  animation-delay: 2.3s;
}

.-ad24 {
  animation-delay: 2.4s;
}

.-ad25 {
  animation-delay: 2.5s;
}

.-ad26 {
  animation-delay: 2.6s;
}

.-ad27 {
  animation-delay: 2.7s;
}

.-ad28 {
  animation-delay: 2.8s;
}

.-ad29 {
  animation-delay: 2.9s;
}

.-ad30 {
  animation-delay: 3s;
}

.-ad31 {
  animation-delay: 3.1s;
}

.-ad32 {
  animation-delay: 3.2s;
}

.-ad33 {
  animation-delay: 3.3s;
}

.-ad34 {
  animation-delay: 3.4s;
}

.-ad35 {
  animation-delay: 3.5s;
}

.-ad36 {
  animation-delay: 3.6s;
}

.-ad37 {
  animation-delay: 3.7s;
}

.-ad38 {
  animation-delay: 3.8s;
}

.-ad39 {
  animation-delay: 3.9s;
}

.-ad40 {
  animation-delay: 4s;
}

.-ad41 {
  animation-delay: 4.1s;
}

.-ad42 {
  animation-delay: 4.2s;
}

.-ad43 {
  animation-delay: 4.3s;
}

.-ad44 {
  animation-delay: 4.4s;
}

.-ad45 {
  animation-delay: 4.5s;
}

.-ad46 {
  animation-delay: 4.6s;
}

.-ad47 {
  animation-delay: 4.7s;
}

.-ad48 {
  animation-delay: 4.8s;
}

.-ad49 {
  animation-delay: 4.9s;
}

.-ad50 {
  animation-delay: 5s;
}

/*==================================================================
    .bound
===================================================================*/
@keyframes bound {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
    transform: translateY(-12px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  72% {
    opacity: 1;
    transform: translateY(-6px);
  }
  82% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bound {
  opacity: 0;
  animation-name: bound;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

/*==================================================================
    .fadeIn
===================================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  animation-name: fadeIn;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

/*==================================================================
    .fuwafuwa
===================================================================*/
.fuwafuwa {
  opacity: 0;
  animation-name: fadeIn, floatY;
  animation-duration: 0.8s, 3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-delay: 0s, 0.8s;
}

/* ふわふわ上下 */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/*==================================================================
    .fubuki
===================================================================*/
@keyframes fubuki {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  55% {
    opacity: 1;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fubuki {
  opacity: 0;
  animation-name: fubuki;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

/*==================================================================
    .person
===================================================================*/
@keyframes person {
  0% {
    opacity: 0;
    transform: rotate(-60deg);
  }
  45% {
    opacity: 1;
    transform: rotate(15deg);
  }
  70% {
    transform: rotate(-6deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.person {
  opacity: 0;
  transform-origin: bottom center;
  transform: rotate(-60deg);
  animation-name: person;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

@keyframes person-re {
  0% {
    opacity: 0;
    transform: rotate(60deg);
  }
  45% {
    opacity: 1;
    transform: rotate(-15deg);
  }
  70% {
    transform: rotate(6deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.person-re {
  opacity: 0;
  transform-origin: bottom center;
  transform: rotate(60deg);
  animation-name: person-re;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

/*==================================================================
    .fadeInUp
===================================================================*/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

/*==================================================================
    .fadeInDown
===================================================================*/
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}
.fadeInDown {
  opacity: 0;
  animation-name: fadeInDown;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-fill-mode: forwards;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    top
===================================================================*/
/*==================================================================
    #top .about
===================================================================*/
#top .about_inner {
  padding: 35px 0 115px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .about_inner {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  #top .about .h01 {
    margin-bottom: 3.2em;
  }
  #top .about .h01 span {
    max-width: 136px;
  }
}
#top .about_flex {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #top .about_flex {
    flex-flow: column nowrap;
    align-items: center;
  }
}
#top .about_flex-l {
  flex-shrink: 0;
  width: 33.2631578947%;
  padding-right: 2em;
}
@media screen and (max-width: 768px) {
  #top .about_flex-l {
    width: 100%;
    padding-right: 0;
  }
}
#top .about_flex-r {
  padding-top: 1em;
}
@media screen and (max-width: 768px) {
  #top .about_flex-r {
    padding-top: 0;
  }
}
#top .about_flex-r .ttl {
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 900;
  color: var(--c1);
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #top .about_flex-r .ttl {
    font-size: 2.2rem;
    text-align: center;
  }
}
#top .about_flex-r .txt p {
  font-size: 1.6rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  #top .about_flex-r .txt p {
    font-size: 1.4rem;
    line-height: 2;
    text-align: center;
  }
}
#top .about_flex-r .txt p:not(:last-of-type) {
  margin-bottom: 1.9em;
}
#top .about_flex-r .txt p span {
  font-weight: 700;
  color: #097cb6;
}
#top .about_icon {
  position: absolute;
  z-index: 2;
}
#top .about_icon.-person01 {
  top: 30px;
  right: -50px;
}
@media screen and (max-width: 768px) {
  #top .about_icon.-person01 {
    width: 80px;
    top: -15px;
    right: -1.2820512821vw;
  }
}
#top .about_icon.-person02 {
  bottom: -90px;
  left: 50px;
}
@media screen and (max-width: 768px) {
  #top .about_icon.-person02 {
    width: 52px;
    bottom: -55px;
    left: -1.7948717949vw;
  }
}
#top .about_icon.-fubuki01 {
  bottom: -160px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #top .about_icon.-fubuki01 {
    width: 160px;
    bottom: -80px;
  }
}

/*==================================================================
    #top .voice
===================================================================*/
#top .voice {
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .voice {
    padding: 65px 0 0;
  }
}
#top .voice::before {
  display: block;
  content: "";
  width: 2307px;
  height: 1859px;
  border-radius: 50%;
  background: var(--c1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #top .voice::before {
    width: 169.2307692308vw;
    height: 169.2307692308vw;
  }
}
#top .voice .h01 {
  margin-bottom: 5.4em;
}
@media screen and (max-width: 768px) {
  #top .voice .h01 {
    margin-bottom: 3em;
  }
  #top .voice .h01 span {
    max-width: 164px;
  }
}
#top .voice_slider {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .voice_slider {
    background-color: var(--c1);
    padding: 0 0 30px;
  }
}
#top .voice_slider .slider {
  margin-bottom: 0;
}
#top .voice_slider .slider .swiper-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 0;
}
#top .voice_slider .slider_item {
  width: 32.8125%;
  max-width: 420px;
  background-color: var(--w);
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider_item {
    width: 71.7948717949vw;
    max-width: 280px;
  }
}
#top .voice_slider .slider_item .img {
  padding: 0 6.9047619048%;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider_item .img {
    padding: 0 4.6153846154vw;
  }
}
#top .voice_slider .slider_item .contents {
  padding: 0 8.3333333333% 8.3333333333%;
  transform: translateY(-0.5em);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider_item .contents {
    padding: 0 6.4102564103vw 7.6923076923vw;
  }
}
#top .voice_slider .slider_item .contents_icon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 25px;
  border: solid 1px #dc4b22;
  border-radius: 99px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #dc4b22;
  margin-bottom: 0.625em;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider_item .contents_icon {
    width: 74px;
    height: 21px;
    font-size: 1.2rem;
    margin-bottom: 0.4em;
  }
}
#top .voice_slider .slider_item .contents_txt p {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  color: var(--k3);
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider_item .contents_txt p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
#top .voice_slider .slider_item .contents_txt p:not(:last-of-type) {
  margin-bottom: 0.625em;
}
#top .voice_slider .slider_item .contents_txt p span {
  font-weight: 700;
  color: #dc4b22;
}
#top .voice_slider .slider_item .contents_txt p.caution {
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider_item .contents_txt p.caution {
    font-size: 1rem;
  }
}
#top .voice_slider .slider.swiper {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider.swiper {
    margin-bottom: 30px;
  }
}
#top .voice_slider .slider-controls {
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: center;
}
#top .voice_slider .slider-controls .swiper-pagination {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  width: auto;
  font-size: 0;
  line-height: 0;
  position: relative;
  bottom: auto;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider-controls .swiper-pagination {
    gap: 0 6px;
  }
}
#top .voice_slider .slider-controls .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0;
  border: solid 1px var(--w);
  border-radius: 99px;
  opacity: 1;
  background: transparent;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider-controls .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
#top .voice_slider .slider-controls .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--w);
}
#top .voice_slider .slider-controls .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--w);
}
#top .voice_slider .slider-controls .btn-toggle {
  width: 10px;
  height: 14px;
  border: none;
  background-color: transparent;
  padding: 0;
  margin-left: 25px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider-controls .btn-toggle {
    width: 8px;
    height: 10px;
    margin-left: 15px;
  }
}
#top .voice_slider .slider-controls .btn-toggle::before, #top .voice_slider .slider-controls .btn-toggle::after {
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--w);
  position: absolute;
  top: 0;
  transition: var(--transition);
  cursor: pointer;
}
#top .voice_slider .slider-controls .btn-toggle::before {
  left: 0;
}
#top .voice_slider .slider-controls .btn-toggle::after {
  right: 0;
}
#top .voice_slider .slider-controls .btn-toggle.is-paused::before {
  width: 14px;
  height: 14px;
  clip-path: polygon(14px 50%, 0% 0%, 0% 14px);
}
@media screen and (max-width: 768px) {
  #top .voice_slider .slider-controls .btn-toggle.is-paused::before {
    width: 10px;
    height: 10px;
    clip-path: polygon(10px 50%, 0% 0%, 0% 10px);
  }
}
#top .voice_slider .slider-controls .btn-toggle.is-paused::after {
  display: none;
}
#top .voice_slider .btn-slider {
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 37px));
  z-index: 2;
  cursor: pointer;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  #top .voice_slider .btn-slider {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
  }
}
#top .voice_slider .btn-slider.-prev {
  background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/icon_prev.svg);
  left: 10%;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .btn-slider.-prev {
    left: 8.9743589744vw;
  }
}
#top .voice_slider .btn-slider.-next {
  background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/icon_next.svg);
  right: 10%;
}
@media screen and (max-width: 768px) {
  #top .voice_slider .btn-slider.-next {
    right: 8.9743589744vw;
  }
}
#top .voice_slider .btn-slider:hover {
  opacity: 0.6;
}
#top .voice_slider .btn-prev:focus-visible,
#top .voice_slider .btn-next:focus-visible,
#top .voice_slider .btn-toggle:focus-visible,
#top .voice_slider .swiper-pagination-bullet:focus-visible {
  outline: 3px solid #dc4b22;
  outline-offset: 4px;
  border-radius: 6px;
}
#top .voice_slider .btn-prev:focus:not(:focus-visible),
#top .voice_slider .btn-next:focus:not(:focus-visible),
#top .voice_slider .btn-toggle:focus:not(:focus-visible),
#top .voice_slider .swiper-pagination-bullet:focus:not(:focus-visible) {
  outline: none;
}

/*==================================================================
    #top .howto
===================================================================*/
#top .howto {
  padding: 60px 0 120px;
  background-color: var(--c1);
}
@media screen and (max-width: 768px) {
  #top .howto {
    padding: 30px 0 100px;
  }
}
#top .howto .h01 {
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  #top .howto .h01 {
    margin-bottom: 3.6em;
  }
  #top .howto .h01 span {
    max-width: 254px;
  }
}
#top .howto_blocks {
  display: flex;
  flex-flow: column nowrap;
  gap: 40px 0;
  padding-left: 10.5263157895%;
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks {
    align-items: center;
    gap: 60px 0;
    padding-left: 0;
    margin-bottom: 60px;
  }
}
#top .howto_blocks .blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
#top .howto_blocks .blocks:not(:first-of-type)::before {
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--w);
  position: absolute;
  top: -50px;
  left: 70px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .blocks:not(:first-of-type)::before {
    height: calc(100% + 70px);
    top: -70px;
    left: 49px;
  }
}
#top .howto_blocks .blocks_l {
  flex-shrink: 0;
  width: 140px;
  margin-right: 7.0588235294%;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .blocks_l {
    width: 100px;
    margin-right: 5.1282051282vw;
  }
}
#top .howto_blocks .blocks_l .img {
  width: 100%;
}
#top .howto_blocks .blocks_r {
  flex-shrink: 1;
  width: calc(92.9411764706% - 140px);
  color: var(--w);
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .blocks_r {
    width: calc(100% - 5.1282051282vw - 100px);
  }
}
#top .howto_blocks .blocks_r .ttl {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .blocks_r .ttl {
    font-size: 1.8rem;
  }
}
#top .howto_blocks .blocks_r .txt p {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .blocks_r .txt p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
#top .howto_btn {
  max-width: 500px;
  margin: 0 auto;
}
#top .howto_btn a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: solid 2px var(--w);
  background-color: #cc0000;
  background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/icon_arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 5%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--w);
}
@media screen and (max-width: 768px) {
  #top .howto_btn a {
    height: 50px;
    background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/icon_arrow_btn_sp.svg);
    font-size: 1.8rem;
  }
}
#top .howto_btn a:hover {
  opacity: 0.8;
  background-position: top 50% right 4%;
}

/*==================================================================
    #top .where
===================================================================*/
#top .where {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  #top .where {
    padding-bottom: 60px;
  }
}
#top .where_inner {
  padding-top: 370px;
  background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/where_bg.svg);
  background-repeat: no-repeat;
  background-position: top 50px left 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .where_inner {
    padding-top: 310px;
    background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/where_bg_sp.svg);
  }
}
#top .where_icon {
  position: absolute;
}
#top .where_icon.-gate {
  top: 0;
  left: 11.0526315789%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #top .where_icon.-gate {
    width: 55px;
    left: 50%;
    margin-left: -185px;
    z-index: 0;
  }
}
#top .where_icon.-fubuki01 {
  top: 100px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top .where_icon.-fubuki01 {
    width: 118px;
    top: 145px;
    left: 50%;
    margin-left: -200px;
  }
}
#top .where_icon.-fubuki02 {
  top: -70px;
  right: -3.6842105263%;
}
@media screen and (max-width: 768px) {
  #top .where_icon.-fubuki02 {
    width: 118px;
    top: -30px;
    right: 50%;
    margin-right: -210px;
  }
}
#top .where_icon.-person01 {
  top: 140px;
  left: 33.1578947368%;
}
@media screen and (max-width: 768px) {
  #top .where_icon.-person01 {
    width: 48px;
    top: 125px;
    left: 50%;
    margin-left: -120px;
  }
}
#top .where_icon.-person02 {
  top: 115px;
  left: 45.2631578947%;
}
@media screen and (max-width: 768px) {
  #top .where_icon.-person02 {
    width: 65px;
    top: 100px;
    left: 50%;
    margin-left: -30px;
  }
}
#top .where_icon.-person03 {
  top: 135px;
  right: 35.2631578947%;
}
@media screen and (max-width: 768px) {
  #top .where_icon.-person03 {
    width: 66px;
    top: 115px;
    right: 50%;
    margin-right: -115px;
  }
}
#top .where .h01 {
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  #top .where .h01 {
    margin-bottom: 2.5em;
  }
  #top .where .h01 span {
    max-width: 304px;
  }
}
#top .where_tabs .main-btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  padding: 0 var(--spa);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .main-btn {
    gap: 0 10px;
    margin-bottom: 35px;
  }
}
#top .where_tabs .main-btn button {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 25.3125%;
  max-width: 324px;
  height: 76px;
  padding: 0;
  border-radius: 5px;
  background-color: #909090;
  border: none;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--w);
  transition: var(--transition);
  cursor: pointer;
}
@media screen and (max-width: 1030px) {
  #top .where_tabs .main-btn button {
    width: 31.4563106796%;
  }
}
@media screen and (max-width: 768px) {
  #top .where_tabs .main-btn button {
    width: calc((100% - 10px) / 2);
    max-width: unset;
    height: 70px;
    font-size: 1.6rem;
    line-height: normal;
  }
  #top .where_tabs .main-btn button:last-of-type {
    font-size: 1.4rem;
  }
}
#top .where_tabs .main-btn button:hover {
  background-color: var(--c1);
}
#top .where_tabs .main-btn button.active {
  background-color: var(--c1);
}
#top .where_tabs .main-contents_box {
  display: none;
}
#top .where_tabs .main-contents_box.active {
  display: block;
}
#top .where_tabs .nested-tabs .sub-btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 9px;
  padding: 0 var(--spa);
  border-bottom: solid 2px var(--c1);
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-btn {
    gap: 0 3px;
    padding: 0 3.8461538462vw;
    margin-bottom: 30px;
  }
}
#top .where_tabs .nested-tabs .sub-btn button {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 12.5%;
  max-width: 160px;
  height: 74px;
  padding: 0;
  border-radius: 10px 10px 0 0;
  border-left: solid 1px var(--c1);
  border-right: solid 1px var(--c1);
  border-top: solid 1px var(--c1);
  border-bottom: none;
  background-color: var(--w);
  font-size: 1.4rem;
  line-height: 1.3;
  color: #097cb6;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1030px) {
  #top .where_tabs .nested-tabs .sub-btn button {
    width: 15.5339805825%;
  }
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-btn button {
    width: calc((100% - 9px) / 4);
    max-width: unset;
    height: 57px;
    font-size: 1.1rem;
  }
}
#top .where_tabs .nested-tabs .sub-btn button::before {
  display: block;
  content: "";
  width: 14px;
  height: 11px;
  background-color: var(--c1);
  clip-path: polygon(50% 11px, 0% 0%, 14px 0%);
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-btn button::before {
    width: 9px;
    height: 7px;
    clip-path: polygon(50% 7px, 0% 0%, 9px 0%);
    bottom: -7px;
  }
}
#top .where_tabs .nested-tabs .sub-btn button em {
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-btn button em {
    font-size: 1.6rem;
  }
}
#top .where_tabs .nested-tabs .sub-btn button:hover {
  color: var(--w);
  background-color: var(--c1);
}
#top .where_tabs .nested-tabs .sub-btn button.active {
  color: var(--w);
  background-color: var(--c1);
}
#top .where_tabs .nested-tabs .sub-btn button.active::before {
  opacity: 1;
}
#top .where_tabs .nested-tabs .sub-contents_box {
  display: none;
}
#top .where_tabs .nested-tabs .sub-contents_box.active {
  display: block;
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper {
  overflow: hidden;
  transition: height 0.4s ease;
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list {
  display: flex;
  flex-flow: row wrap;
  gap: 16px 27px;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list {
    gap: 12px 15px;
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item {
  width: calc((100% - 54px) / 3);
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item {
    width: calc((100% - 15px) / 2);
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl dt {
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl dt {
    margin-bottom: 0.3em;
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl dt img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl dt img {
    border-radius: 5px;
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl dd {
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 500;
  color: #097cb6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .list-wrapper .list_item dl dd {
    font-size: 1.6rem;
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .btn-more {
  max-width: 500px;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .btn-more {
    margin: 30px auto 0;
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .btn-more button {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0;
  background-color: var(--w);
  border: solid 1px var(--c1);
  border-radius: 99px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #097cb6;
  cursor: pointer;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .btn-more button {
    height: 50px;
    font-size: 1.8rem;
  }
}
#top .where_tabs .nested-tabs .sub-contents_box .btn-more button:hover {
  background-color: var(--c1);
  color: var(--w);
}
@media screen and (max-width: 768px) {
  #top .where_tabs .nested-tabs .sub-contents_box .btn-more button:hover {
    background-color: var(--w);
    color: var(--c1);
  }
}

/*==================================================================
    #top .campaign
===================================================================*/
#top .campaign {
  padding: 75px 0 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .campaign {
    padding: 40px 0 60px;
  }
}
#top .campaign::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#top .campaign .h01 {
  margin-bottom: 3.5em;
}
@media screen and (max-width: 768px) {
  #top .campaign .h01 {
    margin-bottom: 3.2em;
  }
  #top .campaign .h01 span {
    width: 218px;
  }
}
#top .campaign_blocks {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px 0;
}
#top .campaign_blocks .blocks {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 4.7368421053% 10% 3.6842105263%;
  background-color: var(--w);
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks {
    padding: 8.9743589744vw 6.4102564103vw 6.4102564103vw;
  }
}
#top .campaign_blocks .blocks_ttl {
  width: 100%;
  padding-left: 54px;
  position: relative;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks_ttl {
    padding-left: 40px;
  }
}
#top .campaign_blocks .blocks_ttl .txt {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  border: solid 2px var(--c1);
  border-radius: 99px;
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks_ttl .txt {
    height: 30px;
  }
}
#top .campaign_blocks .blocks_ttl .txt em {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #097cb6;
  transform: translateX(-27px);
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks_ttl .txt em {
    font-size: 1.4rem;
    transform: translateX(0);
  }
}
#top .campaign_blocks .blocks_ttl .icon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  background-image: url(/jp/ja/121campaign/2025/dokokani-10th/revise/img_sites/top/campaign_icon_star.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks_ttl .icon {
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
    left: 8px;
  }
}
#top .campaign_blocks .blocks_bnr a {
  display: block;
}
#top .campaign_blocks .blocks_bnr a:hover {
  opacity: 0.6;
}
#top .campaign_blocks .blocks.-coming {
  min-height: 170px;
  background-color: #909090;
  border: solid 2px var(--w);
  padding: 0;
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks.-coming {
    min-height: 100px;
  }
}
#top .campaign_blocks .blocks.-coming p {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--w);
}
@media screen and (max-width: 768px) {
  #top .campaign_blocks .blocks.-coming p {
    font-size: 1.6rem;
  }
}

#top .campaign_blocks .caution {
  font-weight: 700;
  color: #cc0000;
}

@media screen and (max-width: 768px) {
  #top .campaign_blocks .caution {
    font-size: 1.4rem;
  }
}

/*==================================================================
    #top .bnr-area
===================================================================*/
#top .bnr-area {
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  #top .bnr-area {
    padding: 30px 0;
  }
}
#top .bnr-area_flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0 24px;
}
@media screen and (max-width: 768px) {
  #top .bnr-area_flex {
    flex-flow: column nowrap;
    align-items: center;
    gap: 10px 0;
  }
}
#top .bnr-area_flex-bnr {
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 768px) {
  #top .bnr-area_flex-bnr {
    width: 100%;
    max-width: 350px;
  }
}
#top .bnr-area_flex-bnr a {
  display: block;
}
#top .bnr-area_flex-bnr a:hover {
  opacity: 0.6;
}
