@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@1,400;1,700&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css);
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
@import url(fix.css);
* {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  outline: 1px solid transparent;
}

@​media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s;
    transition-duration: 0.001s;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  /* smooth scroll */
  scroll-behavior: smooth;
  height: 100%;
  font-size: 0.625rem;
}

body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/*-- EllyLoel/reset --*/
body {
  text-rendering: optimizeLegibility;
  margin: 0;
  background-color: #fff;
  color: #fff;
  font-family: "Noto Sans JP", "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 400;
  position: relative;
  background-size: contain;
  min-height: 100dvh;
  letter-spacing: 2px;
  /*コンテンツはみだしによるスクロールバー防止*/
}

/* stickey */
header {
  position: sticky;
  top: 0;
}

footer {
  position: sticky;
  bottom: 0;
}

pre {
  white-space: pre-wrap;
}

:root {
  line-sizing: normal;
}

:root {
  text-spacing: trim-start allow-end trim-adjacent ideograph-alpha ideograph-numeric;
}

img {
  border-style: none;
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, address, figcaption, blockquote {
  letter-spacing: 2px;
  line-height: 1.85;
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

a {
  word-break: break-all;
  outline: 0;
  transition: all 100ms linear;
}

a {
  color: #f40;
}

p, p > span {
  letter-spacing: 2px;
}

* > span {
  font-size: inherit;
}

address {
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 1px;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

sup {
  font-size: 0.6em;
}

.bk {
  color: #000;
}

.red {
  color: #e50012;
}

@media screen and (max-width: 320px) {
  a, p, li, dt, dd, th, td, address {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
  * span {
    font-size: inherit;
  }
}
picture {
  display: block;
}

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

video {
  width: 100%;
  margin: 0 auto 2em;
}

/*----------------------------------------------------
  Common
----------------------------------------------------*/
section#wrapper {
  animation: fadein 3s forwards;
}

section#wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
section#wrapper .container {
  padding: 0;
}
section#wrapper .container .row {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  section#wrapper .container .row {
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  section#wrapper .container .row {
    max-width: 1024px;
  }
}

.bizHours {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: bold;
  display: block;
  margin-top: 10px;
  line-height: 1.4;
  letter-spacing: 2px;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 150, 0, 0.6);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

* a[class^=mailto] {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 16px);
  display: inline-block;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.8em;
  height: 1.8em;
  line-height: 1.6em;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 1em;
  margin-bottom: 0.5em;
}
* a[class^=mailto]:active {
  background-color: rgba(255, 255, 255, 0.5);
  color: #ff9600;
}
@media screen and (min-width: 1024px) {
  * a[class^=mailto]:hover {
    color: #ff9600;
  }
}

a.mailto2 {
  background-color: rgba(204, 46, 39, 0.8);
}
a.mailto2:active {
  background-color: rgba(204, 46, 39, 0.4);
}

/* [class^="oversubs"]{
  p:first-child{
    color: $c-red;
    font-size: clamp(20px, 13vw, 75px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px #fff,
      -2px -2px 2px #fff,
      2px -2px 2px #fff,
      -2px 2px 2px #fff,
      2px 2px 5px #fff,
      -2px -2px 5px #fff,
      2px -2px 5px #fff,
      -2px 2px 5px #fff;
    margin-inline: auto;
    transform: rotate(5deg);
    //position: absolute;
    top: 1em;
    left: 0;
    right: 0;
    z-index: 999;

    @include mq-lg {
      top: 1em;
    }
  }
  p:last-child {
    color: #fff;
    font-weight: normal;
    font-size: clamp(14px, 4vw, 16px);
  }
} */
form {
  display: block;
  width: 100%;
}

button, input, select, textarea {
  color: #3c3c3c;
  font-family: inherit;
  font-size: 100%;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

button:focus {
  outline: 0;
  background-color: transparent;
  border: 0 solid transparent;
}

input[type=text], input[type=tel], input[type=email], input[type=password], input[type=tel] {
  padding: 1rem 0.5rem;
  line-height: 2.5em;
  height: 2.5em;
}
input[type=text], input[type=tel], input[type=email], input[type=password], input[type=date] {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  margin: 0 6px 10px 0;
  min-height: 30px;
}

select {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  padding: 0.6rem;
  min-height: 30px;
  font-size: 1.4rem;
}

textarea {
  border: solid 2px #ccc;
  border-radius: 3px;
  padding: 1rem;
  min-height: 12em;
  display: block;
  width: 100%;
  font-size: 1.4rem;
}

input[type=submit] {
  border: solid #ddd 1px;
  border-radius: 5px;
  padding: 0 1em;
  height: 2.2em;
  line-height: 2.2em;
  font-size: 1.6rem;
}

/*-- header --*/
header {
  width: 100%;
  position: relative;
  background-color: #cc2e27;
}
header .container {
  background: url("../images/header_bg_sp.png") center top/100% auto no-repeat;
  background-attachment: scroll;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1024px) {
  header .container {
    background: url("../images/header_bg_pc.png") center top/100% auto no-repeat;
    background-attachment: fixed;
    height: 800px;
  }
}
@media screen and (min-width: 1280px) {
  header .container {
    height: 1000px;
  }
}
header .container:before {
  content: "";
  background-color: rgba(204, 46, 39, 0.25);
  mix-blend-mode: multiply;
  display: block;
  width: 100%;
  height: 120vh;
  position: absolute;
  top: -5vw;
  right: -50vw;
  transform: rotate(25deg);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  header .container:before {
    top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  header .container:before {
    height: 1300px;
  }
}
header .container:after {
  content: "";
  background-color: rgba(204, 46, 39, 0.1);
  mix-blend-mode: multiply;
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 92vw;
  left: -40vw;
  transform: rotate(-65deg);
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  header .container:after {
    height: 1000px;
    top: 800px;
  }
}
header .container div.topLogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 1024px) {
  header .container div.topLogo {
    width: 1024px;
    margin: 0 auto;
  }
}
header .container div.topLogo h1 {
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  padding: 10vw 0 0 20px;
  width: 60%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  header .container div.topLogo h1 {
    padding: 10vw 0 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  header .container div.topLogo h1 {
    padding: 30px 0 0 30px;
    width: 270px;
  }
}
@media screen and (min-width: 1280px) {
  header .container div.topLogo h1 {
    padding-top: 60px;
    width: 100%;
  }
}
header .container div.topLogo h1 img {
  width: 100%;
  max-width: 360px;
}
header .container div.topLogo div {
  width: 19vw;
  position: absolute;
  top: 1em;
  right: 2.5em;
}
@media screen and (min-width: 1024px) {
  header .container div.topLogo div {
    width: 120px;
    top: 10px;
    right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  header .container div.topLogo div {
    width: 150px;
    top: 20px;
    right: 0px;
  }
}
header .container .row {
  padding: 0 0;
}
header .container .row #topImage {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 2;
}
header .container .row #topImage ul {
  margin: 10vw auto 0;
  padding: 0 20px;
  height: 65vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul {
    max-width: 960px;
    height: 680px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 1024px) {
  header .container .row #topImage ul {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1280px) {
  header .container .row #topImage ul {
    margin-top: 100px;
  }
}
header .container .row #topImage ul li {
  position: relative;
}
header .container .row #topImage ul > li:nth-child(1) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul > li:nth-child(1) {
    top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  header .container .row #topImage ul > li:nth-child(1) {
    width: 680px;
    margin: 0 auto;
    left: -5vw;
  }
}
@media screen and (min-width: 1280px) {
  header .container .row #topImage ul > li:nth-child(1) {
    width: 800px;
    top: 40px;
  }
}
header .container .row #topImage ul > li:nth-child(2) {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80vw;
  height: auto;
  margin: 7vw auto 0;
  display: grid;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul > li:nth-child(2) {
    width: 77%;
    margin-top: 150px;
  }
}
@media screen and (min-width: 1024px) {
  header .container .row #topImage ul > li:nth-child(2) {
    width: 720px;
    margin-top: 130px;
    left: -5vw;
  }
}
@media screen and (min-width: 1280px) {
  header .container .row #topImage ul > li:nth-child(2) {
    margin-top: 250px;
  }
}
header .container .row #topImage ul > li:nth-child(2) > ol {
  padding: 0 3vw;
}
header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(2) {
  margin-top: 0.6em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(2) > a {
  width: 41%;
}
header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(2) > a:active {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(2) > a:hover {
    opacity: 0.8;
  }
}
header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(2) > img {
  width: 18%;
}
header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(3) {
  margin-top: 0.6em;
  padding: 0 2em;
}
@media screen and (min-width: 1024px) {
  header .container .row #topImage ul > li:nth-child(2) > ol {
    padding: 0;
    display: grid;
    grid-template-rows: auto; /* 行を2つに分割、高さを均等に */
    grid-template-columns: 50% 50%; /* 1列目は残りのスペース、2列目は50%の幅 */
    justify-items: stretch;
    grid-template-areas: "header2-3 header2-1" "header2-3 header2-2";
  }
  header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(1) {
    grid-column: 2/2;
    grid-row: 2/1;
  }
  header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(2) {
    margin-top: -40px;
    grid-column: 2/2;
    grid-row: 2/2;
  }
  header .container .row #topImage ul > li:nth-child(2) > ol > li:nth-child(3) {
    margin-top: 15px;
    padding: 0 2.7em 0 0;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
header .container .row #topImage ul > li:nth-child(3) {
  width: 55vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -45vw;
  right: 28vw;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul > li:nth-child(3) {
    width: 320px;
    height: -moz-fit-content;
    height: fit-content;
    bottom: unset;
    top: -200px;
    right: 100px;
  }
}
@media screen and (min-width: 1024px) {
  header .container .row #topImage ul > li:nth-child(3) {
    width: 280px;
    top: -70px;
    right: -20px;
  }
}
@media screen and (min-width: 1280px) {
  header .container .row #topImage ul > li:nth-child(3) {
    width: 420px;
    top: -120px;
    right: -60px;
  }
}
header .container .row #topImage + p {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 2em 20px;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage + p {
    text-align: center;
    font-size: clamp(16px, 6vw, 21px);
    letter-spacing: 3px;
  }
}
header .container .row #topImage + p br {
  display: none;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage + p br {
    display: block;
  }
}
header .container .row .scrolldown {
  position: absolute;
  font-size: 10px;
  letter-spacing: 1px;
  width: 5.5em;
  bottom: 20px;
  right: 0;
  display: block;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  header .container .row .scrolldown {
    bottom: 50px;
    right: 5%;
  }
}
@media screen and (min-width: 1024px) {
  header .container .row .scrolldown {
    right: 17%;
  }
}
header .container .row .scrolldown:before {
  content: "\f309";
  font-family: "Font Awesome 5 Free";
  font-size: clamp(2em, 6vw, 3em);
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: -10px;
  animation: arrowmove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (min-width: 768px) {
  header .container .row .scrolldown:before {
    left: -12px;
    animation: arrowmove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
}
header .container .row .scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  header .container .row .scrolldown:after {
    height: 200px;
  }
}
header .container .row .scrolldown span {
  position: absolute;
  top: -120px;
  left: 0;
  transform: translate(-50%, 0%);
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  header .container .row .scrolldown span {
    top: -220px;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 195px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrowmove-sp {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: -5px;
  }
}

footer {
  background-color: #cc2e27;
  display: block;
  min-height: 4em;
}
footer .footerBtm {
  display: block;
  padding: 0.5em 0;
  margin: 0 auto;
}
footer .footerBtm p.copy {
  color: #e5e5ee;
  font-size: 10px;
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  margin: 2em auto;
}
@media screen and (min-width: 768px) {
  footer .footerBtm p.copy {
    letter-spacing: 2px;
    line-height: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  footer .footerBtm p.copy {
    line-height: 1em;
    height: 1em;
  }
}

#pagetopBtn {
  overflow: hidden;
  border-radius: 50%;
  position: fixed !important;
  z-index: 9999;
  text-align: center;
  text-decoration: none;
  transform: rotateY(270deg);
  transition: 0.5s;
  height: 55px;
  width: 55px;
  bottom: 20px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  #pagetopBtn {
    height: 75px;
    width: 75px;
    bottom: 20px;
    right: 25px;
  }
}
#pagetopBtn a {
  background-color: #ff9600;
  color: #000;
  font-size: 10px;
  font-family: "Oswald";
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 55px;
  height: 55px;
  width: 55px;
  display: block;
  position: relative;
  filter: saturate(100%);
}
#pagetopBtn a:active {
  background-color: #ffe0b3;
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  #pagetopBtn a {
    font-size: 13px;
    line-height: 75px;
    height: 75px;
    width: 75px;
  }
  #pagetopBtn a:hover {
    background-color: #ffe0b3;
    filter: saturate(200%);
    text-decoration: none;
  }
  #pagetopBtn a:active {
    background-color: #ff9600;
    filter: none;
  }
}
#pagetopBtn a:after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  color: #000;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  #pagetopBtn a:after {
    font-size: 12px;
    top: -28px;
  }
}

[class^=paraImage] {
  margin: 0 auto;
  width: 100%;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: scroll;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  [class^=paraImage] {
    height: 250px;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media screen and (min-width: 1024px) {
  [class^=paraImage] {
    height: 400px;
  }
}

.paraImage1 {
  background-image: url(../images/bg_ph01_sp.jpg);
  background-position: center center;
  background-size: 130% auto;
}
@media screen and (min-width: 768px) {
  .paraImage1 {
    background-image: url(../images/bg_ph01_pc.jpg);
    background-position: center center;
    background-size: 100% auto;
    background-attachment: fixed;
  }
}

.paraImage2 {
  background-image: url(../images/bg_ph02_sp.jpg);
  background-position: center center;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .paraImage2 {
    background-image: url(../images/bg_ph02_pc.jpg);
    background-position: center center;
    background-size: 100% auto;
    background-attachment: fixed;
  }
}

section#content01,
section#content03,
section#content06,
section#content07,
section#content08 {
  background-color: #22232b;
  min-height: 70vh;
}

section#content02,
section#content04,
section#content07 {
  background-color: #cc2e27;
}

section#content01:before,
section#content04:before,
section#content05:before,
section#content06:before {
  content: "";
  background: #22232b;
  position: absolute;
  left: 0;
  right: 0;
  top: -15vh;
  height: 25vh;
  width: 120%;
  display: block;
  transform: skewY(-15deg);
}
@media screen and (min-width: 1024px) {
  section#content01:before,
  section#content04:before,
  section#content05:before,
  section#content06:before {
    transform: skewY(-8deg);
  }
}
section#content01:after,
section#content04:after,
section#content05:after,
section#content06:after {
  content: "";
  background: #cc2e27;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15vh;
  height: 25vh;
  width: 120%;
  display: block;
  transform: skewY(-15deg);
}
@media screen and (min-width: 768px) {
  section#content01:after,
  section#content04:after,
  section#content05:after,
  section#content06:after {
    bottom: -10vh;
  }
}
@media screen and (min-width: 1024px) {
  section#content01:after,
  section#content04:after,
  section#content05:after,
  section#content06:after {
    transform: skewY(-8deg);
  }
}
section#content01 article,
section#content04 article,
section#content05 article,
section#content06 article {
  padding: 0 0 100px;
  z-index: 9;
}
@media screen and (min-width: 1024px) {
  section#content01 article,
  section#content04 article,
  section#content05 article,
  section#content06 article {
    padding-bottom: 200px;
  }
}

section#content01:before {
  display: none;
}
section#content01:after {
  content: "";
  background: #cc2e27;
}

section#content04:before {
  content: "";
  background: #cc2e27;
}
section#content04:after {
  content: "";
  background: #22232b;
}

section#content05:before {
  content: "";
  background: #cc2e27;
}
section#content05:after {
  content: "";
  background: #22232b;
}

section#content06:before {
  content: "";
  background: #22232b;
}
section#content06:after {
  content: "";
  background: #cc2e27;
}

section[id^=content] {
  padding: 0;
  margin-bottom: 0;
  height: auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
section[id^=content] .container {
  padding: 0;
}
section[id^=content] .container .row {
  padding: 30px 10vw 60px;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row {
    padding: 30px 40px 60px;
  }
}
section[id^=content] .container .row article {
  width: 100%;
  height: auto;
  position: relative;
}
section[id^=content] .container .row h2 {
  font-size: clamp(16px, 6vw, 21px);
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 2em;
}
section[id^=content] .container .row h2.title {
  color: #fff;
  font-weight: 700;
  margin: 0 auto 2em;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}
section[id^=content] .container .row h2.title:before {
  content: "\f45f";
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  left: -0.3em;
  bottom: -0.05em;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row h2.title {
    font-size: 45px;
  }
}
section[id^=content] .container .row .titleBar {
  border-bottom: solid 1px #e5e5ee;
  width: 100%;
  margin-bottom: 1.5em;
}
section[id^=content] .container .row .titleBar h2 {
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 0.5em;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .titleBar h2 {
    font-size: clamp(24px, 11vw, 32px);
  }
}
section[id^=content] .container .row [class^=subtitle] {
  width: calc(100% + 40px);
  padding: 15px 0;
  margin: 0 -20px 20px;
  position: relative;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row [class^=subtitle] {
    width: calc(100% + 80px);
    margin: 0 -40px 20px;
  }
}
section[id^=content] .container .row [class^=subtitle] h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: auto auto;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row [class^=subtitle] h3 {
    font-size: clamp(20px, 10vw, 32px);
  }
}
section[id^=content] .container .row .title2 h2 {
  color: #cc2e27;
}
section[id^=content] .container .row .phImage {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .phImage {
    margin: 60px auto;
    max-width: 600px;
  }
}
section[id^=content] .container .row .phImage picture + picture {
  margin-top: 5px;
}
section[id^=content] .container .row p, section[id^=content] .container .row li, section[id^=content] .container .row dt, section[id^=content] .container .row dd {
  font-size: 3.7vw;
  line-height: 1.85;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row p, section[id^=content] .container .row li, section[id^=content] .container .row dt, section[id^=content] .container .row dd {
    font-size: clamp(14px, 4vw, 16px);
  }
}
section[id^=content] .container .row p + p {
  margin-top: 1.5em;
}
section[id^=content] .container .row .entryBtn {
  background-color: #fff;
  width: 100%;
  max-width: 680px;
  position: relative;
  margin: 2em auto 2em;
  filter: drop-shadow(#22232b 2px 2px 1px);
}
section[id^=content] .container .row .entryBtn a {
  width: 100%;
  height: 60px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .entryBtn a {
    height: 120px;
  }
}
section[id^=content] .container .row .entryBtn a:after {
  content: "▼";
  color: #ff9600;
  font-size: 0.5em;
  position: absolute;
  bottom: 6px;
  right: 6px;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .entryBtn a:after {
    bottom: 1em;
    right: 1em;
    font-size: 10px;
  }
}
section[id^=content] .container .row .entryBtn a span {
  color: #ff9600;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .entryBtn a span {
    font-size: clamp(24px, 9vw, 32px);
  }
}
section[id^=content] .container .row .entryBtn a:active {
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .entryBtn a:hover {
    filter: saturate(200%);
  }
}
section[id^=content] .container .row .mailBtn {
  background-color: #fff;
  width: 100%;
  max-width: 680px;
  display: block;
  width: 100%;
  height: 60px;
  margin: 0 auto 1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(#22232b 2px 2px 1px);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .mailBtn {
    height: 120px;
  }
}
section[id^=content] .container .row .mailBtn:before {
  content: "\f0e0";
  color: rgba(204, 46, 39, 0.3);
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: clamp(2.5em, 7vw, 55px);
  line-height: 40px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  left: 2vh;
  transform: rotate(-15deg);
  z-index: 9;
}
section[id^=content] .container .row .mailBtn:after {
  content: "▼";
  color: #ff9600;
  font-size: 0.5em;
  position: absolute;
  bottom: 6px;
  right: 6px;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .mailBtn:after {
    bottom: 1em;
    right: 1em;
    font-size: 10px;
  }
}
section[id^=content] .container .row .mailBtn a {
  width: 100%;
  height: 60px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .mailBtn a {
    height: 120px;
  }
}
section[id^=content] .container .row .mailBtn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section[id^=content] .container .row .mailBtn a span {
  color: #ff9600;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.25;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .mailBtn a span {
    font-size: clamp(24px, 9vw, 32px);
  }
}
section[id^=content] .container .row .mailBtn a:active {
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  section[id^=content] .container .row .mailBtn a:hover {
    filter: saturate(200%);
  }
}
section[id^=content] .container .row .mailBtn + p {
  font-size: clamp(10px, 3vw, 13px);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  section#content01 {
    min-height: 100vh;
  }
}
section#content01 video {
  display: block;
}
@media screen and (min-width: 768px) {
  section#content01 video {
    max-width: 1080px;
    height: auto;
    margin: 0 auto 2em;
  }
}
@media screen and (min-width: 1280px) {
  section#content01 video {
    margin: 60px auto;
  }
}
section#content01 .container {
  background-color: rgba(34, 35, 43, 0.2);
}
@media screen and (min-width: 1024px) {
  section#content01 .container .row article .txt {
    width: 650px;
    margin: 0 auto 60px;
  }
}
@media screen and (min-width: 1024px) {
  section#content01 .container .row article .txt p {
    font-size: 20px;
  }
}
section#content01 .container .row article .wish {
  margin: 2em auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .wish {
    margin: 40px auto;
  }
}
@media screen and (min-width: 1024px) {
  section#content01 .container .row article .wish {
    width: 650px;
    margin-bottom: 60px;
  }
}
section#content01 .container .row article .wish li {
  color: #ff9600;
  font-size: clamp(14px, 4vw, 20px);
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-left: 2em;
  text-indent: -1.5em;
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .wish li {
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1024px) {
  section#content01 .container .row article .wish li {
    line-height: 2em;
    font-size: 24px;
  }
}
section#content01 .container .row article .wish li + li {
  margin-top: 10px;
}
section#content01 .container .row article .wish li::first-letter {
  color: #ff9600;
}
section#content01 .container .row article .teamTitle {
  background-color: #cc2e27;
  display: block;
  padding: 20px 10px;
  margin: 6em -10vw 0;
  width: calc(100% + 20vw);
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .teamTitle {
    margin: 2em auto 0;
    width: 100%;
  }
}
section#content01 .container .row article .teamTitle h2 {
  color: #fff;
  font-size: clamp(16px, 5vw, 25px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .teamTitle h2 br {
    display: none;
  }
}
section#content01 .container .row article ul.teamList {
  margin: 0 -10vw 4em;
  width: calc(100% + 20vw);
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article ul.teamList {
    margin: 0 auto 100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section#content01 .container .row article ul.teamList > li {
  border-bottom: 1px solid #e0655f;
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article ul.teamList > li {
    width: 50%;
    display: block;
  }
}
section#content01 .container .row article ul.teamList > li > h3 {
  font-size: clamp(16px, 5vw, 20px);
  font-weight: bold;
  color: #fff;
  background-color: #e0655f;
  height: 2em;
  line-height: 2em;
  padding: 0 1em;
}
section#content01 .container .row article ul.teamList > li > ul {
  padding: 0.6em 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  background-color: rgba(255, 255, 255, 0.1);
}
section#content01 .container .row article ul.teamList > li > ul > li {
  display: block;
  max-width: 60%;
  padding-right: 15px;
  font-size: 1.1em;
  font-weight: bold;
}
section#content01 .container .row article ul.teamList > li > ul > li::before {
  content: "●";
  color: rgba(204, 46, 39, 0.7);
  font-size: 0.8em;
  margin-right: 0.2em;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article ul.teamList > li:nth-child(even) {
    border-left: 0 none;
  }
}
section#content01 .container .row article .voice {
  margin: 2em auto;
}
section#content01 .container .row article .voice > div {
  background-color: #cc2e27;
  display: block;
  padding: 20px 10px;
  margin: 2em -10vw 0;
  width: calc(100% + 20vw);
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .voice > div {
    margin: 2em auto 0;
    width: 100%;
  }
}
section#content01 .container .row article .voice > div h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .voice > div h3 {
    font-size: clamp(20px, 9vw, 34px);
  }
}
section#content01 .container .row article .voice ul {
  width: 100%;
  padding: 1em 0;
}
section#content01 .container .row article .voice ul li {
  letter-spacing: 1px;
  padding-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  section#content01 .container .row article .voice ul li {
    letter-spacing: 2px;
  }
}
section#content01 .container .row article .voice ul li + li {
  margin-top: 10px;
  border-top: dotted 1px #cc2e27;
}
section#content01 .container .row article .voice ul li::first-letter {
  color: #cc2e27;
}

section#content02 .container .row article ul.info {
  border-bottom: 1px solid #fff;
}
section#content02 .container .row article ul.info li {
  padding: 1.5em 0.5em;
  border-top: 1px solid #fff;
}
section#content02 .container .row article ul.info li time {
  color: #ff9600;
  display: block;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: bold;
}
section#content02 .container .row article ul.info li p {
  font-weight: bold;
  display: block;
}
section#content02 .container .row .pageAnker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4em 0 0;
}
section#content02 .container .row .pageAnker a {
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.2em, 3.5vw, 21px);
  display: block;
  width: 45%;
  line-height: 2em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  section#content02 .container .row .pageAnker a {
    font-size: clamp(3em, 8vw, 21px);
  }
}
section#content02 .container .row .pageAnker a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: relative;
  right: -0.3em;
}

section#content04 .container .row {
  padding-top: 15em;
}
section#content04 .container .row article p:nth-child(3) {
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  section#content05 {
    min-height: 100vh;
  }
}
section#content06 .container .row article .location .phImage {
  margin: 0 auto;
  max-width: 720px;
}
@media screen and (min-width: 1280px) {
  section#content06 .container .row article .location .phImage {
    max-width: 944px;
  }
}
section#content06 .container .row article .location p.txt {
  margin-top: 1em;
}
section#content06 .container .row article .location ul {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  section#content06 .container .row article .location ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section#content06 .container .row article .location ul li {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  section#content06 .container .row article .location ul li {
    margin-top: 4px;
    width: calc(50% - 2px);
  }
}
@media screen and (min-width: 1024px) {
  section#content06 .container .row article .location ul li {
    width: calc(33.333% - 2px);
  }
}
section#content06 .container .row article .inn {
  margin-top: 60px;
  margin-bottom: clamp(60px, 15vw, 200px);
}
section#content06 .container .row article .inn p {
  margin-bottom: 2em;
}
section#content06 .container .row article .inn p.cat1 {
  color: #ff9600;
  font-size: 4.2vw;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  position: relative;
  margin-bottom: 0.1em;
  left: 5vw;
  transform: rotate(-5deg);
  z-index: 9;
}
@media screen and (min-width: 768px) {
  section#content06 .container .row article .inn p.cat1 {
    font-size: clamp(24px, 12vw, 36px);
    margin-left: 1em;
  }
}
section#content06 .container .row article .inn > img {
  margin-bottom: 2em;
}
section#content06 .container .row article .inn > img + img {
  max-width: 70%;
  margin: 6em auto;
}
@media screen and (min-width: 768px) {
  section#content06 .container .row article .inn > img + img {
    width: 250px;
  }
}
section#content06 .container .row article .map {
  margin-bottom: 60px;
}
section#content06 .container .row article .map .txt {
  font-size: clamp(12px, 4vw, 16px);
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section#content06 .container .row article .map .txt br {
    display: none;
  }
}
section#content06 .container .row article .map iframe {
  width: 100%;
  height: 50vh;
}
section#content06 .container .row article .map a > span {
  color: #fff;
  display: inline-block;
  line-height: 2em;
  margin-top: 0.5em;
}

section#content07.guidelines .container .row article ul li {
  margin-bottom: 1.5em;
}
section#content07.guidelines .container .row article ul li h3 {
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1em;
}
section#content07.guidelines .container .row article ul li p {
  color: #fff;
}
section#content07.guidelines .container .row article ul li span.inident1 {
  padding-right: 4em;
}
section#content07.guidelines .container .row article ul li span.plus {
  font-size: clamp(18px, 8vw, 25px);
  font-weight: bold;
  display: block;
  text-align: center;
  width: 70%;
}

/*
      .faq {
        .qa {
          width: 100%;
          margin-bottom: 10px;
          border: none;
          border-radius: 5px;
          box-shadow: 0 4px 4px rgb(0 0 0 / 10%), 0 2px 3px -2px rgba(0 0 0 / 10%);
          background-color: lighten($c-base, 70%);

          summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding: 1em 2em 1em 3em;
            color: #333333;
            font-size: clamp(14px, 4vw, 16px);
            font-weight:bold;
            cursor: pointer;
            &::before {
              position: absolute;
              left: 1em;
              font-weight: 600;
              font-size: 1.3em;
            }
          }
          p::before {
            position: absolute;
            left: 1em;
            font-weight: 600;
            font-size: 1.3em;
          }
          summary {
            &::before {
              color: #75bbff;
              content: "Q";
            }
            &::after {
              transform: translateY(-25%) rotate(45deg);
              width: 7px;
              height: 7px;
              margin-left: 10px;
              border-bottom: 3px solid #333333b3;
              border-right: 3px solid #333333b3;
              content: '';
              transition: transform .5s;
            }
          }
          &[open] summary::after {
            transform: rotate(225deg);
          }
          p {
            position: relative;
            transform: translateY(-10px);
            opacity: 0;
            margin: 0;
            padding: .3em 3em 1.5em;
            color: #333;
            transition: transform .5s, opacity .5s;
            font-size: clamp(14px, 4vw, 16px);
          }
          &[open] p {
            opacity: 1;
          }
          p::before {
            color: #ff8d8d;
            line-height: 1.2;
            content: "A";
          }
        }
      }
 *//*# sourceMappingURL=style.css.map */