@charset "UTF-8";
/*--------------------------
	Base
--------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, 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, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*----------------------------------------------------

	リセットCSS調整ファイルです。
	リセットCSSを調整、カスタマイズしたい場合に編集します。

----------------------------------------------------*/
/* ====================================================

	EXAMPLES FONT-SIZE
	------------------
	 77% = 9px
	 85% = 10px
	 93% = 11px
	100% = 12px
	108% = 13px
	116% = 14px
	124% = 15px
	131% = 16px
	139% = 17px
	147% = 18px
	154% = 19px
	162% = 20px
	170% = 21px
	177% = 22px
	185% = 23px
	193% = 24px
	200% = 25px
	---------------

====================================================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 52.5%;
  }
}

body {
  *font-size: small;
  *font: x-small;
  _font-size: 14px;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*----------------------------------------------------

	初期設定を行うファイルです。
	デフォルトの設定を行う時以外、基本的に編集することはありません。

----------------------------------------------------*/
html {
  font-size: 10px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw; /* 10px / 1200px * 100 */
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 2.85714286vw; /* 10px / 350px * 100 */
  }
}

body {
  background: #fff;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  overflow: hidden;
  position: relative;
}

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

sup {
  font-size: 50%;
  vertical-align: super;
}

/*--------------------------
	utility
--------------------------*/
/*----------------------------------------------------

	汎用クラスをまとめたファイルです。
	基本的に変更することはありません。
	汎用クラスを追加したい場合、_utility_●●.scssという
	別ファイルを生成し、追加してください。

	命名規則として、クラス名の頭に 
	u-* (utilityのu)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.u-txt-bold {
  font-weight: bold !important;
}

.u-txt-xsmall {
  font-size: 1.2rem;
}
@media screen and (max-width: 700px) {
  .u-txt-xsmall {
    font-size: 1rem !important;
  }
}

.u-txt-small {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 700px) {
  .u-txt-small {
    font-size: 1.2rem !important;
  }
}

.u-txt-medium {
  font-size: 1.8rem !important;
}
@media screen and (max-width: 700px) {
  .u-txt-medium {
    font-size: 1.4rem !important;
  }
}

.u-txt-large {
  font-size: 2rem !important;
}
@media screen and (max-width: 700px) {
  .u-txt-large {
    font-size: 1.6rem !important;
  }
}

.u-link {
  color: #000;
  text-decoration: underline;
}
.u-link:hover {
  text-decoration: none;
}

.u-ul-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-style > li {
  position: relative;
  padding-left: 1.3em;
}
.u-ul-style > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-ul-style--asterisk > li::before {
  content: "※";
}
.u-ul-style--disc > li::before {
  content: "●";
  color: #ccc;
}
.u-ul-style--disc-red > li::before {
  content: "●";
  color: #000;
}
.u-ul-style--number > li {
  counter-increment: number;
}
.u-ul-style--number > li::before {
  content: counter(number) ".";
}
.u-ul-style--number-red > li {
  counter-increment: number;
}
.u-ul-style--number-red > li::before {
  content: counter(number) ".";
  color: #000;
}

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

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

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

@media screen and (max-width: 1024px) {
  .u-align-l-tab {
    text-align: left !important;
  }
  .u-align-c-tab {
    text-align: center !important;
  }
  .u-align-r-tab {
    text-align: right !important;
  }
}
@media screen and (max-width: 700px) {
  .u-align-l-sp {
    text-align: left !important;
  }
  .u-align-c-sp {
    text-align: center !important;
  }
  .u-align-r-sp {
    text-align: right !important;
  }
}
.u-iframe-responsive {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 56.25%;
}
.u-iframe-responsive iframe, .u-iframe-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*--------------------------
	padding margin 調整用
--------------------------*/
.u-mt-s {
  margin-top: 2rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-s {
    margin-top: 1rem !important;
  }
}

.u-mt-m {
  margin-top: 4rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-m {
    margin-top: 2rem !important;
  }
}

.u-mt-l {
  margin-top: 6rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-l {
    margin-top: 3rem !important;
  }
}

.u-mt-xl {
  margin-top: 8rem !important;
}
@media screen and (max-width: 700px) {
  .u-mt-xl {
    margin-top: 4rem !important;
  }
}

.u-mb-s {
  margin-bottom: 2rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-s {
    margin-bottom: 1rem !important;
  }
}

.u-mb-m {
  margin-bottom: 4rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-m {
    margin-bottom: 2rem !important;
  }
}

.u-mb-l {
  margin-bottom: 6rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-l {
    margin-bottom: 3rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 8rem !important;
}
@media screen and (max-width: 700px) {
  .u-mb-xl {
    margin-bottom: 4rem !important;
  }
}

.u-mt120 {
  margin-top: 12rem !important;
}

.u-mb120 {
  margin-bottom: 12rem !important;
}

.u-ml120 {
  margin-left: 12rem !important;
}

.u-mr120 {
  margin-right: 12rem !important;
}

.u-pt120 {
  padding-top: 12rem !important;
}

.u-pb120 {
  padding-bottom: 12rem !important;
}

.u-pl120 {
  padding-left: 12rem !important;
}

.u-pr120 {
  padding-right: 12rem !important;
}

.u-mt110 {
  margin-top: 11rem !important;
}

.u-mb110 {
  margin-bottom: 11rem !important;
}

.u-ml110 {
  margin-left: 11rem !important;
}

.u-mr110 {
  margin-right: 11rem !important;
}

.u-pt110 {
  padding-top: 11rem !important;
}

.u-pb110 {
  padding-bottom: 11rem !important;
}

.u-pl110 {
  padding-left: 11rem !important;
}

.u-pr110 {
  padding-right: 11rem !important;
}

.u-mt100 {
  margin-top: 10rem !important;
}

.u-mb100 {
  margin-bottom: 10rem !important;
}

.u-ml100 {
  margin-left: 10rem !important;
}

.u-mr100 {
  margin-right: 10rem !important;
}

.u-pt100 {
  padding-top: 10rem !important;
}

.u-pb100 {
  padding-bottom: 10rem !important;
}

.u-pl100 {
  padding-left: 10rem !important;
}

.u-pr100 {
  padding-right: 10rem !important;
}

.u-mt90 {
  margin-top: 9rem !important;
}

.u-mb90 {
  margin-bottom: 9rem !important;
}

.u-ml90 {
  margin-left: 9rem !important;
}

.u-mr90 {
  margin-right: 9rem !important;
}

.u-pt90 {
  padding-top: 9rem !important;
}

.u-pb90 {
  padding-bottom: 9rem !important;
}

.u-pl90 {
  padding-left: 9rem !important;
}

.u-pr90 {
  padding-right: 9rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-ml80 {
  margin-left: 8rem !important;
}

.u-mr80 {
  margin-right: 8rem !important;
}

.u-pt80 {
  padding-top: 8rem !important;
}

.u-pb80 {
  padding-bottom: 8rem !important;
}

.u-pl80 {
  padding-left: 8rem !important;
}

.u-pr80 {
  padding-right: 8rem !important;
}

.u-mt75 {
  margin-top: 7.5rem !important;
}

.u-mb75 {
  margin-bottom: 7.5rem !important;
}

.u-ml75 {
  margin-left: 7.5rem !important;
}

.u-mr75 {
  margin-right: 7.5rem !important;
}

.u-pt75 {
  padding-top: 7.5rem !important;
}

.u-pb75 {
  padding-bottom: 7.5rem !important;
}

.u-pl75 {
  padding-left: 7.5rem !important;
}

.u-pr75 {
  padding-right: 7.5rem !important;
}

.u-mt70 {
  margin-top: 7rem !important;
}

.u-mb70 {
  margin-bottom: 7rem !important;
}

.u-ml70 {
  margin-left: 7rem !important;
}

.u-mr70 {
  margin-right: 7rem !important;
}

.u-pt70 {
  padding-top: 7rem !important;
}

.u-pb70 {
  padding-bottom: 7rem !important;
}

.u-pl70 {
  padding-left: 7rem !important;
}

.u-pr70 {
  padding-right: 7rem !important;
}

.u-mt65 {
  margin-top: 6.5rem !important;
}

.u-mb65 {
  margin-bottom: 6.5rem !important;
}

.u-ml65 {
  margin-left: 6.5rem !important;
}

.u-mr65 {
  margin-right: 6.5rem !important;
}

.u-pt65 {
  padding-top: 6.5rem !important;
}

.u-pb65 {
  padding-bottom: 6.5rem !important;
}

.u-pl65 {
  padding-left: 6.5rem !important;
}

.u-pr65 {
  padding-right: 6.5rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-ml60 {
  margin-left: 6rem !important;
}

.u-mr60 {
  margin-right: 6rem !important;
}

.u-pt60 {
  padding-top: 6rem !important;
}

.u-pb60 {
  padding-bottom: 6rem !important;
}

.u-pl60 {
  padding-left: 6rem !important;
}

.u-pr60 {
  padding-right: 6rem !important;
}

.u-mt55 {
  margin-top: 5.5rem !important;
}

.u-mb55 {
  margin-bottom: 5.5rem !important;
}

.u-ml55 {
  margin-left: 5.5rem !important;
}

.u-mr55 {
  margin-right: 5.5rem !important;
}

.u-pt55 {
  padding-top: 5.5rem !important;
}

.u-pb55 {
  padding-bottom: 5.5rem !important;
}

.u-pl55 {
  padding-left: 5.5rem !important;
}

.u-pr55 {
  padding-right: 5.5rem !important;
}

.u-mt50 {
  margin-top: 5rem !important;
}

.u-mb50 {
  margin-bottom: 5rem !important;
}

.u-ml50 {
  margin-left: 5rem !important;
}

.u-mr50 {
  margin-right: 5rem !important;
}

.u-pt50 {
  padding-top: 5rem !important;
}

.u-pb50 {
  padding-bottom: 5rem !important;
}

.u-pl50 {
  padding-left: 5rem !important;
}

.u-pr50 {
  padding-right: 5rem !important;
}

.u-mt45 {
  margin-top: 4.5rem !important;
}

.u-mb45 {
  margin-bottom: 4.5rem !important;
}

.u-ml45 {
  margin-left: 4.5rem !important;
}

.u-mr45 {
  margin-right: 4.5rem !important;
}

.u-pt45 {
  padding-top: 4.5rem !important;
}

.u-pb45 {
  padding-bottom: 4.5rem !important;
}

.u-pl45 {
  padding-left: 4.5rem !important;
}

.u-pr45 {
  padding-right: 4.5rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-ml40 {
  margin-left: 4rem !important;
}

.u-mr40 {
  margin-right: 4rem !important;
}

.u-pt40 {
  padding-top: 4rem !important;
}

.u-pb40 {
  padding-bottom: 4rem !important;
}

.u-pl40 {
  padding-left: 4rem !important;
}

.u-pr40 {
  padding-right: 4rem !important;
}

.u-mt35 {
  margin-top: 3.5rem !important;
}

.u-mb35 {
  margin-bottom: 3.5rem !important;
}

.u-ml35 {
  margin-left: 3.5rem !important;
}

.u-mr35 {
  margin-right: 3.5rem !important;
}

.u-pt35 {
  padding-top: 3.5rem !important;
}

.u-pb35 {
  padding-bottom: 3.5rem !important;
}

.u-pl35 {
  padding-left: 3.5rem !important;
}

.u-pr35 {
  padding-right: 3.5rem !important;
}

.u-mt30 {
  margin-top: 3rem !important;
}

.u-mb30 {
  margin-bottom: 3rem !important;
}

.u-ml30 {
  margin-left: 3rem !important;
}

.u-mr30 {
  margin-right: 3rem !important;
}

.u-pt30 {
  padding-top: 3rem !important;
}

.u-pb30 {
  padding-bottom: 3rem !important;
}

.u-pl30 {
  padding-left: 3rem !important;
}

.u-pr30 {
  padding-right: 3rem !important;
}

.u-mt25 {
  margin-top: 2.5rem !important;
}

.u-mb25 {
  margin-bottom: 2.5rem !important;
}

.u-ml25 {
  margin-left: 2.5rem !important;
}

.u-mr25 {
  margin-right: 2.5rem !important;
}

.u-pt25 {
  padding-top: 2.5rem !important;
}

.u-pb25 {
  padding-bottom: 2.5rem !important;
}

.u-pl25 {
  padding-left: 2.5rem !important;
}

.u-pr25 {
  padding-right: 2.5rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-ml20 {
  margin-left: 2rem !important;
}

.u-mr20 {
  margin-right: 2rem !important;
}

.u-pt20 {
  padding-top: 2rem !important;
}

.u-pb20 {
  padding-bottom: 2rem !important;
}

.u-pl20 {
  padding-left: 2rem !important;
}

.u-pr20 {
  padding-right: 2rem !important;
}

.u-mt15 {
  margin-top: 1.5rem !important;
}

.u-mb15 {
  margin-bottom: 1.5rem !important;
}

.u-ml15 {
  margin-left: 1.5rem !important;
}

.u-mr15 {
  margin-right: 1.5rem !important;
}

.u-pt15 {
  padding-top: 1.5rem !important;
}

.u-pb15 {
  padding-bottom: 1.5rem !important;
}

.u-pl15 {
  padding-left: 1.5rem !important;
}

.u-pr15 {
  padding-right: 1.5rem !important;
}

.u-mt10 {
  margin-top: 1rem !important;
}

.u-mb10 {
  margin-bottom: 1rem !important;
}

.u-ml10 {
  margin-left: 1rem !important;
}

.u-mr10 {
  margin-right: 1rem !important;
}

.u-pt10 {
  padding-top: 1rem !important;
}

.u-pb10 {
  padding-bottom: 1rem !important;
}

.u-pl10 {
  padding-left: 1rem !important;
}

.u-pr10 {
  padding-right: 1rem !important;
}

.u-mt5 {
  margin-top: 0.5rem !important;
}

.u-mb5 {
  margin-bottom: 0.5rem !important;
}

.u-ml5 {
  margin-left: 0.5rem !important;
}

.u-mr5 {
  margin-right: 0.5rem !important;
}

.u-pt5 {
  padding-top: 0.5rem !important;
}

.u-pb5 {
  padding-bottom: 0.5rem !important;
}

.u-pl5 {
  padding-left: 0.5rem !important;
}

.u-pr5 {
  padding-right: 0.5rem !important;
}

.u-mt0 {
  margin-top: 0rem !important;
}

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

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

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

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

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

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

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

@media screen and (max-width: 1024px) {
  .u-mt120-tab {
    margin-top: 12rem !important;
  }
  .u-mb120-tab {
    margin-bottom: 12rem !important;
  }
  .u-ml120-tab {
    margin-left: 12rem !important;
  }
  .u-mr120-tab {
    margin-right: 12rem !important;
  }
  .u-pt120-tab {
    padding-top: 12rem !important;
  }
  .u-pb120-tab {
    padding-bottom: 12rem !important;
  }
  .u-pl120-tab {
    padding-left: 12rem !important;
  }
  .u-pr120-tab {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt110-tab {
    margin-top: 11rem !important;
  }
  .u-mb110-tab {
    margin-bottom: 11rem !important;
  }
  .u-ml110-tab {
    margin-left: 11rem !important;
  }
  .u-mr110-tab {
    margin-right: 11rem !important;
  }
  .u-pt110-tab {
    padding-top: 11rem !important;
  }
  .u-pb110-tab {
    padding-bottom: 11rem !important;
  }
  .u-pl110-tab {
    padding-left: 11rem !important;
  }
  .u-pr110-tab {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt100-tab {
    margin-top: 10rem !important;
  }
  .u-mb100-tab {
    margin-bottom: 10rem !important;
  }
  .u-ml100-tab {
    margin-left: 10rem !important;
  }
  .u-mr100-tab {
    margin-right: 10rem !important;
  }
  .u-pt100-tab {
    padding-top: 10rem !important;
  }
  .u-pb100-tab {
    padding-bottom: 10rem !important;
  }
  .u-pl100-tab {
    padding-left: 10rem !important;
  }
  .u-pr100-tab {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt90-tab {
    margin-top: 9rem !important;
  }
  .u-mb90-tab {
    margin-bottom: 9rem !important;
  }
  .u-ml90-tab {
    margin-left: 9rem !important;
  }
  .u-mr90-tab {
    margin-right: 9rem !important;
  }
  .u-pt90-tab {
    padding-top: 9rem !important;
  }
  .u-pb90-tab {
    padding-bottom: 9rem !important;
  }
  .u-pl90-tab {
    padding-left: 9rem !important;
  }
  .u-pr90-tab {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt80-tab {
    margin-top: 8rem !important;
  }
  .u-mb80-tab {
    margin-bottom: 8rem !important;
  }
  .u-ml80-tab {
    margin-left: 8rem !important;
  }
  .u-mr80-tab {
    margin-right: 8rem !important;
  }
  .u-pt80-tab {
    padding-top: 8rem !important;
  }
  .u-pb80-tab {
    padding-bottom: 8rem !important;
  }
  .u-pl80-tab {
    padding-left: 8rem !important;
  }
  .u-pr80-tab {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt75-tab {
    margin-top: 7.5rem !important;
  }
  .u-mb75-tab {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-tab {
    margin-left: 7.5rem !important;
  }
  .u-mr75-tab {
    margin-right: 7.5rem !important;
  }
  .u-pt75-tab {
    padding-top: 7.5rem !important;
  }
  .u-pb75-tab {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-tab {
    padding-left: 7.5rem !important;
  }
  .u-pr75-tab {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt70-tab {
    margin-top: 7rem !important;
  }
  .u-mb70-tab {
    margin-bottom: 7rem !important;
  }
  .u-ml70-tab {
    margin-left: 7rem !important;
  }
  .u-mr70-tab {
    margin-right: 7rem !important;
  }
  .u-pt70-tab {
    padding-top: 7rem !important;
  }
  .u-pb70-tab {
    padding-bottom: 7rem !important;
  }
  .u-pl70-tab {
    padding-left: 7rem !important;
  }
  .u-pr70-tab {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt65-tab {
    margin-top: 6.5rem !important;
  }
  .u-mb65-tab {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-tab {
    margin-left: 6.5rem !important;
  }
  .u-mr65-tab {
    margin-right: 6.5rem !important;
  }
  .u-pt65-tab {
    padding-top: 6.5rem !important;
  }
  .u-pb65-tab {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-tab {
    padding-left: 6.5rem !important;
  }
  .u-pr65-tab {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt60-tab {
    margin-top: 6rem !important;
  }
  .u-mb60-tab {
    margin-bottom: 6rem !important;
  }
  .u-ml60-tab {
    margin-left: 6rem !important;
  }
  .u-mr60-tab {
    margin-right: 6rem !important;
  }
  .u-pt60-tab {
    padding-top: 6rem !important;
  }
  .u-pb60-tab {
    padding-bottom: 6rem !important;
  }
  .u-pl60-tab {
    padding-left: 6rem !important;
  }
  .u-pr60-tab {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt55-tab {
    margin-top: 5.5rem !important;
  }
  .u-mb55-tab {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-tab {
    margin-left: 5.5rem !important;
  }
  .u-mr55-tab {
    margin-right: 5.5rem !important;
  }
  .u-pt55-tab {
    padding-top: 5.5rem !important;
  }
  .u-pb55-tab {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-tab {
    padding-left: 5.5rem !important;
  }
  .u-pr55-tab {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt50-tab {
    margin-top: 5rem !important;
  }
  .u-mb50-tab {
    margin-bottom: 5rem !important;
  }
  .u-ml50-tab {
    margin-left: 5rem !important;
  }
  .u-mr50-tab {
    margin-right: 5rem !important;
  }
  .u-pt50-tab {
    padding-top: 5rem !important;
  }
  .u-pb50-tab {
    padding-bottom: 5rem !important;
  }
  .u-pl50-tab {
    padding-left: 5rem !important;
  }
  .u-pr50-tab {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt45-tab {
    margin-top: 4.5rem !important;
  }
  .u-mb45-tab {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-tab {
    margin-left: 4.5rem !important;
  }
  .u-mr45-tab {
    margin-right: 4.5rem !important;
  }
  .u-pt45-tab {
    padding-top: 4.5rem !important;
  }
  .u-pb45-tab {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-tab {
    padding-left: 4.5rem !important;
  }
  .u-pr45-tab {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt40-tab {
    margin-top: 4rem !important;
  }
  .u-mb40-tab {
    margin-bottom: 4rem !important;
  }
  .u-ml40-tab {
    margin-left: 4rem !important;
  }
  .u-mr40-tab {
    margin-right: 4rem !important;
  }
  .u-pt40-tab {
    padding-top: 4rem !important;
  }
  .u-pb40-tab {
    padding-bottom: 4rem !important;
  }
  .u-pl40-tab {
    padding-left: 4rem !important;
  }
  .u-pr40-tab {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt35-tab {
    margin-top: 3.5rem !important;
  }
  .u-mb35-tab {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-tab {
    margin-left: 3.5rem !important;
  }
  .u-mr35-tab {
    margin-right: 3.5rem !important;
  }
  .u-pt35-tab {
    padding-top: 3.5rem !important;
  }
  .u-pb35-tab {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-tab {
    padding-left: 3.5rem !important;
  }
  .u-pr35-tab {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt30-tab {
    margin-top: 3rem !important;
  }
  .u-mb30-tab {
    margin-bottom: 3rem !important;
  }
  .u-ml30-tab {
    margin-left: 3rem !important;
  }
  .u-mr30-tab {
    margin-right: 3rem !important;
  }
  .u-pt30-tab {
    padding-top: 3rem !important;
  }
  .u-pb30-tab {
    padding-bottom: 3rem !important;
  }
  .u-pl30-tab {
    padding-left: 3rem !important;
  }
  .u-pr30-tab {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt25-tab {
    margin-top: 2.5rem !important;
  }
  .u-mb25-tab {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-tab {
    margin-left: 2.5rem !important;
  }
  .u-mr25-tab {
    margin-right: 2.5rem !important;
  }
  .u-pt25-tab {
    padding-top: 2.5rem !important;
  }
  .u-pb25-tab {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-tab {
    padding-left: 2.5rem !important;
  }
  .u-pr25-tab {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt20-tab {
    margin-top: 2rem !important;
  }
  .u-mb20-tab {
    margin-bottom: 2rem !important;
  }
  .u-ml20-tab {
    margin-left: 2rem !important;
  }
  .u-mr20-tab {
    margin-right: 2rem !important;
  }
  .u-pt20-tab {
    padding-top: 2rem !important;
  }
  .u-pb20-tab {
    padding-bottom: 2rem !important;
  }
  .u-pl20-tab {
    padding-left: 2rem !important;
  }
  .u-pr20-tab {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt15-tab {
    margin-top: 1.5rem !important;
  }
  .u-mb15-tab {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-tab {
    margin-left: 1.5rem !important;
  }
  .u-mr15-tab {
    margin-right: 1.5rem !important;
  }
  .u-pt15-tab {
    padding-top: 1.5rem !important;
  }
  .u-pb15-tab {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-tab {
    padding-left: 1.5rem !important;
  }
  .u-pr15-tab {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt10-tab {
    margin-top: 1rem !important;
  }
  .u-mb10-tab {
    margin-bottom: 1rem !important;
  }
  .u-ml10-tab {
    margin-left: 1rem !important;
  }
  .u-mr10-tab {
    margin-right: 1rem !important;
  }
  .u-pt10-tab {
    padding-top: 1rem !important;
  }
  .u-pb10-tab {
    padding-bottom: 1rem !important;
  }
  .u-pl10-tab {
    padding-left: 1rem !important;
  }
  .u-pr10-tab {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt5-tab {
    margin-top: 0.5rem !important;
  }
  .u-mb5-tab {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-tab {
    margin-left: 0.5rem !important;
  }
  .u-mr5-tab {
    margin-right: 0.5rem !important;
  }
  .u-pt5-tab {
    padding-top: 0.5rem !important;
  }
  .u-pb5-tab {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-tab {
    padding-left: 0.5rem !important;
  }
  .u-pr5-tab {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-mt0-tab {
    margin-top: 0rem !important;
  }
  .u-mb0-tab {
    margin-bottom: 0rem !important;
  }
  .u-ml0-tab {
    margin-left: 0rem !important;
  }
  .u-mr0-tab {
    margin-right: 0rem !important;
  }
  .u-pt0-tab {
    padding-top: 0rem !important;
  }
  .u-pb0-tab {
    padding-bottom: 0rem !important;
  }
  .u-pl0-tab {
    padding-left: 0rem !important;
  }
  .u-pr0-tab {
    padding-right: 0rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt120-sp {
    margin-top: 12rem !important;
  }
  .u-mb120-sp {
    margin-bottom: 12rem !important;
  }
  .u-ml120-sp {
    margin-left: 12rem !important;
  }
  .u-mr120-sp {
    margin-right: 12rem !important;
  }
  .u-pt120-sp {
    padding-top: 12rem !important;
  }
  .u-pb120-sp {
    padding-bottom: 12rem !important;
  }
  .u-pl120-sp {
    padding-left: 12rem !important;
  }
  .u-pr120-sp {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt110-sp {
    margin-top: 11rem !important;
  }
  .u-mb110-sp {
    margin-bottom: 11rem !important;
  }
  .u-ml110-sp {
    margin-left: 11rem !important;
  }
  .u-mr110-sp {
    margin-right: 11rem !important;
  }
  .u-pt110-sp {
    padding-top: 11rem !important;
  }
  .u-pb110-sp {
    padding-bottom: 11rem !important;
  }
  .u-pl110-sp {
    padding-left: 11rem !important;
  }
  .u-pr110-sp {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt100-sp {
    margin-top: 10rem !important;
  }
  .u-mb100-sp {
    margin-bottom: 10rem !important;
  }
  .u-ml100-sp {
    margin-left: 10rem !important;
  }
  .u-mr100-sp {
    margin-right: 10rem !important;
  }
  .u-pt100-sp {
    padding-top: 10rem !important;
  }
  .u-pb100-sp {
    padding-bottom: 10rem !important;
  }
  .u-pl100-sp {
    padding-left: 10rem !important;
  }
  .u-pr100-sp {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt90-sp {
    margin-top: 9rem !important;
  }
  .u-mb90-sp {
    margin-bottom: 9rem !important;
  }
  .u-ml90-sp {
    margin-left: 9rem !important;
  }
  .u-mr90-sp {
    margin-right: 9rem !important;
  }
  .u-pt90-sp {
    padding-top: 9rem !important;
  }
  .u-pb90-sp {
    padding-bottom: 9rem !important;
  }
  .u-pl90-sp {
    padding-left: 9rem !important;
  }
  .u-pr90-sp {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt80-sp {
    margin-top: 8rem !important;
  }
  .u-mb80-sp {
    margin-bottom: 8rem !important;
  }
  .u-ml80-sp {
    margin-left: 8rem !important;
  }
  .u-mr80-sp {
    margin-right: 8rem !important;
  }
  .u-pt80-sp {
    padding-top: 8rem !important;
  }
  .u-pb80-sp {
    padding-bottom: 8rem !important;
  }
  .u-pl80-sp {
    padding-left: 8rem !important;
  }
  .u-pr80-sp {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt75-sp {
    margin-top: 7.5rem !important;
  }
  .u-mb75-sp {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-sp {
    margin-left: 7.5rem !important;
  }
  .u-mr75-sp {
    margin-right: 7.5rem !important;
  }
  .u-pt75-sp {
    padding-top: 7.5rem !important;
  }
  .u-pb75-sp {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-sp {
    padding-left: 7.5rem !important;
  }
  .u-pr75-sp {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt70-sp {
    margin-top: 7rem !important;
  }
  .u-mb70-sp {
    margin-bottom: 7rem !important;
  }
  .u-ml70-sp {
    margin-left: 7rem !important;
  }
  .u-mr70-sp {
    margin-right: 7rem !important;
  }
  .u-pt70-sp {
    padding-top: 7rem !important;
  }
  .u-pb70-sp {
    padding-bottom: 7rem !important;
  }
  .u-pl70-sp {
    padding-left: 7rem !important;
  }
  .u-pr70-sp {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt65-sp {
    margin-top: 6.5rem !important;
  }
  .u-mb65-sp {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-sp {
    margin-left: 6.5rem !important;
  }
  .u-mr65-sp {
    margin-right: 6.5rem !important;
  }
  .u-pt65-sp {
    padding-top: 6.5rem !important;
  }
  .u-pb65-sp {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-sp {
    padding-left: 6.5rem !important;
  }
  .u-pr65-sp {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt60-sp {
    margin-top: 6rem !important;
  }
  .u-mb60-sp {
    margin-bottom: 6rem !important;
  }
  .u-ml60-sp {
    margin-left: 6rem !important;
  }
  .u-mr60-sp {
    margin-right: 6rem !important;
  }
  .u-pt60-sp {
    padding-top: 6rem !important;
  }
  .u-pb60-sp {
    padding-bottom: 6rem !important;
  }
  .u-pl60-sp {
    padding-left: 6rem !important;
  }
  .u-pr60-sp {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt55-sp {
    margin-top: 5.5rem !important;
  }
  .u-mb55-sp {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-sp {
    margin-left: 5.5rem !important;
  }
  .u-mr55-sp {
    margin-right: 5.5rem !important;
  }
  .u-pt55-sp {
    padding-top: 5.5rem !important;
  }
  .u-pb55-sp {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-sp {
    padding-left: 5.5rem !important;
  }
  .u-pr55-sp {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt50-sp {
    margin-top: 5rem !important;
  }
  .u-mb50-sp {
    margin-bottom: 5rem !important;
  }
  .u-ml50-sp {
    margin-left: 5rem !important;
  }
  .u-mr50-sp {
    margin-right: 5rem !important;
  }
  .u-pt50-sp {
    padding-top: 5rem !important;
  }
  .u-pb50-sp {
    padding-bottom: 5rem !important;
  }
  .u-pl50-sp {
    padding-left: 5rem !important;
  }
  .u-pr50-sp {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt45-sp {
    margin-top: 4.5rem !important;
  }
  .u-mb45-sp {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-sp {
    margin-left: 4.5rem !important;
  }
  .u-mr45-sp {
    margin-right: 4.5rem !important;
  }
  .u-pt45-sp {
    padding-top: 4.5rem !important;
  }
  .u-pb45-sp {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-sp {
    padding-left: 4.5rem !important;
  }
  .u-pr45-sp {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt40-sp {
    margin-top: 4rem !important;
  }
  .u-mb40-sp {
    margin-bottom: 4rem !important;
  }
  .u-ml40-sp {
    margin-left: 4rem !important;
  }
  .u-mr40-sp {
    margin-right: 4rem !important;
  }
  .u-pt40-sp {
    padding-top: 4rem !important;
  }
  .u-pb40-sp {
    padding-bottom: 4rem !important;
  }
  .u-pl40-sp {
    padding-left: 4rem !important;
  }
  .u-pr40-sp {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt35-sp {
    margin-top: 3.5rem !important;
  }
  .u-mb35-sp {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-sp {
    margin-left: 3.5rem !important;
  }
  .u-mr35-sp {
    margin-right: 3.5rem !important;
  }
  .u-pt35-sp {
    padding-top: 3.5rem !important;
  }
  .u-pb35-sp {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-sp {
    padding-left: 3.5rem !important;
  }
  .u-pr35-sp {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt30-sp {
    margin-top: 3rem !important;
  }
  .u-mb30-sp {
    margin-bottom: 3rem !important;
  }
  .u-ml30-sp {
    margin-left: 3rem !important;
  }
  .u-mr30-sp {
    margin-right: 3rem !important;
  }
  .u-pt30-sp {
    padding-top: 3rem !important;
  }
  .u-pb30-sp {
    padding-bottom: 3rem !important;
  }
  .u-pl30-sp {
    padding-left: 3rem !important;
  }
  .u-pr30-sp {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt25-sp {
    margin-top: 2.5rem !important;
  }
  .u-mb25-sp {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-sp {
    margin-left: 2.5rem !important;
  }
  .u-mr25-sp {
    margin-right: 2.5rem !important;
  }
  .u-pt25-sp {
    padding-top: 2.5rem !important;
  }
  .u-pb25-sp {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-sp {
    padding-left: 2.5rem !important;
  }
  .u-pr25-sp {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt20-sp {
    margin-top: 2rem !important;
  }
  .u-mb20-sp {
    margin-bottom: 2rem !important;
  }
  .u-ml20-sp {
    margin-left: 2rem !important;
  }
  .u-mr20-sp {
    margin-right: 2rem !important;
  }
  .u-pt20-sp {
    padding-top: 2rem !important;
  }
  .u-pb20-sp {
    padding-bottom: 2rem !important;
  }
  .u-pl20-sp {
    padding-left: 2rem !important;
  }
  .u-pr20-sp {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt15-sp {
    margin-top: 1.5rem !important;
  }
  .u-mb15-sp {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-sp {
    margin-left: 1.5rem !important;
  }
  .u-mr15-sp {
    margin-right: 1.5rem !important;
  }
  .u-pt15-sp {
    padding-top: 1.5rem !important;
  }
  .u-pb15-sp {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-sp {
    padding-left: 1.5rem !important;
  }
  .u-pr15-sp {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt10-sp {
    margin-top: 1rem !important;
  }
  .u-mb10-sp {
    margin-bottom: 1rem !important;
  }
  .u-ml10-sp {
    margin-left: 1rem !important;
  }
  .u-mr10-sp {
    margin-right: 1rem !important;
  }
  .u-pt10-sp {
    padding-top: 1rem !important;
  }
  .u-pb10-sp {
    padding-bottom: 1rem !important;
  }
  .u-pl10-sp {
    padding-left: 1rem !important;
  }
  .u-pr10-sp {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt5-sp {
    margin-top: 0.5rem !important;
  }
  .u-mb5-sp {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-sp {
    margin-left: 0.5rem !important;
  }
  .u-mr5-sp {
    margin-right: 0.5rem !important;
  }
  .u-pt5-sp {
    padding-top: 0.5rem !important;
  }
  .u-pb5-sp {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-sp {
    padding-left: 0.5rem !important;
  }
  .u-pr5-sp {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 700px) {
  .u-mt0-sp {
    margin-top: 0rem !important;
  }
  .u-mb0-sp {
    margin-bottom: 0rem !important;
  }
  .u-ml0-sp {
    margin-left: 0rem !important;
  }
  .u-mr0-sp {
    margin-right: 0rem !important;
  }
  .u-pt0-sp {
    padding-top: 0rem !important;
  }
  .u-pb0-sp {
    padding-bottom: 0rem !important;
  }
  .u-pl0-sp {
    padding-left: 0rem !important;
  }
  .u-pr0-sp {
    padding-right: 0rem !important;
  }
}
/*--------------------------
	margin マイナス調整用
--------------------------*/
.u-mt-70-negative {
  margin-top: -7rem !important;
}

@media screen and (max-width: 700px) {
  .u-mt-40-negative-sp {
    margin-top: -4rem !important;
  }
}
/*--------------------------
	Layout
--------------------------*/
/*----------------------------------------------------

	レイアウト設定のファイルです。
	グリッドレイアウトのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
/*--------------------------
	グリッドシステム
--------------------------*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
}
.l-grid_item {
  box-sizing: border-box;
  width: 16.667%;
}
.l-grid_item-1 {
  width: 8.33%;
}
.l-grid_item-2 {
  width: 16.667%;
}
.l-grid_item-3 {
  width: 25%;
}
.l-grid_item-4 {
  width: 33.333%;
}
.l-grid_item-5 {
  width: 41.666%;
}
.l-grid_item-6 {
  width: 50%;
}
.l-grid_item-7 {
  width: 58.333%;
}
.l-grid_item-8 {
  width: 66.666%;
}
.l-grid_item-9 {
  width: 75%;
}
.l-grid_item-10 {
  width: 83.33%;
}
.l-grid_item-11 {
  width: 91.666%;
}
.l-grid_item-12 {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .l-grid_item-1-tab {
    width: 8.33%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-2-tab {
    width: 16.667%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-3-tab {
    width: 25%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-4-tab {
    width: 33.333%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-5-tab {
    width: 41.666%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-6-tab {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-7-tab {
    width: 58.333%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-8-tab {
    width: 66.666%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-9-tab {
    width: 75%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-10-tab {
    width: 83.33%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-11-tab {
    width: 91.666%;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid_item-12-tab {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-1-sp {
    width: 8.33%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-2-sp {
    width: 16.667%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-3-sp {
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-4-sp {
    width: 33.333%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-5-sp {
    width: 41.666%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-6-sp {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-7-sp {
    width: 58.333%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-8-sp {
    width: 66.666%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-9-sp {
    width: 75%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-10-sp {
    width: 83.33%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-11-sp {
    width: 91.666%;
  }
}
@media screen and (max-width: 700px) {
  .l-grid_item-12-sp {
    width: 100%;
  }
}
.l-grid--ai-center {
  align-items: center;
}
.l-grid.l-gutter-s {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -1rem;
}
.l-grid.l-gutter-s > .l-grid_item {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.l-grid.l-gutter-m {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -2rem;
}
.l-grid.l-gutter-m > .l-grid_item {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-grid.l-gutter-l {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -4rem;
}
.l-grid.l-gutter-l > .l-grid_item {
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.l-grid.l-gutter-xl {
  margin-left: -3rem;
  margin-right: -3rem;
  margin-bottom: -6rem;
}
.l-grid.l-gutter-xl > .l-grid_item {
  margin-bottom: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.l-grid.l-gutter-2l {
  margin-left: -4rem;
  margin-right: -4rem;
  margin-bottom: -8rem;
}
.l-grid.l-gutter-2l > .l-grid_item {
  margin-bottom: 8rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media screen and (max-width: 1024px) {
  .l-grid.l-gutter-s-tab {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-tab > .l-grid_item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid.l-gutter-m-tab {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-tab > .l-grid_item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-grid.l-gutter-l-tab {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-tab > .l-grid_item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .l-grid.l-gutter-s-sp {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-sp > .l-grid_item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 700px) {
  .l-grid.l-gutter-m-sp {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-sp > .l-grid_item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .l-grid.l-gutter-l-sp {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-sp > .l-grid_item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-grid.l-grid-mb0 > .l-grid_item {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .l-grid.l-grid-mb0-tab > .l-grid_item {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 700px) {
  .l-grid.l-grid-mb0-sp > .l-grid_item {
    margin-bottom: 0 !important;
  }
}

.l-section {
  margin: 8rem 0;
}
@media screen and (max-width: 700px) {
  .l-section {
    margin: 4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  width: 1280px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .l-inner {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .l-inner {
    padding: 0 2.5rem;
    width: 100%;
  }
}

.l-inner-m {
  margin: 0 auto;
  width: 152rem;
}
@media screen and (max-width: 1515px) {
  .l-inner-m {
    width: 80%;
  }
}
@media screen and (max-width: 1300px) {
  .l-inner-m {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .l-inner-m {
    padding: 0 2.5rem;
    width: 100%;
  }
}

.l-inner-product {
  margin: 0 auto;
  width: 118rem;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .l-inner-product {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .l-inner-product {
    padding: 0 2.5rem;
    width: 100%;
  }
}

.l-inner-video-wrap-movie {
  width: 103rem;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .l-inner-video-wrap-movie {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .l-inner-video-wrap-movie {
    width: 100%;
  }
}

.l-flex {
  display: flex;
}
.l-flex--aic {
  align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

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

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/*--------------------------
	module
--------------------------*/
.common-headings {
  padding-bottom: 10rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .common-headings {
    padding-bottom: 4rem;
  }
}
.common-headings--privacy-policy::before {
  content: "";
  position: absolute;
  top: 0rem;
  right: 0%;
  background-image: url(../images/privacy/privacy-policy-img.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 700px) {
  .common-headings--privacy-policy::before {
    width: 3rem;
    height: 3rem;
    top: -3rem;
  }
}
.common-headings--movie {
  z-index: 100;
  color: #fff;
  position: absolute;
  margin-top: 30rem;
}
@media screen and (max-width: 700px) {
  .common-headings--movie {
    margin-top: 15rem;
  }
}
.common-headings--movie::before {
  content: "";
  position: absolute;
  top: 0rem;
  right: -100rem;
  background-image: url(../images/privacy/privacy-policy-img.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 1300px) {
  .common-headings--movie::before {
    right: -80rem;
  }
}
@media screen and (max-width: 700px) {
  .common-headings--movie::before {
    width: 3rem;
    height: 3rem;
    top: -1rem;
    right: -16rem;
  }
}
.common-headings--confirm {
  z-index: 100;
}
.common-headings--confirm::before {
  content: "";
  position: absolute;
  top: 0rem;
  right: 0%;
  background-image: url(../images/privacy/privacy-policy-img.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 700px) {
  .common-headings--confirm::before {
    width: 3rem;
    height: 3rem;
    top: -3rem;
  }
}
.common-headings--thanks {
  z-index: 100;
  text-align: center;
}
.common-headings--thanks::before {
  content: "";
  position: absolute;
  top: 0rem;
  right: 0%;
  background-image: url(../images/privacy/privacy-policy-img.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 700px) {
  .common-headings--thanks::before {
    width: 3rem;
    height: 3rem;
    top: -3rem;
  }
}

.common-heading {
  font-size: 10rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .common-heading {
    font-size: 5rem;
    margin-bottom: 0;
  }
}

.common-heading-ja {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .common-heading-ja {
    font-size: 1.2rem;
  }
}

.common-heading-text {
  padding-top: 8rem;
  font-size: 1.6rem;
  width: 80rem;
}
@media screen and (max-width: 700px) {
  .common-heading-text {
    width: 100%;
    font-size: 1.3rem;
    padding-top: 5rem;
  }
}

/*------------------------------
	ナビゲーション
------------------------------*/
/*------------------------------
	ページネーション
------------------------------*/
.wp-pagenavi {
  text-align: center;
  clear: both;
  margin: 6rem 0;
}
@media screen and (max-width: 700px) {
  .wp-pagenavi {
    margin: 4rem 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  background-color: #fff;
  border: none !important;
  color: #999;
  font-size: 2rem;
  padding: 0.8rem 1.5rem !important;
  margin: 0 1.5rem !important;
  white-space: nowrap;
  border-radius: 50%;
  transition: 0.25s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.4rem;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.5rem !important;
  }
}
.wp-pagenavi a:hover {
  color: #000;
}
.wp-pagenavi span.current {
  color: #000;
  font-weight: bold;
}

.wp-content-header {
  margin-bottom: 2rem;
}

/*------------------------------
	Content( 記事の本文 )
------------------------------*/
.wp-content {
  line-height: 1.8;
  margin-bottom: 8rem;
  /* img */
}
.wp-content:after {
  content: "";
  clear: both;
  display: block;
}
.wp-content strong {
  font-weight: bold;
}
.wp-content em {
  font-style: italic;
}
.wp-content blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 4rem;
  -webkit-margin-end: 4rem;
}
.wp-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.wp-content .alignright {
  float: right;
  margin-left: 1.5rem !important;
}
.wp-content .alignleft {
  float: left;
  margin-right: 1.5rem !important;
}
.wp-content img[class*=wp-image-],
.wp-content img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  margin: 1.5rem 0;
}
.wp-content .wp-caption {
  max-width: 100%;
}
.wp-content p {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.wp-content a {
  color: #000;
  text-decoration: underline;
}
.wp-content a:hover {
  text-decoration: none;
}
.wp-content ul {
  margin: 1em 0;
  padding-left: 4rem;
  list-style-type: disc;
}
.wp-content ul li {
  list-style-type: disc;
}
.wp-content ol {
  margin: 1em 0;
  padding-left: 4rem;
  list-style-type: decimal;
}
.wp-content ol li {
  list-style-type: decimal;
}
.wp-content blockquote {
  margin: 0 0 1em 0;
  padding: 50px 50px 40px;
  background: #f2f2f2;
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(248, 248, 248)));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#f8f8f8",GradientType=0 );
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  border: 1px solid #c1c1c1;
}
.wp-content blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #999;
}
.wp-content blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  text-align: left;
  line-height: 6rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: #999;
}
.wp-content pre {
  margin: 1em 0;
  padding: 1em;
  color: #000000;
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
/*--------------------------
	page
--------------------------*/
.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 9999;
}
.header__inner {
  padding: 2rem 3rem 1.5rem 3rem;
}
@media screen and (max-width: 700px) {
  .header__inner {
    padding: 1rem 3rem 1rem 1rem;
  }
}
.header__logo {
  width: 17rem;
}
@media screen and (max-width: 700px) {
  .header__logo {
    width: 11rem;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.header__nav-link {
  display: block;
  margin: 0 3rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
}
.header__nav-link::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 100%;
  background-color: #000;
  right: -3rem;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 0.15rem;
  background-color: #000;
  transition: width 0.3s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link--last::before {
  content: none;
}
.header__nav-link--product {
  color: #999999;
  font-size: 1.4rem;
  font-weight: 500;
  border-right: none;
  padding-right: 0;
  position: relative;
}
.header__nav-link02 {
  border: solid 0.2rem #4A6372;
  padding: 1rem 2rem;
  color: #4A6372;
  margin: 0 0.3rem;
  font-weight: 600;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  transition: 0.4s;
}
.header__nav-link02:hover {
  background-color: #4A6372;
  color: #fff;
}
.header__navi-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   SP ナビ追加
========================================= */
@media screen and (max-width: 700px) {
  /* ハンバーガーボタン */
  .hamburger {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
  }
  .hamburger span {
    display: block;
    height: 0.1rem;
    background: #4A6372;
    border-radius: 0rem;
    transition: 0.4s;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(0.9rem) rotate(20deg);
  }
  .hamburger.is-active span:nth-child(2) {
    transform: translateY(-0.3rem) rotate(-20deg);
  }
  /* SP ナビ本体 */
  .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: right 0.45s ease;
    z-index: 1500;
    padding: 2rem;
    overflow-y: auto;
    /* 大きめボタン */
    /* 下の細いリンク */
    /* SNS アイコン */
    /* 一番下のバナー */
  }
  .sp-nav.is-open {
    right: 0;
  }
  .sp-nav__inner {
    padding-top: 6rem;
    width: 90%;
    margin: 0 auto;
  }
  .sp-nav__list-item {
    font-weight: 600;
    color: #999;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
  }
  .sp-nav__list-item-blk {
    border-bottom: 1px solid #ccc;
    position: relative;
  }
  .sp-nav__list-item-blk:last-child {
    border-bottom: none;
  }
  .sp-nav__list-item-blk a {
    display: block;
    padding: 1.7rem 0 1.9rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    font-family: "Funnel Display", sans-serif;
  }
  .sp-nav__list-item-blk a::before {
    content: "";
    position: absolute;
    background-image: url(../images/common/sp-menu-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 1rem;
    height: 1rem;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  .sp-nav__btns {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
  }
  .sp-nav__btns .btn {
    flex: 1;
    padding: 1rem 0rem 1.1rem 0rem;
    border-radius: 0.3rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Funnel Display", sans-serif;
  }
  .sp-nav__btns .btn.--movie {
    background: #4A6372;
    color: #fff;
  }
  .sp-nav__btns .btn.--news {
    background: #E6E6E6;
  }
  .sp-nav__btns .btn.--contact {
    background: #000;
    color: #fff;
  }
  .sp-nav__links {
    display: flex;
    gap: 4rem;
    margin: 2rem 0 0 2rem;
  }
  .sp-nav__links-item {
    font-size: 1.3rem;
    text-decoration: underline;
    font-weight: 600;
    position: relative;
  }
  .sp-nav__links-item::before {
    content: "";
    position: absolute;
    background-color: white;
    border: solid 1px white;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    box-shadow: 0 0 0 2.7px #454545;
    top: 45%;
    left: -25%;
  }
  .sp-nav__links-item--02::before {
    content: "";
    position: absolute;
    background-color: white;
    border: solid 1px white;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    box-shadow: 0 0 0 2.7px #000;
    top: 45%;
    left: -19%;
  }
  .sp-nav__sns {
    display: flex;
    gap: 1.6rem;
    margin: 2rem 0;
  }
  .sp-nav__sns img {
    width: 2.3rem;
    height: auto;
  }
  .sp-nav .sp-nav__sns--youtube {
    width: 2.7rem;
  }
  .sp-nav__banner img {
    width: 12rem;
  }
}
.floating-btn {
  position: fixed;
  bottom: 35%;
  right: 0;
  z-index: 500;
  width: 65px;
  height: 220px;
}
@media screen and (max-width: 700px) {
  .floating-btn {
    width: 50%;
    height: 6rem;
    bottom: -1rem;
    right: 0rem;
    z-index: 500;
  }
}
.floating-btn a {
  display: block;
}
.floating-btn img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  inset: 0;
}
.floating-btn .img-hover {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-btn a:hover .img-hover {
  opacity: 1;
}

@media screen and (max-width: 700px) {
  .floating-btn.is-Sp {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .floating-btn.is-Sp.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}
.bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* 
     ★ここが重要：100vhにすると常に画面一杯でデカすぎます。
     例えば「56.25%」にすると16:9の比率で画面幅に合わせて縮みます。
     「40vh」などにすると、画面の高さの40%分しか表示されません。
  */
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.bg-video-wrap--movie {
  position: absolute;
  clip-path: polygon(0 0, 0 85vh, 65vw 35vh);
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .bg-video-wrap--movie {
    height: clamp(240px, 89vw, 450px);
    clip-path: polygon(0 0, 0 100%, 88vw clamp(80px, 40vw, 200px));
    margin-top: 4rem;
  }
}
.bg-video-wrap--movie video {
  min-width: 100%;
  min-height: 45vh;
  z-index: -1;
  object-fit: cover;
  position: relative;
}

.bg-video-clip {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: #fff;
  clip-path: polygon(0 0, 0 800px, 1000px 400px);
}
@media screen and (max-width: 1000px) {
  .bg-video-clip {
    clip-path: polygon(0 0, 0 60%, 70vw 30vh);
  }
}
video {
  /* min-width / min-height は「縮む」のを邪魔するので削除 */
  width: 100%;
  height: 100%;
  /* 
     ★object-fit: cover を使いつつ、
     動画を常に親要素の「幅」に強制的に合わせます 
  */
  object-fit: cover;
  /* 表示位置の微調整（上が切れる場合はここを center center に） */
  object-position: center top;
}

/* フェードイン付与 */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(200px);
  transition: opacity 1s, visibility 1s, transform 1s;
  position: relative;
  z-index: 100;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 1s;
  transform: translateY(0);
  opacity: 1;
}

/* トリガー発火でis-activeを付与 */
.is-active .u-fade-type-up {
  transition: 1s;
  transform: translateY(0);
  opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2) {
  transition-delay: 0.4s;
}

.is-active .u-fade-type-up:nth-child(3) {
  transition-delay: 0.8s;
}

.is-active .u-fade-type-up:nth-child(4) {
  transition-delay: 1.2s;
}

.is-active .u-fade-type-up:nth-child(5) {
  transition-delay: 1.6s;
}

.is-active .u-fade-type-up:nth-child(6) {
  transition-delay: 2s;
}

.is-active .u-fade-type-up:nth-child(7) {
  transition-delay: 2.4s;
}

.is-active .u-fade-type-up:nth-child(8) {
  transition-delay: 2.8s;
}

.is-active .u-fade-type-up:nth-child(9) {
  transition-delay: 3.2s;
}

.is-active .u-fade-type-up:nth-child(10) {
  transition-delay: 3.6s;
}

.is-active .u-fade-type-up:nth-child(11) {
  transition-delay: 4s;
}

.is-active .u-fade-type-up:nth-child(12) {
  transition-delay: 4.4s;
}

.is-active .u-fade-type-up:nth-child(13) {
  transition-delay: 4.8s;
}

.is-active .u-fade-type-up:nth-child(14) {
  transition-delay: 5.2s;
}

.is-active .u-fade-type-up:nth-child(15) {
  transition-delay: 5.6s;
}

.pagination--movie {
  margin-top: 10rem;
  margin-bottom: 12rem;
  padding-bottom: 10rem;
  border-bottom: solid 0.1rem #E6E6E6;
}
@media screen and (max-width: 700px) {
  .pagination--movie {
    margin-top: 6rem;
    margin-bottom: 5rem;
    padding-bottom: 6rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .nav-links {
    width: 100%;
  }
}

.page-numbers + .page-numbers {
  margin-left: 2.2rem;
}
@media screen and (max-width: 700px) {
  .page-numbers + .page-numbers {
    margin-left: 0rem;
  }
}

.prev.page-numbers {
  position: relative;
}

.prev.page-numbers {
  margin-right: 6rem;
}
@media screen and (max-width: 700px) {
  .prev.page-numbers {
    margin-right: 2.5rem;
  }
}

.next.page-numbers {
  position: relative;
}

.next.page-numbers {
  margin-left: 6rem;
}
@media screen and (max-width: 700px) {
  .next.page-numbers {
    margin-left: 2.5rem;
  }
}

.prev.page-numbers img {
  transition: opacity 0.3s;
}

.prev.page-numbers img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.next.page-numbers img {
  transition: opacity 0.3s;
}

.next.page-numbers img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.page-numbers:hover {
  color: #AFAFAF;
}

.page-numbers.current {
  color: #AFAFAF;
}

.prev.page-numbers:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .prev.page-numbers:hover img:first-of-type {
    opacity: 1;
  }
}

.prev.page-numbers:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .prev.page-numbers:hover img:last-of-type {
    opacity: 0;
  }
}

.next.page-numbers:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .next.page-numbers:hover img:first-of-type {
    opacity: 1;
  }
}

.next.page-numbers:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .next.page-numbers:hover img:last-of-type {
    opacity: 0;
  }
}

.page-numbers {
  width: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 2rem;
  color: #111;
  font-weight: bold;
  transition: all 0.15s linear;
  font-weight: 500;
  width: 4.5rem;
  transition: 0.3s;
  font-family: "Funnel Display", sans-serif;
}
@media screen and (max-width: 700px) {
  .page-numbers {
    font-size: 1.6rem;
  }
}

.mv__title {
  position: absolute;
  bottom: 20%;
  left: 0%;
  color: #fff;
  text-align: center;
  z-index: 5;
  width: 89rem;
}

.bg-video-space {
  height: 100vh;
  position: relative;
}
.bg-video-space::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/mv_common-treat02.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80rem;
  height: 90%;
  top: -10rem;
  right: -38rem;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .bg-video-space::after {
    width: 62rem;
    height: 54%;
    top: -18rem;
    right: -22rem;
    z-index: -1;
  }
}

.top-news {
  background: #fff;
  padding: 10rem 0 14rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 700px) {
  .top-news {
    padding: 4rem 0 7rem;
  }
}
.top-news__logo {
  position: absolute;
  width: 89rem;
  height: 35%;
  left: 8%;
  top: -54%;
}
@media screen and (max-width: 700px) {
  .top-news__logo {
    width: 85%;
    height: 13%;
    left: 4%;
    top: -32%;
  }
}
.top-news__logo img {
  opacity: 0;
  transform-origin: center;
  filter: blur(6px);
}
.top-news::before {
  content: "";
  position: absolute;
  right: 0;
  background-image: url(../images/top/news-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 36rem;
  height: 100%;
  right: 0%;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .top-news::before {
    background-image: url(../images/top/news-bg-sp.png);
    background-size: contain;
    width: 130%;
    height: 20%;
    left: -5rem;
  }
}
.top-news__wrap::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/common-img-treat.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
  top: 2rem;
  left: 2rem;
}
@media screen and (max-width: 700px) {
  .top-news__wrap::before {
    width: 3rem;
    height: 3rem;
  }
}
.top-news__wrap::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/mv_common-treat.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80rem;
  height: 140%;
  top: -35rem;
  left: -7rem;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .top-news__wrap::after {
    width: 60rem;
    height: 60%;
    top: -25rem;
    left: -19rem;
    z-index: -1;
  }
}
.top-news__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .top-news__inner {
    flex-direction: column-reverse;
  }
}
.top-news__cont {
  width: 65%;
  margin-top: 11rem;
}
@media screen and (max-width: 700px) {
  .top-news__cont {
    width: 100%;
    margin-top: 0;
  }
}
.top-news__cont-item {
  display: flex;
  padding: 3.5rem 0 0;
  margin-bottom: 6rem;
  gap: 0 8rem;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-news__cont-item {
    flex-direction: column;
    margin-bottom: 3rem;
    padding: 1.7rem 0 0;
    gap: 1rem;
  }
}
.top-news__cont-item::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #B2B2B2;
  transition: 0.4s;
}
.top-news__cont-item::after {
  content: "";
  position: absolute;
  top: 4.6rem;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-news__cont-item::after {
    top: 3.5rem;
    right: 0;
    background-size: 1rem;
  }
}
.top-news__cont-item:last-child {
  margin-bottom: 0;
}
.top-news__cont-item:hover .top-news__cont-heading {
  color: #7F7F7F;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-news__cont-item:hover .top-news__cont-heading {
    color: #000;
  }
}
.top-news__cont-item:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .top-news__cont-item:hover::after {
    background-color: #fff;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-position: center;
    background-size: 1rem;
  }
}
.top-news__cont-item:hover::before {
  width: 0;
}
@media screen and (max-width: 700px) {
  .top-news__cont-item:hover::before {
    width: 100%;
  }
}
.top-news__cont-heading {
  width: 80%;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .top-news__cont-heading {
    font-size: 1.2rem;
    width: 72%;
  }
}
.top-news__date {
  width: 16rem;
  color: #B2B2B2;
  font-size: 1.4rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .top-news__date {
    font-size: 1.2rem;
  }
}
.top-news__cont-icon {
  border: solid 0.1rem #000;
  line-height: 1;
}
.top-news__heading {
  margin-bottom: 12.2rem;
  position: relative;
  font-size: 13rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  margin-left: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .top-news__heading {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
}
.top-news__heading-ja {
  position: absolute;
  bottom: -0.3rem;
  left: -2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 700px) {
  .top-news__heading-ja {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.top-news__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .top-news__common-btn {
    width: 45%;
    display: block;
    margin-left: auto;
    padding-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
.top-news__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-news__common-btn::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.top-news__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .top-news__common-btn:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}

.top-instagram {
  position: relative;
  padding: 20rem 0 14rem;
  /* 埋め込み要素自体の幅は100%のまま（これは変更不要） */
  /* ===== レスポンシブ対応（スマホ表示）===== */
  /* 画面幅が700px以下になったら */
}
@media screen and (max-width: 700px) {
  .top-instagram {
    padding: 10rem 0 6rem;
  }
}
.top-instagram__bg-line {
  position: absolute;
  width: 136%;
  height: 34%;
  top: -97rem;
  left: -7rem;
  z-index: -1;
}
@media (max-width: 1920px) {
  .top-instagram__bg-line {
    top: -80rem;
  }
}
@media (max-width: 1840px) {
  .top-instagram__bg-line {
    top: -67rem;
  }
}
@media (max-width: 1640px) {
  .top-instagram__bg-line {
    top: -70rem;
  }
}
@media (max-width: 1540px) {
  .top-instagram__bg-line {
    top: -33%;
  }
}
@media (max-width: 1240px) {
  .top-instagram__bg-line {
    top: -17%;
  }
}
@media screen and (max-width: 700px) {
  .top-instagram__bg-line {
    width: 182%;
    height: 79%;
    top: -2rem;
    left: -7rem;
    z-index: -1;
  }
}
.top-instagram img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-instagram::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/common-img-treat02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
  top: 2rem;
  left: 2rem;
}
@media screen and (max-width: 700px) {
  .top-instagram::before {
    width: 3rem;
    height: 3rem;
  }
}
.top-instagram__headings {
  margin-bottom: 6rem;
}
.top-instagram__heading {
  font-size: 9.2rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 700px) {
  .top-instagram__heading {
    font-size: 5rem;
  }
}
.top-instagram__heading-ja {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2rem;
}
.top-instagram #instagram-embed {
  max-width: 100%; /* リキッド対応 */
  width: 100%;
  border: none; /* 枠線削除 */
  border-radius: 6px; /* 角丸 */
  overflow: hidden; /* 内部コンテンツのはみ出し防止 */
}
.top-instagram .insta-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1100px) {
  .top-instagram .insta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 700px) {
  .top-instagram .insta-container {
    margin-bottom: 3rem;
  }
}
.top-instagram .insta-item {
  flex: 1;
  min-width: 0;
  /* ▼▼▼ この2行を追加 ▼▼▼ */
  display: flex;
  justify-content: center;
  /* ▲▲▲ ここまで追加 ▲▲▲ */
}
@media screen and (max-width: 1100px) {
  .top-instagram .insta-item {
    flex: none;
  }
}
.top-instagram .insta-item .instagram-media {
  width: 100% !important;
}
@media screen and (max-width: 700px) {
  .top-instagram {
    /* Splide用 */
    /* Splide arrows をカスタム */
    /* ←（prev）矢印画像 */
    /* →（next）矢印画像 */
    /* 中のデフォルトアイコンを消す */
  }
  .top-instagram .insta-container {
    display: block; /* Splideが支配するのでflex解除 */
  }
  .top-instagram .splide__track {
    overflow: hidden;
  }
  .top-instagram .splide__slide {
    padding: 0 1rem;
  }
  .top-instagram .splide__arrow {
    width: 5rem;
    height: 4rem;
    background: none;
    border: none;
    padding: 0;
    opacity: 1;
  }
  .top-instagram .splide__arrow--prev {
    background-image: url("../images/top/insta-left-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .top-instagram .splide__arrow--next {
    background-image: url("../images/top/insta-right-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .top-instagram .splide__arrow svg {
    display: none;
  }
  .top-instagram .splide__arrow {
    border: 0;
    border-radius: 0%;
  }
  .top-instagram .splide__arrow--next {
    right: -1em;
  }
  .top-instagram .splide__arrow--prev {
    left: -1em;
  }
}
.top-instagram__btn-wrapper {
  width: fit-content;
  margin: 0 auto;
}
.top-instagram__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #fff;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #fff;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .top-instagram__common-btn {
    width: 15rem;
    padding-left: 0.5rem;
    padding-bottom: 2rem;
  }
}
.top-instagram__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #fff; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-instagram__common-btn::after {
    background-size: 1rem;
  }
}
.top-instagram__common-btn:hover::after {
  background-color: #fff;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .top-instagram__common-btn:hover::after {
    background-color: transparent;
    background-image: url("../images/common/arrow-up-right-wh-icon.png");
    background-position: center;
    background-size: 1rem;
  }
}

.top-instagram-line {
  fill: none;
  stroke: #ffffff !important;
  stroke-width: 1;
}

.top-product {
  padding: 22.6rem 0 2rem;
  background-color: #F5F8F8;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .top-product {
    padding: 9rem 0 0rem;
  }
}
.top-product::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/common-img-treat03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
  top: 2rem;
  right: 2rem;
}
@media screen and (max-width: 700px) {
  .top-product::before {
    width: 3rem;
    height: 3rem;
  }
}
.top-product::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/top-product_treat.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 82rem;
  top: 7rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .top-product::after {
    background-image: url(../images/top/top-product_treat-sp.png);
    width: 100%;
    height: 32rem;
    top: 0rem;
  }
}
.top-product__heading {
  font-size: 24rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.4rem;
  line-height: 0.8;
  margin-left: -1.7rem;
  margin-bottom: -0.6rem;
}
@media screen and (max-width: 700px) {
  .top-product__heading {
    font-size: 7rem;
    margin-left: -0.4rem;
    letter-spacing: 0.1rem;
    margin-bottom: -0.3rem;
    letter-spacing: 0;
  }
}
.top-product__heading-ja {
  margin: 0 auto;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .top-product__heading-ja {
    font-size: 1.3rem;
  }
}
.top-product__banner01 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .top-product__banner01 {
    margin-bottom: 1rem;
  }
}
.top-product__banner02 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 700px) {
  .top-product__banner02 {
    padding-bottom: 1rem;
  }
}
.top-product__banner {
  display: block;
  position: relative;
  overflow: hidden;
  height: 60rem;
}
@media screen and (max-width: 700px) {
  .top-product__banner {
    height: 31.5rem;
  }
}
.top-product__banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: 1;
}
.top-product__banner:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 700px) {
  .top-product__banner:hover img {
    transform: none;
  }
}
.top-product__banner:hover::after {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .top-product__banner:hover::after {
    content: none;
  }
}
.top-product__banner:hover .top-product__banner-text {
  transition: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@media screen and (max-width: 700px) {
  .top-product__banner:hover .top-product__banner-text {
    color: #fff;
  }
}
.top-product__banner:hover .top-product__banner-text-color {
  transition: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@media screen and (max-width: 700px) {
  .top-product__banner:hover .top-product__banner-text-color {
    color: #C81432;
    -webkit-text-stroke: 1px #C81432;
    text-stroke: 1px #C81432;
  }
}
.top-product__banner:hover .top-product__banner-text-color--02 {
  transition: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@media screen and (max-width: 700px) {
  .top-product__banner:hover .top-product__banner-text-color--02 {
    color: #BFD51B;
    -webkit-text-stroke: 1px #BFD51B;
    text-stroke: 1px #BFD51B;
  }
}
.top-product__banner:hover .top-product__banner-subtext::after {
  transition: 0.4s;
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .top-product__banner:hover .top-product__banner-subtext::after {
    background-position: center;
    background-size: 1rem;
  }
}
.top-product__banner img {
  width: 130%;
  height: 60rem;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}
.top-product__banner-text {
  position: absolute;
  bottom: 3%;
  left: 2%;
  transform: translate(0%, -50%);
  color: white;
  z-index: 2;
  font-size: 10rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  line-height: 1;
  width: 95%;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #C81432;
}
@media screen and (max-width: 700px) {
  .top-product__banner-text {
    font-size: 5rem;
    width: 85%;
    left: 8%;
    bottom: 9%;
    padding-bottom: 1rem;
  }
}
.top-product__banner-text--02 {
  border-bottom: solid 0.1rem #BFD51B;
}
.top-product__banner-text-color {
  color: #C81432;
}
.top-product__banner-text-color--02 {
  color: #BFD51B;
}
.top-product__banner-subtext {
  position: absolute;
  bottom: 3rem;
  left: 2%;
  transform: translate(0%, -50%);
  color: white;
  z-index: 2;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  width: 95%;
}
@media screen and (max-width: 700px) {
  .top-product__banner-subtext {
    font-size: 1.2rem;
    bottom: 1rem;
    left: 8%;
    width: 85%;
  }
}
.top-product__banner-subtext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #C81432;
  background-color: #C81432;
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-product__banner-subtext::after {
    background-size: 1rem;
    border-radius: 2px;
  }
}
.top-product__banner-subtext--02::after {
  border: 1px solid #BFD51B;
  background-color: #BFD51B;
  background-size: 1rem; /* アイコンサイズ調整 */
}
.top-product__banner-main-text {
  position: absolute;
  top: 27rem;
  right: 10%;
  transform: translate(0%, -50%);
  color: white;
  z-index: 2;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .top-product__banner-main-text {
    top: 21rem;
    right: 6%;
    z-index: 2;
    font-size: 1.2rem;
    letter-spacing: 0rem;
  }
}
@media screen and (max-width: 700px) {
  .top-product__banner-main-text--sp {
    top: 21rem;
    right: 16%;
    z-index: 2;
    font-size: 1.2rem;
  }
}
.top-product__banner-main-text01 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 700px) {
  .top-product__banner-main-text01 {
    margin-bottom: 0;
  }
}
.top-product__banner-main-text02 {
  color: #C81432;
}
.top-product__banner-main-text02--02 {
  color: #BFD51B;
}
.top-product__banner-flex {
  display: flex;
  gap: 0 2rem;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .top-product__banner-flex {
    flex-direction: column;
    gap: 1rem 0;
  }
}
.top-product__banner-smalls {
  width: 48%;
}
@media screen and (max-width: 700px) {
  .top-product__banner-smalls {
    width: 100%;
  }
}
.top-product__banner-small {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 45rem;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small {
    width: 95%;
    margin: 0 auto;
    height: 21.5rem;
  }
}
.top-product__banner-small::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: 1;
}
.top-product__banner-small:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 700px) {
  .top-product__banner-small:hover img {
    transform: none;
  }
}
.top-product__banner-small:hover::after {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small:hover::after {
    opacity: 0;
  }
}
.top-product__banner-small:hover .top-product__banner-small-text {
  transition: 0.4s;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small:hover .top-product__banner-small-text {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
  }
}
.top-product__banner-small:hover .top-product__banner-small-subtext::after {
  transition: 0.4s;
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small:hover .top-product__banner-small-subtext::after {
    background-color: #fff;
    background-size: 1rem;
    background-position: center;
    background-image: url("../images/common/arrow-up-right-icon.png");
  }
}
.top-product__banner-small img {
  width: 100%;
  height: 45rem;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}
.top-product__banner-small-text {
  position: absolute;
  bottom: 5%;
  left: 5%;
  transform: translate(0%, -50%);
  color: white;
  z-index: 2;
  font-size: clamp(3.1rem, 8.55vw, 8rem);
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  line-height: 1;
  width: 90%;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #fff;
  font-size: 6.4rem;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small-text {
    width: 85%;
    left: 7%;
    bottom: 2%;
    font-size: 3.1rem;
    padding-bottom: 4rem;
  }
}
.top-product__banner-small-text--02 {
  border-bottom: solid 0.2rem #BFD51B;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small-text--sp {
    padding-bottom: 5rem;
    bottom: 6%;
  }
}
.top-product__banner-small-text-color {
  color: #C81432;
}
.top-product__banner-small-text-color--02 {
  color: #BFD51B;
}
.top-product__banner-small-subtext {
  position: absolute;
  bottom: 2rem;
  left: 5%;
  transform: translate(0%, -50%);
  color: white;
  z-index: 2;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  width: 95%;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small-subtext {
    font-size: 1.2rem;
    bottom: 1.3rem;
    left: 7%;
    width: 92%;
  }
}
.top-product__banner-small-subtext::after {
  content: "";
  position: absolute;
  top: 70%;
  right: 5.3%;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #fff;
  background-color: none;
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-product__banner-small-subtext::after {
    background-size: 1rem;
    background-color: #fff;
    background-image: url("../images/common/arrow-up-right-icon.png");
    top: 70%;
    right: 8%;
  }
}

.top-new-product {
  padding: 22rem 0 18rem;
  background-color: #F5F8F8;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .top-new-product {
    padding: 7rem 0 6rem;
  }
}
.top-new-product::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/top-product_treat02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 82rem;
  top: 7rem;
  right: 0;
  z-index: -2;
}
@media screen and (max-width: 700px) {
  .top-new-product::after {
    background-image: url(../images/top/top-product_treat02-sp.png);
    width: 100%;
    height: 29rem;
    top: 0rem;
  }
}
.top-new-product__bg-line {
  position: absolute;
  width: 136%;
  height: 72%;
  top: -25%;
  left: -5%;
  z-index: -1;
}
@media (max-width: 1540px) {
  .top-new-product__bg-line {
    width: 146%;
    top: -13%;
  }
}
@media (max-width: 1240px) {
  .top-new-product__bg-line {
    top: 0%;
  }
}
@media screen and (max-width: 700px) {
  .top-new-product__bg-line {
    width: 266%;
    height: 87%;
    top: 15rem;
    left: -51rem;
    z-index: -1;
  }
}
.top-new-product__inner::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/common-img-treat03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
  top: 2rem;
  right: 2rem;
}
@media screen and (max-width: 700px) {
  .top-new-product__inner::before {
    width: 3rem;
    height: 3rem;
  }
}
.top-new-product__headings {
  padding-bottom: 7rem;
}
@media screen and (max-width: 700px) {
  .top-new-product__headings {
    padding-bottom: 3.5rem;
  }
}
.top-new-product__heading {
  font-size: 14rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.1rem;
  line-height: 0.8;
  margin-left: -1.7rem;
  margin-bottom: -0.6rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .top-new-product__heading {
    font-size: 5rem;
    margin-left: 0;
    line-height: 1;
    letter-spacing: 0;
  }
}
.top-new-product__heading-ja {
  position: absolute;
  margin: 0 auto;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2rem;
  line-height: 1;
  top: 8rem;
  left: 40rem;
}
@media screen and (max-width: 700px) {
  .top-new-product__heading-ja {
    left: 14.6rem;
    top: 3rem;
    font-size: 1.2rem;
  }
}
.top-new-product__heading-ja::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 7rem;
  background: #000;
  top: -5rem;
  left: -3rem;
}
@media screen and (max-width: 700px) {
  .top-new-product__heading-ja::before {
    width: 0.1rem;
    height: 4rem;
    background: #000;
    top: -2.7rem;
    left: -1.6rem;
  }
}
.top-new-product__type {
  display: flex;
  justify-content: flex-start;
  gap: 0 3rem;
}
@media screen and (max-width: 700px) {
  .top-new-product__type {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.top-new-product__type-link {
  background-color: #fff;
  width: 32%;
  padding: 3rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 700px) {
  .top-new-product__type-link {
    width: 100%;
    padding: 2rem;
  }
}
.top-new-product__type-link::after {
  content: "";
  position: absolute;
  bottom: 4%;
  right: 7%;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  background-color: var(--category-color, #C30100);
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-new-product__type-link::after {
    background-size: 1rem;
    bottom: 2%;
    border-radius: 3px;
  }
}
.top-new-product__type-link:hover::after {
  transition: 0.4s;
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
}
@media screen and (max-width: 700px) {
  .top-new-product__type-link:hover::after {
    background-size: 1rem;
    background-position: center;
  }
}
.top-new-product__type-item-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
.top-new-product__type-text-name {
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 700px) {
  .top-new-product__type-text-name {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
}
.top-new-product__type-en {
  font-size: 1.6rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #000;
  padding-top: 1rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .top-new-product__type-en {
    font-size: 1.3rem;
  }
}
.top-new-product__type-en::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0%;
  width: 8rem;
  height: 0.1rem;
  background-color: var(--category-color, #C30100);
  background-repeat: no-repeat;
  background-position: center;
}

.top-movie {
  padding: 23rem 0 10rem;
  background-color: #fff;
  position: relative;
}
@media (min-width: 1921px) {
  .top-movie {
    padding: 23rem 0 23rem;
  }
}
@media (min-width: 2650px) {
  .top-movie {
    padding: 23rem 0 33rem;
  }
}
@media (min-width: 3000px) {
  .top-movie {
    padding: 23rem 0 48rem;
  }
}
@media (max-width: 1490px) {
  .top-movie {
    padding: 23rem 0 0rem;
  }
}
@media screen and (max-width: 700px) {
  .top-movie {
    padding: 9rem 0 0rem;
    margin-bottom: -4rem;
  }
}
.top-movie::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/common-img-treat.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
  top: 2rem;
  left: 2rem;
}
@media screen and (max-width: 700px) {
  .top-movie::before {
    width: 3rem;
    height: 3rem;
  }
}
.top-movie::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/top-movie_treat05.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 82rem;
  top: 14rem;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .top-movie::after {
    width: 100%;
    height: 27rem;
    top: 2rem;
  }
}
.top-movie__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 2rem;
  position: relative;
  z-index: 3;
}
.top-movie__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  padding-left: 1rem;
  transform: translate(-50%, -50%);
  right: -54vw;
  bottom: 0.4vw;
}
@media screen and (max-width: 700px) {
  .top-movie__common-btn {
    display: inline-block;
    width: 14rem;
    position: relative;
    padding-bottom: 2rem;
    border-bottom: solid 0.1rem #000;
    font-family: "Funnel Display", sans-serif;
    font-weight: 500;
    position: relative;
    left: 30%;
    bottom: 0.7rem;
  }
}
.top-movie__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .top-movie__common-btn::after {
    background-size: 1rem;
    right: 0;
  }
}
.top-movie__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .top-movie__common-btn:hover::after {
    background-color: #fff;
    background-size: 1rem;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-position: center;
  }
}

.slider-section__headings {
  position: absolute;
  top: 0rem;
  left: 9.9%;
  z-index: 1001;
}
@media screen and (max-width: 700px) {
  .slider-section__headings {
    position: static;
    margin: 0 2.5rem;
    z-index: 100;
  }
}

.slider-section__heading {
  font-size: 14rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.4rem;
  line-height: 0.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 700px) {
  .slider-section__heading {
    font-size: 5rem;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
}

.slider-section__heading-ja {
  margin: 0 auto;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .slider-section__heading-ja {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
}

/* スライダーセクション */
.slider-section {
  position: relative;
  width: 100%;
  padding: 21rem 0 0;
  overflow: hidden;
  height: 83rem;
  margin-left: auto;
  margin-bottom: -7%;
}
@media (max-width: 1490px) {
  .slider-section {
    margin-bottom: -7%;
  }
}
@media (min-width: 2000px) {
  .slider-section {
    height: 88rem;
  }
}
@media (min-width: 3000px) {
  .slider-section {
    height: 100rem;
  }
}
@media screen and (max-width: 700px) {
  .slider-section {
    padding: 0;
    height: 42rem;
    overflow: visible;
    z-index: 100;
  }
}

/* Swiper */
.swiper {
  position: relative;
  width: 90%;
  height: 100%;
  overflow: hidden;
  padding-left: 0;
  margin-left: 10%;
}
@media screen and (max-width: 700px) {
  .swiper {
    width: 100%;
    margin-left: 0;
    overflow: visible;
  }
}

.swiper-wrapper {
  align-items: flex-start;
  width: 200%;
  margin-left: 11.2%;
}
@media screen and (max-width: 700px) {
  .swiper-wrapper {
    width: 100%;
    margin-left: 0%;
    margin: 0 auto;
  }
}

/* 非アクティブは20vw */
.swiper-slide {
  width: 20vw !important;
  flex-shrink: 0;
  position: relative;
  transition: width 0.6s ease, opacity 0.6s ease;
}

/* アクティブは35vw */
.swiper-slide-active {
  width: 38vw !important;
  z-index: 10;
  margin-left: -10%;
}
@media screen and (max-width: 700px) {
  .swiper-slide-active {
    margin-left: 0;
  }
}

.swiper-slide-next {
  margin-left: 0 !important;
  transition: margin-left 0s;
}

/* video-item */
.video-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.swiper-slide-active .video-item {
  opacity: 1;
}

/* アクティブだけ拡大 */
.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.swiper-slide-active .play-overlay {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.play-btn {
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.play-overlay:hover .play-btn {
  transform: scale(1.08);
}

.info-panel {
  position: absolute;
  right: 13%;
  bottom: 25%;
  width: 36%;
  z-index: 100;
  /* ここから上方向は min-width 専用 */
}
@media (max-width: 1770px) {
  .info-panel {
    bottom: 25%;
  }
}
@media (max-width: 1680px) {
  .info-panel {
    bottom: 33%;
  }
}
@media (max-width: 1490px) {
  .info-panel {
    right: 9%;
    bottom: 33%;
    width: 40vw;
  }
}
@media (max-width: 1200px) {
  .info-panel {
    right: 10%;
    bottom: 36%;
    width: 38vw;
  }
}
@media (min-width: 1921px) and (max-width: 2654px) {
  .info-panel {
    bottom: 18%;
    width: 35%;
  }
}
@media (min-width: 2655px) {
  .info-panel {
    bottom: 9%;
    width: 35%;
  }
}

.info-title {
  font-size: clamp(1.4rem, 0.73vw, 1.6rem);
  font-weight: 600;
  color: #333;
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
}

.nav-buttons {
  display: flex;
  gap: 0.8rem;
}

.nav-btn {
  width: 4.5rem;
  height: 3rem;
  background: #000;
  border: solid 0.1rem #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  border-radius: 0.7rem;
}
@media screen and (max-width: 700px) {
  .nav-btn {
    border-radius: 0.3rem;
  }
}

.nav-btn img {
  display: block;
  transition: opacity 0.3s;
}

/* 前ボタンホバー時 */
.nav-btn.js-prev:hover img {
  content: url("../images/top/slider-btn-bk.svg");
}

/* 次ボタンホバー時 */
.nav-btn.js-next:hover img {
  content: url("../images/top/slider-btn-bk02.svg");
}

.nav-btn:hover {
  background: #fff;
}

.nav-btn:active {
  transform: scale(0.95);
}

@media (max-width: 700px) {
  .swiper {
    padding: 0;
    overflow: visible;
  }
  .swiper-slide {
    width: 80vw !important;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    left: 0rem;
    transition: 0.3s;
  }
  /* 中央のアクティブ動画だけ少し拡大 */
  .video-item {
    opacity: 0.6;
    width: 100%;
    transition: opacity 0.4s, transform 0.4s;
    margin-bottom: 2rem;
  }
  .swiper-slide-prev {
    width: 80vw !important;
  }
  .swiper-slide-active {
    opacity: 1;
    margin-right: 0 !important;
    transform: scale(1) !important;
  }
  .swiper-slide.swiper-slide-next {
    margin-left: 3vw !important;
  }
  .info-panel {
    position: absolute;
    right: auto;
    bottom: 18%;
    width: 100%;
    padding: 0rem 2rem 3rem 2rem;
    margin-top: 0rem;
    display: flex;
    gap: 3rem;
  }
  .info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.7;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    max-height: 5.1em;
  }
  .info-title::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 0.1rem;
    background-color: #000;
    bottom: 0;
  }
}
.footer {
  padding: 63rem 0 0;
  background: #F5F8F8;
  width: 100%;
  position: relative;
  -webkit-mask-image: url("../images/common/footer-logo.png");
  mask-image: url("../images/common/footer-logo.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media screen and (max-width: 700px) {
  .footer {
    padding: 21rem 0 0;
    -webkit-mask-image: url("../images/common/footer-logo-sp.png");
    mask-image: url("../images/common/footer-logo-sp.png");
  }
}
.footer::after {
  content: "";
  position: absolute;
  background-image: url(../images/common/footer_common-treat.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 81rem;
  bottom: -12rem;
  right: 0;
  z-index: -2;
}
@media screen and (max-width: 700px) {
  .footer::after {
    background-image: url(../images/common/footer_common-treat-sp.png);
    width: 100%;
    height: 38rem;
    bottom: 16rem;
  }
}
.footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 700px) {
  .footer__flex {
    flex-direction: column-reverse;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .footer__inner {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
  }
}
.footer__uoya {
  width: 18rem;
  padding-bottom: 1rem;
  margin-left: -1.3rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .footer__uoya {
    width: 12rem;
  }
}
.footer__uoya a:hover {
  opacity: 0.6;
  transition: 0.4s;
}
.footer__uoya-text {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 700px) {
  .footer__uoya-text {
    padding-bottom: 1rem;
    letter-spacing: 0rem;
  }
}
.footer__nav-lists {
  display: flex;
  align-items: flex-end;
  gap: 0 3rem;
}
@media screen and (max-width: 700px) {
  .footer__nav-lists {
    flex-direction: column;
    width: 100%;
  }
}
.footer__nav-list {
  width: 24rem;
}
@media screen and (max-width: 700px) {
  .footer__nav-list {
    width: 21rem;
  }
}
.footer__nav-link {
  padding: 1.4rem 0 1.3rem 1.2rem;
  display: block;
  border-bottom: solid 0.1rem #ABADAD;
  line-height: 1;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .footer__nav-link {
    font-size: 1.6rem;
  }
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  top: 17%;
  right: 10px;
  width: 4rem;
  height: 3rem;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .footer__nav-link::after {
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-size: 1rem;
    top: 13%;
  }
}
.footer__nav-link:hover {
  color: #7A7C7C;
}
@media screen and (max-width: 700px) {
  .footer__nav-link:hover {
    color: #000;
  }
}
.footer__nav-link:hover::after {
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-gy-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .footer__nav-link:hover::after {
    background-position: center;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-size: 1rem; /* アイコンサイズ調整 */
  }
}
.footer__nav-link--01 {
  font-size: 1.4rem;
  color: #7A7C7C;
}
@media screen and (max-width: 700px) {
  .footer__nav-link--01 {
    font-size: 1.3rem;
  }
  .footer__nav-link--01::after {
    content: none;
  }
}
.footer__nav-link--last {
  border-bottom: none;
}
@media screen and (max-width: 700px) {
  .footer__nav-link--last {
    margin-bottom: 0.5rem;
  }
}
.footer__nav-link01 {
  padding: 1.4rem 0 1.3rem 1.2rem;
  display: block;
  border-bottom: solid 0.1rem #ABADAD;
  line-height: 1;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.1rem;
  position: relative;
  font-size: 1.4rem;
  color: #7A7C7C;
}
@media screen and (max-width: 700px) {
  .footer__nav-link01 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 700px) {
  .footer__nav-group {
    width: 100%;
    padding-bottom: 2.5rem;
  }
}
.footer__nav-group02 {
  width: 100%;
}
.footer__nav-list02 {
  width: 17rem;
}
@media screen and (max-width: 700px) {
  .footer__nav-list02 {
    display: flex;
    width: 100%;
    gap: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .footer__nav-item02 {
    width: 100%;
  }
}
.footer__nav-link02 {
  padding: 1.3rem 0 1.3rem 1.5rem;
  display: block;
  line-height: 1;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  background-color: #4A6372;
  letter-spacing: 0rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1;
  border-radius: 0.6rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .footer__nav-link02 {
    padding: 1.4rem 0 1.4rem 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    position: relative;
    margin-bottom: 0rem;
    line-height: 1;
    border-radius: 0.3rem;
  }
}
.footer__nav-link02--gray {
  background: #E6E6E6;
  color: #000;
}
@media screen and (max-width: 700px) {
  .footer__nav-link02--gray {
    color: #000;
  }
}
.footer__nav-link02--blk {
  background: #000;
  margin-bottom: 2.5rem;
}
.footer__nav-link02:hover {
  opacity: 0.6;
}
.footer__nav-link-text {
  text-decoration: underline;
  color: #454545;
  font-family: 400;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  padding-left: 2rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .footer__nav-link-text {
    font-size: 1.3rem;
  }
}
.footer__nav-link-text::before {
  content: "";
  position: absolute;
  background-color: white;
  border: solid 1px white;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px #454545;
  top: 50%;
  left: 7%;
}
.footer__nav-link-text--02::before {
  left: 5%;
}
.footer__nav-link-text:hover {
  opacity: 0.7;
}
.footer__nav-icon {
  display: flex;
  gap: 0 1.5rem;
  margin-left: 1.3rem;
}
.footer__nav-icon-link {
  width: 2.5rem;
}
.footer__nav-icon-link:nth-child(2) {
  width: 2rem;
}
.footer__nav-icon-link:nth-child(3) {
  width: 2rem;
}
.footer__nav-icon-link:nth-child(4) {
  width: 2rem;
}
.footer__nav-icon-link:hover img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%);
}

.contents--product .product {
  background-color: #fff;
  padding: 26rem 0 4rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--product .product {
    padding: 15rem 0 3rem;
  }
}
.contents--product .product:before {
  content: "";
  position: absolute;
  top: -43%;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .contents--product .product:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -30vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }
}
.contents--product .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contents--product .product-list__item {
  position: relative;
  flex: 0 0 calc((100% - 2.1rem) / 4);
  text-align: center;
  /* 区切り線（4の倍数以外） */
}
.contents--product .product-list__item:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -0.35rem;
  width: 1px;
  height: 70%;
  background-color: #AFAFAF;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  .contents--product .product-list__item:not(:nth-child(4n))::after {
    content: none;
  }
}
.contents--product .product-list__item > a {
  display: block;
  padding: 1.5rem 0;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  border-radius: 0.6rem;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1;
}
.contents--product .product-list__item:hover > a {
  background-color: #EDF2F2;
}
.contents--product .product-list__item.current > a {
  background-color: var(--category-color, #C81432);
  color: #fff;
}
@media screen and (max-width: 700px) {
  .contents--product .product-list__item {
    flex: 0 0 calc((100% - 0.7rem) / 2);
  }
  .contents--product .product-list__item::after {
    content: none;
  }
  .contents--product .product-list__item > a {
    border-radius: 0.3rem;
  }
}
.contents--product .products-pick-up {
  background-color: #EDF2F2;
  padding: 12rem 0;
  position: relative;
  /* 両端が詰まるのを防ぐ */
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up {
    padding: 5rem 0;
  }
}
.contents--product .products-pick-up__new-heading {
  position: absolute;
  top: 12%;
  right: 0;
  font-size: 18rem;
  text-align: center;
  line-height: 0.3;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-text-stroke: 0.1rem #000;
  text-stroke: 0.1rem #000;
  color: transparent;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-heading {
    font-size: 9rem;
    top: 16%;
    right: 0;
    line-height: 0.6;
  }
}
.contents--product .products-pick-up__headings {
  display: flex;
  align-items: center;
  padding-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__headings {
    align-items: flex-start;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    flex-direction: column;
  }
}
.contents--product .products-pick-up__heading {
  font-size: 3.5rem;
  padding-right: 3rem;
  padding-left: 4rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  position: relative;
}
.contents--product .products-pick-up__heading::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #C81432;
  width: 2rem;
  height: 2rem;
  top: 52%;
  left: 3%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__heading::before {
    width: 1rem;
    height: 1rem;
    top: 52%;
    left: -5%;
  }
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__heading {
    font-size: 2.7rem;
    padding-right: 0;
    padding-left: 0;
  }
}
.contents--product .products-pick-up__ja {
  border-left: solid 0.1rem #707070;
  padding-left: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__ja {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up .products-pick-up__slick {
    width: 100%;
    overflow: visible;
  }
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up .slick-slide {
    margin-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up .slick-list {
    overflow: visible !important;
    padding-left: 0;
  }
}
.contents--product .products-pick-up .slick-list.draggable {
  width: 106% !important;
}
.contents--product .products-pick-up__new-list-ul {
  display: flex;
  gap: 0 3.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-list-ul {
    display: block !important;
    padding: 0;
  }
}
.contents--product .products-pick-up__new-list-item {
  position: relative;
  width: 31.33%;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-list-item {
    overflow: visible;
  }
}
.contents--product .products-pick-up__new-list-item:hover .products-pick-up__new-img img {
  transform: scale(1.1);
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-list-item:hover .products-pick-up__new-img img {
    transform: none;
  }
}
.contents--product .products-pick-up__new-list-item:hover .products-pick-up__new-name::before {
  background-color: #000;
  background-image: url(../images/common/arrow-up-right-wh-icon.png);
  width: 4rem;
  height: 3rem;
  background-position: 65% 35%;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-list-item:hover .products-pick-up__new-name::before {
    background-size: 1rem;
    background-image: url(../images/common/arrow-up-right-icon.png);
    background-position: center;
    height: 2.5rem;
    background-color: #fff;
  }
}
.contents--product .products-pick-up__new-list-item:hover .products-pick-up__new-img::after {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-list-item:hover .products-pick-up__new-img::after {
    opacity: 0;
  }
}
.contents--product .products-pick-up__new-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  height: 19.3rem;
  border-radius: 0.6rem;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-img {
    height: 14.5rem;
  }
}
.contents--product .products-pick-up__new-img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
  object-fit: cover;
}
.contents--product .products-pick-up__new-img::before {
  content: "new";
  position: absolute;
  top: 2rem;
  right: -4.1rem;
  transform: translateX(-50%);
  background-color: #C30100;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Funnel Display", sans-serif;
  padding: 0.4rem 4rem 0.8rem 1rem;
  line-height: 1;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-img::before {
    font-size: 1.4rem;
    padding: 0.4rem 3.3rem 0.7rem 1rem;
  }
}
.contents--product .products-pick-up__new-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: 1;
}
.contents--product .products-pick-up__new-name {
  font-size: 2rem;
  padding-top: 0.5rem;
  font-weight: 500;
  width: 85%;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-name {
    font-size: 1.3rem;
    width: 80%;
  }
}
.contents--product .products-pick-up__new-name::before {
  content: "";
  position: absolute;
  top: 2.3rem;
  right: -16.6%;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  border-radius: 0.3rem;
  background-image: url(../images/common/arrow-up-right-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--product .products-pick-up__new-name::before {
    background-size: 1rem;
    background-image: url(../images/common/arrow-up-right-icon.png);
    height: 2.5rem;
    top: 1.4rem;
    right: -5.9rem;
  }
}
.contents--product .products-list {
  padding: 12rem 0 14rem;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list {
    padding: 2.5rem 0 6rem;
  }
}
.contents--product .products-list__items {
  padding-bottom: 10rem;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items {
    padding-bottom: 4rem;
  }
}
.contents--product .products-list__items-ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem 3.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-ul {
    flex-direction: column;
    gap: 3rem;
  }
}
.contents--product .products-list__items-li {
  position: relative;
  flex: 0 0 calc((100% - 7rem) / 3);
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li {
    width: 100%;
    padding-bottom: 1rem;
  }
}
.contents--product .products-list__items-li > a {
  display: block;
}
.contents--product .products-list__items-li:hover .products-list__item-img img {
  transform: scale(1.1);
  border-radius: 0.2rem;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li:hover .products-list__item-img img {
    transform: none;
  }
}
.contents--product .products-list__items-li:hover .products-list__item-name::before {
  background-color: #000;
  background-image: url(../images/common/arrow-up-right-wh-icon.png);
  width: 4rem;
  height: 3rem;
  background-position: 65% 35%;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li:hover .products-list__item-name::before {
    bottom: -0.2rem;
    right: -5.9rem;
    width: 4rem;
    height: 2.5rem;
    background-position: center;
    background-color: #fff;
    background-image: url(../images/common/arrow-up-right-icon.png);
  }
}
.contents--product .products-list__items-li:hover .products-list__item-img::after {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li:hover .products-list__item-img::after {
    opacity: 0;
  }
}
.contents--product .products-list__items-li a:hover .products-pick-up__new-img img {
  transform: scale(1.1);
  border-radius: 0.2rem;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li a:hover .products-pick-up__new-img img {
    transform: none;
  }
}
.contents--product .products-list__item-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 0.6rem;
  height: 19.3rem;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__item-img {
    margin-bottom: 1.5rem;
    height: 14.5rem;
  }
}
.contents--product .products-list__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
  object-fit: cover;
}
.contents--product .products-list__item-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  z-index: 1;
}
.contents--product .products-list__item-name {
  font-size: 2rem;
  padding-top: 0.5rem;
  font-weight: 500;
  position: relative;
  width: 85%;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__item-name {
    font-size: 1.3rem;
    padding-top: 0;
    width: 80%;
  }
}
.contents--product .products-list__item-name::before {
  content: "";
  position: absolute;
  top: 2.3rem;
  right: -16.6%;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  border-radius: 0.3rem;
  background-image: url(../images/common/arrow-up-right-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__item-name::before {
    background-size: 1rem;
    height: 2.5rem;
    top: 1.2rem;
    right: -5.9rem;
  }
}
.contents--product .products-list__items-li > a {
  display: block;
}
.contents--product .products-pick-up__new-img {
  overflow: hidden;
}
.contents--product .products-pick-up__new-img img {
  transition: transform 0.3s ease-out;
}
.contents--product .products-list__items-li > a:hover .products-pick-up__new-img img {
  transform: scale(1.1);
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li > a:hover .products-pick-up__new-img img {
    transform: none;
  }
}
.contents--product .products-list__items-li > a:hover .products-pick-up__new-img::after {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .contents--product .products-list__items-li > a:hover .products-pick-up__new-img::after {
    opacity: 0;
  }
}

.contents--product-single .product-single {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single {
    padding: 15rem 0 0;
  }
}
.contents--product-single .product-single:before {
  content: "";
  position: absolute;
  top: -10%;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 24%;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -33.3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 72%;
  }
}
.contents--product-single .product-single__header {
  position: relative;
  z-index: 50;
  padding-bottom: 6rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__header {
    padding-bottom: 4rem;
  }
}
.contents--product-single .product-single__en {
  position: absolute;
  font-size: 1.6rem;
  line-height: 0.8;
  font-weight: 600;
  font-family: "Funnel Display", sans-serif;
  padding-bottom: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 35%;
  right: 0;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__en {
    font-size: 1.1rem;
  }
}
.contents--product-single .product-single__en::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 3rem;
  background-color: #000;
  right: 55%;
  top: -44px;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__en::before {
    height: 2rem;
    background-color: #000;
    right: 55%;
    top: -38px;
  }
}
.contents--product-single .product-single__category {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
  color: #fff;
  background-color: var(--category-color, #C30100);
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__category {
    font-size: 1.2rem;
    padding: 0rem 1.5rem;
    margin-bottom: 1.2rem;
  }
}
.contents--product-single .product-single__title {
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 1rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-bottom: 0;
    line-height: 1.2;
  }
}
.contents--product-single .product-single__kana {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__kana {
    font-size: 1.2rem;
  }
}
.contents--product-single .product-single__thumbnail {
  text-align: center;
  padding-bottom: 10rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__thumbnail {
    padding-bottom: 6rem;
  }
}
.contents--product-single .product-single__sec-wrap {
  width: 80rem;
  margin: 0 auto 12rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap {
    width: 100%;
    margin: 0 auto 6rem;
  }
}
.contents--product-single .product-single__sec-wrap--blk {
  background-color: #000;
  padding: 14rem 0 12rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap--blk {
    padding: 6rem 0;
  }
}
.contents--product-single .product-single__sec-wrap--gray {
  background-color: #F6F8F8;
  padding: 14rem 0 12rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  z-index: 100;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap--gray {
    padding: 6rem 0 6rem;
  }
}
.contents--product-single .product-single__sec-wrap--wh {
  background-color: #fff;
  padding: 14rem 0 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap--wh {
    padding: 6rem 0 0;
  }
}
.contents--product-single .product-single__sec-wrap--wh:before {
  content: "";
  position: absolute;
  top: -11%;
  background-image: url(../images/common/common-img02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 67%;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap--wh:before {
    background-image: url(../images/common/common-img02-sp.png);
    top: 0%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 47%;
  }
}
.contents--product-single .product-single__heading {
  font-size: 2.4rem;
  padding-bottom: 4rem;
  border-bottom: solid 0.1rem #B2B2B2;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading {
    font-size: 1.6rem;
    padding-bottom: 2rem;
    border-bottom: none;
    width: 83%;
    margin-left: auto;
  }
}
.contents--product-single .product-single__heading::before {
  content: "";
  position: absolute;
  background-image: url(../images/product-single/product-img-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  top: 1.3rem;
  left: -7%;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading::before {
    left: -21%;
    top: 0.9rem;
  }
}
.contents--product-single .product-single__heading::after {
  content: none;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading::after {
    content: "";
    position: absolute;
    width: 85vw;
    height: 0.1rem;
    background-color: #B2B2B2;
    bottom: 0;
    left: -21%;
  }
}
.contents--product-single .product-single__heading:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading:not(:first-child) {
    margin-top: 2rem;
  }
}
.contents--product-single .product-single__heading02 {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  position: relative;
  padding-left: 3rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading02 {
    font-size: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
}
.contents--product-single .product-single__heading02::before {
  content: "";
  position: absolute;
  background-color: #C81432;
  width: 1.2rem;
  height: 1.2rem;
  top: 1.6rem;
  left: 0%;
  border-radius: 50%;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading02::before {
    width: 1rem;
    height: 1rem;
    top: 1rem;
    left: 1%;
  }
}
.contents--product-single .product-single__heading-en {
  color: #fff;
  font-size: 12rem;
  line-height: 0.8;
  font-weight: 600;
  font-family: "Funnel Display", sans-serif;
  border-top: solid 0.1rem #fff;
  padding-top: 3.5rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading-en {
    font-size: 4.6rem;
    line-height: 1;
    padding-top: 1rem;
  }
}
.contents--product-single .product-single__heading-en::before {
  content: "";
  position: absolute;
  background-image: url(../images/product-single/product-img-icon02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  top: 8%;
  right: 0%;
}
.contents--product-single .product-single__heading-en02 {
  color: transparent;
  -webkit-text-stroke: 0.1rem #000;
  text-stroke: 0.1rem #000;
  font-size: 12rem;
  line-height: 0.8;
  font-weight: 600;
  font-family: "Funnel Display", sans-serif;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading-en02 {
    font-size: 6rem;
  }
}
.contents--product-single .product-single__heading-en02::before {
  content: "";
  position: absolute;
  background-image: url(../images/product-single/product-img-icon03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  top: 8%;
  right: 0%;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading-en02::before {
    top: -70%;
  }
}
.contents--product-single .product-single__sec-text {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  padding-top: 2rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-text {
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.contents--product-single .product-single__sec-img {
  padding-top: 4rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-img {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
.contents--product-single .product-single__sec-img + .contents--product-single .product-single__sec-img {
  padding-bottom: 0;
}
.contents--product-single .product-single__color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 0;
  padding-top: 10rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__color-list {
    flex-direction: column;
    gap: 2.5rem 0;
    padding-top: 3rem;
  }
}
.contents--product-single .product-single__color-list-item {
  width: 33.3%;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__color-list-item {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
}
.contents--product-single .product-single__item {
  margin-bottom: 2rem;
}
.contents--product-single .product-single__item-name {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}
.contents--product-single .product-single__table {
  width: 100%;
}
@media (max-width: 700px) {
  .contents--product-single .product-single__table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
  .contents--product-single .product-single__table::after {
    content: "";
    display: block;
    width: 2.8rem;
    flex-shrink: 0;
  }
}
.contents--product-single .product-single__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 15rem minmax(20rem, 1fr) 16rem 20rem 25rem;
  align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid #DDDFDF;
  text-align: center;
  gap: 2px;
}
.contents--product-single .product-single__row:last-child {
  border-bottom: none;
}
@media (max-width: 700px) {
  .contents--product-single .product-single__row {
    font-size: 1.3rem;
    padding: 1.3rem 0;
    width: max-content;
  }
}
.contents--product-single .product-single__row--head {
  padding: 0;
  border-bottom: none;
}
.contents--product-single .product-single__row--head .product-single__cell {
  background-color: #000;
  color: #fff;
  padding: 1.2rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
}
@media (max-width: 700px) {
  .contents--product-single .product-single__row--head .product-single__cell {
    font-size: 1.2rem;
    padding: 0.8rem 0;
  }
}
.contents--product-single .product-single__cell {
  padding: 0 1.5rem;
  overflow-wrap: anywhere;
}
.contents--product-single .product-single__cell--color {
  display: flex !important;
  justify-content: flex-start !important;
  padding: 0 2rem 0 12rem !important;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single__cell--color {
    padding: 0 2rem 0 9rem !important;
  }
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__cell--color {
    padding: 0 2rem 0 10rem !important;
  }
}
.contents--product-single .product-single .product-single__table[data-type=soft-lure] .product-single__row {
  grid-template-columns: 15rem 39rem 16rem 20rem 27rem;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single .product-single__table[data-type=soft-lure] .product-single__row {
    grid-template-columns: 15rem 34rem 16rem 20rem 22rem;
  }
}
.contents--product-single .product-single .product-single__table[data-type=hard-lure] .product-single__row {
  grid-template-columns: 14.9rem 35.8rem 11.7rem 11.7rem 16.1rem 27.3rem;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single .product-single__table[data-type=hard-lure] .product-single__row {
    grid-template-columns: 12.9rem 33.8rem 9.7rem 9.7rem 14.1rem 26.3rem;
  }
}
.contents--product-single .product-single .product-single__table[data-type=sinker] .product-single__row {
  grid-template-columns: 27.3rem 27.4rem 15.8rem 19.8rem 27.3rem;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single .product-single__table[data-type=sinker] .product-single__row {
    grid-template-columns: 24.3rem 24.4rem 15.8rem 18.8rem 23.3rem;
  }
}
.contents--product-single .product-single .product-single__table[data-type=handle] .product-single__row {
  grid-template-columns: 39.3rem 39.3rem 39.2rem;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single .product-single__table[data-type=handle] .product-single__row {
    grid-template-columns: 35.8rem 35.8rem 35.8rem;
  }
}
.contents--product-single .product-single .product-single__table[data-type=rod] .product-single__row {
  grid-template-columns: 12rem 17rem 17rem 17rem 11rem 13.6rem 13.4rem 16rem;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single .product-single__table[data-type=rod] .product-single__row {
    grid-template-columns: 12rem 14rem 14rem 17rem 10rem 12.6rem 13.4rem 13.4rem;
  }
}
.contents--product-single .product-single .product-single__table[data-type=other] .product-single__row {
  grid-template-columns: 29.5rem 29.5rem 29.5rem 29.4rem;
}
@media (max-width: 1200px) {
  .contents--product-single .product-single .product-single__table[data-type=other] .product-single__row {
    grid-template-columns: 26.5rem 26.5rem 27rem 27.4rem;
  }
}
.contents--product-single .product-single__movie-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__movie-wrap {
    display: flex;
    flex-direction: column;
  }
}
.contents--product-single .product-single__movie-content {
  width: 98rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__movie-content {
    width: 100%;
  }
}
.contents--product-single .product-single__sec-wrap-inner {
  width: 80rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap-inner {
    width: 100%;
  }
}
.contents--product-single .product-single__sec-wrap-inner:not(:first-child) {
  margin-top: 6rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__sec-wrap-inner:not(:first-child) {
    margin-top: 4rem;
  }
}
.contents--product-single .product-single__heading-en03 {
  color: #000;
  font-size: 12rem;
  line-height: 0.8;
  font-weight: 600;
  font-family: "Funnel Display", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading-en03 {
    position: static;
    font-size: 4.6rem;
    writing-mode: horizontal-tb;
    padding-left: 5rem;
  }
}
.contents--product-single .product-single__heading-en03::before {
  content: "";
  position: absolute;
  background-image: url(../images/product-single/product-img-icon03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  top: -4rem;
  right: 0%;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__heading-en03::before {
    background-image: url(../images/product-single/product-img-icon03-sp.svg);
    top: 0.8%;
    right: 83.7%;
  }
}
.contents--product-single .product-single .product-single__video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single .product-single__video-wrap {
    margin-bottom: 2rem;
  }
}
.contents--product-single .product-single .product-single__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contents--product-single .product-single__text {
  width: 103rem;
}
@media (max-width: 1300px) {
  .contents--product-single .product-single__text {
    width: 88rem;
  }
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__text {
    width: 100%;
    font-size: 1.2rem;
  }
}
.contents--product-single .product-single__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  padding-left: 1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__common-btn {
    width: 45%;
    display: block;
    margin-left: initial;
    padding-bottom: 1.5rem;
    font-size: 1.3rem;
  }
}
.contents--product-single .product-single__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-left-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__common-btn::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--product-single .product-single__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-left-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 24% 24%; /* 微妙に左上へ */
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__common-btn:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-left-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}
.contents--product-single .product-single__archive-btn {
  padding-top: 12rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 700px) {
  .contents--product-single .product-single__archive-btn {
    padding-top: 6rem;
    padding-bottom: 9rem;
  }
}

.contents--news .news {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--news .news {
    padding: 15rem 0 0;
  }
}
.contents--news .news:before {
  content: "";
  position: absolute;
  top: -43%;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .contents--news .news:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -16vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }
}
.contents--news .news-list {
  background-color: #fff;
  padding-bottom: 14rem;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list {
    padding-bottom: 9rem;
  }
}
.contents--news .news-list__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8rem 0;
  margin-bottom: 13rem;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__flex {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
  }
}
.contents--news .news-list__item {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__item {
    width: 100%;
  }
}
.contents--news .news-list__item::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #B2B2B2;
  transition: 0.4s;
}
.contents--news .news-list__item::after {
  content: "";
  position: absolute;
  bottom: -1.6rem;
  right: 0;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  border-radius: 0.3rem;
  background-image: url(../images/common/arrow-up-right-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__item::after {
    background-size: 1rem;
    background-image: url(../images/common/arrow-up-right-icon.png);
    height: 2.5rem;
    bottom: 4.5rem;
  }
}
.contents--news .news-list__item:hover::after {
  background-color: #000;
  background-image: url(../images/common/arrow-up-right-wh-icon.png);
  width: 4rem;
  height: 3rem;
  background-position: 65% 35%;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__item:hover::after {
    background-size: 1rem;
    background-image: url(../images/common/arrow-up-right-icon.png);
    background-position: center;
    height: 2.5rem;
    background-color: #fff;
  }
}
.contents--news .news-list__item:hover::before {
  width: 0%;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__item:hover::before {
    width: 100%;
  }
}
.contents--news .news-list__item:hover .news-list__img::before {
  background-image: url(../images/news/news-logo-hov.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
  width: 19rem;
  height: 6rem;
  transform: scale(1.1);
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__item:hover .news-list__img::before {
    background-image: url(../images/news/news-logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 15rem;
    height: 5rem;
  }
}
.contents--news .news-list__link {
  display: flex;
  justify-content: space-between;
  padding-top: 4rem;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__link {
    flex-direction: column;
  }
}
.contents--news .news-list__img {
  position: relative;
  width: 63.5%;
  height: 24.7rem;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__img {
    width: 100%;
    height: 20.3rem;
  }
}
.contents--news .news-list__img img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contents--news .news-list__category {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  background-color: var(--category-color, #707070);
  color: #fff;
  line-height: 1;
  padding: 0.8rem 1rem;
  display: inline-block;
  border-radius: 0.3rem;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__category {
    font-size: 1.2rem;
  }
}
.contents--news .news-list__texts {
  width: 31%;
  margin-top: 4.2rem;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__texts {
    width: 100%;
    margin-top: 2rem;
  }
}
.contents--news .news-list__title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    width: 75%;
  }
}
.contents--news .news-list__date {
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  color: #B2B2B2;
}
@media screen and (max-width: 700px) {
  .contents--news .news-list__date {
    font-size: 1.3rem;
  }
}

.contents--news-single .news-single {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
  /* style.css に追加 */
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single {
    padding: 15rem 0 0;
  }
}
.contents--news-single .news-single:before {
  content: "";
  position: absolute;
  top: -47%;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -5%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 21%;
  }
}
.contents--news-single .news-single::after {
  content: "";
  position: absolute;
  bottom: 0%;
  background-image: url(../images/news-single/new-single-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 7rem;
}
.contents--news-single .news-single__inner {
  position: relative;
  z-index: 1;
  width: 82rem;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__inner {
    width: 100%;
  }
}
.contents--news-single .news-single__category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
  color: #fff;
  background-color: var(--category-color, #707070);
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__category {
    font-size: 1.2rem;
    padding: 0.2rem 1.5rem;
  }
}
.contents--news-single .news-single__title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 6rem;
  margin-bottom: 1rem;
  border-bottom: solid 0.1rem #000;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-bottom: 2rem;
  }
}
.contents--news-single .news-single__date {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
  color: #AFAFAF;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__date {
    font-size: 1.2rem;
  }
}
.contents--news-single .news-single__content {
  margin-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__content {
    margin-top: 4rem;
    padding-bottom: 5rem;
    font-size: 1.2rem;
  }
}
.contents--news-single .news-single__content a {
  text-decoration: underline;
}
.contents--news-single .news-single__content a:hover {
  opacity: 0.7;
}
.contents--news-single .news-single .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 のアスペクト比（9/16 = 0.5625）*/
  height: 0;
  overflow: hidden;
}
.contents--news-single .news-single .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contents--news-single .news-single__sidebar {
  width: 20rem;
  position: fixed;
  right: 11%;
  bottom: 0;
}
@media screen and (max-width: 1280px) {
  .contents--news-single .news-single__sidebar {
    right: 2%;
  }
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__sidebar {
    position: static;
    width: 100%;
    padding: 0 2.5rem 9rem 2.5rem;
  }
}
.contents--news-single .news-single__sidebar-heading {
  font-size: 1.6rem;
  padding-bottom: 2rem;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
  padding-left: 2.5rem;
  position: relative;
}
.contents--news-single .news-single__sidebar-heading::before {
  content: "";
  position: absolute;
  background-color: white;
  border: solid 1px white;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  box-shadow: 0 0 0 4.5px #C81432;
  top: 25%;
  left: 2%;
}
.contents--news-single .news-single__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__sidebar-list {
    gap: 3rem;
  }
}
.contents--news-single .news-single__sidebar-item {
  padding-bottom: 1.5rem;
  border-bottom: solid 0.1rem #E3E3E3;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__sidebar-item {
    padding-bottom: 3rem;
  }
}
.contents--news-single .news-single__sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 3.5rem;
}
.contents--news-single .news-single__sidebar-item:hover {
  color: #B2B2B2;
}
.contents--news-single .news-single__sidebar-text {
  padding-bottom: 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__sidebar-text {
    font-size: 1.3rem;
  }
}
.contents--news-single .news-single__sidebar-date {
  color: #B2B2B2;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Funnel Display", sans-serif;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__sidebar-date {
    font-size: 1.3rem;
  }
}
.contents--news-single .news-single__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  padding-left: 1rem;
  margin-bottom: 14rem;
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__common-btn {
    width: 45%;
    display: block;
    margin-left: initial;
    padding-bottom: 1.5rem;
    margin-bottom: 7rem;
    font-size: 1.3rem;
  }
}
.contents--news-single .news-single__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-left-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__common-btn::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--news-single .news-single__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-left-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 24% 24%; /* 微妙に左上へ */
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--news-single .news-single__common-btn:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-left-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}

.contents--movie .movie__bg-color {
  background-color: #fff;
  position: relative;
}
.contents--movie .movie {
  background-color: #fff;
  padding: 0 0 12rem;
  padding-top: 50rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie {
    padding-top: 27rem;
  }
}
.contents--movie .movie:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/420;
  background: url(../images/common/common-img-pc.png) no-repeat center/cover;
  transform: translateY(-95%);
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .contents--movie .movie:before {
    transform: translateY(-96%);
  }
}
@media screen and (max-width: 700px) {
  .contents--movie .movie:before {
    background-image: url(../images/common/common-img-sp.png);
    transform: translateY(-107%);
  }
}
.contents--movie .movie::after {
  content: "";
  position: absolute;
  bottom: 0%;
  background-image: url(../images/news-single/new-single-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 7rem;
}
.contents--movie .movie__inner {
  position: relative;
  z-index: 200;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.contents--movie .movie__inner:nth-child(even) {
  background-color: #000;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.contents--movie .movie__inner:nth-child(even) .movie__title,
.contents--movie .movie__inner:nth-child(even) .movie__text {
  color: #fff;
}
.contents--movie .movie__inner:nth-child(even) .movie__date {
  color: #C30100;
}
.contents--movie .movie__inner:nth-child(even) .movie__inner-flex {
  width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .contents--movie .movie__inner:nth-child(even) .movie__inner-flex {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__inner:nth-child(even) .movie__inner-flex {
    width: 90%;
  }
}
.contents--movie .movie__inner:first-of-type .movie__inner-flex {
  padding-top: 0;
}
.contents--movie .movie__inner-flex {
  display: flex;
  justify-content: space-between;
  padding: 8rem 0;
  width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .contents--movie .movie__inner-flex {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__inner-flex {
    flex-direction: column;
    padding: 6rem 0;
  }
}
.contents--movie .movie__thumbnail {
  width: 50%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.contents--movie .movie__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__thumbnail {
    width: 100%;
  }
}
.contents--movie .movie__text-group {
  width: 45%;
  margin-top: 4rem;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__text-group {
    width: 100%;
    margin-top: 3rem;
  }
}
.contents--movie .movie__date {
  color: #C30100;
  font-size: 1.6rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__date {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
.contents--movie .movie__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  margin-bottom: 3rem;
  color: #000;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.contents--movie .movie__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  letter-spacing: 0.1rem;
  color: #000;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__text {
    font-size: 1.3rem;
    margin-bottom: 0rem;
  }
}
.contents--movie .movie__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__common-btn {
    width: 100%;
    display: block;
    margin-left: 0;
    padding-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
.contents--movie .movie__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__common-btn::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--movie .movie__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__common-btn:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}
.contents--movie .movie__sns-links-group {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 68%;
  margin: 0 auto;
  gap: 0 4rem;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__sns-links-group {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 68%;
    margin: 0;
    margin-left: 2rem;
    gap: 0 4rem;
    flex-direction: column;
  }
}
.contents--movie .movie__sns-links-title {
  font-size: 5.4rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .contents--movie .movie__sns-links-title {
    font-size: 3.1rem;
  }
}

.modal-video-body {
  width: 100%;
  max-width: 128rem !important;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .modal-video-body {
    width: 90% !important;
  }
}

.modal-video-inner {
  width: 100%;
  margin: 0 auto;
}

.modal-video .modal-video-movie-wrap iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}

.contents--privacy-policy .privacy-policy {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy {
    padding: 15rem 0 3rem;
  }
}
.contents--privacy-policy .privacy-policy:before {
  content: "";
  position: absolute;
  top: -18vw;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -54vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
  }
}
.contents--privacy-policy .privacy-policy-detail {
  padding-bottom: 16rem;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy-detail {
    padding-bottom: 9rem;
  }
}
.contents--privacy-policy .privacy-policy-detail__group {
  margin-bottom: 10rem;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy-detail__group {
    margin-bottom: 6rem;
  }
}
.contents--privacy-policy .privacy-policy-detail__group:last-child {
  margin-bottom: 0;
}
.contents--privacy-policy .privacy-policy-detail__heading {
  font-size: 2.4rem;
  width: 90rem;
  border-bottom: solid 0.1rem #C30100;
  margin-left: auto;
  margin-bottom: 5.7rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy-detail__heading {
    width: 75%;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
  }
}
.contents--privacy-policy .privacy-policy-detail__heading::before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: -21%;
  background-image: url(../images/privacy/privacy-policy-common-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.7rem;
  height: 2.7rem;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy-detail__heading::before {
    width: 1rem;
    height: 1rem;
    bottom: -1rem;
    left: -32%;
  }
}
.contents--privacy-policy .privacy-policy-detail__num {
  position: absolute;
  top: -9%;
  left: -14%;
  font-size: 8.4rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy-detail__num {
    top: -9%;
    left: -26%;
    font-size: 4.2rem;
  }
}
.contents--privacy-policy .privacy-policy-detail__text {
  width: 80rem;
  margin-left: 24rem;
}
@media screen and (max-width: 1300px) {
  .contents--privacy-policy .privacy-policy-detail__text {
    margin-left: 3rem;
  }
}
@media screen and (max-width: 700px) {
  .contents--privacy-policy .privacy-policy-detail__text {
    font-size: 1.2rem;
    width: 93%;
    margin-left: auto;
  }
}

.contents--contact .confirm {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--contact .confirm {
    padding: 15rem 0 3rem;
  }
}
.contents--contact .confirm:before {
  content: "";
  position: absolute;
  top: -15vw;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 38%;
}
@media screen and (max-width: 700px) {
  .contents--contact .confirm:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -54vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 28%;
  }
}
.contents--contact .confirm__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .contents--contact .confirm__flex {
    flex-direction: column;
  }
}
.contents--contact .confirm__text {
  width: 36rem;
}
@media screen and (max-width: 700px) {
  .contents--contact .confirm__text {
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: 6rem;
  }
}
.contents--contact .confirm .form-confirm {
  width: 60%;
  padding: 0 0 4rem;
}
@media screen and (max-width: 700px) {
  .contents--contact .confirm .form-confirm {
    width: 100%;
    padding: 0;
  }
}
.contents--contact .contact-form {
  width: 60%;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form {
    width: 100%;
  }
}
.contents--contact .contact-form__row {
  display: flex;
  justify-content: space-between;
  padding: 4rem 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__row {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
  }
}
.contents--contact .contact-form__row--textarea {
  align-items: flex-start;
  border-bottom: none;
}
.contents--contact .contact-form__row:first-child {
  padding-top: 0;
}
.contents--contact .contact-form__label {
  width: 35%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1.3rem, 1vw, 1.6rem);
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__label {
    width: 100%;
    font-size: 1.3rem;
  }
}
.contents--contact .contact-form__label--textarea {
  margin-top: 2.5rem;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__label--textarea {
    margin-top: 0;
  }
}
.contents--contact .contact-form__required {
  background-color: #b71c1c;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__required {
    font-size: 1.1rem;
    padding: 0.2rem 0.8rem;
    border-radius: 0.3rem;
    white-space: nowrap;
  }
}
.contents--contact .contact-form__field {
  width: 62.6%;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__field {
    width: 100%;
  }
}
.contents--contact .contact-form__field input,
.contents--contact .contact-form__field textarea {
  width: 100%;
  background-color: #f3f3f3;
  border: none;
  padding: 2.5rem;
  font-size: 1.6rem;
  outline: none;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__field input,
  .contents--contact .contact-form__field textarea {
    padding: 1.5rem;
  }
}
.contents--contact .contact-form__field textarea {
  min-height: 26.4rem;
  resize: vertical;
  outline: none;
}
.contents--contact .contact-form__privacy {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: center;
  margin-left: 13%;
}
@media screen and (max-width: 1300px) {
  .contents--contact .contact-form__privacy {
    margin-left: 20%;
  }
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__privacy {
    margin-left: 0;
  }
}
.contents--contact .contact-form__privacy a {
  text-decoration: underline;
  color: #4A6372;
}
.contents--contact .contact-form__btn {
  padding: 8rem 0 0;
  text-align: right;
}
.contents--contact .contact-form__send {
  margin-left: auto;
  width: fit-content;
  padding: 10rem 0 16rem;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__send {
    width: 45%;
    padding: 5rem 0 9rem;
  }
}
.contents--contact .contact-form .contact-form__send-inner {
  position: relative;
}
.contents--contact .contact-form .contact-form__send-inner::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form .contact-form__send-inner::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--contact .contact-form .contact-form__send-inner:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form .contact-form__send-inner:hover::after .contact-form__common-btn02 {
    top: 33%;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}
.contents--contact .contact-form__common-btn02 {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-align: left;
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-size: 1.6rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  color: #000;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__common-btn02 {
    width: 100%;
    display: block;
    margin-left: auto;
    padding-bottom: 1.5rem;
    margin-top: 0;
  }
}
.contents--contact .contact-form__checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0rem;
  font-size: 1.4rem;
  position: relative;
}
.contents--contact .contact-form__checkbox .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contents--contact .contact-form__checkbox .wpcf7-list-item {
  margin-left: 0;
}
.contents--contact .contact-form__checkbox .wpcf7-list-item-label {
  display: none;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__checkbox {
    font-size: 1.3rem;
  }
}
.contents--contact .contact-form__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #000;
  border-radius: 0.2rem;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__checkbox input[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 1rem;
  }
}
.contents--contact .contact-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.6rem;
  width: 0.5rem;
  height: 1rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 700px) {
  .contents--contact .contact-form__checkbox input[type=checkbox]:checked::after {
    top: 0.1rem;
    left: 0.5rem;
    width: 0.3rem;
    height: 0.8rem;
  }
}
.contents--contact .contact-form__checkbox input[type=checkbox]:focus-visible {
  outline: 1px solid #000;
  outline-offset: 1px;
}

.contents--confirm .confirm {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm {
    padding: 15rem 0 3rem;
  }
}
.contents--confirm .confirm:before {
  content: "";
  position: absolute;
  top: -15vw;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 38%;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -54vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 38%;
  }
}
.contents--confirm .confirm__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__flex {
    flex-direction: column;
  }
}
.contents--confirm .confirm__text {
  width: 36rem;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__text {
    width: 100%;
    font-size: 1.3rem;
    padding-bottom: 6rem;
  }
}
.contents--confirm .confirm .form-confirm {
  width: 60%;
  padding: 0 0 4rem;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm .form-confirm {
    width: 100%;
    padding: 0;
  }
}
.contents--confirm .confirm .form-confirm__row {
  display: flex;
  align-items: flex-start;
  padding: 5rem 0;
  border-bottom: 0.1rem solid #e5e5e5;
}
.contents--confirm .confirm .form-confirm__row:first-child {
  padding-top: 0;
}
.contents--confirm .confirm .form-confirm__row--last {
  border-bottom: none;
}
.contents--confirm .confirm .form-confirm__label {
  width: 30%;
  min-width: 12rem;
  font-weight: bold;
  font-size: 1.6rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm .form-confirm__label {
    font-size: 1.3rem;
  }
}
.contents--confirm .confirm .form-confirm__value {
  width: 70%;
  font-size: 1.6rem;
  word-break: break-all;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm .form-confirm__value {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm .form-confirm__row {
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0;
  }
  .contents--confirm .confirm .form-confirm__label,
  .contents--confirm .confirm .form-confirm__value {
    width: 100%;
  }
}
.contents--confirm .confirm__prev {
  position: relative;
}
.contents--confirm .confirm__prev::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-left-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__prev::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--confirm .confirm__prev:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-left-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 24% 24%;
  /* 微妙に左上へ */
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__prev:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-left-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__prev {
    width: 45%;
  }
}
.contents--confirm .confirm__send {
  position: relative;
}
.contents--confirm .confirm__send::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-left-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__send::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--confirm .confirm__send:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-left-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 24% 24%;
  /* 微妙に左上へ */
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__send:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-left-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__send {
    width: 45%;
  }
}
.contents--confirm .confirm .wpcf7-spinner {
  display: none;
}
.contents--confirm .confirm__btn-flex {
  display: flex;
  justify-content: space-between;
  padding-top: 9rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__btn-flex {
    padding-top: 3rem;
    padding-bottom: 9rem;
  }
}
.contents--confirm .confirm__common-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-align: left;
  font-size: 1.6rem;
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  padding-left: 1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 0 auto;
  color: #000;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__common-btn {
    width: 100%;
    display: block;
    margin-left: auto;
    padding-bottom: 1.5rem;
    font-size: 1.3rem;
  }
}
.contents--confirm .confirm__common-btn02 {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  color: #000;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__common-btn02 {
    width: 100%;
    display: block;
    margin-left: auto;
    padding-bottom: 1.5rem;
    margin-top: 0;
  }
}
.contents--confirm .confirm__common-btn02::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000;
  /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__common-btn02::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--confirm .confirm__common-btn02:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem;
  /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--confirm .confirm__common-btn02:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}

.contents--thanks .thanks {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks {
    padding: 15rem 0 3rem;
  }
}
.contents--thanks .thanks:before {
  content: "";
  position: absolute;
  top: -15vw;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 65%;
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -54vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 68%;
  }
}
.contents--thanks .thanks__text {
  text-align: center;
  padding-bottom: 10rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks__text {
    font-size: 1.3rem;
    text-align: left;
    padding-bottom: 4rem;
  }
}
.contents--thanks .thanks__top {
  padding-bottom: 16rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks__top {
    padding-bottom: 9rem;
  }
}
.contents--thanks .thanks__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks__common-btn {
    width: 45%;
    display: block;
    margin-left: auto;
    padding-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
.contents--thanks .thanks__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks__common-btn::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--thanks .thanks__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--thanks .thanks__common-btn:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}

.contents--not-found .not-found {
  background-color: #fff;
  padding: 26rem 0 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found {
    padding: 15rem 0 0rem;
  }
}
.contents--not-found .not-found:before {
  content: "";
  position: absolute;
  top: -15vw;
  background-image: url(../images/common/common-img-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 65%;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found:before {
    background-image: url(../images/common/common-img-sp.png);
    top: -26vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 50%;
  }
}
.contents--not-found .not-found .not-found-heading {
  width: 36%;
  margin: 0 auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found .not-found-heading {
    width: 75%;
    margin-bottom: 2rem;
  }
}
.contents--not-found .not-found .not-found-en {
  text-align: center;
  font-size: 3.2rem;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found .not-found-en {
    font-size: 1.6rem;
  }
}
.contents--not-found .not-found .not-found-headings {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found .not-found-headings {
    margin-bottom: 4rem;
  }
}
.contents--not-found .not-found__text {
  text-align: center;
  padding-bottom: 10rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found__text {
    font-size: 1.3rem;
    text-align: left;
    padding-bottom: 4rem;
  }
}
.contents--not-found .not-found__top {
  padding-bottom: 16rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found__top {
    padding-bottom: 9rem;
  }
}
.contents--not-found .not-found__common-btn {
  display: inline-block;
  width: 25rem;
  position: relative;
  padding-bottom: 3rem;
  border-bottom: solid 0.1rem #000;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found__common-btn {
    width: 45%;
    display: block;
    margin-left: 0;
    padding-bottom: 1.5rem;
    margin-top: 0;
  }
}
.contents--not-found .not-found__common-btn::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translateY(-50%);
  width: 4rem;
  height: 3rem;
  border: 1px solid #000; /* 枠線 */
  border-radius: 4px;
  background-image: url("../images/common/arrow-up-right-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem; /* アイコンサイズ調整 */
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found__common-btn::after {
    top: 33%;
    right: 0;
    background-size: 1rem;
  }
}
.contents--not-found .not-found__common-btn:hover::after {
  background-color: #000;
  transition: 0.4s;
  background-image: url("../images/common/arrow-up-right-wh-icon.png");
  background-repeat: no-repeat;
  background-position: 65% 35%;
  background-size: 1.2rem; /* アイコンサイズ調整 */
}
@media screen and (max-width: 700px) {
  .contents--not-found .not-found__common-btn:hover::after {
    top: 33%;
    background-image: url("../images/common/arrow-up-right-icon.png");
    background-color: #fff;
    background-position: center;
    background-size: 1rem;
  }
}

/*--------------------------
	animation
--------------------------*/
/*----------------------------------------------------
  リサイズ時のtransition停止
----------------------------------------------------*/
body.transition-stop * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/*----------------------------------------------------
  見出し アニメーション
----------------------------------------------------*/
.a-heading-A {
  opacity: 0;
  transition: 0.65s;
}
.a-heading-A.active {
  opacity: 1;
}

/*----------------------------------------------------
  anim-txts
*/
/*----------------------------------------------------
  使用方法：

<h1 class="as a-anim-txts">
  <span class="anim-txt anim-txt-0">テ</span>
  <span class="anim-txt anim-txt-1">キ</span>
  <span class="anim-txt anim-txt-2">ス</span>
  <span class="anim-txt anim-txt-3">ト</span>
</h1>
----------------------------------------------------*/
.a-anim-txts > span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
  -moz-transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
  transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
}
.a-anim-txts > span:nth-child(1) {
  transition: 0.65s 0.0625s;
}
.a-anim-txts > span:nth-child(2) {
  transition: 0.65s 0.125s;
}
.a-anim-txts > span:nth-child(3) {
  transition: 0.65s 0.1875s;
}
.a-anim-txts > span:nth-child(4) {
  transition: 0.65s 0.25s;
}
.a-anim-txts > span:nth-child(5) {
  transition: 0.65s 0.3125s;
}
.a-anim-txts > span:nth-child(6) {
  transition: 0.65s 0.375s;
}
.a-anim-txts > span:nth-child(7) {
  transition: 0.65s 0.4375s;
}
.a-anim-txts > span:nth-child(8) {
  transition: 0.65s 0.5s;
}
.a-anim-txts > span:nth-child(9) {
  transition: 0.65s 0.5625s;
}
.a-anim-txts > span:nth-child(10) {
  transition: 0.65s 0.625s;
}
.a-anim-txts > span:nth-child(11) {
  transition: 0.65s 0.6875s;
}
.a-anim-txts > span:nth-child(12) {
  transition: 0.65s 0.75s;
}
.a-anim-txts > span:nth-child(13) {
  transition: 0.65s 0.8125s;
}
.a-anim-txts > span:nth-child(14) {
  transition: 0.65s 0.875s;
}
.a-anim-txts > span:nth-child(15) {
  transition: 0.65s 0.9375s;
}
.a-anim-txts > span:nth-child(16) {
  transition: 0.65s 1s;
}
.a-anim-txts > span:nth-child(17) {
  transition: 0.65s 1.0625s;
}
.a-anim-txts > span:nth-child(18) {
  transition: 0.65s 1.125s;
}
.a-anim-txts > span:nth-child(19) {
  transition: 0.65s 1.1875s;
}
.a-anim-txts > span:nth-child(20) {
  transition: 0.65s 1.25s;
}
.a-anim-txts > span:nth-child(21) {
  transition: 0.65s 1.3125s;
}
.a-anim-txts > span:nth-child(22) {
  transition: 0.65s 1.375s;
}
.a-anim-txts > span:nth-child(23) {
  transition: 0.65s 1.4375s;
}
.a-anim-txts > span:nth-child(24) {
  transition: 0.65s 1.5s;
}
.a-anim-txts > span:nth-child(25) {
  transition: 0.65s 1.5625s;
}
.a-anim-txts > span:nth-child(26) {
  transition: 0.65s 1.625s;
}
.a-anim-txts > span:nth-child(27) {
  transition: 0.65s 1.6875s;
}
.a-anim-txts > span:nth-child(28) {
  transition: 0.65s 1.75s;
}
.a-anim-txts > span:nth-child(29) {
  transition: 0.65s 1.8125s;
}
.a-anim-txts > span:nth-child(30) {
  transition: 0.65s 1.875s;
}
.a-anim-txts > span:nth-child(31) {
  transition: 0.65s 1.9375s;
}
.a-anim-txts > span:nth-child(32) {
  transition: 0.65s 2s;
}
.a-anim-txts > span:nth-child(33) {
  transition: 0.65s 2.0625s;
}
.a-anim-txts > span:nth-child(34) {
  transition: 0.65s 2.125s;
}
.a-anim-txts > span:nth-child(35) {
  transition: 0.65s 2.1875s;
}
.a-anim-txts > span:nth-child(36) {
  transition: 0.65s 2.25s;
}
.a-anim-txts > span:nth-child(37) {
  transition: 0.65s 2.3125s;
}
.a-anim-txts > span:nth-child(38) {
  transition: 0.65s 2.375s;
}
.a-anim-txts > span:nth-child(39) {
  transition: 0.65s 2.4375s;
}
.a-anim-txts > span:nth-child(40) {
  transition: 0.65s 2.5s;
}
.a-anim-txts > span:nth-child(41) {
  transition: 0.65s 2.5625s;
}
.a-anim-txts > span:nth-child(42) {
  transition: 0.65s 2.625s;
}
.a-anim-txts > span:nth-child(43) {
  transition: 0.65s 2.6875s;
}
.a-anim-txts > span:nth-child(44) {
  transition: 0.65s 2.75s;
}
.a-anim-txts > span:nth-child(45) {
  transition: 0.65s 2.8125s;
}
.a-anim-txts > span:nth-child(46) {
  transition: 0.65s 2.875s;
}
.a-anim-txts > span:nth-child(47) {
  transition: 0.65s 2.9375s;
}
.a-anim-txts > span:nth-child(48) {
  transition: 0.65s 3s;
}
.a-anim-txts > span:nth-child(49) {
  transition: 0.65s 3.0625s;
}
.a-anim-txts > span:nth-child(50) {
  transition: 0.65s 3.125s;
}
.a-anim-txts > span:nth-child(51) {
  transition: 0.65s 3.1875s;
}
.a-anim-txts > span:nth-child(52) {
  transition: 0.65s 3.25s;
}
.a-anim-txts > span:nth-child(53) {
  transition: 0.65s 3.3125s;
}
.a-anim-txts > span:nth-child(54) {
  transition: 0.65s 3.375s;
}
.a-anim-txts > span:nth-child(55) {
  transition: 0.65s 3.4375s;
}
.a-anim-txts > span:nth-child(56) {
  transition: 0.65s 3.5s;
}
.a-anim-txts > span:nth-child(57) {
  transition: 0.65s 3.5625s;
}
.a-anim-txts > span:nth-child(58) {
  transition: 0.65s 3.625s;
}
.a-anim-txts > span:nth-child(59) {
  transition: 0.65s 3.6875s;
}
.a-anim-txts > span:nth-child(60) {
  transition: 0.65s 3.75s;
}
.a-anim-txts > span:nth-child(61) {
  transition: 0.65s 3.8125s;
}
.a-anim-txts > span:nth-child(62) {
  transition: 0.65s 3.875s;
}
.a-anim-txts > span:nth-child(63) {
  transition: 0.65s 3.9375s;
}
.a-anim-txts > span:nth-child(64) {
  transition: 0.65s 4s;
}
.a-anim-txts > span:nth-child(65) {
  transition: 0.65s 4.0625s;
}
.a-anim-txts > span:nth-child(66) {
  transition: 0.65s 4.125s;
}
.a-anim-txts > span:nth-child(67) {
  transition: 0.65s 4.1875s;
}
.a-anim-txts > span:nth-child(68) {
  transition: 0.65s 4.25s;
}
.a-anim-txts > span:nth-child(69) {
  transition: 0.65s 4.3125s;
}
.a-anim-txts > span:nth-child(70) {
  transition: 0.65s 4.375s;
}
.a-anim-txts > span:nth-child(71) {
  transition: 0.65s 4.4375s;
}
.a-anim-txts > span:nth-child(72) {
  transition: 0.65s 4.5s;
}
.a-anim-txts > span:nth-child(73) {
  transition: 0.65s 4.5625s;
}
.a-anim-txts > span:nth-child(74) {
  transition: 0.65s 4.625s;
}
.a-anim-txts > span:nth-child(75) {
  transition: 0.65s 4.6875s;
}
.a-anim-txts > span:nth-child(76) {
  transition: 0.65s 4.75s;
}
.a-anim-txts > span:nth-child(77) {
  transition: 0.65s 4.8125s;
}
.a-anim-txts > span:nth-child(78) {
  transition: 0.65s 4.875s;
}
.a-anim-txts > span:nth-child(79) {
  transition: 0.65s 4.9375s;
}
.a-anim-txts > span:nth-child(80) {
  transition: 0.65s 5s;
}
.a-anim-txts > span:nth-child(81) {
  transition: 0.65s 5.0625s;
}
.a-anim-txts > span:nth-child(82) {
  transition: 0.65s 5.125s;
}
.a-anim-txts > span:nth-child(83) {
  transition: 0.65s 5.1875s;
}
.a-anim-txts > span:nth-child(84) {
  transition: 0.65s 5.25s;
}
.a-anim-txts > span:nth-child(85) {
  transition: 0.65s 5.3125s;
}
.a-anim-txts > span:nth-child(86) {
  transition: 0.65s 5.375s;
}
.a-anim-txts > span:nth-child(87) {
  transition: 0.65s 5.4375s;
}
.a-anim-txts > span:nth-child(88) {
  transition: 0.65s 5.5s;
}
.a-anim-txts > span:nth-child(89) {
  transition: 0.65s 5.5625s;
}
.a-anim-txts > span:nth-child(90) {
  transition: 0.65s 5.625s;
}
.a-anim-txts > span:nth-child(91) {
  transition: 0.65s 5.6875s;
}
.a-anim-txts > span:nth-child(92) {
  transition: 0.65s 5.75s;
}
.a-anim-txts > span:nth-child(93) {
  transition: 0.65s 5.8125s;
}
.a-anim-txts > span:nth-child(94) {
  transition: 0.65s 5.875s;
}
.a-anim-txts > span:nth-child(95) {
  transition: 0.65s 5.9375s;
}
.a-anim-txts > span:nth-child(96) {
  transition: 0.65s 6s;
}
.a-anim-txts > span:nth-child(97) {
  transition: 0.65s 6.0625s;
}
.a-anim-txts > span:nth-child(98) {
  transition: 0.65s 6.125s;
}
.a-anim-txts > span:nth-child(99) {
  transition: 0.65s 6.1875s;
}
.a-anim-txts > span:nth-child(100) {
  transition: 0.65s 6.25s;
}
.a-anim-txts.active span {
  opacity: 1;
  -webkit-transform: translate(0, 0) skewX(0deg) scale(1, 1);
  -moz-transform: translate(0, 0) skewX(0deg) scale(1, 1);
  transform: translate(0, 0) skewX(0deg) scale(1, 1);
}

/*----------------------------------------------------
  slide-box-A
*/
/*----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-A">
    <img src="./img/sample.jpg" alt="" />
  </div>
----------------------------------------------------*/
.a-slide-box-A {
  overflow: hidden;
  opacity: 1;
  position: relative;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
  transition: 0.65s;
}
.a-slide-box-A:after {
  background: #bbb; /* Old browsers */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: 0.65s 0.65s;
}
.a-slide-box-A img {
  transition: 0.65s 0.65s;
  -webkit-transform: scale(1.5, 1.5);
  -moz-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  transform-origin: center center;
}
.a-slide-box-A.a-slide-box-A--t {
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-A.a-slide-box-A--b {
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-A.a-slide-box-A--l {
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-A.a-slide-box-A--r {
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-A.active {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-A.active:after {
  opacity: 0;
}
.a-slide-box-A.active img {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*----------------------------------------------------
  slide-box-B
*/
/*----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-B">
    <div class="slide-box-B__bg">
      <img src="" alt="">
    </div>
  </div>
----------------------------------------------------*/
.a-slide-box-B {
  display: block;
}
.a-slide-box-B img {
  vertical-align: middle;
}
.a-slide-box-B .slide-box-B__bg {
  background: #fff;
  display: inline-block;
  position: relative;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
  overflow: hidden;
}
.a-slide-box-B .slide-box-B__bg img {
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
  transition: all 0.65s;
}
.a-slide-box-B .slide-box-B__bg:after {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  margin-left: 100%;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  transition: all 0.65s;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg img {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg:after {
  margin: 100% 0 0 0;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg img {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg:after {
  margin: -100% 0 0 0;
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg img {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg:after {
  margin: 0 0 0 100%;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg img {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg:after {
  margin: 0 0 0 -100%;
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.a-slide-box-B.active .slide-box-B__bg img {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-B.active .slide-box-B__bg:after {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*----------------------------------------------------
  スライダー
----------------------------------------------------*/
.slide-gallery {
  overflow: hidden;
}
.slide-gallery .slide-gallery__inner {
  height: 220px;
  width: 3840px;
  -webkit-animation: slide 60s linear infinite;
  -moz-animation: slide 60s linear infinite;
  animation: slide 60s linear infinite;
  position: relative;
}
@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
    -moz-transform: translate3d(-1920px, 0, 0);
    transform: translate3d(-1920px, 0, 0);
  }
}

/*--------------------------
	state
--------------------------*/
/*----------------------------------------------------

	JavaScriptなどの制御による状態の変化を表すスタイルの設定ファイルです。
	汎用的なstateのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	is-* という接頭辞をつけることを推奨します。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関係 ファブレットはなし
--------------------------*/
@media screen and (max-width: 1024px) {
  .is-Pc {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Tab {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .is-Tab {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .is-Sp {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Pc_Tab {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .is-Tab_Sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */