@charset "UTF-8";
/*――――――――――――――――――――――――――――――――――――――――――――
/* ベースファイルを定義
――――――――――――――――――――――――――――――――――――――――――――――*/
/**********************************************************

ブレイクポイント

***********************************************************/
/*――――――――――――――――――――――――――――――――――――――――――――
/* pc sp 出し分けのためのcss
――――――――――――――――――――――――――――――――――――――――――――――*/
@media screen and (min-width: 1001px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: block !important;
  }
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media screen and (max-width: 550px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* スクロールアニメーション
――――――――――――――――――――――――――――――――――――――――――――――*/
.js-scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-scroll-trigger.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* font
――――――――――――――――――――――――――――――――――――――――――――――*/
/*――――――――――――――――――――――――――――――――――――――――――――
/* vw
――――――――――――――――――――――――――――――――――――――――――――――*/
/*――――――――――――――――――――――――――――――――――――――――――――
/* line-height
――――――――――――――――――――――――――――――――――――――――――――――*/
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea { /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* html,body
――――――――――――――――――――――――――――――――――――――――――――――*/
* {
  min-height: 0;
  min-width: 0;
}

html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 550px) {
  html {
    scroll-padding-top: 58px;
    overflow-x: hidden;
  }
}

body {
  min-height: 100dvh;
  color: #282828;
  font-size: 16px;
  font-family: "Zen Maru Gothic", Arial, Meiryo, sans-serif;
  line-height: 1.4;
  background-attachment: fixed;
  font-weight: 300;
  position: relative;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/body_bg.png) repeat center top/contain;
  background-attachment: fixed;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 1001px) {
  body::after {
    background-size: 100% auto;
  }
}

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

/*――――――――――――――――――――――――――――――――――――――――――――
/* component
――――――――――――――――――――――――――――――――――――――――――――――*/
.menu-trigger {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 12px;
  right: 20px;
}
@media screen and (min-width: 551px) {
  .menu-trigger {
    top: 50px;
    right: 49px;
  }
}
@media screen and (min-width: 1441px) {
  .menu-trigger {
    display: none;
  }
}
.menu-trigger a, .menu-trigger:before {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.menu-trigger:before {
  content: "";
  background-color: #fa6400;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1000;
}
.menu-trigger span {
  width: 24px;
  height: 2px;
  color: transparent;
  background-color: #0062b6;
  border-radius: 1px;
  position: relative;
  transition: background-color 0.3s ease;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0062b6;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: -6px;
  transition: top 0.3s ease, transform 0.3s ease;
}
.menu-trigger span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0062b6;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 6px;
}
.menu-trigger.is-active span {
  background-color: transparent;
}
.menu-trigger.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-trigger.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-wrap {
  display: none;
  transition: 0.5s;
  transform: translateY(-4%);
}
@media screen and (min-width: 1441px) {
  .menu-wrap {
    width: calc((100vw - 550px) * 0.35849);
    height: 100vh;
    max-height: 100vh;
    padding: 0 3.444444vw 0 1.535354vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0.01041667vw;
    z-index: 0;
    transform: translateY(0);
    overflow-y: auto;
  }
}
@media screen and (max-width: 1440px) {
  .menu-wrap {
    display: none;
  }
}
.menu-wrap.is-active {
  width: 88%;
  max-width: 400px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  display: flex;
  transform: translateY(0);
}
@media screen and (max-width: 1440px) {
  .menu-wrap.is-active .menu-inner {
    max-width: 100%;
    padding: 91px 10% 85px;
    background: url(../img/grid_bg.png) repeat center top/64px auto;
    box-shadow: 9px 4px 5px rgba(128, 70, 16, 0.4);
    overflow-y: auto;
  }
}
.menu-wrap .menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .menu-wrap .menu-inner {
    width: 19vw;
    padding-top: 15%;
    padding-bottom: 18.5%;
    justify-content: flex-start;
    transform: translate(3%, -2%);
    position: fixed;
    top: max(15vw, 25%);
    right: 13%;
  }
}
@media screen and (min-width: 1441px) {
  .menu-wrap .menu-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 95%;
    background: url(../img/menu_bg_top.png) no-repeat center top/100% auto;
  }
}
@media screen and (min-width: 1441px) {
  .menu-wrap .menu-inner::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/menu_bg_bottom.png) no-repeat center bottom 20px/100% auto;
  }
}
.menu-wrap .menu-title {
  width: 54%;
  margin-bottom: 42px;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .menu-wrap .menu-title {
    width: max(39%, 144px);
    margin-bottom: 16%;
  }
}
@media screen and (min-width: 1001px) {
  .menu-wrap .menu-title {
    width: 39%;
    margin-bottom: 11%;
    transform: translateX(-3%);
  }
}
.menu-wrap .menu-title img {
  width: 100%;
  height: auto;
}
.menu-wrap .nav-list {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}
@media screen and (min-width: 1001px) {
  .menu-wrap .nav-list {
    gap: 31px;
    transform: translateX(-3%);
  }
}
.menu-wrap .nav-list .nav-item {
  width: 100%;
  display: flex;
  justify-content: center;
}
.menu-wrap .nav-list .nav-item.sp {
  display: flex;
}
@media screen and (min-width: 551px) {
  .menu-wrap .nav-list .nav-item.sp {
    display: none;
  }
}
.menu-wrap .nav-list a {
  font-size: clamp(22px, 5.86666667vw, 27px);
  font-weight: bold;
  display: flex;
  position: relative;
}
@media screen and (min-width: 1001px) {
  .menu-wrap .nav-list a {
    font-size: clamp(12px, 1.8vw, 27px);
    justify-content: center;
  }
}
.menu-wrap .nav-list a::after {
  content: "";
  position: absolute;
  left: -8vw;
  bottom: 50%;
  width: 4vw;
  height: 4vw;
  background-color: #0062b6;
  border-radius: 3px;
  transform: translateY(50%) rotate(45deg);
  display: none;
}
@media screen and (max-width: 1440px) {
  .menu-wrap .nav-list a::after {
    left: -30px;
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 1001px) {
  .menu-wrap .nav-list a::after {
    width: 0.78125vw;
    height: 0.78125vw;
    left: -1.25em;
  }
}
.menu-wrap .nav-list a.is-active {
  color: #0062b6;
}
.menu-wrap .nav-list a.is-active::after {
  display: block;
}

.c-detail-button {
  display: flex;
  justify-content: center;
}
.c-detail-button a {
  width: 88%;
}

.c-tit,
.c-subtit {
  display: flex;
  justify-content: center;
}

.video-container {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sp-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1000;
  pointer-events: auto !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-video-placeholder img,
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-container {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* 動画関連のスタイル
――――――――――――――――――――――――――――――――――――――――――――――*/
.video-section {
  padding: 40px 20px;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PC版：サムネイルを表示 */
.pc-video {
  display: block;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #fa6400;
  transition: transform 0.3s ease;
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

/* SP版：サムネイル表示（クリックでiframe読み込み） */
.sp-video {
  display: none;
  position: relative;
}
.sp-video .sp-video-iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}
.sp-video .sp-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  pointer-events: auto;
  border: 2px solid #fa6400;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sp-video .sp-video-placeholder.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sp-video .sp-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* モーダル（PC版のみ） */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.video-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 10;
  width: min(60vw, 1066px);
  aspect-ratio: 16/9;
  max-height: 60vh;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-video {
  width: 100%;
  height: 100%;
}
.modal-video iframe {
  width: 100%;
  height: 100%;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* ――――――――――――――――――――――――――――――――――――――――――――
   レスポンシブ：SP版（768px以下）
   ―――――――――――――――――――――――――――――――――――――――――――― */
@media (max-width: 768px) {
  /* PCと同じモーダル導線に統一 */
  .pc-video {
    display: block;
  }
  .sp-video {
    display: none;
  }
  /* SPでもモーダル表示を有効化 */
  .video-modal {
    display: none;
  }
  .modal-content {
    width: 92vw;
    max-height: none;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* スライド切り替えセクション関連のスタイル
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-slide-wrapper {
  width: 100%;
  padding: 0px 6% 0 24%;
  --slide-available-height: calc(100dvh - 30px);
}

.c-slide-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  /* height はJSで動的に設定 */
}

.scroll-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 119%;
  max-height: var(--slide-available-height);
  opacity: 0;
  display: flex;
  align-items: flex-start;
}
.scroll-item:first-child {
  opacity: 1;
}
.scroll-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* GSAP無効時は縦並びにしてセクション高さを維持 */
.c-slide-section.is-stacked .c-slide-container {
  width: 119%;
  margin-left: -9.5%;
  height: auto !important;
  display: block;
}
.c-slide-section.is-stacked .scroll-item {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-height: none;
  opacity: 1 !important;
  margin-bottom: 20px;
  display: block;
}
.c-slide-section.is-stacked .scroll-item:last-child {
  margin-bottom: 0;
}
.c-slide-section.is-stacked .message-list__dots,
.c-slide-section.is-stacked .message-list__navigation {
  display: none;
}

.scroll-card {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scroll-card .card-number {
  width: 100%;
  display: flex;
  justify-content: center;
}
.scroll-card img {
  width: auto;
  height: 100%;
  max-height: var(--slide-available-height);
  display: block;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* ギャラリー関連のスタイル
――――――――――――――――――――――――――――――――――――――――――――――*/
/* メイン画像 */
.gallery-main {
  margin-bottom: 20px;
  overflow: hidden;
}
.gallery-main .gallery-main__img {
  position: relative;
  border: 2px solid #fa6400;
  cursor: pointer;
}
.gallery-main .gallery-main__img video {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.gallery-main .gallery-main__img .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.gallery-main .gallery-main__img .video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}
.gallery-main .gallery-main__img .video-toggle.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gallery-main .gallery-main__img .video-toggle .icon {
  display: none;
}
.gallery-main .gallery-main__img .video-toggle .icon-play {
  display: block;
}
.gallery-main .gallery-main__img .video-toggle.is-playing .icon-play {
  display: none;
}
.gallery-main .gallery-main__img .video-toggle.is-playing .icon-pause {
  display: block;
}

.main-image-wrapper {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #fa6400;
  transition: transform 0.3s ease;
}
.main-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery-tit {
  margin: 20px 0 16px;
  font-size: clamp(16px, 4.26666667vw, 21px);
  font-weight: 600;
}

.gallery-subtit {
  margin-bottom: 20px;
  font-size: clamp(14px, 3.73333333vw, 18px);
  font-weight: bold;
  display: flex;
  justify-content: center;
  position: relative;
}
.gallery-subtit::before, .gallery-subtit::after {
  content: "";
  width: calc(50% - 5em);
  height: 1px;
  background-color: #fa6400;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-subtit::before {
  left: -12px;
}
.gallery-subtit::after {
  right: -12px;
}

/* サムネイル一覧 */
.gallery-thumbnails {
  padding-bottom: 30px;
  display: flex;
  touch-action: pan-x;
}
.gallery-thumbnails .simplebar-content-wrapper {
  touch-action: pan-x;
}

.thumbnail-item {
  width: 28%;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.thumbnail-item + .thumbnail-item {
  margin-left: 20px;
}
.thumbnail-item .gallery-thumbnail__img {
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid #fa6400;
  transition: border-color 0.2s ease;
  overflow: hidden;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumbnail-item .caption {
  font-size: clamp(14px, 3.73333333vw, 18px);
  font-weight: 600;
  line-height: 1.28571429;
  margin-top: 14px;
  display: block;
}

.simplebar-content {
  display: flex;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* simple-scroll-bar
――――――――――――――――――――――――――――――――――――――――――――――*/
.simplebar-content {
  display: flex;
}

.simplebar-scrollbar::before {
  background: #fa6400;
  border-radius: 0;
  height: 10px !important;
  margin-left: 2px;
  margin-top: 3px;
}

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track {
  background: #ffffff;
  height: 10px !important;
  border-radius: 5px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0 !important;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  margin-top: 0;
  margin-left: 0;
  top: 0 !important;
  left: 0 !important;
  background-color: #fa6400;
  opacity: 1;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* レイアウトに関するcss
――――――――――――――――――――――――――――――――――――――――――――――*/
.l-wrapper {
  overflow: hidden;
  position: relative;
}

.l-content {
  width: 100%;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  display: block;
  align-items: start;
}
@media screen and (min-width: 551px) {
  .l-content {
    display: grid;
    grid-template-columns: 1fr 550px 1fr;
  }
}
@media screen and (min-width: 1001px) {
  .l-content {
    grid-template-columns: 1fr 550px;
  }
}
@media screen and (min-width: 1441px) {
  .l-content {
    grid-template-columns: 1.77fr 550px 1fr;
  }
}

.left-wrap,
.right-wrap {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 550px) {
  .left-wrap,
  .right-wrap {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .left-wrap,
  .right-wrap {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 1001px) {
  .left-wrap,
  .right-wrap {
    min-height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    display: flex;
  }
}

.left-wrap {
  z-index: 300;
}

.right-wrap {
  justify-content: flex-start;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .right-wrap {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .right-wrap {
    display: block;
  }
}

.inner {
  position: relative;
  z-index: 500;
  background: url(../img/body_bg.png) repeat left top/contain;
}
@media screen and (min-width: 551px) {
  .inner {
    padding-left: 0;
    border-right: 2px solid #fa6400;
    border-left: 2px solid #fa6400;
    position: relative;
  }
}
@media screen and (min-width: 1001px) {
  .inner {
    padding-right: 22px;
  }
}
@media screen and (min-width: 1441px) {
  .inner {
    padding-right: 0;
  }
}

@media screen and (min-width: 551px) {
  .l-frame {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    min-width: calc(100% - 90px);
    height: 100%;
    pointer-events: none;
    box-shadow: 0 0 0 22px #ffffff inset;
  }
}

@media screen and (min-width: 551px) {
  .l-frame:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 22px);
    height: calc(100% - 22px);
    border: 6px solid #17206d;
  }
}

@media screen and (min-width: 551px) {
  .l-frame:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 42px);
    height: calc(100% - 42px);
    border: 2px solid #eb0000;
  }
}

.l-section {
  padding: 0 39px;
}

.header {
  width: 100%;
  padding: 13px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (min-width: 551px) {
  .header {
    padding: 49px 47px 20px;
  }
}
.header .logo {
  width: 164px;
  position: absolute;
  top: 6px;
  transition: 0.1s;
}
@media screen and (min-width: 551px) {
  .header .logo {
    top: 39px;
    left: 38px;
  }
}
@media screen and (min-width: 1001px) {
  .header .logo {
    position: fixed;
    width: 210px;
    top: 25px;
    left: 35px;
  }
}
@media screen and (min-width: 1441px) {
  .header .logo {
    width: 245px;
    max-width: 100%;
    top: 50px;
    left: 47px;
  }
}
.header .logo.is-hide {
  opacity: 0;
  pointer-events: none;
}
.header .logo a {
  min-width: 0;
  display: block;
}

.footer {
  padding: 50px 37px 37px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__textlink {
  margin-bottom: 30px;
  font-size: clamp(14px, 3.73333333vw, 18px);
}

.footer__logo-megmilk {
  width: 205px;
  margin-bottom: 33px;
}

.footer__copyright {
  color: #333;
  font-size: clamp(11px, 2.93333333vw, 14px);
  line-height: 1.33333333;
  text-align: center;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* 個別ページの読み込み
――――――――――――――――――――――――――――――――――――――――――――――*/
.opening-animation {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.opening-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/body_bg.png) repeat center top/cover;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 1920px) {
  .opening-animation::after {
    background-size: 100% auto;
  }
}
.opening-animation .opening-animation-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.opening-animation__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.opening-animation__video--pc {
  display: none;
}
@media screen and (min-width: 1001px) {
  .opening-animation__video--pc {
    display: block;
  }
}
.opening-animation__video--sp {
  display: block;
}
@media screen and (min-width: 1001px) {
  .opening-animation__video--sp {
    display: none;
  }
}
.opening-animation__logo {
  width: 80%;
  margin-bottom: 5%;
}
@media screen and (min-width: 551px) {
  .opening-animation__logo {
    width: 70%;
    max-width: 522px;
    margin-bottom: -3%;
    transform: translateY(-22%);
  }
}
.opening-animation__img {
  width: 80%;
}
@media screen and (min-width: 551px) {
  .opening-animation__img {
    width: 50%;
    max-width: 100%;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .opening-animation .opening-animation__logo {
    max-width: 20%;
    margin-bottom: 0%;
  }
  .opening-animation .opening-animation__img {
    width: 30%;
  }
}

.is-loading {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}
.is-loading .header {
  opacity: 0;
  visibility: hidden;
}
.is-loading .menu-wrap, .is-loading .l-content {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.is-loading .opening-animation {
  display: flex;
  height: 100vh;
  height: 100dvh;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1001px) {
  .is-loading .scroll-character {
    display: none;
  }
}

@keyframes slide-left-fade {
  0% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateX(-60vw);
    opacity: 0;
    visibility: hidden;
  }
}
.slide-left-fade {
  animation: slide-left-fade 1.2s ease forwards;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* KV
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-kv {
  padding-top: 34.5%;
  padding-bottom: 47.6%;
  margin-bottom: -8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: url(../img/main_bg.png) no-repeat center bottom/contain;
}
@media screen and (min-width: 551px) {
  .c-kv {
    padding-bottom: 22%;
    background-position: center 98%;
    display: none;
  }
}

.c-kv-logo {
  width: 85%;
  margin: 3% 0 -9% 2%;
}
@media screen and (min-width: 551px) {
  .c-kv-logo {
    display: none;
  }
}

.c-kv-img {
  width: 110%;
  margin-left: 1%;
}
@media screen and (min-width: 551px) {
  .c-kv-img {
    display: none;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* PROFILE
――――――――――――――――――――――――――――――――――――――――――――――*/
.--profile {
  padding-top: 9%;
  padding-bottom: 15%;
}
.--profile .section-tit {
  margin-bottom: 8%;
}
.--profile .section-tit img {
  width: 68%;
}
.--profile .section-subtit {
  margin-bottom: -3%;
  position: relative;
}
.--profile .section-subtit > img {
  width: 69%;
  transform: translateX(-1%);
}

.grid-inner {
  padding: 14.5% 6% 9%;
  background: url(../img/grid_bg.png) repeat center top/64px auto;
  box-shadow: 6px 6px 0 0 #fa6400;
  position: relative;
}

.profile-ico {
  width: 15%;
  position: absolute;
  bottom: -20%;
  right: -3%;
}

.profile-img {
  width: 150%;
  margin-bottom: -3.5%;
  position: relative;
  left: -25%;
}

.profile-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.profile-list__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.profile-list dt {
  width: 31%;
  min-height: 25px;
  padding: 2px 5px;
  color: #ffffff;
  font-size: clamp(14px, 3.73333333vw, 18px);
  background-color: #fa6400;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.profile-list dd {
  margin-top: -4px;
  font-size: clamp(14px, 3.73333333vw, 18px);
  font-weight: 600;
  line-height: 1.4286;
  flex: 1;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* MOVIE
――――――――――――――――――――――――――――――――――――――――――――――*/
.--movie {
  padding-top: 20%;
  padding-bottom: 95%;
  background: url(../img/movie_bg.png) #fffcee no-repeat center bottom 10%/contain;
  position: relative;
}
.--movie .section-tit {
  margin-bottom: 11%;
}
.--movie .section-tit img {
  width: 49%;
}
.--movie .section-subtit {
  margin-bottom: 15%;
}
.--movie .section-subtit img {
  width: 74%;
}
.--movie .tens-character__item {
  z-index: 10;
}
.--movie .tens-character__item.top-right {
  width: 42%;
  top: 1%;
  right: -10%;
}
.--movie .tens-character__item.bottom-left {
  width: 51.5%;
  bottom: -2%;
  left: -15%;
}
.--movie .tens-character__item.bottom-right {
  width: 47.5%;
  bottom: -1.5%;
  right: -8%;
}

.movie-list {
  display: flex;
  flex-direction: column;
  gap: 47px;
}
.movie-list__item__tit {
  margin-top: 16px;
  font-size: clamp(16px, 4.26666667vw, 21px);
  font-weight: 600;
}

.tens-character__item {
  position: absolute;
}

.tens-package {
  width: 100%;
  aspect-ratio: 1/0.7;
  overflow: hidden;
  position: relative;
}
.tens-package .tens-package__inner {
  width: 100%;
  height: 100%;
  background-color: #fffcee;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 0 0 0);
}
.tens-package .tens-package__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/butter_kireteru_img.png) no-repeat center center/550px auto;
  pointer-events: none;
}
@media screen and (min-width: 1001px) {
  .tens-package .tens-package__inner::after {
    background-position: center right 0;
  }
}
@media screen and (min-width: 1441px) {
  .tens-package .tens-package__inner::after {
    background-position: center right 36%;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* MESSAGE
――――――――――――――――――――――――――――――――――――――――――――――*/
.--message {
  padding-top: 21%;
  padding-bottom: 28.5%;
  background: url(../img/grid_bg.png) repeat center top/64px auto;
  position: relative;
}
.--message .section-tit {
  margin-bottom: 7%;
}
.--message .section-tit img {
  width: 71%;
}
.--message .section-subtit {
  margin-bottom: 6.5%;
}
.--message .section-subtit img {
  width: 100%;
}
.--message .section-lead {
  font-size: clamp(16px, 4.26666667vw, 21px);
  font-weight: 600;
  line-height: 1.875;
  text-align: center;
}
.--message .tens-character__item.bottom-right {
  width: 56%;
  bottom: -5.5%;
  right: 3%;
  z-index: 1;
}

.message-list {
  margin: 0 -9%;
}

.message-list__dots {
  position: absolute;
  top: 53.5%;
  right: 27px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.message-list__dots__item {
  display: inline-block;
  width: 10px;
  height: 10px;
}
.message-list__dots__item span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/message_dot.png) no-repeat top center/cover;
  font-size: 0;
}
.message-list__dots__item.is-active span {
  background-position: bottom center;
}

.message-list__navigation {
  width: 3.1%;
  position: absolute;
  top: 85.3%;
  right: 24px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* RECIPE
――――――――――――――――――――――――――――――――――――――――――――――*/
.--recipe {
  padding-top: 25%;
  padding-bottom: 58%;
  background: url(../img/recipe_bg.png) no-repeat center bottom/contain, url(../img/recipe_bg_dot.png) repeat center top/72px auto;
  position: relative;
}
.--recipe .section-tit {
  margin-bottom: 8%;
}
.--recipe .section-tit img {
  width: 51%;
}
.--recipe .section-subtit {
  margin-bottom: 16.5%;
}
.--recipe .section-subtit img {
  width: 66.5%;
  transform: translateX(-1%);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* PRODUCT
――――――――――――――――――――――――――――――――――――――――――――――*/
.--product {
  padding-top: 26%;
  padding-bottom: 5%;
  background-color: #fffcee;
  position: relative;
}
.--product .section-tit {
  margin-bottom: 12%;
}
.--product .section-tit img {
  width: 72%;
}
.--product .tens-character__item.top-left {
  width: 42%;
  top: 7%;
  left: -8%;
}

.section-img {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-img span {
  margin-top: 22px;
  color: #333;
  font-size: clamp(16px, 4.26666667vw, 21px);
  text-align: center;
  display: block;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* BRAND SITE
――――――――――――――――――――――――――――――――――――――――――――――*/
.--brand-site {
  padding-top: 27%;
  padding-bottom: 22%;
  background-color: #fffcee;
  position: relative;
}
.--brand-site .section-tit {
  margin-bottom: 13%;
}
.--brand-site .section-tit img {
  width: 88%;
}

.tens-image {
  width: 100%;
  aspect-ratio: 750/402;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tens-image img {
  width: 95%;
}

.left-inner {
  width: calc((100vw - 550px) * 0.639);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate(0%, -7%);
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-57%);
}
@media screen and (max-width: 1440px) and (min-width: 1001px) {
  .left-inner {
    width: calc(100vw - 550px);
    transform: translateY(-53%);
  }
}

.left__logo {
  width: 58%;
  max-width: 522px;
  margin: 25% 0 0 9.5%;
}

.left__img.js-side-img-static {
  width: 82%;
  position: absolute;
  top: 50%;
  left: 10%;
}
.left__img.js-side-animation {
  width: 100%;
  margin-top: -5%;
}
.left__img.js-side-animation img {
  display: none;
}
.left__img.js-side-animation img:first-child {
  display: block;
}
@media screen and (max-width: 1440px) and (min-width: 1001px) {
  .left__img.js-side-animation {
    margin-top: -70px;
  }
}

.right__img.js-side-animation img {
  display: none;
}
.right__img.js-side-animation img:first-child {
  display: block;
}

.scroll-character {
  position: absolute;
  will-change: transform;
  display: block;
}
.scroll-character.character01 {
  width: 199px;
  top: 13.6%;
  left: -18%;
  z-index: 200;
}
@media screen and (max-width: 1000px) {
  .scroll-character.character01 {
    display: none;
  }
}
.scroll-character.character02 {
  width: 140px;
  top: 84%;
  left: -142px;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .scroll-character.character02 {
    display: none;
  }
}
.scroll-character.character03 {
  width: 140px;
  top: 101%;
  right: -142px;
  z-index: 0;
}
@media screen and (max-width: 1440px) {
  .scroll-character.character03 {
    display: none;
  }
}

.right__img {
  width: 100%;
  height: 27vw;
  position: fixed;
  top: 0;
  right: -71%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.right__img img {
  display: block;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .right__img {
    display: none;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* utility
――――――――――――――――――――――――――――――――――――――――――――――*/
/*――――――――――――――――――――――――――――――――――――――――――――
/* display
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-d {
  display: block;
}

.u-df {
  display: flex;
}

.u-dn {
  display: none;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* width
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-w100 {
  width: 100%;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* z-index
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-z1 {
  z-index: 1;
}

.u-z2 {
  z-index: 2;
}

.u-z3 {
  z-index: 3;
}

.u-z4 {
  z-index: 4;
}

.u-z5 {
  z-index: 5;
}

.u-z6 {
  z-index: 6;
}

.u-z7 {
  z-index: 7;
}

.u-z8 {
  z-index: 8;
}

.u-z9 {
  z-index: 9;
}

.u-z10 {
  z-index: 10;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* potition
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-por {
  position: relative;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* flex
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* margin
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-mt5 {
  margin-top: 5px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mt105 {
  margin-top: 105px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mt115 {
  margin-top: 115px;
}

.u-mb115 {
  margin-bottom: 115px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mt125 {
  margin-top: 125px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mt135 {
  margin-top: 135px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mt145 {
  margin-top: 145px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mt150 {
  margin-top: 150px;
}

.u-mb150 {
  margin-bottom: 150px;
}

@media screen and (min-width: 1001px) {
  .u-mt5-pc {
    margin-top: 5px;
  }
  .u-mb5-pc {
    margin-bottom: 5px;
  }
  .u-mt10-pc {
    margin-top: 10px;
  }
  .u-mb10-pc {
    margin-bottom: 10px;
  }
  .u-mt15-pc {
    margin-top: 15px;
  }
  .u-mb15-pc {
    margin-bottom: 15px;
  }
  .u-mt20-pc {
    margin-top: 20px;
  }
  .u-mb20-pc {
    margin-bottom: 20px;
  }
  .u-mt25-pc {
    margin-top: 25px;
  }
  .u-mb25-pc {
    margin-bottom: 25px;
  }
  .u-mt30-pc {
    margin-top: 30px;
  }
  .u-mb30-pc {
    margin-bottom: 30px;
  }
  .u-mt35-pc {
    margin-top: 35px;
  }
  .u-mb35-pc {
    margin-bottom: 35px;
  }
  .u-mt40-pc {
    margin-top: 40px;
  }
  .u-mb40-pc {
    margin-bottom: 40px;
  }
  .u-mt45-pc {
    margin-top: 45px;
  }
  .u-mb45-pc {
    margin-bottom: 45px;
  }
  .u-mt50-pc {
    margin-top: 50px;
  }
  .u-mb50-pc {
    margin-bottom: 50px;
  }
  .u-mt55-pc {
    margin-top: 55px;
  }
  .u-mb55-pc {
    margin-bottom: 55px;
  }
  .u-mt60-pc {
    margin-top: 60px;
  }
  .u-mb60-pc {
    margin-bottom: 60px;
  }
  .u-mt65-pc {
    margin-top: 65px;
  }
  .u-mb65-pc {
    margin-bottom: 65px;
  }
  .u-mt70-pc {
    margin-top: 70px;
  }
  .u-mb70-pc {
    margin-bottom: 70px;
  }
  .u-mt75-pc {
    margin-top: 75px;
  }
  .u-mb75-pc {
    margin-bottom: 75px;
  }
  .u-mt80-pc {
    margin-top: 80px;
  }
  .u-mb80-pc {
    margin-bottom: 80px;
  }
  .u-mt85-pc {
    margin-top: 85px;
  }
  .u-mb85-pc {
    margin-bottom: 85px;
  }
  .u-mt90-pc {
    margin-top: 90px;
  }
  .u-mb90-pc {
    margin-bottom: 90px;
  }
  .u-mt95-pc {
    margin-top: 95px;
  }
  .u-mb95-pc {
    margin-bottom: 95px;
  }
  .u-mt100-pc {
    margin-top: 100px;
  }
  .u-mb100-pc {
    margin-bottom: 100px;
  }
  .u-mt105-pc {
    margin-top: 105px;
  }
  .u-mb105-pc {
    margin-bottom: 105px;
  }
  .u-mt110-pc {
    margin-top: 110px;
  }
  .u-mb110-pc {
    margin-bottom: 110px;
  }
  .u-mt115-pc {
    margin-top: 115px;
  }
  .u-mb115-pc {
    margin-bottom: 115px;
  }
  .u-mt120-pc {
    margin-top: 120px;
  }
  .u-mb120-pc {
    margin-bottom: 120px;
  }
  .u-mt125-pc {
    margin-top: 125px;
  }
  .u-mb125-pc {
    margin-bottom: 125px;
  }
  .u-mt130-pc {
    margin-top: 130px;
  }
  .u-mb130-pc {
    margin-bottom: 130px;
  }
  .u-mt135-pc {
    margin-top: 135px;
  }
  .u-mb135-pc {
    margin-bottom: 135px;
  }
  .u-mt140-pc {
    margin-top: 140px;
  }
  .u-mb140-pc {
    margin-bottom: 140px;
  }
  .u-mt145-pc {
    margin-top: 145px;
  }
  .u-mb145-pc {
    margin-bottom: 145px;
  }
  .u-mt150-pc {
    margin-top: 150px;
  }
  .u-mb150-pc {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 550px) {
  .u-mt5-sp {
    margin-top: 5px;
  }
  .u-mb5-sp {
    margin-bottom: 5px;
  }
  .u-mt10-sp {
    margin-top: 10px;
  }
  .u-mb10-sp {
    margin-bottom: 10px;
  }
  .u-mt15-sp {
    margin-top: 15px;
  }
  .u-mb15-sp {
    margin-bottom: 15px;
  }
  .u-mt20-sp {
    margin-top: 20px;
  }
  .u-mb20-sp {
    margin-bottom: 20px;
  }
  .u-mt25-sp {
    margin-top: 25px;
  }
  .u-mb25-sp {
    margin-bottom: 25px;
  }
  .u-mt30-sp {
    margin-top: 30px;
  }
  .u-mb30-sp {
    margin-bottom: 30px;
  }
  .u-mt35-sp {
    margin-top: 35px;
  }
  .u-mb35-sp {
    margin-bottom: 35px;
  }
  .u-mt40-sp {
    margin-top: 40px;
  }
  .u-mb40-sp {
    margin-bottom: 40px;
  }
  .u-mt45-sp {
    margin-top: 45px;
  }
  .u-mb45-sp {
    margin-bottom: 45px;
  }
  .u-mt50-sp {
    margin-top: 50px;
  }
  .u-mb50-sp {
    margin-bottom: 50px;
  }
  .u-mt55-sp {
    margin-top: 55px;
  }
  .u-mb55-sp {
    margin-bottom: 55px;
  }
  .u-mt60-sp {
    margin-top: 60px;
  }
  .u-mb60-sp {
    margin-bottom: 60px;
  }
  .u-mt65-sp {
    margin-top: 65px;
  }
  .u-mb65-sp {
    margin-bottom: 65px;
  }
  .u-mt70-sp {
    margin-top: 70px;
  }
  .u-mb70-sp {
    margin-bottom: 70px;
  }
  .u-mt75-sp {
    margin-top: 75px;
  }
  .u-mb75-sp {
    margin-bottom: 75px;
  }
  .u-mt80-sp {
    margin-top: 80px;
  }
  .u-mb80-sp {
    margin-bottom: 80px;
  }
  .u-mt85-sp {
    margin-top: 85px;
  }
  .u-mb85-sp {
    margin-bottom: 85px;
  }
  .u-mt90-sp {
    margin-top: 90px;
  }
  .u-mb90-sp {
    margin-bottom: 90px;
  }
  .u-mt95-sp {
    margin-top: 95px;
  }
  .u-mb95-sp {
    margin-bottom: 95px;
  }
  .u-mt100-sp {
    margin-top: 100px;
  }
  .u-mb100-sp {
    margin-bottom: 100px;
  }
  .u-mt105-sp {
    margin-top: 105px;
  }
  .u-mb105-sp {
    margin-bottom: 105px;
  }
  .u-mt110-sp {
    margin-top: 110px;
  }
  .u-mb110-sp {
    margin-bottom: 110px;
  }
  .u-mt115-sp {
    margin-top: 115px;
  }
  .u-mb115-sp {
    margin-bottom: 115px;
  }
  .u-mt120-sp {
    margin-top: 120px;
  }
  .u-mb120-sp {
    margin-bottom: 120px;
  }
  .u-mt125-sp {
    margin-top: 125px;
  }
  .u-mb125-sp {
    margin-bottom: 125px;
  }
  .u-mt130-sp {
    margin-top: 130px;
  }
  .u-mb130-sp {
    margin-bottom: 130px;
  }
  .u-mt135-sp {
    margin-top: 135px;
  }
  .u-mb135-sp {
    margin-bottom: 135px;
  }
  .u-mt140-sp {
    margin-top: 140px;
  }
  .u-mb140-sp {
    margin-bottom: 140px;
  }
  .u-mt145-sp {
    margin-top: 145px;
  }
  .u-mb145-sp {
    margin-bottom: 145px;
  }
  .u-mt150-sp {
    margin-top: 150px;
  }
  .u-mb150-sp {
    margin-bottom: 150px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* font-size
――――――――――――――――――――――――――――――――――――――――――――――*/
@media screen and (min-width: 1001px) {
  .u-fz10-pc {
    font-size: 10px;
  }
  .u-fz11-pc {
    font-size: 11px;
  }
  .u-fz12-pc {
    font-size: 12px;
  }
  .u-fz13-pc {
    font-size: 13px;
  }
  .u-fz14-pc {
    font-size: 14px;
  }
  .u-fz15-pc {
    font-size: 15px;
  }
  .u-fz16-pc {
    font-size: 16px;
  }
  .u-fz17-pc {
    font-size: 17px;
  }
  .u-fz18-pc {
    font-size: 18px;
  }
  .u-fz19-pc {
    font-size: 19px;
  }
  .u-fz20-pc {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .u-fz10-sp {
    font-size: 10px;
  }
  .u-fz11-sp {
    font-size: 11px;
  }
  .u-fz12-sp {
    font-size: 12px;
  }
  .u-fz13-sp {
    font-size: 13px;
  }
  .u-fz14-sp {
    font-size: 14px;
  }
  .u-fz15-sp {
    font-size: 15px;
  }
  .u-fz16-sp {
    font-size: 16px;
  }
  .u-fz17-sp {
    font-size: 17px;
  }
  .u-fz18-sp {
    font-size: 18px;
  }
  .u-fz19-sp {
    font-size: 19px;
  }
  .u-fz20-sp {
    font-size: 20px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* font
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-fwb {
  font-weight: bold;
}

.u-fw600 {
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */