@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

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

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 14px;
  text-align: left;
  line-height: 25px;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

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

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 13px;
  color: #f39800;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
}

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

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

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

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  background-image: url("../img/bg__01.png");
  background-size: 40%;
  background-attachment: fixed;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content p {
  font-size: 24px;
  line-height: 30px;
}
.modal .close {
  border-top: 1px solid #fff;
  padding-top: 30px;
  margin-top: 30px;
}
.modal .close p {
  background-color: #fff;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.modal .close p:hover {
  color: #fff;
  background-color: #fff;
  cursor: pointer;
}

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

                        ボタン

----------------------------------------------------------------*/
.link__button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  border-radius: 50px;
  max-width: 800px;
  width: 60%;
  height: 70px;
  border-bottom: 5px solid #b46436;
  transition: 0.3s;
  background-color: #eb8b54;
  margin: 0 auto;
  margin-top: 60px;
}
.link__button a {
  color: #fff;
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
}
.link__button:hover {
  border-bottom-width: 0;
  transform: translateY(5px);
  cursor: pointer;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_logo {
  width: 250px;
  height: auto;
  display: flex;
}
header .header__inner .header_logo img {
  width: 190px;
  height: auto;
}
header .header__inner .header_logo .header_chiba {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f39800;
}
header .header__inner .header_logo .header_chiba a {
  text-decoration: none;
}
header .header__inner .header_logo .header_chiba a p {
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
}
header .header__inner .header_nav {
  width: 860px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #f39800;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  line-height: 59px;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}
header .header__inner .header_nav ul li a:hover {
  color: #ffff00;
}
header .header__inner .header_nav ul li .button003 a {
  background: #0099ff;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-shadow: none;
  line-height: 20px;
  margin-top: 10px;
}
header .header__inner .header_nav ul li .button003 a:hover {
  background: #015c99;
  color: #fff;
}
header .header__inner .header_nav ul li .button003 a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 44%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
header .header__inner .header_nav ul li .button003 a:hover:after {
  border-color: #fff;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.main {
  width: 100%;
  background-image: url("../img/mv__bg.jpg");
  background-size: cover;
  background-position: center;
}
.main .main__inner {
  width: auto;
  position: relative;
  height: 100vh;
}
.main .main__inner h1 {
  display: none;
}
.main .main__inner .sp__title {
  display: none;
}
.main .main__inner .main__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
  width: 100%;
}
.main .main__inner .main__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロダクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrp {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}

h2 {
  padding-top: 60px;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.3em;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
  color: #f39800;
}
h2::after, h2::before {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #f39800;
  border: 1px solid #fff;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
h2::after {
  transform: rotate(35deg);
}
h2::before {
  transform: rotate(-35deg);
}

.title__caption {
  width: 100%;
}
.title__caption p {
  font-size: 1.5em;
  text-align: center;
  color: #f39800;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}

.introduction {
  background-color: #fff;
  background-image: url("../img/bg01.png");
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.introduction .introduction__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.introduction .introduction__inner .introduction__content {
  width: auto;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__icon {
  width: 20%;
  height: 20%;
  background-color: #f39800;
  border-radius: 50%;
  border: 10px solid #fff;
  overflow: hidden;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__icon .introduction__icon--img {
  position: relative;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__icon .introduction__icon--img img {
  width: 100%;
  height: auto;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__icon .introduction__icon--img .introduction__caption {
  position: absolute;
  left: calc(50% - 50px);
  bottom: 20px;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__icon .introduction__icon--img .introduction__caption p {
  line-height: 1.5em;
  font-size: 0.9em;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text {
  width: 70%;
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding: 16px;
  border-radius: 16px;
  background-color: #f39800;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 30px;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text .arrow_r {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #fff;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text .arrow_r:hover {
  color: #e56b6b;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text .arrow_r:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text .introduction__graph {
  display: block;
  width: 30%;
  height: auto;
  margin-right: 15px;
  float: right;
  overflow: hidden;
  border-radius: 15px;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text .introduction__graph:nth-child(4) {
  float: left;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text .introduction__graph img {
  width: 100%;
  height: auto;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #f39800;
  translate: 100% -50%;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text ul {
  width: 100%;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text ul li {
  margin-bottom: 15px;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text ul li:last-child {
  margin-bottom: 0;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text ul li p {
  font-size: 1.5em;
  line-height: 2em;
  font-weight: normal;
  color: #fff;
  margin-left: 15px;
}
.introduction .introduction__inner .introduction__content .introduction__text--wrap .introduction__text:nth-child(2n)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #f39800 transparent transparent;
  translate: -100% -50%;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        youtube
----------------------------------------------------------------*
----------------------------------------------------------------*/
.youtube {
  background-color: #f39800;
  background-image: url("../img/bg02.png");
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
.youtube h2 {
  padding-top: 0;
  text-shadow: none;
  color: #fff;
}
.youtube h2::after, .youtube h2::before {
  border: none;
  background-color: #fff;
}
.youtube .youtube__inner {
  padding: 60px;
  background-color: #fff;
  border-radius: 15px;
  width: 710px;
  height: 405px;
  margin: 0 auto;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コレクション
----------------------------------------------------------------*
----------------------------------------------------------------*/
.collection {
  background-image: url("../img/bg01.png");
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
  background-color: #fff;
}
.collection .collection__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
.collection .collection__inner .collection__icon {
  width: 15%;
  height: 15%;
  background-color: #f39800;
  border: 10px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
.collection .collection__inner .collection__icon .collection__icon--img {
  position: relative;
}
.collection .collection__inner .collection__icon .collection__icon--img img {
  width: 100%;
  height: auto;
}
.collection .collection__inner .collection__icon .collection__icon--img .collection__caption {
  position: absolute;
  left: 30%;
  bottom: 20px;
}
.collection .collection__inner .collection__icon .collection__icon--img .collection__caption p {
  line-height: 1.5em;
  font-size: 0.9em;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}
.collection .collection__inner .collection__list {
  width: 76%;
  padding: 40px;
  border-radius: 15px;
  background-color: #f39800;
}
.collection .collection__inner .collection__list ul {
  display: flex;
  justify-content: space-between;
}
.collection .collection__inner .collection__list ul li {
  width: 22%;
  height: auto;
}
.collection .collection__inner .collection__list ul li .collection__img {
  border-radius: 15px;
  overflow: hidden;
}
.collection .collection__inner .collection__list ul li .collection__img img {
  width: 100%;
  height: auto;
}
.collection .collection__inner .collection__list ul li p {
  margin-top: 15px;
  font-size: 1em;
  line-height: 2em;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        キャンペーン
----------------------------------------------------------------*
----------------------------------------------------------------*/
.campaign {
  background-color: #f39800;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
.campaign .title__caption p {
  text-shadow: none;
  color: #fff;
}
.campaign h2 {
  color: #fff;
  text-shadow: none;
  padding-top: 0px;
}
.campaign h2::after, .campaign h2::before {
  border: none;
  background-color: #fff;
}
.campaign .campaign__inner {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  margin-top: 30px;
  padding: 30px;
  position: relative;
}
.campaign .campaign__inner .campaign__icon {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
  border: 10px solid #fff;
}
.campaign .campaign__inner .campaign__icon img {
  width: 100%;
  height: auto;
}
.campaign .campaign__inner .icon__left {
  position: absolute;
  left: -340px;
  top: 50px;
}
.campaign .campaign__inner .icon__right {
  position: absolute;
  right: -340px;
  top: 50px;
}
.campaign .campaign__inner dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f39800;
}
.campaign .campaign__inner dl dt {
  width: 20%;
  font-size: 1.5em;
  line-height: 2em;
  font-weight: bold;
  color: #f39800;
}
.campaign .campaign__inner dl dd {
  color: #f39800;
  width: 75%;
  position: relative;
  font-size: 1em;
  padding: 15px;
  text-align: left;
}
.campaign .campaign__inner dl dd:last-child {
  width: 100%;
}
.campaign .campaign__inner dl dd span {
  font-size: 0.8em;
}
.campaign .campaign__inner dl dd .x-share {
  margin: 0 auto;
  width: 270px;
}
.campaign .campaign__inner dl dd .x-share p {
  text-align: center;
}
.campaign .campaign__inner dl dd .x-share iframe {
  width: 80px;
  display: block;
  margin: 0 auto;
}
.campaign .merchandise {
  margin-top: 30px;
}
.campaign .merchandise p {
  margin-top: 15px;
  font-size: 1.5em;
  line-height: 2em;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.campaign .merchandise p span {
  font-size: 0.8em;
}
.campaign .merchandise ul {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.campaign .merchandise ul li {
  width: 15%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}
.campaign .merchandise ul li img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        お問合せ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact h2 {
  margin-top: 15px;
}
.contact h2::after, .contact h2::before {
  display: none;
}
.contact .contact__inner {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 30px;
}
.contact .contact__inner p {
  color: #f39800;
  text-align: center;
  font-size: 16px;
}
.contact .contact__inner p strong {
  font-weight: bold;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フォーム
----------------------------------------------------------------*
----------------------------------------------------------------*/
.form {
  background-color: #fff;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.form h2 {
  margin-top: 15px;
  line-height: 1.5em;
}
.form h2::after, .form h2::before {
  display: none;
}
.form .form__inner {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer p {
  font-size: 1em;
  line-height: 2em;
  text-align: center;
  color: #f39800;
  margin-top: 60px;
}/*# sourceMappingURL=common.css.map */