@charset "UTF-8";
:root {
  --black: 0,0,0;
  --yellow: 255,218,33;
  --yellow02: 250,190,0;
  --red: 232,56,13;
  --gray: 143,143,143;
  --border: rgba(var(--black),.6);
  --contents_width: 1080px;
  --body_padding_side: 160px;
  --contents_width_with_padding: 1240px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: #0078b3;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  -webkit-text-size-adjust: 100%;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}

.l-wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1240px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1239px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1240px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1240px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  /*overflow: auto;*/
	overflow: hidden;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .home-intro__inner.u-inner {
    max-width: 1200px;
  }
}

@media (min-width: 1240px) {
  .u-inner.is-wide-pc {
    max-width: 1680px;
    padding-right: 80px;
    padding-left: 80px;
  }
}

/* font
---------------------------------------- */
.u-en {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* c-bg-XX 背景色
================================== */
/* c-bg-black
---------------------------------- */
.c-bg-black {
  background: rgb(var(--black));
}

/* c-bg-yellow
---------------------------------- */
.c-bg-yellow {
  background: rgb(var(--yellow));
}

/* c-bg-white
---------------------------------- */
.c-bg-white {
  background: #fff;
}

/* c-btn01
===================================== */
.c-btn01 {
  max-width: 600px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.c-btn01__link0 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 67px;
  padding: 10px 35px;
  background-image: linear-gradient(169deg, rgb(var(--red)) 50%, #cc310c 50%);
  color: #fff;
}

.c-btn01__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 67px;
  padding: 10px 35px;
  background-image: linear-gradient(169deg, rgb(var(--red)) 50%, #cc310c 50%);
  color: #fff;
}
.c-btn01__link[target=_blank] .c-btn01__ico {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="currentColor" d="M1.229,5.324H4.1V10.9H9.676v2.867H1.229Zm4.095,0v-4.1h8.448V9.676H5.324ZM4.1,0V4.1H0V15H10.905V10.9H15V0Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="currentColor" d="M1.229,5.324H4.1V10.9H9.676v2.867H1.229Zm4.095,0v-4.1h8.448V9.676H5.324ZM4.1,0V4.1H0V15H10.905V10.9H15V0Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.c-btn01__txt {
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.c-btn01__ico {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-block;
  width: 7px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 13"><path fill="currentColor" d="M6.5,0,13,7H0Z" transform="translate(7) rotate(90)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 13"><path fill="currentColor" d="M6.5,0,13,7H0Z" transform="translate(7) rotate(90)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-btn01__link0 {
    min-height: 120px;
  }
  .c-btn01__link {
    min-height: 120px;
  }
  .c-btn01__link:hover:before {
    height: 100%;
  }
  .c-btn01__link[target=_blank] .c-btn01__ico {
    right: 50px;
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="currentColor" d="M1.229,5.324H4.1V10.9H9.676v2.867H1.229Zm4.095,0v-4.1h8.448V9.676H5.324ZM4.1,0V4.1H0V15H10.905V10.9H15V0Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="currentColor" d="M1.229,5.324H4.1V10.9H9.676v2.867H1.229Zm4.095,0v-4.1h8.448V9.676H5.324ZM4.1,0V4.1H0V15H10.905V10.9H15V0Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
  }
   .c-btn01__link0:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(169deg, rgb(var(--yellow02)) 50%, #faa700 50%);
    transition: height 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  }
  .c-btn01__link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(169deg, rgb(var(--yellow02)) 50%, #faa700 50%);
    transition: height 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  }
  .c-btn01__txt {
    position: relative;
    z-index: 1;
    font-size: 3rem;
  }
  .c-btn01__ico {
    right: 40px;
    display: inline-block;
    width: 10px;
    height: 20px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 13"><path fill="currentColor" d="M6.5,0,13,7H0Z" transform="translate(7) rotate(90)"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 13"><path fill="currentColor" d="M6.5,0,13,7H0Z" transform="translate(7) rotate(90)"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
  }
}

/* c-btn01.is-left-pc
========================================== */
@media all and (min-width: 768px) {
  .c-btn01.is-left-pc {
    margin-left: 0;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-red
================================================== */
.c-color-red {
  color: rgb(var(--red));
}

/* .c-color-gray
================================================== */
.c-color-gray {
  color: rgb(var(--gray));
}

/* .c-color-yellow
================================================== */
.c-color-yellow {
  color: rgb(var(--yellow));
}

/* .c-color-white
================================================== */
.c-color-white {
  color: #fff;
}

/* c-head01 斜めマーカーつき
============================== */
.c-head01 {
  margin-bottom: 30px;
  text-align: center;
}
.c-head01__txt {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  padding-bottom: 4px;
  line-height: 1.5;
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: 0.06em;
}
.c-head01__txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 45%, rgb(var(--yellow02)) 45%);
  transform: skew(0, -5deg);
}
@media all and (min-width: 768px) {
  .c-head01__txt {
    font-size: 6rem;
  }
}

/* c-head01.is-big SP5.5rem, PC9rem
======================================== */
.c-head01.is-big .c-head01__txt {
  font-size: 5.5rem;
}
@media all and (min-width: 768px) {
  .c-head01.is-big .c-head01__txt {
    font-size: 9rem;
  }
}

/* c-head02 左右に2本線つき
============================== */
.c-head02 {
  margin-bottom: 9px;
  text-align: center;
  font-weight: 900;
}
.c-head02__txt {
  line-height: 1.5;
  font-size: 4rem;
}
.c-head02__txt-small {
  font-size: 2.4rem;
}
.c-head02__ico {
  display: inline-block;
  width: 24px;
  height: 34px;
  vertical-align: middle;
  color: #e8380d;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 34.001"><g transform="translate(-840.673 -2924.74)"><path d="M0,0,2.912.054l.649,34.183L.649,34.183Z" transform="translate(844.47 2926.52) rotate(-30)" fill="currentColor"/><rect width="2.943" height="20.597" transform="matrix(0.574, -0.819, 0.819, 0.574, 840.673, 2946.927)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 34.001"><g transform="translate(-840.673 -2924.74)"><path d="M0,0,2.912.054l.649,34.183L.649,34.183Z" transform="translate(844.47 2926.52) rotate(-30)" fill="currentColor"/><rect width="2.943" height="20.597" transform="matrix(0.574, -0.819, 0.819, 0.574, 840.673, 2946.927)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin-right: 12px;
}
.c-head02__ico:last-child {
  transform: scale(-1, 1);
  margin-right: 0;
  margin-left: 15px;
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/*  .c-marker01
================================================== */
.c-marker01 {
  background: linear-gradient(transparent 60%, rgb(var(--yellow)) 60%);
}
@media all and (min-width: 768px) {
  .c-marker01 {
    background: linear-gradient(transparent 73%, rgb(var(--yellow)) 73%);
  }
}

/* c-part01 ドアイコン
====================================== */
.c-part01 {
  position: absolute;
  display: block;
  width: 91px;
  height: 119px;
}
.c-part01.is-animated:before {
  transform: scale(1);
}
.c-part01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/img_do01.png) no-repeat 0 0/contain;
  transform: scale(0);
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.3s;
  transform-origin: left bottom;
}
@media all and (min-width: 768px) {
  .c-part01 {
    width: 268px;
    height: 352px;
  }
}

/* c-set01 流れる英字＋斜め黄色背景
========================================== */
.c-set01 {
  position: relative;
  padding-top: 71px;
  padding-bottom: 85px;
  transform: translate3d(0, 0, 0);
}
.c-set01:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 60px), 0 calc(100% - 10px));
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 60px), 0 calc(100% - 10px));
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgb(var(--yellow));
}
.c-set01__en01, .c-set01__en02 {
  position: absolute;
  line-height: 1;
  font-size: 5rem;
  font-weight: 900;
  white-space: nowrap;
  mix-blend-mode: overlay;
}
.c-set01__en01.is-01, .c-set01__en02.is-01 {
  left: 0;
}
.c-set01__en01.is-02, .c-set01__en02.is-02 {
  right: 100%;
}
.c-set01__en01 {
  top: 0;
  -webkit-animation: set01Anniversary01SP 30s linear infinite;
  animation: set01Anniversary01SP 30s linear infinite;
}
.c-set01__en01.is-movie {
  -webkit-animation-name: set01Movie01SP;
  animation-name: set01Movie01SP;
}
.c-set01__en02 {
  bottom: 0;
  -webkit-animation: set01Anniversary02SP 30s linear infinite;
  animation: set01Anniversary02SP 30s linear infinite;
}
.c-set01__en02.is-movie {
  -webkit-animation-name: set01Movie02SP;
  animation-name: set01Movie02SP;
}
@media all and (min-width: 768px) {
  .c-set01 {
    padding-top: 217px;
    padding-bottom: 190px;
  }
  .c-set01:after {
    -webkit-clip-path: polygon(0 170px, 100% 0, 100% calc(100% - 190px), 0 calc(100% - 20px));
    clip-path: polygon(0 170px, 100% 0, 100% calc(100% - 190px), 0 calc(100% - 20px));
  }
  .c-set01__en01, .c-set01__en02 {
    font-size: 14rem;
  }
  .c-set01__en01 {
    -webkit-animation-name: set01Anniversary01PC;
    animation-name: set01Anniversary01PC;
  }
  .c-set01__en01.is-movie {
    -webkit-animation-name: set01Movie01PC;
    animation-name: set01Movie01PC;
  }
  .c-set01__en02 {
    -webkit-animation-name: set01Anniversary02PC;
    animation-name: set01Anniversary02PC;
  }
  .c-set01__en02.is-movie {
    -webkit-animation-name: set01Movie02PC;
    animation-name: set01Movie02PC;
  }
}

/* anniversary用
-------------------------- */
@-webkit-keyframes set01Anniversary01SP {
  0% {
    transform: translateX(765px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes set01Anniversary01SP {
  0% {
    transform: translateX(765px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes set01Anniversary02SP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(765px);
  }
}
@keyframes set01Anniversary02SP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(765px);
  }
}
@-webkit-keyframes set01Anniversary01PC {
  0% {
    transform: translateX(2138px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes set01Anniversary01PC {
  0% {
    transform: translateX(2138px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes set01Anniversary02PC {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(2138px);
  }
}
@keyframes set01Anniversary02PC {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(2138px);
  }
}
/* movie用
-------------------------- */
@-webkit-keyframes set01Movie01SP {
  0% {
    transform: translateX(906px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes set01Movie01SP {
  0% {
    transform: translateX(906px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes set01Movie02SP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(906px);
  }
}
@keyframes set01Movie02SP {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(906px);
  }
}
@-webkit-keyframes set01Movie01PC {
  0% {
    transform: translateX(2538px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes set01Movie01PC {
  0% {
    transform: translateX(2538px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes set01Movie02PC {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(2538px);
  }
}
@keyframes set01Movie02PC {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(2538px);
  }
}
/* c-set02 画像＋テキストエリア PC横並び
========================================== */
.c-set02__img {
  text-align: center;
  margin-bottom: 20px;
}
.c-set02__head {
  margin-bottom: 4px;
}
.c-set02__txt {
  line-height: 1.5;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.c-set02__main {
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 900;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.06em;
}
.c-set02__date {
  margin-bottom: 12px;
  text-align: center;
}
.c-set02__date-head {
  margin-bottom: 3px;
}
.c-set02__date-head span {
  padding: 4px 15px;
  line-height: 1.1;
  background: rgb(var(--black));
  font-size: 2rem;
}
.c-set02__date-txt {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  .c-set02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .c-set02__img {
    width: 38%;
    margin-bottom: 0;
  }
  .c-set02__area-txt {
    width: 58%;
  }
  .c-set02__head {
    margin-bottom: 14px;
    text-align: left;
  }
  .c-set02__txt {
    font-size: 2.8rem;
    text-align: left;
  }
  .c-set02__main {
    font-size: 4.2rem;
    text-align: left;
  }
  .c-set02__date {
    text-align: left;
    margin-bottom: 54px;
  }
  .c-set02__date-head {
    display: inline-block;
    margin: 0 20px 0 0;
  }
  .c-set02__date-head span {
    display: inline-block;
    padding: 8px 22px;
    font-size: 2.2rem;
  }
  .c-set02__date-txt {
    display: inline-block;
    font-size: 2.2rem;
  }
}
@media all and (min-width: 1680px ) {
  .c-set02__img {
    width: 42.11%;
    margin: 0;
  }
  .c-set02__area-txt {
    width: 53.9%;
  }
  .c-set02__txt {
    font-size: 3rem;
  }
  .c-set02__main {
    font-size: 5.2rem;
  }
  .c-set02__date-head span {
    font-size: 3rem;
  }
  .c-set02__date-txt {
    font-size: 3rem;
  }
}

/* c-set02.is-reverse-pc
======================================== */
@media all and (min-width: 768px) {
  .c-set02.is-reverse-pc .c-set02__img {
    order: 2;
  }
}

/* c-set02.is-top-alignment-pc
======================================== */
@media all and (min-width: 768px) {
  .c-set02.is-top-alignment-pc {
    align-items: flex-start;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  padding: 15px 0;
  text-align: center;
}
.l-footer__cr {
  line-height: 1.5;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding: 40px 0;
  }
  .l-footer__cr {
    font-size: 1.4rem;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  width: 45px;
  height: 45px;
  margin: -60px 20px 15px auto;
}
.l-footer-page-top__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(var(--yellow02));
  white-space: nowrap;
  overflow: hidden;
  text-indent: -300%;
}
.l-footer-page-top__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  display: inline-block;
  width: 16px;
  height: 15px;
  vertical-align: middle;
  color: #fff;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 15"><path d="M15.664 6.7 9.182.33a1.16 1.16 0 0 0-1.621 0 1.113 1.113 0 0 0 0 1.593l4.526 4.45H1.146a1.127 1.127 0 1 0 0 2.253h10.942l-4.526 4.45a1.114 1.114 0 0 0 0 1.593 1.16 1.16 0 0 0 1.621 0L15.664 8.3a1.113 1.113 0 0 0 0-1.593" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 15"><path d="M15.664 6.7 9.182.33a1.16 1.16 0 0 0-1.621 0 1.113 1.113 0 0 0 0 1.593l4.526 4.45H1.146a1.127 1.127 0 1 0 0 2.253h10.942l-4.526 4.45a1.114 1.114 0 0 0 0 1.593 1.16 1.16 0 0 0 1.621 0L15.664 8.3a1.113 1.113 0 0 0 0-1.593" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    width: 70px;
    height: 70px;
    margin: -90px 20px 20px auto;
  }
  .l-footer-page-top__link:hover:after {
    opacity: 1;
  }
  .l-footer-page-top__link:before {
    z-index: 1;
    display: inline-block;
    width: 25px;
    height: 23px;
    vertical-align: middle;
    color: #fff;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 15"><path d="M15.664 6.7 9.182.33a1.16 1.16 0 0 0-1.621 0 1.113 1.113 0 0 0 0 1.593l4.526 4.45H1.146a1.127 1.127 0 1 0 0 2.253h10.942l-4.526 4.45a1.114 1.114 0 0 0 0 1.593 1.16 1.16 0 0 0 1.621 0L15.664 8.3a1.113 1.113 0 0 0 0-1.593" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 15"><path d="M15.664 6.7 9.182.33a1.16 1.16 0 0 0-1.621 0 1.113 1.113 0 0 0 0 1.593l4.526 4.45H1.146a1.127 1.127 0 1 0 0 2.253h10.942l-4.526 4.45a1.114 1.114 0 0 0 0 1.593 1.16 1.16 0 0 0 1.621 0L15.664 8.3a1.113 1.113 0 0 0 0-1.593" fill="currentColor"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    content: "";
    transition: all 0.3s ease;
  }
  .l-footer-page-top__link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--black));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
}
.l-header-info__logo {
  position: fixed;
  top: 10px;
  left: 20px;
  width: 105px;
  height: 63px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    padding: 20px 15px 19px;
  }
  .l-header-info__logo {
    width: 310px;
    height: 186px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 38px;
  height: 36px;
  cursor: pointer;
  border: none;
}
.l-nav-btn__line {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: currentColor;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 0;
}
.l-nav-btn__line:nth-child(2) {
  top: 6px;
}
.l-nav-btn__line:nth-child(3) {
  top: 12px;
}
.l-nav-btn.is-open {
  color: #fff;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 7px;
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 7px;
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-nav-btn {
    top: 50px;
    right: 20px;
    width: 46px;
    height: 57px;
  }
  .l-nav-btn__line {
    left: 3px;
    width: 40px;
    height: 4px;
  }
  .l-nav-btn__line:nth-child(1) {
    top: 0;
  }
  .l-nav-btn__line:nth-child(2) {
    top: 10px;
  }
  .l-nav-btn__line:nth-child(3) {
    top: 20px;
  }
  .l-nav-btn__txt {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1240px) {
  .l-nav-btn {
    right: 50px;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 65px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 70px);
  min-width: 320px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  margin-top: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
.l-nav.is-open {
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
}
.l-nav__inner {
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .l-nav {
    max-height: 100vh;
    top: 0;
  }
  .l-nav__inner {
    padding-top: 140px;
    padding-bottom: 180px;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item + .l-nav-list__item {
  margin-top: 53px;
}
.l-nav-list__item-head {
  position: relative;
  margin-bottom: 20px;
  padding: 5px 0 8px 34px;
  border-bottom: 1px solid currentColor;
  line-height: 1.5;
  color: #fff;
  font-size: 2rem;
}
.l-nav-list__item-head-ico {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 28px;
  height: 37px;
}
@media all and (min-width: 768px) {
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 15px;
  }
  .l-nav-list__item-head {
    margin-bottom: 30px;
    padding: 15px 0 15px 56px;
    font-size: 3rem;
  }
  .l-nav-list__item-head-ico {
    width: 46px;
    height: 60px;
  }
}

/* l-nav-list-child
----------------------------------------------- */
.l-nav-list-child__item {
  margin-bottom: 10px;
}
.l-nav-list-child__item-in {
  position: relative;
  display: block;
  padding: 20px 55px 17px 20px;
  box-sizing: border-box;
  background: #fff;
}
.l-nav-list-child__item-in::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-block;
  width: 7px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 13"><path fill="currentColor" d="M6.5,0,13,7H0Z" transform="translate(7) rotate(90)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 13"><path fill="currentColor" d="M6.5,0,13,7H0Z" transform="translate(7) rotate(90)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.l-nav-list-child__item-in[target=_blank]:before {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="currentColor" d="M1.229,5.324H4.1V10.9H9.676v2.867H1.229Zm4.095,0v-4.1h8.448V9.676H5.324ZM4.1,0V4.1H0V15H10.905V10.9H15V0Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="currentColor" d="M1.229,5.324H4.1V10.9H9.676v2.867H1.229Zm4.095,0v-4.1h8.448V9.676H5.324ZM4.1,0V4.1H0V15H10.905V10.9H15V0Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
.l-nav-list-child__item-head span {
  display: inline-block;
  padding: 1px 19px;
  background: rgb(var(--black));
}
.l-nav-list-child__item-txt {
  line-height: 1.5;
  font-size: 1.6rem;
}
.l-nav-list-child__item-sub {
  margin: 10px 0 2px;
}
.l-nav-list-child__item-sub span {
  display: inline-block;
  padding: 0 19px;
  background: rgb(var(--black));
}
.l-nav-list-child__item-date {
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .l-nav-list-child {
    display: flex;
    flex-wrap: wrap;
  }
  .l-nav-list-child__item {
    width: 350px;
    margin: 0 15px 15px 0;
  }
  .l-nav-list-child__item:nth-of-type(3n+3) {
    margin-right: 0;
  }
  .l-nav-list-child__item-in {
    z-index: 1;
    height: 100%;
    padding: 26px 20px 42px 20px;
  }
  .l-nav-list-child__item-in:hover:after {
    height: 100%;
  }
  .l-nav-list-child__item-in:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: rgb(var(--yellow));
    width: 100%;
    height: 0;
    transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  }
  .l-nav-list-child__item-head {
    margin-bottom: 5px;
    font-size: 2rem;
  }
  .l-nav-list-child__item-head span {
    padding: 0 20px;
  }
  .l-nav-list-child__item-txt {
    font-size: 1.8rem;
  }
  .l-nav-list-child__item-sub {
    font-size: 1.4rem;
  }
  .l-nav-list-child__item-date {
    font-size: 1.6rem;
  }
}

/* l-nav-list-sns
------------------------------------------------ */
.l-nav-list-sns__item {
  margin-bottom: 10px;
}
.l-nav-list-sns__item-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 114px;
  box-sizing: border-box;
  padding: 23px;
  background: #fff;
  text-align: center;
}
.l-nav-list-sns__item-ico img[src*=twitter] {
  width: 40px;
}
.l-nav-list-sns__item-ico img[src*=instagram] {
  width: 33px;
}
.l-nav-list-sns__item-ico img[src*=youtube] {
  width: 47px;
}
.l-nav-list-sns__item-txt {
  margin-top: 8px;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .l-nav-list-sns {
    display: flex;
    flex-wrap: wrap;
  }
  .l-nav-list-sns__item {
    width: 350px;
    margin: 0 15px 15px 0;
  }
  .l-nav-list-sns__item:nth-of-type(3n+3) {
    margin-right: 0;
  }
  .l-nav-list-sns__item-in {
    position: relative;
    height: 100%;
    min-height: 180px;
  }
  .l-nav-list-sns__item-in:hover:before, .l-nav-list-sns__item-in:hover:after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-color: rgb(var(--black));
  }
  .l-nav-list-sns__item-in:before, .l-nav-list-sns__item-in:after {
    content: "";
    position: absolute;
    border: solid;
    width: 0;
    height: 0;
    border-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  .l-nav-list-sns__item-in:before {
    top: 0;
    left: 0;
    border-width: 4px 0 0 4px;
  }
  .l-nav-list-sns__item-in:after {
    right: 0;
    bottom: 0;
    border-width: 0 4px 4px 0;
  }
  .l-nav-list-sns__item-ico img[src*=twitter] {
    width: 61px;
  }
  .l-nav-list-sns__item-ico img[src*=instagram] {
    width: 50px;
  }
  .l-nav-list-sns__item-ico img[src*=youtube] {
    width: 71px;
  }
  .l-nav-list-sns__item-txt {
    font-size: 2rem;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 600px;
}
.l-main-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgb(var(--yellow02));
}
.l-main-img__inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.l-main-img__main {
  position: relative;
  z-index: 1;
  width: 85.0746268657%;
  max-width: 342px;
  margin-bottom: 12px;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.l-main-img__main.is-animated {
  transform: scale(1);
}
.l-main-img__main img {
  image-rendering: -webkit-optimize-contrast;
}
.l-main-img__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 402px;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.l-main-img__copy.is-animated {
  transform: scale(1);
}
.l-main-img__copy img {
  image-rendering: -webkit-optimize-contrast;
}
.l-main-img__ribon {
  position: absolute;
  top: 50%;
  left: calc(50% + 10px);
  width: 131.6%;
  height: 93.8530734633%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}
.l-main-img__ribon.is-animated {
  transform: translate(-50%, -50%) scale(1);
}
.l-main-img__ribon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.l-main-img__bg.is-animated {
  transform: scale(1);
}
.l-main-img__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img__confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-main-img__confetti.is-animated {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .l-main-img {
    min-height: 900px;
    max-height: 1080px;
  }
  .l-main-img__inner {
    max-width: var(--contents_width);
    padding: 0;
  }
  .l-main-img__main {
    width: 56.9090909091%;
    max-height: 67.037037037%;
    max-width: 626px;
    margin-bottom: 26px;
  }
  .l-main-img__main img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .l-main-img__copy {
    width: 65%;
    max-width: 715px;
    max-height: 11.1111111111%;
  }
  .l-main-img__copy img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .l-main-img__ribon {
    left: 50%;
    width: 122.0909090909%;
    height: 117.3148148148%;
    max-width: 1343px;
    max-height: 1267px;
  }
  .l-main-img__confetti {
    left: 50%;
    transform: translateX(-50%);
    width: 140.7407407407%;
    height: 100%;
  }
}

.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* home-intro
=============================================*/
.home-intro {
  position: relative;
  background-color: #f9f9f9;
}
.home-intro::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  background: url(../img/home/bg_intro01.png) repeat 0 0/76px 83px;
}
.home-intro__inner {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 214px;
}
.home-intro__header {
  text-align: center;
}
.home-intro__header-en {
  line-height: 1.2;
  font-size: 2rem;
}
.home-intro__header-main {
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: 0.06em;
}
.home-intro__header-main-marker {
  margin: 0 0.3em 0 -0.3em;
}
.home-intro__header-main-marker-in {
  margin: 0 -0.3em;
}
.home-intro__txt {
  position: relative;
  line-height: 2.5;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.06em;
}
@media all and (max-width: 767px) {
  .home-intro__txt .c-part01 {
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
    width: 116px;
    height: 152px;
  }
}
@media all and (min-width: 768px) {
  .home-intro:before {
    top: 22px;
    left: 0;
    width: 100%;
    height: calc(100% - 44px);
    background: url(../img/home/bg_intro01.png) repeat 0 0/122px 141px;
  }
  .home-intro__inner {
    padding-top: 140px;
    padding-bottom: 124px;
  }
  .home-intro__header-en {
    margin-bottom: 15px;
  }
  .home-intro__header-main {
    margin-bottom: 43px;
    font-size: 5.2rem;
  }
  .home-intro__header-main-marker {
    margin: 0 0.4em;
  }
  .home-intro__header-main-marker-in {
    margin: 0 -0.4em;
  }
  .home-intro__txt {
    line-height: 3;
    font-size: 2rem;
  }
  .home-intro__txt .c-part01 {
    top: 30px;
    left: -223px;
  }
}

/* home-bnr
=================================== */
.home-bnr__inner {
  padding-top: 40px;
  padding-bottom: 45px;
}
.home-bnr__img {
  display: block;
}
@media all and (min-width: 768px) {
  .home-bnr__inner {
    padding-top: 120px;
    padding-bottom: 134px;
  }
  .home-bnr__img img {
    transition: opacity 0.3s ease;
  }
  .home-bnr__img img:hover {
    opacity: 0.7;
  }
}

/* home-campaign
======================================= */
.home-campaign {
  padding-bottom: 55px;
}
@media all and (min-width: 768px) {
  .home-campaign {
    padding-bottom: 135px;
  }
}

/* home-campaign-header
-------------------------------------- */
.home-campaign-header__wrap {
  text-align: center;
}
.home-campaign-header__sub {
  line-height: 1.2;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.home-campaign-header__sub span {
  display: inline-block;
  padding: 13px 12px;
  background: rgb(var(--black));
}
.home-campaign-header__main {
  line-height: 1.5;
  font-weight: 900;
  font-size: 3.2rem;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768px) {
  .home-campaign-header__wrap {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  .home-campaign-header__sub {
    font-size: 3.6rem;
  }
  .home-campaign-header__main {
    font-size: 6.2rem;
  }
}
@media all and (min-width: 1680px ) {
  .home-campaign-header__wrap {
    display: inline-block;
    max-width: 1120px;
  }
  .home-campaign-header__sub {
    font-size: 4.6rem;
  }
  .home-campaign-header__sub span {
    padding: 13px 42px;
  }
  .home-campaign-header__main {
    line-height: 1.3;
    font-size: 7.8rem;
  }
}

/* home-campaign-dodon
=========================================== */
.home-campaign-dodon {
  position: relative;
}
.home-campaign-dodon::before {
  content: "";
  position: absolute;
  top: -61px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 668px;
  background: #fff9cd url(../img/home/bg_dodon01_sp.png) no-repeat center bottom/cover;
  -webkit-clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
}
.home-campaign-dodon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff9cd;
}
.home-campaign-dodon__inner {
  position: relative;
  padding-top: 32px;
  padding-bottom: 45px;
}
.home-campaign-dodon__inner .c-part01 {
  left: 50%;
  top: -86px;
  z-index: 2;
  margin-left: 76px;
}
.home-campaign-dodon__intro {
  position: relative;
  margin-top: 20px;
}
.home-campaign-dodon__intro-sub {
  position: absolute;
  right: -24px;
  bottom: -52px;
  width: 126px;
  height: 127px;
  image-rendering: -webkit-optimize-contrast;
}
.home-campaign-dodon__intro-img {
  margin-right: -20px;
  margin-left: -20px;
}
.home-campaign-dodon__intro-img img {
  image-rendering: -webkit-optimize-contrast;
}
.home-campaign-dodon__lead {
  margin: 48px 0 22px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.home-campaign-dodon__date {
  margin-bottom: 16px;
  text-align: center;
}
.home-campaign-dodon__date-head {
  margin-bottom: 3px;
}
.home-campaign-dodon__date-head span {
  padding: 4px 15px;
  line-height: 1.1;
  background: rgb(var(--black));
  font-size: 2rem;
}
.home-campaign-dodon__date-txt {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  .home-campaign-dodon {
    margin-top: -30px;
  }
  .home-campaign-dodon::before {
    top: -161px;
    height: calc(100% + 161px);
    background: #fff9cd url(../img/home/bg_dodon01_pc.png) no-repeat center/cover;
    -webkit-clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 100%);
  }
  .home-campaign-dodon__inner {
    padding-top: 10px;
    padding-bottom: 110px;
  }
  .home-campaign-dodon__inner .c-part01 {
    top: -380px;
    margin-left: 380px;
  }
  .home-campaign-dodon__intro {
    margin-top: 35px;
  }
  .home-campaign-dodon__intro-sub {
    width: 260px;
    top: -70px;
    right: -110px;
    bottom: auto;
  }
  .home-campaign-dodon__intro-img {
    margin: 0;
  }
  .home-campaign-dodon__lead {
    margin: 46px 0 19px;
    font-size: 3rem;
  }
  .home-campaign-dodon__date {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 34px;
  }
  .home-campaign-dodon__date-head {
    display: inline-block;
    margin: 0 20px 0 0;
  }
  .home-campaign-dodon__date-head span {
    display: inline-block;
    padding: 8px 22px;
    font-size: 3rem;
  }
  .home-campaign-dodon__date-txt {
    font-size: 3rem;
  }
}

/* home-campaign-goods
========================================= */
.home-campaign-goods {
  padding-top: 10px;
}
.home-campaign-goods__lead {
  text-align: center;
}
.home-campaign-goods__lead span {
  display: inline-block;
  padding: 15px 15px;
  background-image: linear-gradient(110deg, rgb(var(--yellow02)) 14%, rgb(var(--yellow)) 14%, rgb(var(--yellow)) 86%, rgb(var(--yellow02)) 86%);
  line-height: 1.1;
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
}
.home-campaign-goods-parent {
  margin: 0 -20px 20px;
}
.home-campaign-goods-parent__item {
  position: relative;
  box-sizing: border-box;
  margin-top: 80px;
  padding: 40px 20px 27px;
  background: rgba(var(--yellow), 0.48);
}
.home-campaign-goods-parent__item + .home-campaign-goods-parent__item {
  margin-top: 72px;
}
.home-campaign-goods-parent__item:nth-of-type(n+2):before {
  top: -75px;
}
.home-campaign-goods-parent__item:nth-of-type(4):after, .home-campaign-goods-parent__item:nth-of-type(5):after {
  bottom: 0;
}
.home-campaign-goods-parent__item:before {
  content: "";
  position: absolute;
  top: -83px;
  left: -23px;
  width: 116px;
  height: 121px;
  background: url(../img/home/ico_do01.png) no-repeat 0 0/contain;
}
.home-campaign-goods-parent__item:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 189px;
  height: 208px;
  background: url(../img/home/ico_do02.png) no-repeat 0 0/contain;
}
.home-campaign-goods-parent__item.mb140 {
    margin-bottom: 140px;
}
.home-campaign-goods-parent__item-staff {
  position: absolute;
  top: -92px;
  left: 4px;
}
.home-campaign-goods__lead {
    margin-bottom: 160px;
}
.home-campaign-goods-parent__item-staff .comments {
    position: absolute;
    top: 40px;
    left: 250px;
    width: 490px;
    display: flex;
    flex-wrap: nowrap;
    transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
}
.home-campaign-goods-parent__item-staff .comments.js-c-anime-elem[data-anime=fadein-up] {
    opacity: 0;
    transform: translateY(30px) rotate(10deg);
    -moz-transform: translateY(30px) rotate(10deg);
    -webkit-transform: translateY(30px) rotate(10deg);
    transition: all 0.6s ease;
}
.home-campaign-goods-parent__item-staff .comments.js-c-anime-elem[data-anime=fadein-up].is-animated {
    opacity: 1;
    transform: translateY(0) rotate(10deg);
    -moz-transform: translateY(0) rotate(10deg);
    -webkit-transform: translateY(0) rotate(10deg);
}
@media all and (max-width: 767px) {
    .home-campaign-goods-parent__item-staff .comments > div {
        font-size: 1.6rem!important;
    }
    .home-campaign-goods-parent__item-staff .comments {
        left: 180px;
    }
    .home-campaign-goods-parent__item-staff.is-01 .comments {
        left: 150px;
        top: -10px;
    }
    .home-campaign-goods-parent__item-staff.is-02 .comments {
        top: 20px!important;
    }
    .home-campaign-goods-parent__item-staff.is-03 .comments {
        top: 40px!important;
    }
    .home-campaign-goods-parent__item-staff.is-04 .comments {
        top: 30px!important;
        left: 150px;
    }
    .home-campaign-goods-parent__item-staff.is-05 .comments {
        top: 45px!important;
        left: 130px;
    }
    .home-campaign-goods-parent__item + .home-campaign-goods-parent__item {
        margin-top: 100px;
    }
}
@media all and (max-width: 480px) {
    .home-campaign-goods-parent__item-staff .comments > div {
        font-size: 1.3rem!important;
    }
    .home-campaign-goods-parent__item-staff.is-01 .comments {
        left: 80px;
        top: 25px;
    }
    .home-campaign-goods-parent__item-staff.is-02 .comments {
        top: 20px!important;
        left: 125px;
    }
    .home-campaign-goods-parent__item-staff.is-03 .comments {
        top: 50px!important;
        left: 110px;
    }
    .home-campaign-goods-parent__item-staff.is-04 .comments {
        top: 40px;
        left: 100px;
    }
    .home-campaign-goods-parent__item-staff.is-05 .comments {
        left: 105px;
    }
    .home-campaign-goods-parent__item-staff img {
        z-index: 1;
        position: absolute;
    }
}
.home-campaign-goods-parent__item-staff.is-02 .comments {
    top: 20px;
}
.home-campaign-goods-parent__item-staff.is-03 .comments {
    top: 25px;
}
.home-campaign-goods-parent__item-staff.is-04 .comments {
    top: 0;
}
.home-campaign-goods-parent__item-staff.is-05 .comments {
    top: 70px;
}
.home-campaign-goods-parent__item-staff .comments > div {
    line-height: 1.4;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
}
.home-campaign-goods-parent__item-staff .c-head02__ico {
    color: #000;
    position: relative;
    top: 25px;
}
.home-campaign-goods-parent__item-staff.is-01 {
  width: 178px;
  height: 255px;
}
.home-campaign-goods-parent__item-staff.is-02 {
  left: -14px;
  width: 213px;
  height: 269px;
}
.home-campaign-goods-parent__item-staff.is-03 {
  top: -110px;
  left: -3px;
  width: 184px;
  height: 263px;
}
.home-campaign-goods-parent__item-staff.is-04 {
  left: 20px;
  width: 165px;
  height: 193px;
}
.home-campaign-goods-parent__item-staff.is-05 {
  top: -117px;
  left: 22px;
  width: 164px;
  height: 179px;
}
.home-campaign-goods-parent__item-staff img {
  image-rendering: -webkit-optimize-contrast;
}
.home-campaign-goods-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 7px 0;
}
.home-campaign-goods-list__item {
  width: calc(50% - 5px);
  margin: 0 5px 5px 0;
}
.home-campaign-goods-list__item-in {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  background: #fff;
}
.home-campaign-goods-list__item-img {
  position: relative;
  height: 0;
  padding-top: 84.8484848485%;
  overflow: hidden;
  background: #f4f4f4;
}
.home-campaign-goods-list__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75.7575757576%;
  -o-object-fit: cover;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}
.home-campaign-goods-list__item-area-txt {
  box-sizing: border-box;
  padding: 9px 10px 14px;
}
.home-campaign-goods-list__item-copy {
  margin-bottom: 3px;
  line-height: 1.5;
}
.home-campaign-goods-list__item-copy span {
  display: inline-block;
  padding: 2px 5px;
  background: rgb(var(--yellow));
  line-height: 1.5;
  font-weight: 900;
  font-size: 1rem;
  vertical-align: top;
}
.home-campaign-goods-list__item-txt {
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
.home-campaign-goods-list__item-head {
  line-height: 1.4;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
.home-campaign-goods__note {
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
@media all and (max-width: 767px) {
  .home-campaign-goods {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
  .home-campaign-goods-list__item-head.is-1rem-sp {
    line-height: 1.5;
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) {
  .home-campaign-goods__lead span {
    padding: 37px 60px;
    background-image: linear-gradient(105deg, rgb(var(--yellow02)) 10%, rgb(var(--yellow)) 10%, rgb(var(--yellow)) 90%, rgb(var(--yellow02)) 90%);
    font-size: 6rem;
  }
  .home-campaign-goods-parent {
    margin: 0 -100px 26px;
  }
  .home-campaign-goods-parent__item {
    margin-top: 54px;
    padding: 50px 100px 35px;
  }
  .home-campaign-goods-parent__item + .home-campaign-goods-parent__item {
    margin-top: 90px;
  }
  .home-campaign-goods-parent__item:nth-of-type(n+2):before {
    top: -25px;
  }
  .home-campaign-goods-parent__item:nth-of-type(4):after, .home-campaign-goods-parent__item:nth-of-type(5):after {
    bottom: 10px;
  }
  .home-campaign-goods-parent__item:before {
    top: -43px;
    left: -83px;
    width: 225px;
    height: 235px;
  }
  .home-campaign-goods-parent__item:after {
    right: 50px;
    width: 189px;
    height: 208px;
  }
  .home-campaign-goods-parent__item-staff {
    top: -140px;
    left: -20px;
  }
  .home-campaign-goods-parent__item-staff.is-01 {
    width: 264px;
    height: 377px;
  }
  .home-campaign-goods-parent__item-staff.is-02 {
    top: -103px;
    left: -50px;
    width: 302px;
    height: 382px;
  }
  .home-campaign-goods-parent__item-staff.is-03 {
    top: -103px;
    left: -11px;
    width: 273px;
    height: 391px;
  }
  .home-campaign-goods-parent__item-staff.is-04 {
    top: auto;
    bottom: 0;
    left: -12px;
    width: 272px;
    height: 318px;
  }
  .home-campaign-goods-parent__item-staff.is-05 {
    top: auto;
    bottom: 0;
    left: -48px;
    width: 321px;
    height: 367px;
  }
  .home-campaign-goods-list {
    margin: 0 -15px 0 0;
  }
  .home-campaign-goods-list__item {
    width: calc(33.33% - 15px);
    margin: 0 15px 15px 0;
  }
  .home-campaign-goods-list__item:nth-of-type(3n+3) {
    margin-right: 0;
  }
  .home-campaign-goods-list__item-in {
    flex-direction: row;
    min-height: 140px;
  }
  .home-campaign-goods-list__item-in[href] {
    position: relative;
  }
  .home-campaign-goods-list__item-in[href]:hover:before, .home-campaign-goods-list__item-in[href]:hover:after {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-color: rgb(var(--black));
  }
  .home-campaign-goods-list__item-in[href]:before, .home-campaign-goods-list__item-in[href]:after {
    content: "";
    position: absolute;
    border: solid;
    width: 0;
    height: 0;
    z-index: 1;
    border-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  .home-campaign-goods-list__item-in[href]:before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
  }
  .home-campaign-goods-list__item-in[href]:after {
    right: 0;
    bottom: 0;
    border-width: 0 2px 2px 0;
  }
  .home-campaign-goods-list__item-img {
    width: 125px;
    height: auto;
    padding: 0;
  }
  .home-campaign-goods-list__item-img img {
    width: 100%;
    height: 100%;
  }
  .home-campaign-goods-list__item-area-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 125px);
    padding: 12px 15px;
  }
  .home-campaign-goods-list__item-copy {
    margin-bottom: 0;
  }
  .home-campaign-goods-list__item-head {
    font-size: 1.4rem;
  }
  .home-campaign-goods-list__item-head.is-12rem-pc {
    line-height: 1.5;
    font-size: 1.2rem;
  }
  .home-campaign-goods-list__item-head.is-1rem-pc {
    line-height: 1.5;
    font-size: 1rem;
  }
  .home-campaign-goods__note {
    display: inline-block;
    font-size: 1.4rem;
    vertical-align: top;
  }
}
/* home-campaign-sec
========================================== */
.home-campaign-sec + .home-campaign-sec .home-campaign-sec__inner {
  padding-top: 30px;
}
.home-campaign-sec__inner {
  padding-top: 50px;
}
@media all and (min-width: 768px) {
  .home-campaign-sec + .home-campaign-sec .home-campaign-sec__inner {
    padding-top: 150px;
  }
  .home-campaign-sec__inner {
    padding-top: 120px;
  }
}

/* home-movie-header
============================ */
.home-movie-header {
  padding-bottom: 90px;
}
.home-movie-header__wrap {
  text-align: center;
}
.home-movie-header__sub {
  line-height: 1.2;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.home-movie-header__sub span {
  display: inline-block;
  padding: 13px 12px;
  background: rgb(var(--black));
}
.home-movie-header__main {
  line-height: 1.5;
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: 0.02em;
}
@media all and (min-width: 768px) {
  .home-movie-header {
    padding-top: 180px;
    padding-bottom: 200px;
  }
  .home-movie-header__wrap {
    position: relative;
    z-index: 1;
    padding-left: 318px;
    text-align: left;
  }
  .home-movie-header__wrap .c-part01 {
    z-index: 2;
    left: -34px;
    bottom: -141px;
    margin: 0;
  }
  .home-movie-header__sub {
    font-size: 4.6rem;
  }
  .home-movie-header__sub span {
    padding: 13px 51px;
  }
  .home-movie-header__main {
    font-size: 9rem;
  }
}

/* home-movie-content
-------------------------------------------- */
.home-movie-content {
  position: relative;
}
.home-movie-content:before {
  content: "";
  position: absolute;
  top: -61px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% + 61px);
  background: #fff9cd url(../img/home/bg_movie01_sp.png) no-repeat 0 0/cover;
  -webkit-clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
}
.home-movie-content__inner {
  padding-top: 15px;
  padding-bottom: 50px;
}
.home-movie-content__iframe {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 2;
  padding-top: 52.9577464789%;
  box-sizing: border-box;
  border: 10px solid #fff;
}
.home-movie-content__iframe .c-part01 {
  top: -110px;
  left: 50%;
  z-index: 2;
  margin-left: 76px;
}
.home-movie-content__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  .home-movie-content__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media all and (min-width: 768px) {
  .home-movie-content:before {
    top: -191px;
    height: calc(100% + 191px);
    background: #fff9cd url(../img/home/bg_movie01_pc.png) no-repeat 0 0/cover;
    -webkit-clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 100%);
  }
  .home-movie-content__inner {
    padding-top: 15px;
    padding-bottom: 136px;
  }
  .home-movie-content__iframe {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 45.9210526316%;
    border: 20px solid #fff;
  }
}

/* home-sns
======================================= */
.home-sns {
  position: relative;
  background-color: rgb(var(--yellow));
}
.home-sns::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  background: url(../img/home/bg_sns01.png) repeat 0 0/76px 83px;
  opacity: 0.3;
}
.home-sns__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.home-sns__head.c-head01 {
  margin-bottom: 20px;
}
.home-sns__head.c-head01 .c-head01__txt:before {
  left: -20px;
  width: calc(100% + 40px);
}
@media all and (min-width: 768px) {
  .home-sns:before {
    top: 22px;
    left: 0;
    width: 100%;
    height: calc(100% - 44px);
    background: url(../img/home/bg_sns01.png) repeat 0 0/122px 141px;
  }
  .home-sns__head.c-head01 {
    margin-bottom: 50px;
  }
  .home-sns__inner {
    padding-top: 85px;
    padding-bottom: 165px;
  }
}

/* home-sns-list
---------------------------------------- */
.home-sns-list {
  position: relative;
  z-index: 1;
}
.home-sns-list__item {
  margin-bottom: 10px;
}
.home-sns-list__item-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 114px;
  box-sizing: border-box;
  padding: 23px;
  background: #fff;
  text-align: center;
}
.home-sns-list__item-ico img[src*=twitter] {
  width: 40px;
}
.home-sns-list__item-ico img[src*=instagram] {
  width: 33px;
}
.home-sns-list__item-ico img[src*=youtube] {
  width: 47px;
}
.home-sns-list__item-txt {
  margin-top: 8px;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .home-sns-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
  .home-sns-list__item {
    width: calc(33.33% - 40px);
    margin: 0 20px;
  }
  .home-sns-list__item-in {
    position: relative;
    height: 100%;
    min-height: 290px;
  }
  .home-sns-list__item-in:hover:before, .home-sns-list__item-in:hover:after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-color: rgb(var(--black));
  }
  .home-sns-list__item-in:before, .home-sns-list__item-in:after {
    content: "";
    position: absolute;
    border: solid;
    width: 0;
    height: 0;
    border-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  .home-sns-list__item-in:before {
    top: 0;
    left: 0;
    border-width: 4px 0 0 4px;
  }
  .home-sns-list__item-in:after {
    right: 0;
    bottom: 0;
    border-width: 0 4px 4px 0;
  }
  .home-sns-list__item-ico img[src*=twitter] {
    width: 80px;
  }
  .home-sns-list__item-ico img[src*=instagram] {
    width: 71px;
  }
  .home-sns-list__item-ico img[src*=youtube] {
    width: 90px;
  }
  .home-sns-list__item-txt {
    margin-top: 22px;
    font-size: 3rem;
  }
}

/* 2023.2.20 third用追加css
---------------------------------------- */
header img {
    height: auto;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.home-intro__inner {
    padding-top: 0;
    padding-bottom: 0;
}
.home-intro__header-main {
    margin-bottom: 0;
}
.home-campaign-dodon {
    margin-top: 0;
}
.home-campaign-goods {
    padding-top: 50px;
}
.home-campaign-goods p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.home-campaign-dodon:after {
    background-color: #fff;
}
h4.c-head01 {
    text-align: left!important;
}
h4 .c-head01__txt {
    font-size: 4rem;
}
.home-campaign-dodon::before {
    background: none;
    background-color: #fff;
}
ul.indentList,
ul.indentList2,
ul.indentList3,
ul.indentList4,
ul.indentList5 {
    margin-bottom: 20px;
}
ul.indentList li {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    font-weight: normal;
}
ul.indentList2 li {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}
ul.indentList2 li a {
	text-underline-offset: 0.1em;
}
ul.indentList3 li {
    padding-left: 5.2em;
    text-indent: -5.2em;
    margin: 20px 0;
    font-size: 20px;
    line-height: 1.8;
}
ul.indentList4 li{
    padding-left: 3em;
    text-indent: -3em;
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8;
	font-weight: normal;
}
ul.indentList5 li{
    padding-left: 2em;
    text-indent: -2em;
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8;
	font-weight: normal;
}
.asterisk {
    font-size: 80%;
    font-weight: normal;
	white-space: nowrap;
}
.asterisk.txt {
	white-space: inherit;
}
h5 {
    font-size: 2.5rem;
    margin-top: 40px;
}
.f_box {
    display: flex;
    flex-wrap: nowrap;
}
.magnet {
	margin: 0;
	max-width: 1530px;
	width: 100%;
}
.magnet2 {
	margin: 10px 0 5px;
	max-width: 519px;
}
.hagaki,
.mark {
    display: flex;
    flex-wrap: nowrap;
	margin: 0px 30px;
}
.present {
    display: flex;
    flex-wrap: wrap;
	margin: 0px 30px;
}
.present > div {
    width: 33.33%;
}
.hagaki img,
.sample img {
    max-width: 300px;
}
.sample,
.mark_box {
    margin-top: 6px;
}
.sample > p {
	margin-bottom: 5px;
}
.mark_box {
    max-width: 474px;
    margin-left: 20px;
}
.mark_box > p {
	margin-bottom: 5px;
}
.sample p.caption,
.mark p.caption {
    margin-left: 5px;
    margin-bottom: 0;
}
.mark img {
	width: 100%;
	max-width: 109px;
}
.present_box {
    margin-top: 15px;
   
}
.present img {
	max-width: 100%;
	height: auto;
	
}
.hagaki img.line {
    border: solid 1px #eee;
    margin-right: 20px;
}
.caption {
    font-size: 14px!important;
}
.point {
    margin-left: 324px;
}
br.sp {
	display: none;
}
.pc {
	display: block;
}
.sp {
	display: none;
}

@media all and (max-width: 800px) {
	.magnet{
		max-width: 100%;
	}
}
@media all and (max-width: 768px) {
    .f_box,
    .hagaki {
        flex-wrap: wrap;
    }
    .sample,
    .mark {
        max-width: 100%;
    }
    .mark {
        margin-left: 0;
    }
    .sample {
        margin-top: 0;
        margin-left: 6px;
    }
    .sample img {
        max-width: 100%;
    }
    span.pc {
        display: none;
    }
	br.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
    .hagaki img,
    .sample img {
        max-width: 100%;
    }
    .point {
        margin-left: 0;
    }
    .home-campaign-goods {
        padding-top: 20px;
    }
    .home-intro__inner {
        padding-left: 0;
        padding-right: 0;
    }
	ul.indentList3 li {
		padding-left: 0;
		text-indent: 0;
	}
	.mark_box {
		margin: 20px 0 0 0;
	}
}
@media all and (max-width: 520px) {
	.magnet2 {
		max-width: 100%;
	}
}

@media all and (max-width: 480px) {
	h4 .c-head01__txt {
		font-size: 3rem;
	}
}
@media all and (max-width: 767px) {
    .hagaki, .present {
        flex-wrap: wrap;
    }
    .present {
        margin: 0 10px;
    }
    .hagaki, .present > div {
        width: 50%;
    }
}



