@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho&display=swap");
/* カラー---------------- */
.color1 {
  color: #fff;
}

.color2 {
  color: #000;
}

.color3 {
  color: #ca0001;
}

.color4 {
  color: #650000;
}

.color5 {
  color: #410002;
}

.color6 {
  color: #9a9a9a;
}

.color7 {
  color: #b0b0b0;
}

/* 基本スタイル---------------- */
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 47px;
  }
}

body {
  margin: 0;
  color: #fff;
  background: #ca0001;
  text-align: justify;
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  -webkit-text-size-adjust: 100%;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-size: 100%;
  font-weight: 700;
}

ol,
ul {
  list-style: none;
}

ol li,
ul li {
  line-height: 2;
}

img {
  border: 0;
  vertical-align: bottom;
  filter: brightness(105%);
}

@media  {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

a {
  color: #fff;
  outline: none;
  text-decoration: none;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

p {
  word-wrap: break-word;
  line-height: 2;
}

label {
  display: inline-block;
  cursor: pointer;
}

button,
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=button],
select,
textarea {
  font-family: inherit;
  -webkit-appearance: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=button],
textarea {
  color: #000;
  background: #fff;
  border: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=button]:focus,
textarea:focus {
  color: #000;
  background: #fff;
  border: none;
}

input[type=submit],
input[type=button] {
  font-size: 100%;
  cursor: pointer;
}

input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #000;
  vertical-align: middle;
}

select {
  min-width: 7em;
  color: #000;
  background: #fff;
  border: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

/* 基本レイアウト---------------- */
body {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

body.top {
  background: #ca0001 url("../img/bg1.webp") repeat-x;
  background-size: 1920px auto;
}
@media screen and (max-width: 1024px) {
  body.top {
    background: #ca0001 url("../img/bg1_sp.webp") repeat-x;
    background-size: 375px auto;
  }
}

body.sub {
  background: #ca0001 url("../img/bg2.webp");
}
@media screen and (max-width: 1024px) {
  body.sub {
    background: #ca0001 url("../img/bg2_sp.webp");
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

#container {
  width: 100%;
}

.sub #container {
  background: url("../img/bg3.webp") repeat-x;
}

.inner {
  position: relative;
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
  text-align: left;
}

.inner2 {
  position: relative;
  width: 90%;
  max-width: 1279px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1366px) {
  .inner2 {
    max-width: 1200px;
  }
}

.inner3 {
  position: relative;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  text-align: left;
}

/* ヘッダー---------------- */
#head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 1000;
  transition: all 0.3s;
}
@media screen and (max-width: 1279px) {
  #head {
    height: 100px;
  }
}

.open .header {
  height: 150px !important;
  background-color: #fff;
}
.header.scroll {
  background: rgb(255, 255, 255);
}

.head_in {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#head_logo {
  width: 300px;
  padding: 44px 0 0 4.9%;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  #head_logo {
    width: 210px;
    padding: 16px 0 0 20px;
  }
}
#head_logo img {
  max-width: 100%;
  height: auto;
}

#head_navi {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: calc(100% - 300px);
  padding: 44px 4.9% 0 0;
}
@media screen and (max-width: 1279px) {
  #head_navi {
    display: none;
  }
}

.nav_menu {
  width: calc(100% - 333px);
  text-align: right;
}

.head_navi_menu {
  display: inline-block;
  margin-right: 15px;
  padding-top: 15px;
  text-align: left;
}
.head_navi_menu > li {
  display: inline-block;
  margin-right: 25px;
  line-height: 1.6;
  font-size: clamp(12px, 1.6vw, 16px);
}
.head_navi_menu > li > a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
.head_navi_menu > li > a:hover {
  opacity: 0.6;
}

.gnavi__list {
  position: relative;
  transition: all 0.3s;
}

.dropdown__lists {
  display: none;
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
}

.dropdown__list {
  background: #650000;
  width: 170px;
  padding: 6px 10px 6px 15px;
  transition: all 0.3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background: #410002;
}

.dropdown__list a {
  display: flex;
  justify-content: flex-start;
  align-items: left;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ca0001;
  border-left: 1px solid #ca0001;
  transform: rotate(135deg);
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
}

.head_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 333px;
}

.head_btn1,
.head_btn2 {
  width: 60px;
  margin-right: 10px;
}
.head_btn1 a,
.head_btn2 a {
  transition: all 0.3s;
}
.head_btn1 a:hover,
.head_btn2 a:hover {
  opacity: 0.7;
}

.head_lang {
  position: fixed;
  z-index: 9999;
  right: 53px;
  top: 42px;
  width: 190px;
}
@media only screen and (max-width: 767px) {
  .head_lang {
    opacity: 0;
    visibility: hidden;
  }
  .open .head_lang {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    top: 109px;
    left: 50%;
    width: 240px;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .head_lang {
    opacity: 0;
    visibility: hidden;
  }
  .open .head_lang {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    top: 109px;
    left: 77%;
    width: 240px;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .head_lang {
    opacity: 0;
    visibility: hidden;
  }
  .open .head_lang {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    top: 109px;
    left: 85%;
    width: 240px;
    transform: translateX(-50%);
  }
}

.gtranslate_wrapper {
  position: relative;
  width: 100%;
  height: 60px;
}
.gtranslate_wrapper:after {
  position: absolute;
  top: 24px;
  right: 22px;
  display: block;
  content: "▼";
  font-size: 10px;
  color: #ca0001;
  z-index: 2;
}
.gtranslate_wrapper select {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 20px;
  border: 1px solid #ca0001;
  border-radius: 30px;
}

/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
  opacity: 0;
  z-index: 1001;
}
.overRayBox > ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.open .overRayBox {
  visibility: visible;
  opacity: 1;
  transform: translateX(70%);
}

.open .overRayBox dt {
  display: none;
}

@media only screen and (max-width: 767px) {
  .open .overRayBox {
    transform: translateX(0%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .open .overRayBox {
    transform: translateX(55%);
  }
}
html.open {
  overflow-y: hidden;
}

.overRayBlock {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  color: #fff;
  background: #ca0001;
}

.overRayImgCard {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .overRayImgCard {
    width: 30%;
  }
}
.overRayTextCard {
  width: 30%;
  padding: 60px 20px;
  background: #ca0001;
}

@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 60px 25px 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayTextCard {
    width: 55%;
    padding: 70px 60px 70px 10px;
  }
}
.overRayMenuUl {
  text-align: left;
  margin-top: 10%;
  padding-bottom: 30px;
}
.overRayMenuUl a {
  text-decoration: none;
  color: #fff;
}
.overRayMenuUl dd,
.overRayMenuUl dt {
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1279px) {
  .overRayMenuUl dd,
  .overRayMenuUl dt {
    font-size: 20px;
  }
}
.overRayMenuUl > li {
  position: relative;
  padding: 1rem 3rem;
}
@media screen and (max-width: 1279px) {
  .overRayMenuUl > li {
    padding: 0.8rem 3rem;
  }
}
.overRayMenuUl > li a {
  display: block;
  transition: 0.3s;
  position: relative;
}
.overRayMenuUl > li a::before, .overRayMenuUl > li a::after {
  position: absolute;
  display: block;
  font-family: "ionicons";
  font-size: 18px;
  line-height: 1;
  top: 50%;
  left: 3.5em;
  transform: translateY(-50%);
  font-weight: 100;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.overRayMenuUl > li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .overRayMenuUl > li a:hover {
    opacity: 1;
  }
}

.overRayMenuUl > li a.hasMegaMenuA::before {
  content: "\f35e";
}

.overRayMenuUl > li a.hasMegaMenuA.on {
  padding-bottom: 5%;
}

.overRayMenuUl > li a.hasMegaMenuA.on::after {
  content: "\f364";
  margin-top: -5px;
}

.overRayMenuUl > li a.hasMegaMenuA.on::before {
  opacity: 0;
}

.splist {
  display: none;
  width: 110%;
  margin-left: -1.5em;
  padding: 0 15%;
}
.splist > li {
  position: relative;
  padding: 0.2em 0;
}

.sp_menu_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 90%;
  max-width: 140px;
  margin: 0 auto 20px;
}

.sp_menu_btn1 {
  width: 60px;
  margin-right: 20px;
}

.sp_menu_btn2 {
  width: 60px;
}

.sp_menu_lang {
  text-align: center;
}

/*ハンバーガーメニュー*/
.menu-btn {
  display: none;
}
@media screen and (max-width: 1279px) {
  .menu-btn {
    display: block;
    position: absolute;
    cursor: pointer;
    z-index: 1005;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    background: #ca0001;
    border: none;
    border-radius: 30px;
  }
}

.menu-btn span:after {
  content: attr(data-txt-menu);
}

.open .menu-btn span:after {
  content: attr(data-txt-close);
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 22px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span {
  background: #fff;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

.menu-trigger.active span:nth-of-type(3)::after {
  content: "";
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/* フッター----------------- */
#footer {
  position: relative;
  padding: 85px 0 30px;
}
@media screen and (max-width: 1024px) {
  #footer {
    padding: 40px 0 30px;
  }
}
#footer .inner {
  position: relative;
  z-index: 2;
}
#footer:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  z-index: 1;
}

.foot_logo {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .foot_logo {
    margin-bottom: 30px;
  }
}

.foot_navi {
  margin-bottom: 30px;
  text-align: center;
}
.foot_navi li {
  display: inline-block;
  margin: 0 10px;
}
@media screen and (max-width: 1024px) {
  .foot_navi li {
    display: block;
    margin: 0 0 7px;
    font-size: 16px;
  }
}
.foot_navi li a {
  transition: all 0.3s;
}
.foot_navi li a:hover {
  opacity: 0.6;
}

.foot_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 784px;
  margin: 0 auto 90px;
}
@media screen and (max-width: 1024px) {
  .foot_btn {
    display: block;
    margin: 0 auto 30px;
  }
}

.btn_store1 {
  width: 48.5%;
  margin-right: 3%;
}
@media screen and (max-width: 1024px) {
  .btn_store1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.btn_store1 a {
  position: relative;
  display: block;
  height: 80px;
  padding-top: 23px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #ca0001;
  transition: all 0.3s;
}
.btn_store1 a:hover {
  opacity: 0.7;
}
.btn_store1 a:after {
  position: absolute;
  top: 25px;
  left: 20px;
  display: block;
  content: "";
  width: 30px;
  height: 31px;
  background: url("../img/icon_cart1.png") no-repeat;
  background-size: 100%;
}

.btn_contact1 {
  width: 48.5%;
}
@media screen and (max-width: 1024px) {
  .btn_contact1 {
    width: 100%;
  }
}
.btn_contact1 a {
  position: relative;
  display: block;
  height: 80px;
  padding-top: 23px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #ca0001;
  transition: all 0.3s;
}
.btn_contact1 a:hover {
  opacity: 0.7;
}
.btn_contact1 a:after {
  position: absolute;
  top: 26px;
  left: 24px;
  display: block;
  content: "";
  width: 27px;
  height: 27px;
  background: url("../img/icon_contact1.png") no-repeat;
  background-size: 100%;
}

.foot_link1 {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .foot_link1 {
    position: static;
    margin-bottom: 30px;
    text-align: center;
  }
}
.foot_link1 a {
  transition: all 0.3s;
}
.foot_link1 a:hover {
  opacity: 0.7;
}

.copyright {
  text-align: center;
}
.copyright small {
  font-size: 14px;
}

/* 汎用スタイル---------------- */
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.img100 img {
  width: 100%;
  height: auto;
}

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

.bold {
  font-weight: 600;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex_st {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: center;
}

.en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.got {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.sippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .mb20 {
    margin-bottom: 15px;
  }
}

.mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px;
  }
}

.mb70 {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 50px;
  }
}

/* アニメーション */
/* スライドイン */
.slidein1.is-animated {
  animation: slideIn1 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn1 {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.slidein2.is-animated {
  animation: slideIn2 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn2 {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.slidein3.is-animated {
  animation: slideIn3 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn3 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
/* ポップアップ */
.popup.is-animated {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes popup {
  0% {
    transform: translateY(50px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
/* 文字がぬるりと現れる */
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
  opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/* フェードイン */
.fadein.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.fadein1.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s 1 forwards;
}

.fadein2.is-animated {
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.6s 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* トップ---------------- */
#top_mv {
  width: 100%;
  padding: 415px 0 60px;
}
@media screen and (max-width: 1024px) {
  #top_mv {
    padding: 145px 0 50px;
  }
}

.top_mv_in {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top_mv_in {
    width: 100%;
  }
}

.top_mv_movie {
  width: 100%;
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .top_mv_movie {
    margin-bottom: 30px;
  }
}
.top_mv_movie video {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .top_mv_movie video {
    border-radius: 0;
  }
}

.top_mv_logo {
  opacity: 0;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top_mv_logo {
    top: -45px;
    width: 89%;
  }
}
.top_mv_logo img {
  max-width: 100%;
  height: auto;
}

.top_mv_copy {
  opacity: 0;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top_mv_copy {
    width: 89%;
    margin: 0 auto 30px;
  }
}

.top_mv_cont {
  opacity: 0;
}

.top_mv_txt {
  margin-bottom: 40px;
  line-height: 2.4;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .top_mv_txt {
    text-align: left;
    font-size: 16px;
  }
}

#top_mv .btn1 a {
  margin: 0 auto;
}

.btn1 a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  height: 80px;
  padding-top: 24px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  background: #650000;
  border-radius: 6px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn1 a {
    width: 98%;
  }
}
.btn1 a:after {
  position: absolute;
  top: 28px;
  right: 19px;
  display: block;
  content: "";
  width: 11px;
  height: 22px;
  background: url("../img/icon_link1.png") no-repeat;
  background-size: 100%;
  transition: all 0.3s;
}
.btn1 a:hover {
  color: #650000;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(93, 0, 0, 0.7));
}
.btn1 a:hover:after {
  background: url("../img/icon_link2.png") no-repeat;
  background-size: 100%;
}

#top_tonkotsu {
  position: relative;
}
@media screen and (max-width: 1024px) {
  #top_tonkotsu {
    padding-bottom: 40px;
  }
}
#top_tonkotsu .inner3 {
  position: relative;
  z-index: 2;
}

.col1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .col1 {
    display: block;
  }
}

.col1_1 {
  order: 2;
  width: 41.7%;
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .col1_1 {
    width: 100%;
    margin-bottom: 10px;
    padding-top: 20px;
    text-align: center;
  }
}

.col1_2 {
  order: 1;
  position: relative;
  width: 49%;
  margin: 0 8.1% 0 1.2%;
}
@media screen and (max-width: 1024px) {
  .col1_2 {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.col1_3 {
  width: 41.7%;
  margin-right: 6.3%;
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .col1_3 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding-top: 0;
    text-align: center;
  }
}

.col1_4 {
  position: relative;
  width: 49%;
}
@media screen and (max-width: 1024px) {
  .col1_4 {
    width: 100%;
  }
}

.top_tonkotsu_img1 {
  opacity: 0;
}

.col1_txt1 {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: -240px;
  width: 280px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .col1_txt1 {
    position: static;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

.col1_txt2 {
  opacity: 0;
  position: absolute;
  bottom: -30px;
  left: -205px;
  width: 280px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .col1_txt2 {
    position: static;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

.col1_t1 {
  margin-bottom: 10px;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .col1_t1 {
    text-align: center;
  }
}

#top_menu {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  #top_menu {
    padding-bottom: 20px;
  }
}

.h2_1 {
  margin-bottom: 160px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_1 {
    margin-bottom: 250px;
  }
}

.top_menu_slider {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top_menu_slider {
    top: 240px;
  }
}

#slider1 {
  width: 100%;
}
#slider1 li {
  margin: 0 5px;
}
#slider1 li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.32/1;
}

.p1 {
  line-height: 2.2;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .p1 {
    text-align: left;
    font-size: 16px;
  }
}

.top_menu_txt {
  opacity: 0;
  position: relative;
  z-index: 10;
}

#top_soup {
  padding: 70px 0;
  background: #410002 url("../img/top_soup_bg.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  #top_soup {
    padding: 100px 0 100px;
    background: #410002 url("../img/top_soup_bg_sp.webp") no-repeat;
    background-size: cover;
    background-position: center top;
  }
}
@media screen and (max-width: 768px) {
  #top_soup {
    padding: 80px 0 30px;
    background: #410002 url("../img/top_soup_bg_sp.webp") no-repeat;
    background-size: cover;
    background-position: center top;
  }
}

.h2_2 {
  opacity: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 190px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_2 {
    margin-bottom: 30px;
    font-size: 74px;
  }
}
.h2_2:before {
  position: absolute;
  top: -10px;
  right: 80px;
  display: block;
  content: "";
  width: 265px;
  height: 250px;
  background: url("../img/bg_title1.png") no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_2:before {
    right: -10px;
    width: 102px;
    height: 96px;
  }
}

.h2_2_1 {
  color: #ca0001;
}

.h2_2_2 {
  font-size: 133px;
}
@media screen and (max-width: 1024px) {
  .h2_2_2 {
    font-size: 52px;
  }
}

.h2_2_3 {
  display: inline-block;
  margin-left: 1.2em;
}
@media screen and (max-width: 1024px) {
  .h2_2_3 {
    margin-left: 0.5em;
  }
}

.h2_img1 {
  margin-bottom: 20px;
}

.top_soup_txt {
  opacity: 0;
  width: 570px;
}
@media screen and (max-width: 1024px) {
  .top_soup_txt {
    width: 100%;
    font-size: 16px;
  }
}

.p2 {
  margin-bottom: 30px;
}

.btn2 a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  height: 80px;
  padding-top: 24px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  background: #650000;
  border-radius: 6px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn2 a {
    width: 98%;
  }
}
.btn2 a:after {
  position: absolute;
  top: 28px;
  right: 19px;
  display: block;
  content: "";
  width: 11px;
  height: 22px;
  background: url("../img/icon_link1.png") no-repeat;
  background-size: 100%;
  transition: all 0.3s;
}
.btn2 a:hover {
  color: #410002;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(93, 0, 0, 0.7));
}
.btn2 a:hover:after {
  background: url("../img/icon_link2.png") no-repeat;
  background-size: 100%;
}

#brand {
  padding: 80px 0 90px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  #brand {
    padding: 50px 0 30px;
  }
}

.h2_3 {
  opacity: 0;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_3 {
    margin-bottom: 30px;
  }
}
.h2_3 h2 {
  line-height: 1.2;
  font-size: 90px;
}
@media screen and (max-width: 1024px) {
  .h2_3 h2 {
    font-size: 70px;
  }
}
.h2_3 h2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.h2_3 h2 span:before {
  position: absolute;
  top: -80px;
  right: -30px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_3 h2 span:before {
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.h2_3_en {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .h2_3_en {
    font-size: 16px;
  }
}

.h2_img2 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_img2 {
    margin-bottom: 30px;
  }
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.col2_1 {
  opacity: 0;
  position: relative;
  width: 45.3%;
  margin-right: 9.4%;
}
@media screen and (max-width: 1024px) {
  .col2_1 {
    width: 50%;
    margin-right: 0;
  }
}

.col2_2 {
  opacity: 0;
  width: 45.3%;
}
@media screen and (max-width: 1024px) {
  .col2_2 {
    width: 50%;
  }
}

.btn_brand1 a {
  position: relative;
  display: block;
  padding: 45px 10px 70px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn_brand1 a {
    padding: 30px 10px 40px;
  }
}
.btn_brand1 a:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(92, 0, 0, 0.6);
  mix-blend-mode: multiply;
  transition: all 0.3s;
  z-index: 1;
}
.btn_brand1 a:after {
  position: absolute;
  top: 45%;
  right: 27px;
  display: block;
  content: "";
  width: 11px;
  height: 22px;
  background: url("../img/icon_link1.png") no-repeat;
  background-size: 100%;
  z-index: 1;
}
.btn_brand1 a:hover:before {
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.btn_brand1_in {
  position: relative;
  z-index: 2;
}

.col2_t1 {
  margin-bottom: 5px;
  font-size: 20px;
}

.col2_t2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.btn_img1 a {
  display: block;
  transition: all 0.3s;
}
.btn_img1 a:hover {
  opacity: 0.7;
}

#shop {
  padding: 100px 0;
  background: #000 url("../img/top_shop_bg.webp") no-repeat;
  background-size: cover;
  background-position: left top;
}
@media screen and (max-width: 1600px) {
  #shop {
    background-position: center top;
  }
}
@media screen and (max-width: 1024px) {
  #shop {
    padding: 30px 0;
    background: #000 url("../img/top_shop_bg_sp.webp") no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
}
#shop .inner {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  #shop .inner {
    text-align: center;
  }
}

.shop_txt {
  opacity: 0;
  display: inline-block;
  text-align: left;
}

.h2_4 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .h2_4 {
    margin-bottom: 320px;
    text-align: center;
  }
}
.h2_4 h2 {
  line-height: 1.2;
  font-size: 90px;
}
@media screen and (max-width: 1024px) {
  .h2_4 h2 {
    font-size: 50px;
  }
}
.h2_4 h2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.h2_4 h2 span:before {
  position: absolute;
  top: -70px;
  right: 60px;
  display: block;
  content: "";
  width: 265px;
  height: 250px;
  background: url("../img/bg_title1.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_4 h2 span:before {
    top: -40px;
    left: 0;
    right: 0;
    width: 210px;
    height: 197px;
    margin: 0 auto;
  }
}

.h2_4_en {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .h2_4_en {
    font-size: 16px;
  }
}

.h2_img3 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .h2_img3 {
    margin-bottom: 270px;
  }
}

#store {
  padding: 100px 0;
  color: #ca0001;
  background: #fff url("../img/top_store_bg.webp") no-repeat;
  background-size: cover;
  background-position: right top;
}
@media screen and (max-width: 1024px) {
  #store {
    padding: 40px 0 30px;
    background: #fff url("../img/top_store_bg_sp.webp") no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
}

.store_txt {
  opacity: 0;
}

.h2_5 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .h2_5 {
    margin-bottom: 340px;
    text-align: center;
  }
}
.h2_5 h2 {
  line-height: 1.2;
  font-size: 90px;
}
@media screen and (max-width: 1024px) {
  .h2_5 h2 {
    font-size: 50px;
  }
}
.h2_5 h2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.h2_5 h2 span:before {
  position: absolute;
  top: -70px;
  right: -90px;
  display: block;
  content: "";
  width: 265px;
  height: 250px;
  background: url("../img/bg_title3.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_5 h2 span:before {
    top: -40px;
    left: 0;
    right: 0;
    width: 210px;
    height: 197px;
    margin: 0 auto;
  }
}

.h2_5_en {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .h2_5_en {
    font-size: 16px;
  }
}

.h2_img4 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .h2_img4 {
    margin-bottom: 270px;
    text-align: center;
  }
}

#top_news {
  padding: 130px 0 120px;
}
@media screen and (max-width: 1024px) {
  #top_news {
    padding: 50px 0 40px;
  }
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .col3 {
    display: block;
  }
}

.col3_1 {
  opacity: 0;
  position: relative;
  width: 20%;
  margin-right: 2.4%;
}
@media screen and (max-width: 1024px) {
  .col3_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col3_2 {
  opacity: 0;
  width: 77.6%;
}
@media screen and (max-width: 1024px) {
  .col3_2 {
    width: 100%;
  }
}

.h2_6 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .h2_6 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.h2_6 h2 {
  line-height: 1.4;
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .h2_6 h2 {
    font-size: 50px;
  }
}

.h2_6_en {
  margin-bottom: 5px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .h2_6_en {
    font-size: 16px;
  }
}

.h2_img5 {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .h2_img5 {
    margin-bottom: 30px;
    text-align: center;
  }
}

.link1 {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .link1 {
    margin-right: 5%;
  }
}
.link1:before {
  position: absolute;
  top: 8px;
  right: -15px;
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .ul1 {
    margin-bottom: 20px;
    border-top: 1px solid #fff;
  }
}
.ul1 li a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .ul1 li a {
    padding: 15px 0;
  }
}
.ul1 li a:hover {
  background: #ca0001;
}

.ul1_date {
  width: 115px;
}

.ul1_cat {
  position: relative;
  width: 100px;
  margin-right: 40px;
  padding: 0 15px;
  text-align: center;
  z-index: 2;
}
.ul1_cat:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(125, 0, 2, 0.7);
  mix-blend-mode: multiply;
  z-index: -1;
}

.ul1_tit {
  width: calc(100% - 255px);
}
@media screen and (max-width: 1024px) {
  .ul1_tit {
    width: 100%;
  }
}

#top_gallery {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  #top_gallery {
    padding: 20px 0 30px;
  }
}
#top_gallery .inner {
  position: relative;
  z-index: 2;
}
#top_gallery:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  mix-blend-mode: multiply;
  z-index: 1;
}

.h2_7 {
  opacity: 0;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_7 {
    margin-bottom: 30px;
  }
}
.h2_7 h2 {
  line-height: 1.2;
  font-size: 90px;
}
@media screen and (max-width: 1024px) {
  .h2_7 h2 {
    font-size: 50px;
  }
}
.h2_7 h2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.h2_7 h2 span:before {
  position: absolute;
  top: -80px;
  right: -30px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title4.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_7 h2 span:before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.h2_7_en {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .h2_7_en {
    font-size: 16px;
  }
}

.h2_img6 {
  margin-bottom: 40px;
  text-align: center;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1024px) {
  .h2_img6 {
    margin-bottom: 0;
  }
}

.ul2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .ul2 {
    position: relative;
    top: -25px;
    margin-bottom: 20px;
  }
}
.ul2 li {
  width: 24.4%;
  margin-right: 0.8%;
  margin-bottom: 10px;
}
.ul2 li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .ul2 li {
    width: 49%;
    margin-right: 2%;
  }
  .ul2 li:nth-child(2n) {
    margin-right: 0;
  }
}
.ul2 li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

#top_gallery .btn1 a {
  margin: 0 auto;
}

#apps {
  padding: 115px 0 100px;
}
@media screen and (max-width: 1024px) {
  #apps {
    padding: 50px 0 30px;
  }
}

.h2_8 {
  opacity: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .h2_8 {
    margin-bottom: 30px;
    text-align: center;
  }
}
.h2_8 h2 {
  line-height: 1.2;
  font-size: 90px;
}
@media screen and (max-width: 1024px) {
  .h2_8 h2 {
    font-size: 50px;
  }
}
.h2_8 h2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.h2_8 h2 span:before {
  position: absolute;
  top: -70px;
  right: 60px;
  display: block;
  content: "";
  width: 265px;
  height: 250px;
  background: url("../img/bg_title1.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_8 h2 span:before {
    top: -60px;
    left: 0;
    right: 0;
    width: 210px;
    height: 197px;
    margin: 0 auto;
  }
}

.h2_8_en {
  position: relative;
  margin-bottom: 10px;
  font-size: 20px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .h2_8_en {
    font-size: 16px;
  }
}

.h2_img7 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_img7 {
    margin-bottom: 20px;
  }
}

.col4 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .col4 {
    display: block;
  }
}

.col4_1 {
  width: 33.75%;
  margin-right: 4.39%;
}
@media screen and (max-width: 1024px) {
  .col4_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col4_2 {
  width: 61.86%;
}
@media screen and (max-width: 1024px) {
  .col4_2 {
    width: 100%;
  }
}

.apps_cont {
  opacity: 0;
}

.img_ds1 {
  opacity: 0;
  filter: drop-shadow(10px 10px 10px rgba(74, 0, 0, 0.7));
}
@media screen and (max-width: 1024px) {
  .img_ds1 {
    margin-bottom: 40px;
    text-align: center;
  }
}

.p3 {
  margin-bottom: 40px;
  line-height: 2.4;
}
@media screen and (max-width: 1024px) {
  .p3 {
    margin-bottom: 20px;
  }
}

.ul3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .ul3 {
    display: block;
  }
}
.ul3 li {
  width: 49%;
  margin-right: 2%;
}
@media screen and (max-width: 1024px) {
  .ul3 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.ul3 li:nth-child(2n) {
  margin-right: 0;
}
.ul3 li img {
  width: 100%;
  height: auto;
}
.ul3 li a {
  transition: all 0.3s;
}
.ul3 li a:hover {
  filter: drop-shadow(0 0 10px rgba(74, 0, 0, 0.7));
}

/* 下層ページ---------------- */
/* 下層ページMV */
.sub_mv1 {
  display: flex;
  align-items: center;
  height: 350px;
}
@media screen and (max-width: 1024px) {
  .sub_mv1 {
    height: 250px;
  }
}

.h1_1 {
  position: relative;
  padding-top: 60px;
  text-align: center;
  font-size: clamp(48px, 6vw, 60px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h1_1 {
    padding-top: 40px;
    font-size: 34px;
  }
}
.h1_1:before {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  display: block;
  content: "";
  width: 438px;
  height: 430px;
  margin: 0 auto;
  background: url("../img/bg_title5.png") no-repeat;
  background-size: 100%;
  opacity: 0.1;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .h1_1:before {
    top: -40px;
    width: 282px;
    height: 280px;
  }
}

/* パンくず */
.pankuzu ul {
  padding: 15px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.pankuzu ul li {
  display: inline-block;
  line-height: 1.2;
  font-size: 12px;
}
.pankuzu ul li:after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin: 0 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  vertical-align: 3px;
}
.pankuzu ul li:last-child:after {
  display: none;
}

/* 一番軒について */
.contents1 {
  padding: 120px 0 100px;
}
@media screen and (max-width: 1024px) {
  .contents1 {
    padding: 40px 0 50px;
  }
}

.concept1_1 {
  min-height: 780px;
  background: url("../img/concept_bg1.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .concept1_1 {
    min-height: auto;
    background-size: auto 400px;
    background-position: right 10% top;
  }
}

.h2_9 {
  opacity: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  padding-top: 20px;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_9 {
    margin-bottom: 300px;
    font-size: 40px;
  }
}
.h2_9:before {
  position: absolute;
  top: -20px;
  right: 40px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_9:before {
    top: 0;
    right: 0;
    width: 103px;
    height: 106px;
  }
}

.h2_9_1 {
  display: inline-block;
  margin-left: 4em;
}

.concept_box1 {
  opacity: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .concept_box1 {
    background: rgba(0, 0, 0, 0.2);
  }
}
.concept_box1:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 54.4%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .concept_box1:before {
    display: none;
  }
}

.concept_box1_txt {
  width: 52%;
  padding: 60px 0;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .concept_box1_txt {
    width: 100%;
    padding: 30px 0;
    font-size: 16px;
  }
}
.concept_box1_txt p {
  line-height: 2.2;
}

.concept1_2 {
  opacity: 0;
  padding-top: 130px;
}
@media screen and (max-width: 1024px) {
  .concept1_2 {
    padding-top: 50px;
  }
}

.contents2 {
  padding: 90px 0 170px;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .contents2 {
    padding: 40px 0 70px;
  }
}

.col5 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .col5 {
    display: block;
  }
}

.col5_1 {
  opacity: 0;
  position: relative;
  width: 40%;
  margin-right: 4.5%;
}
@media screen and (max-width: 1024px) {
  .col5_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col5_2 {
  opacity: 0;
  width: 55.5%;
}
@media screen and (max-width: 1024px) {
  .col5_2 {
    width: 100%;
  }
}

.h2_10 h2 {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_10 h2 {
    font-size: 36px;
  }
}
.h2_10 h2:before {
  position: absolute;
  top: -20px;
  right: 0;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title3.png") no-repeat;
  background-size: 100%;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_10 h2:before {
    top: -30px;
    right: -30px;
    width: 103px;
    height: 106px;
  }
}

.h2_10_1 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4.8vw, 48px);
}
@media screen and (max-width: 1024px) {
  .h2_10_1 {
    font-size: 22px;
  }
}

.p4 {
  line-height: 4;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .p4 {
    line-height: 3;
    font-size: 16px;
  }
}

#concept3 {
  background: url("../img/concept_bg2.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  #concept3 {
    background-size: auto 300px;
    background-position: right top;
  }
}

.contents3 {
  margin: 160px 0 240px;
  padding-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .contents3 {
    margin: 40px 0 80px;
    padding-bottom: 0;
  }
}

.h2_11 {
  opacity: 0;
  position: relative;
  margin-bottom: 50px;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .h2_11 {
    margin-bottom: 190px;
  }
}
.h2_11 h2 {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_11 h2 {
    font-size: 36px;
  }
}
.h2_11 h2:before {
  position: absolute;
  top: -40px;
  right: 190px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_11 h2:before {
    top: -30px;
    right: 40px;
    width: 103px;
    height: 106px;
  }
}

.h2_11_1 {
  display: inline-block;
  margin-left: 3em;
}

.h2_11_en {
  position: absolute;
  bottom: 50px;
  left: 0;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .h2_11_en {
    bottom: 0;
    font-size: 20px;
  }
}

#concept4 {
  background: url("../img/concept_bg3.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  #concept4 {
    background-size: auto 300px;
    background-position: left top;
  }
}

.contents4 {
  padding: 30px 0 45px;
}

.h2_12 {
  opacity: 0;
  position: relative;
  display: inline-block;
  margin: 0 0 50px 36.6%;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_12 {
    margin: 0 0 230px 0;
    font-size: 36px;
  }
}
.h2_12:before {
  position: absolute;
  top: -40px;
  right: -50px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_12:before {
    top: -30px;
    right: -40px;
    width: 103px;
    height: 106px;
  }
}

.concept_box2 {
  opacity: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .concept_box2 {
    background: rgba(0, 0, 0, 0.2);
  }
}
.concept_box2:before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 62.5%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .concept_box2:before {
    display: none;
  }
}

.concept_box2_txt {
  width: 62.5%;
  margin-left: 37.5%;
  padding: 60px 0 60px 40px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .concept_box2_txt {
    width: 100%;
    margin-left: 0;
    padding: 30px 0;
    font-size: 16px;
  }
}
.concept_box2_txt p {
  line-height: 2.2;
}

.contents5 {
  padding: 120px 0 150px;
}
@media screen and (max-width: 1024px) {
  .contents5 {
    padding: 0 0 30px;
  }
}

.h2_13 {
  opacity: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_13 {
    margin-bottom: 30px;
    font-size: 36px;
  }
}
.h2_13:before {
  position: absolute;
  top: -40px;
  left: 200px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_13:before {
    top: -30px;
    left: 40px;
    width: 103px;
    height: 106px;
  }
}

.h2_13_1 {
  display: inline-block;
  margin-left: 2em;
}

.concept_box3 {
  padding: 60px 0 10px;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .concept_box3 {
    padding: 30px 0;
  }
}

.ul4 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .ul4 {
    display: block;
  }
}
.ul4 li {
  opacity: 0;
  width: 48.3%;
  margin-right: 3.4%;
  margin-bottom: 70px;
}
.ul4 li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .ul4 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.ul4 li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.48/1;
}

.ul4_img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .ul4_img {
    margin-bottom: 10px;
  }
}

.ul4_t1 {
  margin-bottom: 10px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 32px);
}
@media screen and (max-width: 1024px) {
  .ul4_t1 {
    font-size: 24px;
  }
}

/* 一番軒ブランドについて */
.contents6 {
  padding: 120px 0 140px;
}
@media screen and (max-width: 1024px) {
  .contents6 {
    padding: 40px 0 70px;
  }
}

.h2_14 {
  opacity: 0;
  position: relative;
  margin-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  .h2_14 {
    margin-bottom: 70px;
  }
}
.h2_14 h2 {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_14 h2 {
    font-size: 36px;
  }
}
.h2_14 h2:before {
  position: absolute;
  top: -40px;
  right: -50px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_14 h2:before {
    top: -30px;
    right: -30px;
    width: 103px;
    height: 106px;
  }
}

.h2_14_en {
  position: relative;
  font-size: 24px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_14_en {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.h2_img8 {
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_img8 {
    margin-bottom: 20px;
  }
}

.ul5 {
  opacity: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ul5 {
    max-width: 320px;
  }
}
.ul5 li {
  width: 45.8%;
  margin-right: 8.4%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .ul5 li {
    width: 45%;
    margin-right: 10%;
  }
}
.ul5 li:nth-child(2n) {
  margin-right: 0;
}
.ul5 li a {
  transition: all 0.3s;
}
.ul5 li a:hover {
  opacity: 0.5;
}

.ul5_icon {
  margin-bottom: 15px;
}
.ul5_icon img {
  max-width: 100%;
  height: auto;
}

.ul5_t1 {
  line-height: 1.4;
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .ul5_t1 {
    font-size: 20px;
  }
}

.contents7 {
  padding-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  .contents7 {
    padding-bottom: 70px;
  }
}

.h2_15 {
  opacity: 0;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .h2_15 {
    margin-bottom: 30px;
  }
}
.h2_15 h2 {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  font-size: clamp(80px, 12vw, 120px);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .h2_15 h2 {
    font-size: 40px;
  }
}
.h2_15 h2:before {
  position: absolute;
  top: -40px;
  right: -50px;
  display: block;
  content: "";
  width: 206px;
  height: 211px;
  background: url("../img/bg_title2.png") no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .h2_15 h2:before {
    top: -30px;
    right: -30px;
    width: 103px;
    height: 106px;
  }
}

.h2_15_1 {
  margin-bottom: 30px;
  font-size: clamp(32px, 4.8vw, 48px);
}
@media screen and (max-width: 1024px) {
  .h2_15_1 {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

.brand1_img1 {
  opacity: 0;
  height: 605px;
  background: url("../img/brand1_img1.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .brand1_img1 {
    height: 180px;
  }
}

.brand1_1, .brand2_1 {
  padding: 50px 0 120px;
}
@media screen and (max-width: 1024px) {
  .brand1_1, .brand2_1 {
    padding: 30px 0 60px;
  }
}

.copy1 {
  opacity: 0;
  text-align: center;
  font-size: clamp(60px, 8vw, 80px);
}
@media screen and (max-width: 1024px) {
  .copy1 {
    font-size: 28px;
  }
}

.brand1_2, .brand2_2 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .brand1_2, .brand2_2 {
    padding-bottom: 0;
  }
}

.h3_1 {
  opacity: 0;
  margin-bottom: 30px;
}
.h3_1 h3 {
  margin-bottom: 20px;
  line-height: 1;
  font-size: clamp(42px, 6vw, 60px);
}
@media screen and (max-width: 1024px) {
  .h3_1 h3 {
    font-size: 28px;
  }
}

.h3_1_en {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .h3_1_en {
    font-size: 18px;
  }
}

.brand_box1 {
  opacity: 0;
  position: relative;
  padding: 130px 0;
  background: url("../img/brand1_bg1.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .brand_box1 {
    padding: 300px 0 20px;
    background-size: auto 300px;
    background-position: left top;
  }
}
.brand_box1:before {
  position: absolute;
  top: 130px;
  right: 0;
  display: block;
  content: "";
  width: 56.7%;
  height: calc(100% - 260px);
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .brand_box1:before {
    display: none;
  }
}

.brand_box_txt {
  width: 56.7%;
  margin-left: 43.3%;
  padding: 60px 0 60px 40px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .brand_box_txt {
    width: 100%;
    margin-left: 0;
    padding: 30px 0;
    font-size: 16px;
  }
}
.brand_box_txt p {
  line-height: 2.2;
}

.brand1_3, .brand2_3 {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .brand1_3, .brand2_3 {
    padding: 50px 0 10px;
  }
}

.brand1_4, .brand2_4 {
  padding: 80px 0 120px;
}
@media screen and (max-width: 1024px) {
  .brand1_4, .brand2_4 {
    padding: 50px 0 40px;
  }
}

.ul6 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .ul6 {
    display: block;
  }
}
.ul6 li {
  opacity: 0;
  width: 23.4%;
  margin-right: 2.1%;
  text-align: center;
}
.ul6 li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .ul6 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.ul6 li a {
  transition: all 0.3s;
}
.ul6 li a:hover {
  opacity: 0.7;
}

.ul6_img {
  margin-bottom: 20px;
}

.ul6_t1 {
  font-size: clamp(24px, 3.2vw, 32px);
}
@media screen and (max-width: 1024px) {
  .ul6_t1 {
    font-size: 20px;
  }
}

.brand1_img2 {
  opacity: 0;
  position: relative;
  height: 850px;
  background: url("../img/brand1_img6.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .brand1_img2 {
    height: 200px;
  }
}

.brand2_img1 {
  opacity: 0;
  height: 605px;
  background: url("../img/brand2_img1.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .brand2_img1 {
    height: 180px;
  }
}

.brand_box2 {
  opacity: 0;
  position: relative;
  padding: 130px 0;
  background: url("../img/brand2_bg1.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .brand_box2 {
    padding: 300px 0 20px;
    background-size: auto 300px;
    background-position: left top;
  }
}
.brand_box2:before {
  position: absolute;
  top: 130px;
  right: 0;
  display: block;
  content: "";
  width: 56.7%;
  height: calc(100% - 260px);
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .brand_box2:before {
    display: none;
  }
}

.brand2_img2 {
  opacity: 0;
  position: relative;
  height: 850px;
  background: url("../img/brand2_img2.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .brand2_img2 {
    height: 200px;
  }
}

/* 店舗一覧 */
.ul7 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ul7 {
    max-width: 320px;
  }
}
.ul7 li {
  width: 28.8%;
  margin-right: 6.8%;
  text-align: center;
}
.ul7 li:nth-child(3n) {
  margin-right: 0;
}
.ul7 li a {
  transition: all 0.3s;
}
.ul7 li a:hover {
  opacity: 0.5;
}

.ul7_icon {
  margin-bottom: 15px;
}
.ul7_icon img {
  max-width: 100%;
  height: auto;
}

.ul7_t1 {
  line-height: 1.4;
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .ul7_t1 {
    font-size: 14px;
  }
}

.contents8 {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .contents8 {
    padding-bottom: 60px;
  }
}

.h2_16 {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .h2_16 {
    margin-bottom: 30px;
  }
}
.h2_16 h2 {
  display: inline-block;
  font-size: clamp(36px, 4.8vw, 48px);
}
@media screen and (max-width: 1024px) {
  .h2_16 h2 {
    font-size: 32px;
  }
}

.icon_insta1 {
  display: inline-block;
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .icon_insta1 {
    width: 30px;
    margin-left: 30px;
  }
}
.icon_insta1 img {
  max-width: 100%;
  height: auto;
  vertical-align: -15px;
}
@media screen and (max-width: 1024px) {
  .icon_insta1 img {
    vertical-align: -5px;
  }
}
.icon_insta1 a {
  transition: all 0.3s;
}
.icon_insta1 a:hover {
  opacity: 0.7;
}

.ul8 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /*justify-content: center;*/
}
@media screen and (max-width: 1024px) {
  .ul8 {
    display: block;
  }
}
.ul8 li {
  position: relative;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 50px;
}
.ul8 li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .ul8 li {
    width: 100%;
    margin-right: 0;
  }
}

.ul8_img {
  margin-bottom: 40px;
}
.ul8_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.46/1;
}
@media screen and (max-width: 1024px) {
  .ul8_img {
    margin-bottom: 20px;
  }
}

.ul8_t1 {
  margin-bottom: 10px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .ul8_t1 {
    font-size: 16px;
  }
}

.ul8_t2 {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .ul8_t2 {
    font-size: 14px;
  }
}

.ul8_icon1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.ul8_icon1 img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .ul8_icon1 {
    width: 30px;
  }
}

/* お知らせ */
.ul9 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .ul9 {
    margin-bottom: 40px;
  }
}
.ul9 li a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #9a9a9a;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .ul9 li a {
    display: block;
  }
}
.ul9 li a:hover {
  background: #ca0001;
}

.ul9_date {
  width: 16.5%;
}
@media screen and (max-width: 1024px) {
  .ul9_date {
    width: 100%;
  }
}

.ul9_title {
  width: 83.5%;
}
@media screen and (max-width: 1024px) {
  .ul9_title {
    width: 100%;
  }
}

.pagenation .wp-pagenavi {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.pagenation .wp-pagenavi a.page {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  border-radius: 20px;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .pagenation .wp-pagenavi a.page {
    margin: 0 5px;
  }
}
.pagenation .wp-pagenavi a.page:hover {
  color: #000;
  background: #fff;
}
.pagenation .wp-pagenavi a.previouspostslink {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .pagenation .wp-pagenavi a.previouspostslink {
    margin-right: 0 10px;
  }
}
.pagenation .wp-pagenavi a.previouspostslink:hover {
  opacity: 0.6;
}
.pagenation .wp-pagenavi a.nextpostslink {
  display: inline-block;
  margin-left: 15px;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .pagenation .wp-pagenavi a.nextpostslink {
    margin-left: 10px;
  }
}
.pagenation .wp-pagenavi a.nextpostslink:hover {
  opacity: 0.6;
}
.pagenation .wp-pagenavi span.current {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  border-radius: 20px;
  color: #000;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .pagenation .wp-pagenavi span.current {
    margin: 0 5px;
  }
}
.pagenation .wp-pagenavi .pages {
  display: none;
}

/* お知らせ詳細 */
.post_header {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .post_header {
    margin-bottom: 50px;
  }
}
.post_header .post_date1 {
  margin-bottom: 20px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .post_header .post_date1 {
    font-size: 16px;
  }
}
.post_header h1 {
  margin-bottom: 30px;
  line-height: 1.2;
  font-size: clamp(32px, 3.6vw, 40px);
}
@media screen and (max-width: 1024px) {
  .post_header h1 {
    font-size: 24px;
  }
}

.post_body {
  margin-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .post_body {
    margin-bottom: 80px;
  }
}
.post_body h2 {
  margin-bottom: 30px;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .post_body h2 {
    margin-bottom: 25px;
    font-size: 20px;
  }
}
.post_body h3 {
  margin-bottom: 25px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .post_body h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.post_body h4 {
  margin-bottom: 20px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .post_body h4 {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.post_body p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .post_body p {
    margin-bottom: 30px;
  }
}
.post_body img {
  max-width: 100%;
  height: auto;
}
.post_body a {
  text-decoration: underline;
}
.post_body a:hover {
  text-decoration: none;
}

.post_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .post_footer {
    font-size: 16px;
  }
}

.post_footer_prev {
  width: 30%;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .post_footer_prev {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 20px;
  }
}
.post_footer_prev a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 380px;
  height: 80px;
  padding-top: 24px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  background: #650000;
  border-radius: 6px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .post_footer_prev a {
    width: 98%;
  }
}
.post_footer_prev a:after {
  position: absolute;
  top: 28px;
  left: 19px;
  display: block;
  content: "";
  width: 11px;
  height: 22px;
  background: url("../img/icon_link3.png") no-repeat;
  background-size: 100%;
  transition: all 0.3s;
}
.post_footer_prev a:hover {
  color: #650000;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(93, 0, 0, 0.7));
}
.post_footer_prev a:hover:after {
  background: url("../img/icon_link4.png") no-repeat;
  background-size: 100%;
}

.post_footer_next {
  width: 30%;
  margin-left: 5%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .post_footer_next {
    width: 47%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.post_footer_next a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 380px;
  height: 80px;
  padding-top: 24px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  background: #650000;
  border-radius: 6px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .post_footer_next a {
    width: 98%;
  }
}
.post_footer_next a:after {
  position: absolute;
  top: 28px;
  right: 19px;
  display: block;
  content: "";
  width: 11px;
  height: 22px;
  background: url("../img/icon_link1.png") no-repeat;
  background-size: 100%;
  transition: all 0.3s;
}
.post_footer_next a:hover {
  color: #650000;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(93, 0, 0, 0.7));
}
.post_footer_next a:hover:after {
  background: url("../img/icon_link2.png") no-repeat;
  background-size: 100%;
}

.post_footer_back {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post_footer_back {
    width: 100%;
  }
}
.post_footer_back a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 380px;
  height: 80px;
  padding-top: 24px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  background: #650000;
  border-radius: 6px;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .post_footer_back a {
    width: 98%;
  }
}
.post_footer_back a:hover {
  color: #650000;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(93, 0, 0, 0.7));
}

/* 404 */
.contents9 {
  padding: 120px 0 200px;
}
@media screen and (max-width: 1024px) {
  .contents9 {
    padding: 40px 0 100px;
  }
}

.p5 {
  margin-bottom: 70px;
  text-align: center;
  font-size: 18px;
}

#error1 .btn1 a {
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */