@charset "UTF-8";
/*reset*/
* {
  padding-left: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a img {
  display: block;
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*common*/
html {
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  font-size: 14px;
}
@media print, screen and (min-width: 980px) {
  body {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}
body h1, body h2, body h3, body h4, body h5, body p, body li {
  letter-spacing: 0.12em;
}
body p, body li, body a {
  font-size: 1em;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
body p {
  margin-bottom: 1em;
}
body p:last-of-type:not([class]) {
  margin-bottom: 0;
}

a:hover {
  cursor: pointer;
}

a.line {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 30px);
}
@media print, screen and (min-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }
}
@media print, screen and (min-width: 1200px) {
  .container {
    width: calc(100% - 64px);
  }
}
@media print, screen and (min-width: 1264px) {
  .container {
    width: 1200px;
  }
}

.left_mg, #header .logo {
  padding: 0 0 0 15px;
}
@media print, screen and (min-width: 980px) {
  .left_mg, #header .logo {
    padding: 0 0 0 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .left_mg, #header .logo {
    padding: 0 0 0 32px;
  }
}
@media print, screen and (min-width: 1264px) {
  .left_mg, #header .logo {
    padding: 0 0 0 calc((100% - 1200px) / 2);
  }
}

.right_mg, #header .pc-menu {
  padding: 0 15px 0 0;
}
@media print, screen and (min-width: 980px) {
  .right_mg, #header .pc-menu {
    padding: 0 20px 0 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .right_mg, #header .pc-menu {
    padding: 0 32px 0 0;
  }
}
@media print, screen and (min-width: 1264px) {
  .right_mg, #header .pc-menu {
    padding: 0 calc((100% - 1200px) / 2) 0 0;
  }
}

/*余白*/
.mb1em {
  margin-bottom: 1em;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.com_btm {
  margin-bottom: 100px;
}
@media print, screen and (max-width: 979px) {
  .com_btm {
    margin-bottom: 30px;
  }
}

.pc_view {
  display: none;
}
@media print, screen and (min-width: 980px) {
  .pc_view {
    display: block;
  }
}

.sp_view {
  display: block;
}
@media print, screen and (min-width: 980px) {
  .sp_view {
    display: none;
  }
}

.tb_view {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .tb_view {
    display: none;
  }
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
}
.fade.toleft {
  transform: translateX(30px);
}
.fade.toright {
  transform: translateX(-30px);
}
.fade.tobottom {
  transform: translateY(-30px);
}
.fade {
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

ul.simple_list {
  margin-bottom: 1em;
}
ul.simple_list li {
  padding-left: 1em;
  position: relative;
}
ul.simple_list li::before {
  content: "・";
  position: absolute;
  left: 2px;
  top: 0;
}

@media print, screen and (min-width: 980px) {
  .flex_pc {
    display: flex;
    gap: 30px;
  }
  .flex_pc .item {
    width: calc((100% - 30px) / 2);
  }
}
/*header*/
#header {
  width: 100vw;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 980px) {
  #header {
    padding-top: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#header .logo a {
  width: clamp(114px, 12.5vw, 172px);
  display: block;
}
#header .logo a img {
  width: 100%;
}
#header .pc-menu {
  padding-left: 4em;
  padding-top: 2em;
  padding-bottom: 2em;
  background: #fff;
  border-radius: 20px 0 0 20px;
  display: inline-block;
}
#header .pc-menu .menu {
  display: flex;
  justify-content: flex-end;
}
#header .pc-menu .menu li {
  display: block;
  flex-basis: auto;
  flex-shrink: 0;
}
#header .pc-menu .menu li:not(:last-of-type) {
  margin-right: 1em;
}
#header .pc-menu .menu a {
  color: #000;
}
@media print, screen and (max-width: 979px) {
  #header .logo {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 100000;
  }
  #header .sp-menu {
    max-width: 440px;
    position: absolute;
    right: 0;
    top: 0;
    padding-bottom: 32px;
  }
  #header .sp-menu .hamburger {
    background: #fff;
    border-radius: 13px;
    position: fixed;
    right: 16px;
    top: 16px;
    width: 60px;
    height: 60px;
  }
  #header .sp-menu .hamburger .hamburger_inner {
    position: relative;
    margin: 14px;
    height: calc(100% - 28px);
    width: calc(100% - 28px);
  }
  #header .sp-menu .hamburger .hamburger_inner::after {
    position: absolute;
    top: 18px;
    content: "MENU";
    font-size: 11px;
    width: 100%;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.02em;
  }
  #header .sp-menu .hamburger .hamburger_inner .hamburger__line {
    position: absolute;
    width: 32px;
    height: 2px;
    background-color: #333333;
    border-radius: 0px;
    transition: all 300ms ease;
    transform: rotate(0deg);
  }
  #header .sp-menu .hamburger .hamburger_inner .hamburger__line:nth-child(1) {
    top: 0px;
  }
  #header .sp-menu .hamburger .hamburger_inner .hamburger__line:nth-child(2) {
    top: 10px;
  }
  #header .sp-menu .hamburger {
    cursor: pointer;
    z-index: 9999;
  }
  #header .sp-menu .hamburger.open {
    background: #f9f9f9;
  }
  #header .sp-menu .hamburger.open .hamburger_inner::after {
    content: "CLOSE";
    letter-spacing: 0;
  }
  #header .sp-menu .hamburger.open .hamburger_inner .hamburger__line:nth-child(1), #header .sp-menu .hamburger.open .hamburger_inner .hamburger__line:nth-child(2) {
    top: 20%;
  }
  #header .sp-menu .hamburger.open .hamburger_inner .hamburger__line:nth-child(1) {
    transform: translateY(-50%) rotate(20deg);
  }
  #header .sp-menu .hamburger.open .hamburger_inner .hamburger__line:nth-child(2) {
    transform: translateY(-50%) rotate(-20deg);
  }
  #header .sp-menu {
    /* メニュー本体 */
  }
  #header .sp-menu #menu {
    opacity: 0;
    display: none;
    transform: translateY(-20px);
    transition: all 300ms ease;
    margin: 0 0 0 auto;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
  }
  #header .sp-menu #menu .inner {
    padding: 8em 16px 50px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 0 0 16px 16px;
  }
  #header .sp-menu #menu .inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 40px;
  }
  #header .sp-menu #menu .inner ul li {
    width: calc((100% - 16px) / 2);
  }
  #header .sp-menu #menu .inner ul li a {
    color: #000;
    line-height: 1;
    display: block;
    padding: 1.5em 0;
    text-align: center;
    border-radius: 2em;
    border: solid 2px #e1e1e1;
    transition: all 300ms ease;
  }
  #header .sp-menu #menu .inner ul li a:hover {
    cursor: pointer;
    background: #e1e1e1;
  }
  #header .sp-menu #menu .inner ul li {
    line-height: 1;
  }
  #header .sp-menu #menu .inner .msg {
    margin: 0 0 32px;
  }
  #header .sp-menu #menu .inner .msg p {
    font-size: 1.35em;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.18em;
  }
  #header .sp-menu #menu .inner .cv {
    margin: 0;
    display: flex;
    gap: 16px;
  }
  #header .sp-menu #menu .inner .cv a {
    line-height: 1;
    display: block;
    padding: 0.6em 0 0.7em;
    text-align: center;
    border-radius: 2.3em;
    transition: all 300ms ease;
    font-size: 1.42em;
    width: calc((100% - 16px) / 2);
  }
  #header .sp-menu #menu .inner .cv a span {
    display: block;
    font-size: 0.5em;
    margin-bottom: 4px;
  }
  #header .sp-menu #menu .inner .cv a span::before {
    content: "\\";
    margin-right: 0.5em;
  }
  #header .sp-menu #menu .inner .cv a span::after {
    content: "/";
    margin-left: 0.5em;
  }
  #header .sp-menu #menu .inner .cv a:hover {
    cursor: pointer;
  }
  #header .sp-menu #menu .inner .cv a:first-of-type {
    color: #000;
    border: solid 2px #e2dc34;
    background: #e2dc34;
  }
  #header .sp-menu #menu .inner .cv a:last-of-type {
    color: #fff;
    border: solid 2px #d57c40;
    background: #d57c40;
  }
  #header .sp-menu #menu.open {
    opacity: 1;
    transform: translateY(0);
    display: block;
    padding-bottom: 32px;
  }
}
@media print, screen and (max-width: 979px) {
  #header .pc-menu {
    display: none;
  }
}
@media print, screen and (min-width: 980px) {
  #header .sp-menu {
    display: none;
  }
}

/*フロート*/
#float .cv {
  margin: 0;
  display: flex;
  gap: 16px;
}
#float .cv a {
  line-height: 1;
  display: block;
  padding: 0.6em 0 0.7em;
  text-align: center;
  border-radius: 2.3em;
  transition: all 300ms ease;
  font-size: 1.42em;
  width: calc((100% - 16px) / 2);
}
#float .cv a span {
  display: block;
  font-size: 0.5em;
  margin-bottom: 4px;
}
#float .cv a span::before {
  content: "\\";
  margin-right: 0.5em;
}
#float .cv a span::after {
  content: "/";
  margin-left: 0.5em;
}
#float .cv a:hover {
  cursor: pointer;
}
#float .cv a:first-of-type {
  color: #000;
  border: solid 2px #e2dc34;
  background: #e2dc34;
}
#float .cv a:last-of-type {
  color: #fff;
  border: solid 2px #d57c40;
  background: #d57c40;
}
#float .cv {
  width: 22.75em;
}
#float .cv a {
  font-size: 1.25em;
}
#float {
  position: fixed;
  right: 0;
  bottom: 2em;
  background: #fff;
  padding: 1em;
  z-index: 9999;
  border-radius: 1.25em 0 0 1.25em;
  display: none;
}
@media print, screen and (min-width: 980px) {
  #float {
    display: block;
  }
}

.webp #mv::before {
  background-image: url(./images/mv-bg-sp.webp);
}
@media print, screen and (min-width: 980px) {
  .webp #mv::before {
    background-image: url(./images/mv-bg-pc.webp);
  }
}
.webp #mv::after {
  background-image: url(./images/mv-btm-sp.webp);
}
@media print, screen and (min-width: 980px) {
  .webp #mv::after {
    background-image: url(./images/mv-btm-pc.webp);
  }
}
.webp #particular .reason {
  background-image: url(./images/reason-bg-sp.webp);
}
@media print, screen and (min-width: 768px) {
  .webp #particular .reason {
    background-image: url(./images/reason-bg-pc.webp);
  }
}
.webp #side {
  background-image: url(./images/side-bg-up.webp), url(./images/side-bg-btm.webp);
}
@media print, screen and (min-width: 980px) {
  .webp #side {
    background-image: url(./images/side-bg-left.webp), url(./images/side-bg-right.webp);
  }
}
.webp footer {
  background-image: url(./images/footer-bg.webp);
}

.no-webp #mv::before {
  background-image: url(./images/mv-bg-sp.png);
}
@media print, screen and (min-width: 980px) {
  .no-webp #mv::before {
    background-image: url(./images/mv-bg-pc.png);
  }
}
.no-webp #mv::after {
  background-image: url(./images/mv-btm-sp.png);
}
@media print, screen and (min-width: 980px) {
  .no-webp #mv::after {
    background-image: url(./images/mv-btm-pc.png);
  }
}
.no-webp #particular .reason {
  background-image: url(./images/reason-bg-sp.png);
}
@media print, screen and (min-width: 768px) {
  .no-webp #particular .reason {
    background-image: url(./images/reason-bg-pc.png);
  }
}
.no-webp #side {
  background-image: url(./images/side-bg-up.png), url(./images/side-bg-btm.png);
}
@media print, screen and (min-width: 980px) {
  .no-webp #side {
    background-image: url(./images/side-bg-left.png), url(./images/side-bg-right.png);
  }
}
.no-webp footer {
  background-image: url(./images/footer-bg.jpg);
}

/*mainvisual*/
#mv {
  padding-top: 152vw;
}
@media print, screen and (min-width: 980px) {
  #mv {
    padding-top: 18em;
  }
}
#mv {
  z-index: 0;
  position: relative;
}
#mv::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: left top;
  height: 152vw;
  width: 100%;
  background-size: contain;
}
@media print, screen and (min-width: 980px) {
  #mv::before {
    height: 103.65vw;
    background-size: cover;
  }
}
#mv h2 {
  font-weight: normal;
  letter-spacing: 0.18em;
  font-size: 2em;
}
@media print, screen and (min-width: 980px) {
  #mv h2 {
    font-size: 3em;
  }
}
#mv h2 {
  margin-bottom: 1.4em;
}
@media print, screen and (max-width: 979px) {
  #mv h2 {
    margin-top: 1.4em;
  }
}
#mv p {
  font-size: 1.15em;
}
@media print, screen and (min-width: 980px) {
  #mv p {
    font-size: 1.5em;
  }
}
#mv p {
  line-height: 1.8;
}
#mv p small {
  font-size: 0.75em;
}
#mv::after {
  content: "";
  display: block;
  width: 100vw;
  height: 88.8vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-top: 3.5em;
}
@media print, screen and (min-width: 980px) {
  #mv::after {
    height: 63.17vw;
    margin-top: 13em;
  }
}

#particular {
  background: #e5e5d5;
  padding-bottom: 7.5em;
}
#particular .intro {
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  #particular .intro p {
    text-align: left;
  }
}
#particular .intro {
  margin-bottom: 3.75em;
}
#particular .intro h2 {
  letter-spacing: 0.12em;
  font-size: 1.3em;
}
@media print, screen and (min-width: 768px) {
  #particular .intro h2 {
    font-size: 2em;
  }
}
#particular .intro h2 {
  margin-bottom: 1em;
}
#particular .intro h2 span {
  line-height: 1;
  border-radius: 1.5em;
  padding: 1em 2em;
  background: #fff;
  display: table;
  margin: 0 auto 1em;
  position: relative;
}
#particular .intro h2 span::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-bottom: 0;
  bottom: -9px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid #ffffff;
}
@media print, screen and (min-width: 768px) {
  #particular .intro h2 span::after {
    bottom: -16px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 16px solid #ffffff;
  }
}
#particular .intro h2 span {
  font-size: 0.55em;
}
#particular .intro p a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#particular .particular-inner {
  display: flex;
  justify-content: center;
  counter-reset: cnt;
  flex-wrap: wrap;
  gap: 2.8em;
}
#particular .particular-inner .item {
  width: 100%;
  background: #fff;
  border-radius: 1.25em;
  padding: 3em 2em 2.75em;
  position: relative;
  counter-increment: cnt;
}
#particular .particular-inner .item::before, #particular .particular-inner .item::after {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
#particular .particular-inner .item::before {
  content: counter(cnt, decimal-leading-zero);
  letter-spacing: 0.08em;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 2;
  font-size: 1.1em;
}
#particular .particular-inner .item::after {
  content: "";
  display: block;
  background: #ccccaf;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1;
}
#particular .particular-inner h3 {
  text-align: center;
  font-size: 1.25em;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  #particular .particular-inner h3 {
    min-height: 4.5em;
  }
}
#particular .particular-inner h3 {
  letter-spacing: 0.12em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#particular .particular-inner picture {
  width: 100%;
  display: block;
  margin-bottom: 1.25em;
}
#particular .particular-inner p {
  margin-bottom: 1.25em;
}
#particular .particular-inner a {
  display: block;
  text-align: center;
  width: 10.08em;
  background: #f7ea5a;
  letter-spacing: 0.12em;
  font-weight: bold;
  color: #000;
  padding: 0.75em 0;
  border-radius: 1.25em;
  line-height: 1;
  margin: 0 auto;
}
#particular .particular-inner {
  margin-bottom: 2em;
}
@media print, screen and (min-width: 768px) {
  #particular .particular-inner .item {
    width: calc((100% - 3.5em) / 2);
  }
}
@media print, screen and (min-width: 980px) {
  #particular .particular-inner {
    gap: 3.5em 1.75em;
  }
  #particular .particular-inner .item {
    width: calc((100% - 3.5em) / 3);
  }
}
#particular .reason {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1.25em;
  background-color: #887f6c;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  padding: 40px 20px;
}
#particular .reason h3, #particular .reason p {
  color: #fff;
}
#particular .reason h3 {
  font-size: 1.37em;
  margin-bottom: 0.7em;
  text-align: center;
}
#particular .reason p small {
  font-size: 11px;
}
#particular .reason a {
  display: block;
  text-align: center;
  width: 10.08em;
  background: #f7ea5a;
  letter-spacing: 0.12em;
  font-weight: bold;
  color: #000;
  padding: 0.75em 0;
  border-radius: 1.25em;
  line-height: 1;
  margin: 1em auto 47.5vw;
}
#particular .reason {
  position: relative;
}
#particular .reason::after {
  content: "※画像はイメージです";
  position: absolute;
  right: 0;
  bottom: -2em;
  font-size: 0.86em;
}
@media print, screen and (min-width: 768px) {
  #particular .reason {
    background-position: top right;
    background-size: auto 100%;
    padding: 2.5em 24em 2.5em 2.5em;
  }
  #particular .reason h3 {
    text-align: left;
  }
  #particular .reason a {
    margin: 1em 0 0;
  }
}

#side h2, #side p, #side a {
  text-align: center;
}
#side h2 {
  font-size: 2em;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}
#side h2 span {
  color: #d57c40;
  display: block;
  font-size: max(0.375em, 12px);
  margin-bottom: 1em;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#side a {
  display: block;
  text-align: center;
  width: 19.04em;
  background: #f7ea5a;
  letter-spacing: 0.12em;
  font-weight: bold;
  color: #000;
  padding: 1em 0;
  border-radius: 1.5em;
  line-height: 1;
  margin: 2em auto 0;
}
#side {
  background-repeat: no-repeat, no-repeat;
  padding: 62vw 0 80vw;
  background-size: 100% 105vw, 100% 92vw;
  background-position: top, bottom;
}
@media print, screen and (min-width: 980px) {
  #side {
    padding: 6em 0 15em;
    background-size: 44.72vw auto, 38.6vw, auto;
    background-position: left bottom, right top;
  }
}

#lineup {
  background: #eaeff4;
  padding: 64px 0;
}
@media print, screen and (min-width: 980px) {
  #lineup {
    padding: 80px 0;
  }
}
#lineup h2 {
  text-align: center;
  margin-bottom: 1em;
}
#lineup h2 span {
  color: #d57c40;
  display: block;
  font-size: max(0.375em, 12px);
  margin-bottom: 1em;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#lineup .intro {
  max-width: 54em;
  margin: 0 auto 2em;
}
#lineup .products {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 1em;
}
@media print, screen and (min-width: 980px) {
  #lineup .products {
    gap: 30px;
    flex-wrap: nowrap;
  }
}
#lineup .products .product {
  width: calc((100% - 1em) / 2);
}
#lineup .products .product picture {
  display: block;
  width: 100%;
  margin-bottom: 1em;
}
#lineup .products .product p {
  text-align: center;
}
@media print, screen and (min-width: 980px) {
  #lineup .products .product {
    width: calc((100% - 90px) / 4);
  }
}
#lineup a.btn {
  display: block;
  text-align: center;
  width: 19.04em;
  background: #f7ea5a;
  letter-spacing: 0.12em;
  font-weight: bold;
  color: #000;
  padding: 1em 0;
  border-radius: 1.5em;
  line-height: 1;
  margin: 2em auto 0;
}

#try h2 {
  text-align: center;
  margin-bottom: 1.7em;
}
#try h2 span {
  color: #d57c40;
  display: block;
  font-size: max(0.375em, 12px);
  margin-bottom: 1em;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#try .try-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1034px;
  margin: 0 auto;
}
#try .try-wrap a {
  display: block;
  width: 100%;
}
#try .try-wrap a img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  #try .try-wrap {
    flex-direction: row;
  }
  #try .try-wrap a {
    width: calc((100% - 30px) / 2);
  }
}
#try {
  padding: 4.2em 0 5em;
}
@media print, screen and (min-width: 768px) {
  #try {
    padding: 5em 0 7em;
  }
}

/*footer*/
footer {
  background-repeat: no-repeat;
  width: 100%;
  padding: 3.5em 0 1em;
  height: 251vw;
  max-height: 840px;
  background-size: auto 110%;
  background-position: center 10%;
}
@media print, screen and (min-width: 768px) {
  footer {
    padding-top: 2em;
    height: 66.1vw;
    max-height: unset;
    background-size: auto 100%;
    background-position: center bottom;
  }
}
@media print, screen and (min-width: 980px) {
  footer {
    padding-top: 2.5em;
  }
}
@media print, screen and (min-width: 1366px) {
  footer {
    height: 61.9vw;
  }
}
footer .foot-wrap {
  font-size: 1em;
}
@media print, screen and (min-width: 1200px) {
  footer .foot-wrap {
    font-size: 1.25em;
  }
}
footer .foot-wrap {
  position: relative;
  padding-top: 24em;
}
@media print, screen and (min-width: 768px) {
  footer .foot-wrap {
    padding-top: 7em;
  }
}
footer .foot-wrap {
  padding-bottom: 18vw;
}
@media print, screen and (min-width: 980px) {
  footer .foot-wrap {
    padding-bottom: 20.5vw;
  }
}
footer .foot-wrap .foot-links {
  position: absolute;
  max-width: 52em;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
footer .foot-wrap .foot-msg {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: block;
  margin: 0 auto;
  max-width: 380px;
  width: 80vw;
}
@media print, screen and (min-width: 768px) {
  footer .foot-wrap .foot-msg {
    width: 28vw;
    max-width: 474px;
  }
}
@media print, screen and (min-width: 980px) {
  footer .foot-wrap .foot-msg {
    width: 34.6vw;
  }
}
footer .foot-wrap .foot-msg {
  height: auto;
}
footer .foot-links {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
footer .foot-links .foot-link {
  text-align: center;
  line-height: 1;
  width: calc((100% - 1em) / 2);
}
@media print, screen and (min-width: 768px) {
  footer .foot-links .foot-link {
    width: calc((100% - 3em) / 4);
  }
}
footer .foot-links .foot-link a {
  display: block;
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  background: #fff;
  border-radius: 1.5em;
  color: #000;
  cursor: pointer;
  letter-spacing: 0.02em;
}
footer {
  padding-bottom: 1em;
  position: relative;
}
footer .foot-btm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 1em;
}
footer .foot-btm .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .foot-btm .container .ft-btn a {
  display: block;
  width: 21.3vw;
  max-width: 120px;
}
footer .foot-btm .container .copyright a {
  color: #fff;
  text-shadow: #000 1px 0 10px;
  font-size: 0.87em;
}
@media print, screen and (min-width: 768px) {
  footer .foot-btm .container::before {
    content: "";
    display: block;
  }
  footer .foot-btm .container::before, footer .foot-btm .container .ft-btn, footer .foot-btm .container .copyright {
    width: 33.3333333333%;
  }
  footer .foot-btm .container .ft-btn a {
    margin: 0 0 0 auto;
  }
  footer .foot-btm .container .copyright {
    text-align: center;
  }
}

#particular .particular-inner .item a,
#particular .reason a,
#side a,
#lineup a.btn,
footer .foot-wrap .foot-links .foot-link a {
  transition-duration: 0.5s;
}
#particular .particular-inner .item a:hover,
#particular .reason a:hover,
#side a:hover,
#lineup a.btn:hover,
footer .foot-wrap .foot-links .foot-link a:hover {
  letter-spacing: 0.3em;
}
#particular .particular-inner .item a:hover::after,
#particular .reason a:hover::after,
#side a:hover::after,
#lineup a.btn:hover::after,
footer .foot-wrap .foot-links .foot-link a:hover::after {
  letter-spacing: 0.1em;
}

#header .sp-menu #menu .inner .cv a,
header .pc-menu .menu li,
#try .try-wrap a,
#float a {
  transition-duration: 0.5s;
}
#header .sp-menu #menu .inner .cv a:hover,
header .pc-menu .menu li:hover,
#try .try-wrap a:hover,
#float a:hover {
  transform: translateY(-5px);
}

.coming::after {
  content: "Coming Soon";
  font-size: 0.5em;
  position: absolute;
  left: 0;
  bottom: 0.5em;
  color: #d57c40;
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
  transition-duration: 0.5s;
}
.coming {
  position: relative;
}

header .pc-menu .menu li a.coming::after {
  bottom: -2em;
}

header .sp-menu #menu #sp-menu-list li a.coming::after {
  bottom: 1em;
}/*# sourceMappingURL=style.css.map */