@charset "utf-8";
/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("sanitize.css");
/*全体の設定
---------------------------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px; /*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
  scroll-behavior: smooth; /*スクロールの動きをスムースしています。*/
}
@media screen and (max-width: 600px) {
  html, body {
    font-size: 13px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  background: #ffffff; /*背景色*/
  color: #000; /*全体の文字色*/
  line-height: 1.8em; /*行間*/
}
/*リセット*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav {
  margin: 0;
  padding: 0;
}
/*table全般の設定*/
table {
  border-collapse: collapse;
}
/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin: auto;
}
a img:hover {
  transition: all .3s;
  opacity: 0.7;
}
/*videoタグ*/
video {
  max-width: 100%;
}
/*iframeタグ*/
iframe {
  width: 100%;
}
/*ul,olタグ*/
ul, ol {
  margin: 0px;
  padding: 0px;
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: #362823; /*文字色*/
  transition: 0.3s;
}
/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section {
  max-width: 1440px;
  margin: auto;
}
.se_1920 {
  max-width: 1920px;
  margin: auto;
}
.se_3000 {
  max-width: 3000px;
  margin: auto;
}
@media screen and (max-width: 1150px) {
  section {
    max-width: 100vw;
    margin: auto;
  }
}
/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  z-index: 3; /*スクロールしても動かないようにする指定*/
  padding: 30px; /*上下、左右へのヘッダー内の余白*/
  height: auto; /*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width:600px) {
  header {
    padding: 15px; /*上下、左右へのヘッダー内の余白*/
    width: 130px;
  }
  #menubar_hdr span {
    border-top: 3px solid #000; /*線の幅、線種、色*/
  }
  #menubar_hdr.ham span:nth-of-type(1) {
    transform: rotate(45deg) translate(2.8px, 5px); /*回転45°と、X軸Y軸への移動距離の指定*/
  }
  /*×印が出ている状態の設定。※2本目のバー。*/
  #menubar_hdr.ham span:nth-of-type(2) {
    transform: rotate(-45deg) translate(1.8px, -4px); /*回転-45°と、X軸Y軸への移動距離の指定*/
  }
  /*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
  #menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(2), #menubar_hdr.ham span:nth-of-type(3) {
    width: 24px; /*バーの幅*/
  }
}
/*ヘッダーのリンクテキストの文字色*/
header a {
  color: #362823;
  background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
  transition: background .4s;
}
header a:hover {
  color: #66af42;
  transition: all .3s;
  background-size: 100% 2px;
}
/*ロゴ画像*/
header #logo img {
  display: block;
  max-height: 60px;
}
header #logo {
  margin-right: auto
}
/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
#menubar li {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
#menubar img {
  display: block;
  margin: auto;
}
/*メニューを非表示にしておく*/
#menubar {
  display: none;
}
/*開閉用のスタイル*/
#menubar.db {
  display: block;
}
#menubar.dn {
  display: none;
}
/*メニュー１個あたりの設定*/
#menubar a {
  display: block;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.1em; /*文字間隔を少しだけ広くする指定*/
  padding: 10px; /*メニュー内の余白*/
}
/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
  position: fixed;
  overflow: auto;
  z-index: 3;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 100px 20px 0; /*上下、左右へのブロック内の余白*/
  text-align: center; /*内容をセンタリング*/
  color: #fff; /*文字色*/
  opacity: 1;
  transition: all 1.6s;
  background: #000;
}
.s #menubar.db a {
  color: #fff; /*リンクテキストの文字色*/
}
.s #menubar.dn {
  opacity: 0;
  display: none;
  padding: 70px 20px; /*上下、左右へのブロック内の余白*/
  color: #fff; /*文字色*/
}
.s #menubar dl {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-content: center;
}
.s #menubar dd {
  width: calc(100% - 0px);
  background: #06c755;
  height: 60px;
  display: table;
}
.s #menubar dd a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {
  display: flex;
}
#menubar_hdr.dn {
  display: none;
}
/*３本バーを囲むブロック*/
#menubar_hdr {
  position: fixed;
  z-index: 9;
  cursor: pointer;
  right: 30px;
  top: 30px;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: #fff450;
}
/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s; /*アニメーションにかける時間。0.3秒。*/
  border-top: 5px solid #000; /*線の幅、線種、色*/
}
/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(2), #menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center; /*変形の起点。センターに。*/
  width: 30px; /*バーの幅*/
}
/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(2.8px, 7px); /*回転45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※2本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  transform: rotate(-45deg) translate(1.8px, -5px); /*回転-45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※3本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
  display: none; /*回転-45°と、X軸Y軸への移動距離の指定*/
}
@media screen and (max-width:600px) {
  #menubar_hdr {
    position: fixed;
    z-index: 9;
    cursor: pointer;
    right: 15px;
    top: 15px;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: #fff450;
  }
  #menubar_hdr span {
    border-top: 3px solid #000; /*線の幅、線種、色*/
  }
  #menubar_hdr.ham span:nth-of-type(1) {
    transform: rotate(45deg) translate(2.8px, 5px); /*回転45°と、X軸Y軸への移動距離の指定*/
  }
  /*×印が出ている状態の設定。※2本目のバー。*/
  #menubar_hdr.ham span:nth-of-type(2) {
    transform: rotate(-45deg) translate(1.8px, -4px); /*回転-45°と、X軸Y軸への移動距離の指定*/
  }
  /*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
  #menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(2), #menubar_hdr.ham span:nth-of-type(3) {
    width: 24px; /*バーの幅*/
  }
}
/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#main_area {
  width: 100%;
  position: relative;
  display: block;
  padding-top: calc(800 / 1440 * 100%);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#main_area img {
  width: 100vw;
}
#main_area .main_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#main_area ul {
  width: 38.2vw;
  position: absolute;
  top: 16vh;
  left: 8.3vw;
  height: auto;
  z-index: 2;
  list-style: none;
}
#main_area li {
  text-align: center;
}
#main_area li:nth-of-type(1) {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  width: 67%;
  gap: 10px;
  margin: 0 auto 15px;
}
#main_area li:nth-of-type(2) {
  margin: 0 auto 10px;
}
#main_area a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  border-radius: 50px;
  width: 380px;
  height: 80px;
  position: relative;
  transition: 0.3s;
  background-color: #09ad29ff;
  font-size: 30px;
  margin: 40px auto 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#main_area a:hover {
  transition: .3s;
  opacity: 0.8;
}
#main_area a::before, #main_area a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 26px;
  transform-origin: 100% 50%;
  height: 2px;
  width: 17px;
  background-color: #fff;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}
#main_area a::before {
  transform: translateY(-50%) rotate(30deg);
}
#main_area a::after {
  transform: translateY(-50%) rotate(-30deg);
}
#main_area a:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}
#main_area a:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}
@media screen and (max-width:1150px) {
  #main_area {
    padding-top: calc(800 / 750 * 100%);
  }
  #main_area ul {
    width: 57.3vw;
    position: absolute;
    top: 26%;
    left: 4%;
    height: auto;
    z-index: 2;
  }
  #main_area li {
    text-align: center;
  }
  #main_area li:nth-of-type(1) {
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    width: 71%;
    gap: 5px;
    margin: 0 0 5px;
  }
  #main_area li:nth-of-type(2) {
    margin: 0 auto 0px;
  }
  #main_area a {
    border-radius: 50px;
    width: 80%;
    height: 70px;
    font-size: 27px;
    margin: 8% 0 0;
  }
}
@media screen and (max-width:600px) {
  #main_area a {
    border-radius: 50px;
    width: 80%;
    height: 40px;
    font-size: 14px;
    margin: 8% 0 0;
  }
  #main_area a::before, #main_area a::after {
    top: 53%;
    right: 7%;
    height: 1px;
    width: 10px;
  }
}
/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
  text-align: center;
  margin-top: 120px;
  letter-spacing: -0.3px;
}
/*mainブロック内のh2タグ*/
main h2 {
  font-size: 18px;
  width: 120px;
  padding: 5px 0px;
  transform: skewX(-15deg);
  margin-bottom: 25px;
  text-align: center;
  font-weight: normal;
  margin-left: 6px;
}
main h2 span {
  display: inline-block;
  transform: skewX(15deg); /* 逆方向にスキューを適用して無効化 */
}
main h3 {
  font-size: 36px;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
main figure {
  text-align: center;
}
/*mainブロックのpタグ*/
main p {
  margin: 0; /*上、左右、下へ空けるスペース*/
}
@media screen and (max-width:1150px) {
  main {
    margin-top: 60px;
  }
  /*mainブロック内のh2タグ*/
  main h2 {
    font-size: 14px;
    width: 80px;
    padding: 2px 0px;
    transform: skewX(-15deg);
    margin-bottom: 10px;
  }
  main h3 {
    font-size: 36px;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
  }
}
@media screen and (max-width:600px) {
  main {
    margin-top: 30px;
  }
  main h3 {
    font-size: 20px;
  }
}
/*ABOUT
---------------------------------------------------------------------------*/
#ABOUT {
  max-width: 1220px;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
}
#ABOUT h2 {
  background: #000;
  color: #fff;
}
#ABOUT article {
  width: 600px;
  padding: 40px 50px;
  background-image: linear-gradient(-136deg, rgba(255, 244, 80, 1) 26%, rgba(255, 216, 80, 1));
  text-align: left;
  margin-left: -80px;
  position: relative;
}
#ABOUT article::before {
  content: "";
  display: block;
  background: no-repeat url("../images/about_img01.webp");
  position: absolute;
  width: 240px;
  height: 210px;
  top: 90px;
  right: 30px;
  z-index: 1;
}
#ABOUT div {
  padding: 30px 0 0 10px;
  z-index: 1;
  position: relative;
}
#ABOUT h3 {
  z-index: 1;
  position: relative;
}
@media screen and (max-width:1150px) {
  #ABOUT {
    max-width: 100%;
    grid-auto-flow: dense;
    justify-items: end;
  }
  #ABOUT h2 {
    background: #000;
    color: #fff;
  }
  #ABOUT article {
    width: 84%;
    padding: 40px;
    margin: 0 0 0;
    order: -1;
  }
  #ABOUT figure {
    margin: -16% auto 0 0;
    padding-right: 10%;
  }
  #ABOUT article::before {
    content: "";
    display: block;
    background: no-repeat url("../images/about_img01.webp");
    position: absolute;
    width: 120px;
    height: 105px;
    top: auto;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    background-size: 100%;
  }
  #ABOUT div {
    padding: 30px 0 0 10px;
    z-index: 1;
    position: relative;
  }
  #ABOUT h3 {
    z-index: 1;
    position: relative;
  }
}
@media screen and (max-width:600px) {
  #ABOUT article {
    padding: 20px;
  }
  #ABOUT div {
    padding: 10px 0 0 0px;
    z-index: 1;
    position: relative;
    line-height: 1.4em;
  }
  #ABOUT div br {
    line-height: 1em;
  }
}
/*LIVE
---------------------------------------------------------------------------*/
#LIVE {
  max-width: 1290px;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  padding-left: 125px;
  color: #fff;
  justify-content: space-between;
  margin: 0 50px 0 auto;
  position: relative;
}
#LIVE .l_bgimg1 {
  position: absolute;
  top: 140px;
  left: 540px;
}
#LIVE .l_bgimg2 {
  position: absolute;
  left: 0px;
  bottom: 160px;
}
#LIVE .l_bgimg3 {
  position: absolute;
  left: 100px;
  bottom: 90px;
}
#LIVE h2 {
  background: #fff;
  color: #000;
}
#LIVE article {
  width: 500px;
  text-align: left;
  position: relative;
  z-index: 1;
}
#LIVE div {
  padding: 40px 0 0 0px;
  font-size: 18px;
}
@media screen and (max-width:1150px) {
  #LIVE {
    grid-auto-flow: dense;
    padding-left: 0;
    margin: auto;
  }
  #LIVE .l_bgimg1 {
    position: absolute;
    top: 13%;
    right: 0;
    left: auto;
    width: 30%;
  }
  #LIVE .l_bgimg2 {
    position: absolute;
    left: -80px;
    top: 40%;
    width: 30%;
  }
  #LIVE .l_bgimg3 {
    position: absolute;
    left: 4%;
    top: 51%;
    width: 30%;
  }
  #LIVE h2 {
    background: #fff;
    color: #000;
    margin: 0 auto 20px;
  }
  #LIVE h3 {
    text-align: center;
  }
  #LIVE article {
    width: 90%;
    position: relative;
    z-index: 1;
  }
  #LIVE div {
    padding: 40px 0 30px 0px;
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  #LIVE div {
    padding: 20px 0 20px 0px;
    font-size: 13px;
  }
}
/*POINT
---------------------------------------------------------------------------*/
#POINT {
  max-width: 1000px;
  color: #fff;
  margin: 30px auto 0;
  text-align: left;
}
#POINT h2 {
  background: #fff;
  color: #000;
}
#POINT h3 {
  -webkit-background-clip: text;
  background-image: linear-gradient(-178deg, rgba(255, 244, 80, 1) 0%, rgba(255, 216, 80, 1));
  color: transparent;
  line-height: 1.4em;
  margin-bottom: 70px;
}
#POINT ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  list-style: none;
  gap: 40px 60px;
}
#POINT li {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  justify-content: space-between;
  width: 470px;
}
#POINT dl {
  width: 240px;
}
#POINT dt {
  color: #ffd050;
  border-bottom: 4px solid #838383;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4em;
}
#POINT dd {
  padding-top: 20px;
}
#POINT article {
  width: 500px;
  text-align: left;
}
#POINT div {
  padding: 40px 0 0 0px;
}
@media screen and (max-width:1150px) {
  #POINT {
    width: 90%;
    margin: 60px auto 0;
  }
  #POINT h3 {
    -webkit-background-clip: text;
    background-image: linear-gradient(-178deg, rgba(255, 244, 80, 1) 0%, rgba(255, 216, 80, 1));
    color: transparent;
    line-height: 1.4em;
    margin-bottom: 30px;
  }
  #POINT ul {
    gap: 5% 11%;
    align-items: start;
  }
  #POINT li {
    grid-auto-flow: dense;
    width: 100%;
  }
  #POINT dl {
    width: 100%;
    margin-top: 15px;
  }
  #POINT dt {
    border-bottom: 2px solid #838383;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: bold;
  }
  #POINT dd {
    padding-top: 8px;
  }
  #POINT div {
    padding: 40px 0 0 0px;
  }
}
@media screen and (max-width:600px) {
  #POINT {
    margin: 40px auto 0;
  }
  #POINT h3 {
    font-size: 22px;
  }
  #POINT ul {
    gap: 4% 8%;
    align-items: start;
  }
  #POINT dt {
    font-size: 14px;
  }
}
/*FLOW
---------------------------------------------------------------------------*/
#FLOW {
  padding: 70px 90px 40px 110px;
  background-image: linear-gradient(-136deg, rgba(255, 244, 80, 1) 26%, rgba(255, 216, 80, 1));
  margin: 80px 130px 100px 0;
  margin-left: calc(50% - 50vw);
}
#FLOW article {
  max-width: 1100px;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  justify-content: space-between;
  margin: auto;
}
#FLOW h2 {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
}
#FLOW h3 {
  line-height: 1.4em;
  margin-bottom: 35px;
  color: #000;
  position: relative;
  z-index: 1;
}
#FLOW h3 span {
  font-size: 30px;
}
#FLOW a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  border-radius: 50px;
  width: 240px;
  height: 50px;
  position: relative;
  transition: 0.3s;
  background-color: #09ad29ff;
  font-size: 18px;
  margin: 0 0 0 15px;
  z-index: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#FLOW a:hover {
  transition: .3s;
  opacity: 0.8;
}
#FLOW a::before, #FLOW a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 26px;
  transform-origin: 100% 50%;
  height: 2px;
  width: 17px;
  background-color: #fff;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}
#FLOW a::before {
  transform: translateY(-50%) rotate(30deg);
}
#FLOW a::after {
  transform: translateY(-50%) rotate(-30deg);
}
#FLOW a:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}
#FLOW a:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}
#FLOW .f_bgimg1 {
  position: absolute;
  bottom: -70px;
  left: -63px;
}
#FLOW .f_bgimg2 {
  position: absolute;
  top: 13px;
  right: 48px;
}
#FLOW div {
  width: 500px;
  padding: 30px 0 0 60px;
  position: relative;
  text-align: left;
}
#FLOW ul {
  list-style: none;
  width: 505px;
}
#FLOW li {
  margin-bottom: 20px;
  padding-bottom: 30px;
  position: relative;
  text-align: left;
  font-size: 18px;
}
#FLOW li figure {
  text-align: right;
}
#FLOW li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 15px solid #000000;
  border-bottom: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
}
#FLOW li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
#FLOW li:last-child::before {
  display: none;
}
#FLOW dl {
  margin-bottom: 20px;
  position: relative;
}
#FLOW dt {
  position: absolute;
  width: 220px;
  height: 60px;
  background: #000;
  color: #fff;
  font-size: 22px;
  display: grid;
  place-content: center;
  bottom: 30px;
  left: 0px;
}
@media screen and (max-width:1150px) {
  #FLOW {
    padding: 40px 0 40px 0;
    background-image: linear-gradient(-90deg, rgba(255, 244, 80, 1) 26%, rgba(255, 216, 80, 1));
    margin: 0px 0 60px 0;
    margin-left: 0;
  }
  #FLOW article {
    width: 92%;
    display: block;
    margin: auto;
  }
  #FLOW div {
    width: 100%;
    padding: 0;
    position: relative;
  }
  #FLOW h2 {
    margin: 0 auto 10px;
  }
  #FLOW h3 {
    line-height: 1.4em;
    margin-bottom: 35px;
    text-align: center;
  }
  #FLOW .f_bgimg1 {
    position: absolute;
    bottom: 20%;
    left: 24%;
    width: 13%;
  }
  #FLOW .f_bgimg2 {
    position: absolute;
    top: 10%;
    right: 23%;
    width: 13%;
  }
  #FLOW a {
    margin: 20px auto 0;
  }
  #FLOW ul {
    width: 100%;
  }
  #FLOW li {
    font-size: 14px;
  }
  #FLOW li figure {
    text-align: right;
    margin-left: 10%;
  }
  #FLOW dl {
    margin-bottom: 20px;
    position: relative;
  }
}
@media screen and (max-width:600px) {
  #FLOW .f_bgimg1 {
    position: absolute;
    bottom: 33%;
    left: 20%;
    width: 13%;
  }
  #FLOW .f_bgimg2 {
    position: absolute;
    top: 19%;
    right: 19%;
    width: 13%;
  }
  #FLOW h3 span {
    font-size: 16px;
  }
  #FLOW dt {
    width: 150px;
    height: 35px;
    font-size: 16px;
    bottom: 10%;
  }
  #FLOW li::before {
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #000000;
  }
  #FLOW li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
/*FAQ
---------------------------------------------------------------------------*/
#FAQ {
  max-width: 800px;
  margin: auto;
  padding-bottom: 95px;
  font-size: 20px;
}
#FAQ h2 {
  background: #fff;
  color: #000;
  margin: 0 auto 30px;
}
#FAQ h3 {
  margin-bottom: 70px;
  color: #fff;
}
.accordion {
  border-bottom: 2px solid #fff450;
}
.accordion-header {
  padding: 25px 45px 25px 20px;
  margin: 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  color: #fff;
  text-align: left;
  border-top: 2px solid #fff450;
  font-weight: bold;
}
.accordion-header::before, .accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #fff;
}
.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-header.active::after {
  transform: rotate(0deg);
}
.accordion-header.active {
  color: #fff;
}
.accordion-content {
  display: none;
  color: #fff;
  padding: 20px 20px 30px;
  text-align: left;
  position: relative;
}
.accordion-content span::before {
  position: absolute;
  content: "A";
  width: 45px;
  height: 45px;
  top: 0px;
  left: 0;
  color: #000;
  font-size: 28px;
  background: #fff;
  display: grid;
  place-content: center;
}
.accordion-content span {
  padding: 7px 0 20px 65px;
  position: relative;
}
.accordion-content a {
  color: #B90018;
}
.accordion-header span {
  padding: 7px 0 20px 65px;
  position: relative;
}
.accordion-header span::before {
  position: absolute;
  content: "Q";
  width: 45px;
  height: 45px;
  top: -2px;
  left: 0;
  color: #000;
  font-size: 28px;
  background: #fff450;
  display: grid;
  place-content: center;
}
/* hover */
@media screen and (max-width:1150px) {
  #FAQ {
    width: 90%;
    padding-bottom: 60px;
    font-size: 16px;
  }
  #FAQ h2 {
    margin: 0 auto 20px;
  }
  #FAQ h3 {
    margin-bottom: 40px;
  }
  .accordion-content span::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .accordion-content span {
    padding: 0px 0px 0px 45px;
  }
  .accordion-header span {
    padding: 0px 0px 0px 45px;
  }
  .accordion-header span::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}
@media screen and (max-width:600px) {
  #FAQ {
    width: 92%;
    font-size: 13px;
  }
  #FAQ h2 {
    margin: 0 auto 20px;
  }
  #FAQ h3 {
    margin-bottom: 40px;
  }
  .accordion-content span::before {
    position: absolute;
    content: "A";
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
  .accordion-content span {
    padding: 0px 0px 0px 38px;
    display: block;
  }
  .accordion-header span {
    padding: 0px 0px 0px 38px;
  }
  .accordion-header span::before {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
}
/*お問い合わせ
---------------------------------------------------------------------------*/
.inquiry {
  background: url("../images/contact_img.webp") left bottom no-repeat;
  max-width: 1920px;
  height: 520px;
  display: grid;
  place-content: center;
}
@media screen and (max-width:1150px) {
  .inquiry figure {
    width: 90%;
    margin: auto;
  }
  .inquiry {
    height: 40vh;
    background: url(../images/contact_img_sp.webp) left bottom no-repeat;
    background-size: contain;
  }
}
/*会社概要
---------------------------------------------------------------------------*/
.company {
  width: 800px;
  margin: auto;
}
.company h2 {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-left: 60px;
  margin: 0 auto 50px;
  font-size: 28px;
  width: 270px;
  padding: 15px 0px;
}
.company dl {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  padding: 30px 0px 30px 30px;
  border-top: 1px solid #8b8b8b;
  font-size: 20px;
  text-align: left;
  justify-content: start;
}
.company dl:last-of-type {
  border-bottom: 1px solid #8b8b8b;
}
.company dt {
  width: 300px;
  font-weight: bold;
}
@media screen and (max-width:1150px) {
  .company {
    width: 100%;
    margin: auto;
  }
  .company h2 {
    margin: 0 auto 30px;
    font-size: 16px;
    width: 160px;
    padding: 10px 0px;
  }
  .company dl {
    display: block;
    padding: 15px 0px 15px 15px;
    font-size: 13px;
  }
  .company dt {
    width: 100%;
    font-size: 14px;
  }
}
/*privacy
---------------------------------------------------------------------------*/
.privacy {
  width: 800px;
  margin: auto;
  text-align: left;
}
.privacy h2 {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-left: 60px;
  margin: 0 auto 50px;
  font-size: 28px;
  width: 340px;
  padding: 15px 0px;
}
.privacy p {
  margin: 0 auto 70px;
}
.privacy dl {
  margin: 0 auto 50px;
}
.privacy dl:last-of-type {
  margin: 0;
}
.privacy dt {
  border-bottom: 1px solid #8b8b8b;
  padding: 0px 20px 15px;
  font-size: 22px;
  font-weight: bold;
}
.privacy dd {
  padding: 20px;
}
@media screen and (max-width:1150px) {
  .privacy {
    width: 100%;
    margin: auto;
  }
  .privacy h2 {
    margin: 0 auto 30px;
    font-size: 14px;
    width: 160px;
    padding: 10px 0px;
  }
  .privacy p {
    margin: 0 auto 40px;
  }
  .privacy dl {
    margin: 0 auto 20px;
  }
  .privacy dl:last-of-type {
    margin: 0;
  }
  .privacy dt {
    border-bottom: 1px solid #8b8b8b;
    padding: 0px 0px 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .privacy dd {
    padding: 10px;
  }
}
/*モーダル
---------------------------------------------------------------------------*/
/* モーダルを開くボタン */
.modal__trigger {
  cursor: pointer;
}
/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 10%), 1000px);
  height: calc(100% - 10%);
  background: #fff;
  border: 4px solid #fff450;
}
.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 50px 20px 20px;
}
/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #555555;
  cursor: pointer;
  transition: opacity .6s;
}
.modal__close:hover {
  opacity: .6;
}
.modal__close:before, .modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}
/* モーダルを閉じるボタン */
.modal__close2 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  border-radius: 50px;
  width: 240px;
  height: 60px;
  transition: 0.3s;
  background-color: #555555;
  font-weight: bold;
  font-size: 20px;
  margin: 40px auto 0;
  cursor: pointer;
}
.modal__close2:hover {
  transition: .3s;
  opacity: 0.8;
}
.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* モーダル内のコンテンツ */
.modal__content {}
.modal__text {
  margin-top: 30px;
  line-height: 2.875;
}
@media screen and (max-width:1150px) {
  .modal__close2 {
    width: 200px;
    height: 45px;
    font-size: 16px;
    margin: 30px auto 0;
  }
  .modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: #555555;
    cursor: pointer;
    transition: opacity .6s;
  }
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center; /*内容をセンタリング*/
  padding: 30px 0 10px; /*ボックス内の余白*/
  background: #000;
  color: #fff; /*文字色*/
}
footer div {
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto 45px;
}
footer nav {
  text-align: right;
}
footer figure {}
footer li {
  list-style: none;
}
/*リンクテキスト*/
footer a {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
  transition: background .4s;
}
footer a:hover {
  background-size: 100% 2px;
}
footer span {
  text-align: center; /*内容をセンタリング*/
}
@media screen and (max-width:1150px) {
  footer {
    padding: 25px 0 10px; /*ボックス内の余白*/
  }
  footer div {
    display: block;
    width: 100%;
    margin: 0 auto 25px;
  }
  footer nav {
    text-align: center;
    margin-top: 20px;
  }
  footer span {
    font-size: 12px;
  }
  footer ul {
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    justify-content: space-between;
    width: 60%;
    margin: auto;
  }
  footer figure {
    width: 100px;
    margin: auto;
  }
}
/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
  background: url(../images/bg.jpg);
  padding: 320px 0 100px 0;
  margin-top: -250px;
}
@media screen and (max-width:1150px) {
  .bg1 {
    padding: 67vh 0 80px 0;
    margin-top: -60vh;
  }
}
@media screen and (max-width:600px) {
  .bg1 {
    padding: 52vh 0 80px 0;
    margin-top: -48vh;
  }
}
.bg2 {
  background: url(../images/bg.jpg);
  padding: 50px 0 0 0;
}
@media screen and (max-width:1150px) {
  .bg2 {
    background: url(../images/bg.jpg);
    padding: 40px 0 0 0;
  }
  .pc2 {
    display: none !important;
  }
}
/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-theme, .color-theme a {
  color: #ed7d0f !important;
}
.color-check, .color-check a {
  color: #f00 !important;
}
.c {
  text-align: center !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.small {
  font-size: 0.6em;
  letter-spacing: normal !important;
}
.large {
  font-size: 1.8em !important;
}
.block {
  display: block !important;
}
.sh {
  display: block;
}
.pc {
  display: none;
}
.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
/*---------------------------------------------------------------------------
ここから下は画面幅980px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1150px) {
  /*btnの設定
---------------------------------------------------------------------------*/
  html, body {
    scroll-padding-top: 110px;
  }
  footer {}
  /*d_menuブロック初期設定
---------------------------------------------------------------------------*/
  .d_menu.scroll {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 0px;
    padding: 5px 0;
    background: rgba(148, 151, 231, 0.8);
    animation-name: anime;
    animation-duration: 0.3s;
  }
  .d_menu.scroll.db {
    opacity: 0 !important;
    animation-duration: 0.3s;
  }
  .d_menu ul {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    list-style: none;
  }
  .d_menu li {
    text-align: center;
    width: 50%;
    border-left: 2px #fff dotted;
  }
  .d_menu li:first-child {
    border-left: none;
  }
  .d_menu li span {
    font-size: 12px;
    display: block;
  }
  .d_menu img {
    width: 40px;
  }
}
/*---------------------------------------------------------------------------
ここから下は画面幅980px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1150px) {
  /*全体の設定*/
  /*menubarブロック設定
---------------------------------------------------------------------------*/
  /*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
  /*ハンバーガーメニューを非表示にする*/
  #menubar_hdr {
    display: none;
  }
  /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none !important;
  }
  .pc {
    display: inline-block !important;
  }
  #menubar dl {
    display: none;
  }
}