@charset "UTF-8";
/*
Theme Name: レプリゼント
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins,
kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol,
ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot,
thead, tr, th, 　td, article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section, menu, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  font-weight: 500;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.4;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

section, article, aside, main, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  font-size: 2rem;
}

select::-ms-expand {
  display: none;
}

input[type=text], input[type=tel], input[type=email], input[type=radio], input[type=submit], button, textarea, select {
  font-family: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:after, *:before {
  font-family: inherit;
  color: inherit;
}

*, *:after, *:before {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Noto Serif SC", serif;
}

header {
  width: 100%;
  display: flex;
}
header .head_left {
  padding: 10px;
  width: 40%;
  background-color: rgb(150, 0, 0);
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .head_left {
    width: 70%;
    flex-direction: column;
    align-items: flex-start;
  }
}
header .head_left figure img {
  width: 100%;
}
header .head_left h1 {
  font-size: 1vw;
  color: #fff;
  margin: 0px 0px 0px 20px;
}
header .head_left .header-site-label {
  font-size: 1vw;
  color: #fff;
  margin: 0px 0px 0px 20px;
}
@media (max-width: 768px) {
  header .head_left h1,
  header .head_left .header-site-label {
    margin: 0px 0px 0px 0px;
    font-size: 1rem;
  }
}
header .head_right {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  header .head_right {
    flex-direction: row-reverse;
    width: 30%;
    background-color: rgb(150, 0, 0);
  }
}
header .head_right .contact {
  background-color: rgb(150, 0, 0);
  padding: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .head_right .contact {
    font-size: 3rem;
  }
}
header .head_right .contact a {
  background-color: rgb(150, 0, 0);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  header .head_right .contact a span {
    display: none;
  }
}

/*      ハンバーガーメニュー
---------------------------------------*/
/*　ハンバーガーボタン　*/
.hamburger {
  position: relative;
  display: block;
  z-index: 3;
  width: 52px;
  height: 52px;
  margin: 15px 30px 0px 0px;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 768px) {
  .hamburger {
    margin: 25px 30px 0px 0px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 42px;
  height: 2px;
  left: 6px;
  background: rgb(150, 0, 0);
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .hamburger span {
    background: rgb(255, 255, 255);
  }
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  position: absolute;
  right: 0;
}
@media (max-width: 768px) {
  .hamburger.active {
    right: -25px;
  }
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: -100vh;
  left: -100%;
  color: #fff;
  background: #960000;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

nav.globalMenuSp.active {
  top: 0vh;
  left: 0%;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 2rem;
  text-align: left;
}
@media (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 1.6rem;
  }
}
nav.globalMenuSp ul li a span {
  display: block;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  top: 0;
}
@media (max-width: 768px) {
  nav.globalMenuSp.active {
    flex-direction: column;
    overflow-y: scroll;
    padding-top: 200px;
  }
}
nav.globalMenuSp.active .nav_left {
  width: 30%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  nav.globalMenuSp.active .nav_left {
    width: 70%;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  nav.globalMenuSp.active .nav_left figure img {
    width: 60%;
  }
}

nav.globalMenuSp .nav_right {
  width: 40%;
  margin-left: 10%;
}
@media (max-width: 768px) {
  nav.globalMenuSp .nav_right {
    width: 92%;
    margin-left: 0;
    margin: 30px auto 0;
  }
}
nav.globalMenuSp .nav_right ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  nav.globalMenuSp .nav_right ul {
    justify-content: space-between;
  }
}
nav.globalMenuSp .nav_right ul li {
  width: 50%;
}
@media (max-width: 768px) {
  nav.globalMenuSp .nav_right ul li {
    width: 48%;
  }
}

.nav_contact {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
.nav_contact a {
  width: 100%;
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 0px;
}
.nav_contact a i {
  margin: 0px 10px 0px 0px;
}
.nav_contact a:hover {
  background-color: #fff;
  color: #960000;
}
.nav_contact a:hover i {
  color: #960000;
}

nav.globalMenuSp ul.sns {
  display: flex;
  margin-left: 30%;
}
@media (max-width: 768px) {
  nav.globalMenuSp ul.sns {
    margin-left: 0%;
    justify-content: center;
  }
}
nav.globalMenuSp ul.sns li {
  width: auto;
}
nav.globalMenuSp ul.sns li a {
  font-size: 3rem;
}
nav.globalMenuSp ul.sns li:nth-child(2) {
  margin: 0px 20px 0px 20px;
}

.mv {
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 0;
  z-index: -1;
}
.mv .video {
  position: absolute;
  left: 0;
  top: 0;
}

.secmv {
  background-color: #960000;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.secmv h2 {
  text-align: center;
}
@media (max-width: 768px) {
  .secmv h2 {
    font-size: 2.4rem;
  }
}
.secmv h2 span {
  color: #333;
  font-size: 2.1rem;
  display: block;
}
.secmv h2 span::before {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #960000;
  display: block;
  margin: 10px auto;
}
@media (max-width: 768px) {
  .secmv h2 span {
    font-size: 2rem;
  }
}

.company .secmv {
  background-image: url(img/company/mv.jpg);
  background-size: cover;
  color: #970000;
  font-size: 2.8rem;
}

.column01 {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
}
@media (max-width: 768px) {
  .column01 {
    flex-direction: column;
  }
}
.column01 .column01_left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .column01 .column01_left {
    width: 100%;
  }
}
.column01 .column01_left h2 {
  font-size: 9rem;
  color: #970000;
  display: inline-block;
}
@media (max-width: 768px) {
  .column01 .column01_left h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.column01 .column01_left h2 span {
  font-weight: normal;
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .column01 .column01_left h2 span {
    font-size: 2rem;
  }
}
.column01 .column01_right {
  width: 50%;
  background-color: rgb(150, 0, 0);
  padding: 150px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .column01 .column01_right {
    width: 100%;
    padding: 50px 10px;
  }
}
.column01 .column01_right p {
  line-height: 2;
}
.column01 .column01_right .btn {
  margin: 40px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: center;
}
.column01 .column01_right .btn a {
  background-color: #fff;
  padding: 10px 100px;
  color: #970000;
  position: relative;
}
.column01 .column01_right .btn a::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #210000;
}
.column01 .column01_right .btn a::after {
  content: "";
  transform: rotate(30deg);
  position: absolute;
  right: -30px;
  top: 41.5%;
  width: 10px;
  height: 1px;
  background-color: #210000;
}

.column02 {
  margin: 150px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column02 {
    margin: 50px 0px 0px 0px;
  }
}
.column02 h2 {
  text-align: center;
  width: 100%;
  font-size: 4rem;
  color: #970000;
}
@media (max-width: 768px) {
  .column02 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.column02 h2 span {
  color: #333333;
  display: block;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .column02 h2 span {
    font-size: 2rem;
  }
}
.column02 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column02 ul {
    flex-wrap: wrap;
    background-color: rgb(150, 0, 0);
  }
}
.column02 ul li {
  width: 33.333%;
  box-sizing: border-box;
  margin: 0px 0px 0px 0px;
  padding: 150px 30px;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .column02 ul li {
    width: 50%;
    padding: 100px 10px;
  }
}
.column02 ul li p {
  position: relative;
  z-index: 2;
}
.column02 ul li p span {
  display: block;
}
.column02 ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.column02 ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(33, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
.column02 ul li:hover::after {
  background-color: rgba(33, 0, 0, 0);
}
.column02 ul li:nth-child(1) {
  background-image: url(img/img01.jpg);
  background-size: cover;
}
.column02 ul li:nth-child(2) {
  background-image: url(img/img02.jpg);
  background-size: cover;
}
.column02 ul li:nth-child(3) {
  background-image: url(img/img03.jpg);
  background-size: cover;
}
.column02 ul li:nth-child(4) {
  background-image: url(img/img04.jpg);
  background-size: cover;
}
.column02 ul li:nth-child(5) {
  background-image: url(img/img08.jpg);
  background-size: cover;
}
.column02 ul li:nth-child(6) {
  background-image: url(img/img09.jpg);
  background-size: cover;
}
.column02 ul li.service-ai {
  background-image: linear-gradient(135deg, #3f0000 0%, #960000 58%, #b92727 100%);
  background-size: cover;
  background-position: center;
}

.column03 {
  max-width: 1100px;
  margin: 150px auto 0;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column03 {
    margin: 50px auto 0;
  }
}
.column03 a {
  color: #333;
}
.column03 h2 {
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .column03 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.column03 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .column03 h2 span {
    font-size: 2rem;
  }
}
.column03 ul {
  margin: 50px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
}
@media (max-width: 768px) {
  .column03 ul {
    flex-wrap: wrap;
  }
}
.column03 ul li {
  width: 23%;
  margin: 0px 1% 0px;
  padding: 0px 0px 0px 0px;
}
.column03 ul li .title {
  margin: 10px 0;
}
@media (max-width: 768px) {
  .column03 ul li {
    width: 48%;
  }
}
.column03 ul li figure {
  width: 100%;
  position: relative;
  text-align: center;
  display: block;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  border: 1px solid #ccc;
}
.column03 ul li figure span {
  position: absolute;
  bottom: 0px;
  right: 0px;
  color: #fff;
  background-color: rgb(150, 0, 0);
  padding: 5px;
}
.column03 .btn {
  margin: 70px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: center;
}
.column03 .btn a {
  background-color: #970000;
  padding: 10px 100px;
  color: #fff;
  position: relative;
}
.column03 .btn a::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #210000;
}
.column03 .btn a::after {
  content: "";
  transform: rotate(30deg);
  position: absolute;
  right: -30px;
  top: 41.5%;
  width: 10px;
  height: 1px;
  background-color: #210000;
}

.column04 {
  margin: 100px 0px 0px 20%;
  padding: 0px 0px 0px 0px;
  background: #efefef;
}
@media (max-width: 768px) {
  .column04 {
    margin: 50px 0px 0px 0%;
    padding: 20px 0;
  }
}
.column04 .column04_inner {
  max-width: 1100px;
  margin: 0 auto;
}
.column04 .column04_inner h2 {
  width: 100%;
  font-size: 9rem;
  color: #970000;
  margin: 0px 0px 0px -15%;
}
@media (max-width: 768px) {
  .column04 .column04_inner h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.column04 .column04_inner h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
.column04 .column04_inner02 {
  display: flex;
  align-items: stretch;
  margin: 0px 0px 0px -25%;
}
@media (max-width: 768px) {
  .column04 .column04_inner02 {
    flex-direction: column;
    margin: 0px auto 0%;
  }
}
.column04 .column04_inner02 .column04_left {
  margin: 50px 0px 0px 10%;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column04 .column04_inner02 .column04_left {
    margin: 0px auto 0%;
    width: 96%;
  }
}
.column04 .column04_inner02 .column04_right {
  margin: 0px 0px 0px 10%;
  padding: 0px 0px 0px 0px;
  width: 60%;
  line-height: 2;
}
@media (max-width: 768px) {
  .column04 .column04_inner02 .column04_right {
    margin: 20px auto 0%;
    width: 96%;
  }
}
.column04 .column04_inner02 .column04_right .btn {
  margin: 40px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: center;
}
.column04 .column04_inner02 .column04_right .btn a {
  background-color: #970000;
  padding: 10px 30px;
  color: #fff;
  position: relative;
}
.column04 .column04_inner02 .column04_right .btn a::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #210000;
}
.column04 .column04_inner02 .column04_right .btn a::after {
  content: "";
  transform: rotate(30deg);
  position: absolute;
  right: -30px;
  top: 41.5%;
  width: 10px;
  height: 1px;
  background-color: #210000;
}

.column05 {
  margin: 150px 0px 0px 0%;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column05 {
    margin: 50px 0px 0px 0%;
  }
}
.column05 h2 {
  width: 100%;
  text-align: center;
  font-size: 9rem;
  color: #970000;
  margin: 0px 0px 50px 0%;
}
@media (max-width: 768px) {
  .column05 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.column05 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .column05 h2 span {
    font-size: 2rem;
  }
}
.column05 .column05_inner {
  max-width: 1100px;
  margin: 0 auto -100px;
  background-color: #670808;
  padding: 100px 0px;
}
.column05 .column05_inner p {
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .column05 .column05_inner p {
    padding: 0 20px;
  }
}
.column05 .column05_inner .btn {
  margin: 40px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: center;
}
.column05 .column05_inner .btn a {
  background-color: #fff;
  padding: 10px 100px;
  color: #970000;
  position: relative;
}
.column05 .column05_inner .btn a::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #210000;
}
.column05 .column05_inner .btn a::after {
  content: "";
  transform: rotate(30deg);
  position: absolute;
  right: -30px;
  top: 41.5%;
  width: 10px;
  height: 1px;
  background-color: #210000;
}
.column05 .column05_inner ul {
  max-width: 60%;
  display: flex;
  justify-content: center;
  margin: 50px auto 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column05 .column05_inner ul {
    max-width: 90%;
    flex-direction: column;
  }
}
.column05 .column05_inner ul li {
  width: 46%;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .column05 .column05_inner ul li {
    width: 100%;
    margin: 0px 0px 30px 0px;
  }
}
.column05 .column05_inner ul li:nth-child(1) {
  margin-right: 8%;
  text-align: center;
}
.column05 .column05_inner ul li:nth-child(1) a {
  color: #670808;
  padding: 10px 0px;
  width: 100%;
  display: block;
  background-color: #fff;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid #fff;
}
.column05 .column05_inner ul li:nth-child(1) a::before {
  content: "";
  margin: 0px 10px 0px 0px;
  display: block;
  width: 27px;
  height: 27px;
  background-image: url(img/phone.png);
  background-size: cover;
}
.column05 .column05_inner ul li:nth-child(1) a:hover {
  background-color: #670808;
  color: #fff;
}
.column05 .column05_inner ul li:nth-child(1) a:hover::before {
  background-image: url(img/phone02.png);
}
.column05 .column05_inner ul li:nth-child(2) {
  text-align: center;
}
.column05 .column05_inner ul li:nth-child(2) a {
  color: #fff;
  padding: 10px 0px;
  width: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid #fff;
}
.column05 .column05_inner ul li:nth-child(2) a::before {
  content: "";
  margin: 0px 10px 0px 0px;
  display: block;
  width: 27px;
  height: 19px;
  background-image: url(img/mail.png);
  background-size: cover;
}
.column05 .column05_inner ul li:nth-child(2) a:hover {
  background-color: #fff;
  color: #670808;
}
.column05 .column05_inner ul li:nth-child(2) a:hover::before {
  background-image: url(img/mail02.png);
}

#myList {
  display: flex;
  position: relative;
  z-index: -1;
}

footer {
  display: flex;
  margin: -5px 0 0 0px;
  padding: 0px;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}
footer .map {
  width: 50%;
}
@media (max-width: 768px) {
  footer .map {
    width: 100%;
    height: 300px;
  }
}
footer .map iframe {
  width: 100%;
  height: 100%;
}
footer .footer_right {
  padding: 70px 0px;
  width: 50%;
  background-color: rgb(150, 0, 0);
  text-align: center;
}
footer .footer_right figure {
  width: 30%;
  display: block;
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  footer .footer_right figure {
    width: 50%;
  }
}
footer .footer_right figure figcaption {
  color: #fff;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  footer .footer_right {
    width: 100%;
  }
}
footer .footer_right .sns {
  display: flex;
  justify-content: center;
  margin: 0px 0px 20px 0px;
}
footer .footer_right .sns li {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
footer .footer_right .sns li a {
  color: #fff;
  font-size: 3rem;
}
footer .footer_right .sns li:nth-child(2) {
  margin: 0px 20px 0px 20px;
}
footer .footer_right .copy {
  color: #fff;
  font-size: 12px;
  margin: 30px 0px 0px 0px;
}
footer .footer_right .copy02 {
  color: #fff;
  font-size: 12px;
  margin: 0px 0px 0px 0px;
}

.site-header {
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 999;
}

.site-header.hide {
  transform: translateY(-100%);
}

/* section */
.section {
  width: 100%;
  height: 100vh !important;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .section {
    height: auto !important;
  }
}

.section.is-show .section-content {
  opacity: 1;
}

.invisible {
  visibility: hidden;
}

.section-content {
  max-width: 300px;
  margin: 0 auto;
  padding: 40px 60px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease 0.75s;
}

.section-item-symbol {
  height: 150px;
}

.section-item-description {
  color: #232323;
  font-size: 14px;
}

.mv_top {
  position: absolute;
  top: 0px;
  z-index: 9999;
  background-color: rgb(150, 0, 0);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv_top .txt_box {
  transform: translateY(-10%);
}
@media (max-width: 768px) {
  .mv_top .txt_box {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .mv_top {
    position: initial;
  }
}

.demoTxt {
  display: block;
  opacity: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  margin: 30px 0px 0px 0px;
}
@media (max-width: 768px) {
  .demoTxt {
    font-size: 2rem;
  }
}

.demoTxt span {
  opacity: 0;
  transition: 0.6s ease-in-out;
}

.effect-fade {
  opacity: 0;
  transform: translate(0, 100px); /* フェードインで動く高さを指定 */
  transition: all 2000ms; /* フェードインにかかる時間を指定 */
}

.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/*      会社概要
---------------------------------------*/
.companybox01 {
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .companybox01 {
    flex-direction: column;
  }
}
.companybox01 .companybox01_inner01 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .companybox01 .companybox01_inner01 {
    width: 100%;
  }
}
.companybox01 .companybox01_inner01 h2 {
  font-size: 4.8rem;
  color: #970000;
}
@media (max-width: 768px) {
  .companybox01 .companybox01_inner01 h2 {
    text-align: center;
  }
}
.companybox01 .companybox01_inner01 h2 span {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #333333;
}
.companybox01 .companybox01_inner01 h2 span::before {
  display: block;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #333333;
}
@media (max-width: 768px) {
  .companybox01 .companybox01_inner01 h2 span::before {
    margin: 0 auto;
  }
}
.companybox01 .companybox01_inner01 .companybox02 {
  width: 60%;
  position: absolute;
  bottom: 20px;
  padding: 50px;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 0 8px gray;
  margin: 0px 0px 0px -10px;
}
@media (max-width: 768px) {
  .companybox01 .companybox01_inner01 .companybox02 {
    width: 96%;
    position: inherit;
    padding: 20px;
    margin: 30px auto 0;
  }
}
.companybox01 .companybox01_inner01 .companybox02 h3 {
  font-size: 3rem;
  margin: 0px 0px 20px 0px;
}
.companybox01 .companybox01_inner01 .companybox02 p {
  font-size: 1.8rem;
}
.companybox01 figure {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .companybox01 figure {
    width: 96%;
    margin: 0 auto;
  }
}

.companybox03 {
  max-width: 1200px;
  margin: 100px auto;
}
.companybox03 h2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 3.6rem;
  text-align: center;
}
.companybox03 h2::before {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: #970000;
}
.companybox03 table {
  width: 100%;
  margin: 50px 0px 0px;
}
.companybox03 table th {
  font-size: 2.4rem;
  vertical-align: middle;
  width: 30%;
  padding: 20px;
  text-align: center;
  background-color: #970000;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .companybox03 table th {
    width: 100%;
    float: left;
  }
}
.companybox03 table td {
  font-size: 1.8rem;
  width: 70%;
  background-color: #f6f6f6;
  padding: 20px;
  border: 1px solid #fff;
}
.companybox03 table td input {
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
  padding: 5px;
}
.companybox03 table td select {
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 5px 10px;
}
.companybox03 table td textarea {
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
  padding: 5px;
}
@media (max-width: 768px) {
  .companybox03 table td {
    width: 100%;
    float: left;
  }
}

.business {
  margin: 150px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .business {
    margin: 50px 0px 0px 0px;
  }
}
.business h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
.business h2::after {
  content: "";
  width: 200px;
  height: 1px;
  background-color: #970000;
  display: block;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .business h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.business h2 span {
  color: #333333;
  display: block;
  font-size: 2.6rem;
}
@media (max-width: 768px) {
  .business h2 span {
    font-size: 1.8rem;
  }
}
.business .subtxt {
  text-align: center;
  margin: 30px auto 0px;
  font-size: 1.6rem;
  max-width: 1000px;
  padding: 0 30px;
  line-height: 2;
}
@media (max-width: 768px) {
  .business .subtxt {
    margin: 10px auto;
    font-size: 1.6rem;
    width: 100%;
    padding: 0 20px;
    text-align: left;
    margin: 0px auto 30px;
  }
}
.business ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px auto 0px;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .business ul {
    flex-wrap: wrap;
    background-color: rgb(150, 0, 0);
  }
}
.business ul li {
  width: 100%;
  box-sizing: border-box;
  margin: 0px 0% 0px;
  padding: 150px 30px;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .business ul li {
    width: 100%;
    padding: 100px 10px;
  }
}
.business ul li .txt_box {
  font-size: 1.8rem;
  border: 1px solid #fff;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
}
.business ul li .txt_box .title {
  font-size: 2rem;
  margin: 0px 0px 30px;
}
.business ul li .txt_box .morebtn {
  padding: 10px 0px;
  text-align: center;
  height: auto;
  background-color: #fff;
  color: #960000;
  max-width: 300px;
  margin: 30px auto 0;
}
.business ul li p {
  position: relative;
  z-index: 2;
}
.business ul li p span {
  display: block;
}
.business ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.business ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(33, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
.business ul li:hover::after {
  background-color: rgba(33, 0, 0, 0);
}
.business ul li:nth-child(1) {
  background-image: url(img/img01.jpg);
  background-size: cover;
}
.business ul li:nth-child(2) {
  background-image: url(img/img02.jpg);
  background-size: cover;
}
.business ul li:nth-child(3) {
  background-image: url(img/img03.jpg);
  background-size: cover;
}
.business ul li:nth-child(4) {
  background-image: url(img/img04.jpg);
  background-size: cover;
}
.business ul li:nth-child(5) {
  background-image: url(img/img05.jpg);
  background-size: cover;
}
.business ul:hover .txt_box {
  background-color: rgba(0, 0, 0, 0.8);
}

.video {
  margin: 100px 0px 100px;
}
.video ul {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .video ul {
    flex-direction: column-reverse;
  }
}
.video ul li {
  width: 50%;
  line-height: 3;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .video ul li {
    width: 100%;
    font-size: 1.8rem;
    line-height: 2;
  }
}
.video ul li:nth-child(1) {
  padding: 30px;
}
@media (max-width: 768px) {
  .video ul li:nth-child(1) {
    padding: 10px;
  }
}
.video ul li img {
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border: 4px solid #fff;
}
.video ul li span {
  color: #970000;
}

.videobox02 {
  margin: 100px 0px;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .videobox02 {
    padding: 30px 0px;
  }
}
.videobox02 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .videobox02 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.videobox02 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .videobox02 h2 span {
    font-size: 2rem;
  }
}
.videobox02 ul {
  background-color: #fff;
  max-width: 60%;
  margin: 100px auto;
  padding: 20px;
  border: 4px solid #960000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .videobox02 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.videobox02 ul li {
  margin: 40px 0px;
  text-align: center;
  font-size: 3rem;
  color: #960000;
}
@media (max-width: 768px) {
  .videobox02 ul li {
    font-size: 2.4rem;
  }
}
.videobox02 ul li span {
  color: #000;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .videobox02 ul li span {
    display: block;
  }
}

.videobox03 {
  margin: 100px 0px;
}
.videobox03 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .videobox03 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.videobox03 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .videobox03 h2 span {
    font-size: 2rem;
  }
}
.videobox03 .subtitle {
  font-size: 2.1rem;
  text-align: center;
  margin: 30px 0px 0px;
}
@media (max-width: 768px) {
  .videobox03 .subtitle {
    font-size: 1.6rem;
  }
  .videobox03 .subtitle br {
    display: none;
  }
}
.videobox03 ul {
  margin: 50px auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}
.videobox03 ul li {
  width: 31%;
  margin: 0 1%;
}
@media (max-width: 768px) {
  .videobox03 ul li {
    width: 48%;
  }
}
.videobox03 ul li .title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .videobox03 ul li .title {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .videobox03 ul li .txt {
    font-size: 1.4rem;
  }
}

.sns_list {
  margin: 50px 0px;
  display: flex;
  justify-content: center;
}
.sns_list li:nth-child(2) {
  margin: 0 20px;
}
.sns_list li:nth-child(3) {
  margin: 0 20px 0 0;
}
.sns_list li a {
  padding: 10px 30px;
  border: 1px solid #960000;
  border-radius: 10px;
  color: #960000;
  font-size: 1.8rem;
}
.sns_list li a i {
  margin-right: 5px;
}
.sns_list li a:hover {
  background-color: #960000;
  color: #fff;
}

.snsbox02 {
  margin: 100px 0px;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .snsbox02 {
    padding: 30px 0px;
  }
}
.snsbox02 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .snsbox02 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.snsbox02 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .snsbox02 h2 span {
    font-size: 2rem;
  }
}
.snsbox02 ul {
  background-color: #fff;
  max-width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .snsbox02 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.snsbox02 ul li {
  width: 31%;
  padding: 20px;
  border: 4px solid #960000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin: 40px 1%;
  text-align: center;
  position: relative;
}
.snsbox02 ul li span {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #960000;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
}
.snsbox02 ul li figure {
  width: 30%;
  margin: 0 auto;
}
.snsbox02 ul li .title {
  margin-bottom: 10px;
  font-size: 2.3rem;
  color: #960000;
}
@media (max-width: 768px) {
  .snsbox02 ul li .title {
    font-size: 1.8rem;
  }
}
.snsbox02 ul li .txt {
  font-size: 1.6rem;
}

.snsbox03 {
  margin: 100px 0px;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .snsbox03 {
    padding: 30px 0px;
  }
}
.snsbox03 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .snsbox03 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.snsbox03 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .snsbox03 h2 span {
    font-size: 2rem;
  }
}
.snsbox03 .subtxt {
  text-align: center;
  margin: 30px 0px 0px;
  font-size: 2.1rem;
}
.snsbox03 .website_box {
  background-color: #fff;
  text-align: center;
}
.snsbox03 ul {
  background-color: #fff;
  max-width: 1200px;
  margin: 100px auto;
  padding: 50px 10%;
}
@media (max-width: 768px) {
  .snsbox03 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.snsbox03 ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  width: 100%;
  margin: 40px 0;
  text-align: center;
  position: relative;
}
.snsbox03 ul li::after {
  content: "";
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  width: 100%;
  color: #960000;
  font-size: 2rem;
}
.snsbox03 ul li:last-child::after {
  display: none;
}
.snsbox03 ul li span {
  margin: 0px 10px 0px 0px;
  background-color: #960000;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
}
.snsbox03 ul li figure {
  width: 20%;
  border: 4px solid #960000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.snsbox03 ul li .txtbox {
  width: 70%;
}
.snsbox03 ul li .title {
  text-align: left;
  margin-bottom: 10px;
  font-size: 2.3rem;
  color: #960000;
}
@media (max-width: 768px) {
  .snsbox03 ul li .title {
    font-size: 1.8rem;
  }
}
.snsbox03 ul li .txt {
  text-align: left;
  font-size: 1.6rem;
}

.websaitbox03 {
  margin: 100px 0px;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .websaitbox03 {
    padding: 30px 0px;
  }
}
.websaitbox03 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .websaitbox03 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.websaitbox03 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .websaitbox03 h2 span {
    font-size: 2rem;
  }
}
.websaitbox03 .subtxt {
  text-align: center;
  margin: 30px 0px 0px;
  font-size: 2.1rem;
}
.websaitbox03 .website_box {
  background-color: #fff;
  text-align: center;
  padding: 50px 0px;
  margin: 50px 0px 0px;
  color: #970000;
  font-size: 3rem;
}
.websaitbox03 ul {
  background-color: #fff;
  max-width: 100%;
  padding: 0 10%;
  margin: 0px auto;
  padding: 50px 0%;
}
@media (max-width: 768px) {
  .websaitbox03 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.websaitbox03 ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  width: 100%;
  margin: 40px 0;
  text-align: center;
  position: relative;
  align-items: center;
}
.websaitbox03 ul li:last-child::after {
  display: none;
}
.websaitbox03 ul li span {
  margin: 0px 10px 0px 0px;
  background-color: #960000;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
}
.websaitbox03 ul li figure {
  width: 60%;
}
.websaitbox03 ul li .txtbox {
  width: 40%;
}
.websaitbox03 ul li .title {
  text-align: left;
  margin-bottom: 10px;
  font-size: 2.3rem;
  color: #960000;
}
@media (max-width: 768px) {
  .websaitbox03 ul li .title {
    font-size: 1.8rem;
  }
}
.websaitbox03 ul li .txt {
  text-align: left;
  font-size: 1.6rem;
}
.websaitbox03 ul li .note {
  text-align: left;
}

.websaitbox04 {
  margin: 100px 0px;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .websaitbox04 {
    padding: 30px 0px;
  }
}
.websaitbox04 .subtxt {
  text-align: center;
  margin: 20px 0px 0px 0px;
  font-size: 2.4rem;
}
.websaitbox04 .website_box {
  text-align: center;
  margin: 10px 0px 0px 0px;
  font-size: 2.4rem;
}
.websaitbox04 .website_box02 {
  text-align: center;
  margin: 10px 0px 0px 0px;
  font-size: 3.4rem;
  color: #970000;
}
.websaitbox04 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .websaitbox04 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.websaitbox04 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .websaitbox04 h2 span {
    font-size: 2rem;
  }
}
.websaitbox04 ul {
  background-color: #fff;
  max-width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .websaitbox04 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.websaitbox04 ul li {
  width: 40%;
  padding: 20px;
  border: 4px solid #960000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin: 40px 1%;
  text-align: center;
  position: relative;
}
.websaitbox04 ul li span {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #960000;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
}
.websaitbox04 ul li figure {
  width: 90%;
  margin: 0 auto;
}
.websaitbox04 ul li .title {
  margin-bottom: 10px;
  font-size: 3.3rem;
  color: #960000;
  margin: 30px 0px 10px;
}
@media (max-width: 768px) {
  .websaitbox04 ul li .title {
    font-size: 1.8rem;
  }
}
.websaitbox04 ul li .txt {
  font-size: 2.6rem;
}
.websaitbox04 .website_box03 {
  background-color: #960000;
  padding: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}
.websaitbox04 .website_box03 .title {
  font-size: 3rem;
  margin: 0px 0px 20px 0px;
}
.websaitbox04 .website_box03 .title span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.websaitbox04 .website_box03 .txt01 {
  font-size: 2.4rem;
}
.websaitbox04 .website_box03 .txt02 {
  margin: 10px 0px 0px 0px;
  font-size: 2.4rem;
}
.websaitbox04 .website_box03 .txt02 span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.websaitbox04 .website_box03 .website_box03_inner {
  padding: 20px;
  color: #960000;
  background-color: #fff;
  text-align: center;
}

.websaitbox05 {
  margin: 50px 0px;
  padding: 0px 0;
}
@media (max-width: 768px) {
  .websaitbox05 {
    padding: 30px 0px;
  }
}
.websaitbox05 ul {
  background-color: #fff;
  max-width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .websaitbox05 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.websaitbox05 ul li {
  width: 48%;
  padding: 20px;
  border: 4px solid #960000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin: 40px 1% 0;
  text-align: center;
  position: relative;
}
.websaitbox05 ul li span {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #960000;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
}
.websaitbox05 ul li figure {
  width: 90%;
  margin: 0 auto;
}
.websaitbox05 ul li figure img {
  width: 100%;
}
.websaitbox05 ul li .title {
  margin-bottom: 10px;
  font-size: 3.3rem;
  color: #960000;
  margin: 30px 0px 10px;
}
@media (max-width: 768px) {
  .websaitbox05 ul li .title {
    font-size: 1.8rem;
  }
}
.websaitbox05 ul li .txt {
  text-align: left;
  font-size: 1.8rem;
}

.appbox01 {
  margin: 100px 0px;
  padding: 100px 0;
  background-color: #ebebeb;
}
@media (max-width: 768px) {
  .appbox01 {
    padding: 30px 0px;
  }
}
.appbox01 h2 {
  text-align: center;
  width: 100%;
  font-size: 9rem;
  color: #970000;
}
@media (max-width: 768px) {
  .appbox01 h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.appbox01 h2 span {
  color: #333333;
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .appbox01 h2 span {
    font-size: 2rem;
  }
}
.appbox01 ul {
  background-color: #fff;
  max-width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .appbox01 ul {
    max-width: 100%;
    padding: 10px;
    margin: 10px auto;
  }
}
.appbox01 ul li {
  width: 31%;
  padding: 20px;
  border: 4px solid #960000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin: 40px 1%;
  text-align: center;
  position: relative;
}
.appbox01 ul li span {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #960000;
  padding: 3px 10px;
  font-size: 1.4rem;
  color: #fff;
}
.appbox01 ul li figure {
  width: 90%;
  margin: 0 auto;
}
.appbox01 ul li .title {
  margin-bottom: 10px;
  font-size: 2.3rem;
  color: #960000;
  margin: 10px 0 5px;
}
@media (max-width: 768px) {
  .appbox01 ul li .title {
    font-size: 1.8rem;
  }
}
.appbox01 ul li .txt {
  font-size: 1.6rem;
  text-align: left;
}

/*-----------------------------
 * top-slide
-----------------------------*/
/*slick setting*/
.slick-prev:before, .slick-next:before {
  color: #000;
}

.firstview {
  position: relative;
}

/*インジケーター設定*/
.slick-dots {
  margin-bottom: -10px;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 1.5rem;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /* 元のcontentプロパティの値だとfont-sizeを変更した際に位置がずれてしまうので値を変更 */
  /* content: '•'; */
  content: "●";
  text-align: center;
  opacity: 0.25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #b00f14; /* active時の色を変更 */
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.75;
  color: #b00f14; /* hover時の色を変更 */
}

.slick-slide img {
  display: inline; /*slick.cssにあるslick-slide img{display:block;}を打ち消し。slide03の画像がずれるので。*/
}

/*slide01*/
.slide01_wrapper {
  height: 100vh;
  background-image: url("img/slide01-photo.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.slide01_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .slide01_txt {
    width: 100%;
  }
}

@-webkit-keyframes title-hidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes title-hidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.slide01_txt_en {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 0.73em;
  -webkit-animation: title-hidden 0.8s linear 0s none running;
          animation: title-hidden 0.8s linear 0s none running;
  border-bottom: 5px solid #b00f14;
}

@-webkit-keyframes mask_fadeIn {
  0% {
    transform: none;
    transform-origin: 100% 0;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 0;
  }
}

@keyframes mask_fadeIn {
  0% {
    transform: none;
    transform-origin: 100% 0;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 0;
  }
}
.title-fadein {
  position: relative;
}

.title-fadein::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0); /*固定値のX方向の倍率を０に。アニメーション後の横幅が０になる。*/
  animation: mask_fadeIn 0.9s ease-out 0.7s none running;
  -webkit-animation: mask_fadeIn 0.9s ease-out 0.7s none running;
}

@-webkit-keyframes slide01-border_animation {
  0% {
    transform: scaleX(0);
    transform-origin: left top;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

@keyframes slide01-border_animation {
  0% {
    transform: scaleX(0);
    transform-origin: left top;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left top;
  }
}
.slide01_red-border {
  opacity: 0;
  border-top: 5px solid #b00f14;
  width: 485px;
  padding-bottom: 5px;
  margin-top: 3px;
  margin-bottom: 3px;
  text-align: left;
}

.border-fadein {
  opacity: 1;
  animation: slide01-border_animation 0.6s ease-out 0.8s 1 both running;
  -webkit-animation: slide01-border_animation 0.6s ease-out 0.8s 1 both running;
}

@-webkit-keyframes subtitle-hidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes subtitle-hidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.slide01_txt_ja {
  font-size: 2rem;
  font-weight: 500; /*未調整。R*/
  letter-spacing: 0.73em;
  animation: subtitle-hidden 2s linear 0s none running;
  -webkit-animation: subtitle-hidden 2s linear 0s none running;
}

@-webkit-keyframes mask_fadeIn2 {
  0% {
    transform: none;
    transform-origin: 0 100%;
  }
  45% {
    transform: none;
    transform-origin: 0 0;
  }
  50% {
    transform: none;
    transform-origin: 0 100%;
  }
  100% {
    transform: scaleY(0);
    transform-origin: 0 100%;
  }
}

@keyframes mask_fadeIn2 {
  0% {
    transform: none;
    transform-origin: 0 100%;
  }
  45% {
    transform: none;
    transform-origin: 0 0;
  }
  50% {
    transform: none;
    transform-origin: 0 100%;
  }
  100% {
    transform: scaleY(0);
    transform-origin: 0 100%;
  }
}
.subtitle-fadein {
  position: relative;
}

.subtitle-fadein::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleY(0); /*固定値のX方向の倍率を０に。アニメーション後の横幅が０になる。*/
  animation: mask_fadeIn2 1s ease-out 1.4s none running;
  -webkit-animation: mask_fadeIn2 1s ease-out 1.4s none running;
}

/*slide02*/
.slide02_wrapper {
  height: 100vh;
  background-image: url("img/slide02-photo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.slide02_txt {
  position: absolute;
  width: 80vw;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}

.slide02_txt_en {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 0.5em;
  line-height: 70px;
  margin-bottom: 5px;
}

.slide02_txt_ja01 {
  font-size: 2rem;
  font-weight: 400; /*未調整。R*/
  letter-spacing: 0.3em;
  margin-bottom: 94px;
}

.slide02_txt_ja02 {
  font-size: 1.5rem;
  font-weight: 300; /*未調整。R*/
  letter-spacing: 0.3em;
  line-height: 2;
}

/*slide03*/
@-webkit-keyframes slide03-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide03-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slide03_wrapper {
  height: 100vh;
  background-image: url("img/slide03-photo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.slide03_txt {
  position: absolute;
  width: 80vw;
  height: 950px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}

.slide03_title {
  position: absolute;
  width: 1100px;
  top: 222px;
  left: 50%;
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 0.4em; /*0.5にすると改行されてしまう。なぜ？*/
  transform: translate(-50%, 0%);
}

.slide03_dottedline {
  position: absolute;
  width: 80vw;
  top: 547px;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
  border-top: 4px dotted #fff;
}

/*.slide03_line {
  position: absolute;
  width: 100%;
  top: 538px;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
}
*/
.support01 {
  opacity: 0; /*アニメーション開始までは非表示*/
  position: absolute;
  top: 402px;
  left: 12.5%;
  transform: translate(-50%, 0);
}

.slick-active .support01 {
  animation: slide03-animation 1s linear 0.5s 1 forwards;
  -webkit-animation: slide03-animation 1s linear 0.5s 1 forwards;
}

.support_img {
  margin-bottom: 16px;
}

.support_en {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.support_ja {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.15em;
}

.support02 {
  opacity: 0; /*アニメーション開始まではsupport02は非表示*/
  position: absolute;
  top: 402px;
  left: 37.5%;
  transform: translate(-50%, 0);
}

.slick-active .support02 {
  animation: slide03-animation 1s linear 1s 1 forwards;
  -webkit-animation: slide03-animation 1s linear 1s 1 forwards;
}

.support03 {
  opacity: 0; /*アニメーション開始まではsupport03は非表示*/
  position: absolute;
  top: 399px;
  left: 62.5%;
  transform: translate(-50%, 0);
}

.slick-active .support03 {
  animation: slide03-animation 1s linear 1.5s 1 forwards;
  -webkit-animation: slide03-animation 1s linear 1.5s 1 forwards;
}

.support04 {
  opacity: 0; /*アニメーション開始まではsupport04は非表示*/
  position: absolute;
  top: 404px;
  left: 87.5%;
  transform: translate(-50%, 0);
}

.slick-active .support04 {
  animation: slide03-animation 1s linear 2s 1 forwards;
  -webkit-animation: slide03-animation 1s linear 2s 1 forwards;
}

.support04_img {
  margin-bottom: 38px;
}

.support04_en {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin-bottom: 40px;
}

.slide03-img_sp {
  display: none;
}

@media screen and (max-width: 680px) {
  /*-----------------------------
  	 * sp-slider
  	-----------------------------*/
  .firstview {
    max-width: 100%;
    height: auto;
  }
  .slide01_wrapper {
    height: 100vh;
  }
  .slide01_txt_en {
    font-size: 8vw;
    letter-spacing: 0.3em;
  }
  .slide01_txt_ja {
    font-size: 4vw;
    letter-spacing: 0.5em;
  }
  .slide01_red-border {
    width: 80vw;
  }
  .slide02_wrapper {
    height: 100vh;
  }
  .slide02_txt {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .slide02_txt_en {
    letter-spacing: 0.2em;
    font-size: 6vw;
    line-height: 34px;
  }
  .slide02_txt_ja01 {
    font-size: 4vw;
    letter-spacing: 0.2em;
  }
  .slide02_txt_ja02 {
    font-size: 3.5vw;
    letter-spacing: 0.2em;
  }
  .slide03_wrapper {
    height: 100vh;
  }
  .slide03_txt {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    pading: 0 20px;
  }
  .slide03_title {
    top: 20%;
    font-size: 7vw;
    letter-spacing: 0.2em;
  }
  .slide03-img_pc {
    display: none;
  }
  .slide03-img_sp {
    display: block;
    position: absolute;
    width: 70vw;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-arrow_wrapping {
    margin-right: 0px;
  }
  .slick-dots {
    margin-bottom: 56px;
  }
  .slick-dots li button:before {
    color: #C8C6C6;
  }
}
.scroll-downs {
  position: absolute;
  bottom: 0;
  right: 0;
  bottom: 10%;
  left: 0;
  margin: auto;
  width: 34px;
  height: 55px;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
          animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
.white {
  color: #fff;
}

.website_box01 {
  margin: 100px auto;
}
.website_box01 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.website_box01 .inner h2 {
  text-align: center;
  width: 100%;
  font-size: 4rem;
  color: #970000;
}
@media (max-width: 768px) {
  .website_box01 .inner h2 {
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 20px 0px 20px 0px;
  }
}
.website_box01 .inner h2 span {
  color: #333333;
  display: block;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .website_box01 .inner h2 span {
    font-size: 2rem;
  }
}
.website_box01 .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.website_box01 .inner ul li {
  width: 31%;
  margin-bottom: 50px;
  position: relative;
  padding: 10px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .website_box01 .inner ul li {
    width: 100%;
  }
}
.website_box01 .inner ul li:hover {
  background-color: #ccc;
}
.website_box01 .inner ul li a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.website_box01 .inner ul li h3 {
  margin-bottom: 10px;
  display: flex;
}
.website_box01 .inner ul li h3 span {
  margin-left: auto;
  display: inline-block;
}
.website_box01 .inner ul li p {
  font-size: 1.6rem;
  line-height: 2;
}
.website_box01 .inner ul li p::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #960000;
  margin-bottom: 10px;
}

.websaite_contents {
  margin: 100px auto 0;
}
.websaite_contents .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .websaite_contents .inner {
    padding: 0 20px;
  }
}
.websaite_contents .inner h2 {
  text-align: center;
  width: 100%;
  font-size: 4rem;
  color: #970000;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .websaite_contents .inner h2 {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin: 20px 0px 20px 0px;
  }
}
.websaite_contents .inner h2 span {
  color: #333333;
  display: block;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .websaite_contents .inner h2 span {
    font-size: 2rem;
  }
}
.websaite_contents .inner .subtxt {
  text-align: center;
  margin: 30px auto 0px;
  font-size: 1.6rem;
  max-width: 1000px;
  padding: 0 30px;
  line-height: 2;
}
@media (max-width: 768px) {
  .websaite_contents .inner .subtxt {
    padding: 0 0px;
    text-align: left;
  }
}
.websaite_contents .inner .sub_ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.websaite_contents .inner .sub_ttl::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #960000;
  margin-top: 10px;
}
.websaite_contents .bg_gr {
  background-color: #f1f0f0;
  margin-top: 50px;
  padding: 50px 0;
}
.websaite_contents .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .websaite_contents .flex_box {
    flex-direction: column-reverse;
  }
}
.websaite_contents .flex_box.reverse {
  flex-direction: row-reverse;
  margin: 50px auto;
}
@media (max-width: 768px) {
  .websaite_contents .flex_box.reverse {
    flex-direction: column-reverse;
  }
}
.websaite_contents .left_box {
  width: 48%;
}
@media (max-width: 768px) {
  .websaite_contents .left_box {
    width: 100%;
    padding: 0 10px;
  }
}
.websaite_contents .right_box {
  width: 48%;
  text-align: center;
}
@media (max-width: 768px) {
  .websaite_contents .right_box {
    width: 100%;
  }
}
.websaite_contents .point_list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .websaite_contents .point_list li br {
    display: none;
  }
}
.websaite_contents .point_list li:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 17px;
  top: -2px;
  left: 7px;
  transform: rotate(50deg);
  border-right: 2px solid #960000;
  border-bottom: 2px solid #960000;
}
.websaite_contents .point_list li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #960000;
  border-radius: 2px;
}
.websaite_contents .flow {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .websaite_contents .flow {
    flex-direction: column;
  }
}
.websaite_contents .flow dt {
  width: 100px;
  height: 100px;
  background-color: rgb(150, 0, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .websaite_contents .flow dt {
    margin-bottom: 20px;
  }
}
.websaite_contents .flow dt::after {
  content: "";
  display: block;
  width: 1px;
  height: 265px;
  background-color: #333;
  position: absolute;
  bottom: -264px;
  z-index: -1;
}
@media (max-width: 768px) {
  .websaite_contents .flow dt::after {
    display: none;
  }
}
.websaite_contents .flow dt.none::after {
  display: none;
}
.websaite_contents .flow dd {
  width: calc(100% - 100px);
  padding: 0 0 0 50px;
  margin-bottom: 100px;
  line-height: 2;
}
@media (max-width: 768px) {
  .websaite_contents .flow dd {
    padding: 0 0 0 0px;
    width: 100%;
    position: relative;
  }
}
.websaite_contents .flow dd h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .websaite_contents .flow dd h3 {
    position: absolute;
    top: -100px;
    left: 36%;
  }
}
.websaite_contents .flow dd h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #960000;
  margin-top: 10px;
}

.faq {
  margin-top: 100px;
}
.faq dt {
  display: flex;
  align-items: center;
  font-size: 2rem;
  border-bottom: 1px solid #960000;
  padding-bottom: 20px;
}
.faq dt span {
  margin-right: 20px;
  background-color: #960000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq dd {
  margin-top: 30px;
  font-size: 1.8rem;
  align-items: center;
  margin-bottom: 100px;
}
.faq dd span {
  float: left;
  margin-right: 20px;
  background-color: #c7c7c7;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* アコーディオン */
.container_accordion {
  margin: 40px auto 60px;
  width: 100%;
}

.container_accordion h3 {
  font-size: 1.5em;
  font-weight: 500;
  display: inline-block;
  padding: 0 0.4em 0.4em;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .container_accordion h3 {
    padding: 0 0 0.4em;
    text-align: left;
    display: block;
  }
}
.accordion .accordion-item {
  border-bottom: 1px solid lightgray;
}

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #D80C18;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #313131;
  font-size: 2rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .accordion button {
    font-size: 1.6rem;
    padding-right: 25px;
  }
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #D80C18;
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #D80C18;
  border: 1px solid #D80C18;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: #D80C18;
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 21em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 2em 0;
}
@media screen and (max-width: 768px) {
  .accordion .accordion-content p {
    font-size: 1.6rem;
    margin: 1em 0 2em;
  }
}

.sbmit {
  margin-top: 50px;
  text-align: center;
  font-size: 2rem;
}
.sbmit input.riset {
  background-color: #ccc;
  color: #fff;
  margin-left: 20px;
  border: none;
  border-radius: 0;
  padding: 15px 0;
  width: 40%;
}
.sbmit input {
  background-color: #970000;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 15px 50px;
  width: 40%;
  text-align: center;
}

.thanks_txt {
  text-align: center;
}

.pan {
  padding: 20px;
}
.pan ul {
  display: flex;
}
.pan ul li a {
  color: #333;
}
.pan ul li a::after {
  content: ">";
  margin: 0 5px;
}

.media_wapper {
  padding: 30px 0;
  margin: 30px 0;
}
.media_wapper .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .media_wapper .inner {
    flex-direction: column;
  }
}
.media_wapper .inner h2 {
  font-size: 2rem;
  color: rgb(150, 0, 0);
}
@media screen and (max-width: 768px) {
  .media_wapper .inner h2 {
    text-align: center;
  }
}
.media_wapper .inner ul {
  display: flex;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .media_wapper .inner ul {
    flex-direction: column;
    margin-left: 0;
    margin-top: 20px;
  }
}
.media_wapper .inner ul li {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .media_wapper .inner ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.media_wapper .inner ul li a {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1.6rem;
  display: block;
  color: #333;
  transition: 0.3s;
}
.media_wapper .inner ul li a:hover {
  border: 1px solid rgb(150, 0, 0);
  padding: 10px;
  font-size: 1.6rem;
  display: block;
  background-color: rgb(150, 0, 0);
  color: #fff;
  transition: 0.3s;
}

.single_box {
  margin-bottom: 50px;
}
@media only screen and (max-width: 750px) {
  .single_box {
    padding: 0 25px;
    margin-top: 0px;
  }
}
.single_box .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.single_box .inner .single_box_top {
  display: flex;
  align-items: center;
}
.single_box .inner .single_box_top .category-name {
  display: inline-flex;
  padding: 6px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line-lightbaige, #E5E4D5);
  margin-right: 20px;
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
}
.single_box .inner .single_box_top .day {
  font-family: Termina;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}
.single_box .inner .ttl {
  font-family: YuGothic;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 52.5px */
  letter-spacing: 1.2px;
  margin-top: 12px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .ttl {
    /* jp/sp/title/21 */
    font-family: YuGothic;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%; /* 36.75px */
    letter-spacing: 0.84px;
  }
}
.single_box .inner .single_box_content {
  padding-bottom: 80px;
  border-bottom: 1px solid #D4D4D4;
}
.single_box .inner .single_box_content p {
  color: var(--black, #333);
  text-align: justify;
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
  margin: 0px 0 20px;
}
.single_box .inner .single_box_content p.strong {
  font-weight: 700;
}
.single_box .inner .single_box_content h2 {
  text-align: center;
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 42px */
  letter-spacing: 0.96px;
  margin-bottom: 30px;
  border-top: 1px solid rgb(150, 0, 0);
  border-bottom: 1px solid rgb(150, 0, 0);
  margin-top: 50px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content h2 {
    color: var(--text-black, #292929);
    font-size: 18px;
    letter-spacing: 0.72px;
    text-align: left;
  }
}
.single_box .inner .single_box_content h3 {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 29.75px */
  letter-spacing: 0.68px;
  padding: 0.5em; /*文字周りの余白*/
  background: #eddbdb; /*背景色*/
  border-left: solid 5px #960000; /*左線（実線 太さ 色）*/
  margin-bottom: 10px;
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content h3 {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.single_box .inner .single_box_content h4 {
  border-bottom: solid 3px #eddbdb;
  position: relative;
  margin-bottom: 10px;
  margin-top: 30px;
}
.single_box .inner .single_box_content h4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #960000;
  bottom: -3px;
  width: 30%;
}
.single_box .inner .single_box_content ul {
  padding: 20px;
  list-style-position: inside;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content ul {
    padding: 20px 0;
  }
}
.single_box .inner .single_box_content ul li {
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content ul li {
    padding-left: 0px;
  }
}
.single_box .inner .single_box_content ol {
  padding: 20px;
  list-style-position: inside;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .single_box_content ol {
    padding: 20px 0;
  }
}
.single_box .inner .single_box_content ol li {
  padding-left: 20px;
  margin-bottom: 10px;
}
.single_box .inner .single_box_content .wp-element-caption {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 21px */
  letter-spacing: 0.48px;
}
.single_box .inner .supervision {
  margin-top: 45px;
}
.single_box .inner .supervision h2 {
  color: var(--text-black, #292929);
  font-family: YuGothic;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 42px */
  letter-spacing: 0.96px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision h2 {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}
.single_box .inner .supervision .supervision_inner {
  display: flex;
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision .supervision_inner {
    flex-direction: column;
  }
}
.single_box .inner .supervision .supervision_inner figure {
  width: 40%;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision .supervision_inner figure {
    width: 100%;
  }
}
.single_box .inner .supervision .supervision_inner .txt_box {
  width: 60%;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .supervision .supervision_inner .txt_box {
    width: 100%;
  }
}
.single_box .inner .supervision .supervision_inner .txt_box .name {
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 29.75px */
  letter-spacing: 0.68px;
}
.single_box .inner .supervision .supervision_inner .txt_box .job_title {
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
.single_box .inner .supervision .supervision_inner .txt_box .txt {
  color: var(--black, #333);
  text-align: justify;
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
.single_box .inner .categories {
  background: rgb(150, 0, 0);
  padding: 30px 50px;
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories {
    padding: 30px 20px;
  }
}
.single_box .inner .categories ul {
  display: flex;
  flex-wrap: wrap;
}
.single_box .inner .categories ul li {
  margin: 0 10px 10px;
  display: flex;
  align-items: flex-start;
}
.single_box .inner .categories ul li a {
  display: inline-flex;
  padding: 6px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line-lightbaige, #fff);
  color: var(--black, #fff);
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
}
.single_box .inner .sns_box {
  padding-top: 60px;
  border-top: 1px solid #D4D4D4;
  margin-top: 45px;
}
.single_box .inner .sns_box ul {
  display: flex;
  justify-content: center;
}
.single_box .inner .sns_box ul li:nth-child(2) {
  margin: 0 30px;
}
.single_box .inner .page_list {
  margin-top: 80px;
  position: relative;
  min-height: 50px;
}
.single_box .inner .page_list li a {
  color: var(--black, #333);
  font-family: Termina;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 17px */
  letter-spacing: 0.68px;
}
.single_box .inner .page_list .next {
  float: right;
  display: inline-block;
}
.single_box .inner .page_list .next a {
  display: flex;
  align-items: center;
}
.single_box .inner .page_list .next a::after {
  content: "";
  background-image: url(../img/singl/button_small_next.svg);
  width: 19px;
  height: 19px;
  display: block;
  margin-left: 10px;
}
.single_box .inner .page_list .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.single_box .inner .page_list .prev {
  float: left;
  display: inline-block;
}
.single_box .inner .page_list .prev a {
  display: flex;
  align-items: center;
}
.single_box .inner .page_list .prev a::before {
  content: "";
  background-image: url(../img/singl/button_small_prev.svg);
  width: 19px;
  height: 19px;
  display: block;
  margin-right: 10px;
}

.blgo {
  padding: 50px 50px;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .blgo {
    padding: 30px 25px;
  }
}
.blgo h2 {
  color: var(--black, #333);
  /* jp/pc/title/30 */
  font-family: YuGothic;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 52.5px */
  letter-spacing: 1.2px;
  margin-bottom: 50px;
}
.blgo h2 span {
  display: block;
  color: var(--red, #9C2335);
  /* en/pc/title/16 */
  font-family: Termina;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.blgo .blog_list {
  display: flex;
  margin-left: -1%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .blgo .blog_list {
    flex-direction: column;
    margin-left: 0%;
  }
}
.blgo .blog_list .blog_list_inner {
  width: 31%;
  margin: 0 1% 20px;
}
@media only screen and (max-width: 750px) {
  .blgo .blog_list .blog_list_inner {
    width: 100%;
  }
}
.blgo .blog_list .blog_list_inner .category_box {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.blgo .blog_list .blog_list_inner .category_box .day {
  color: var(--black, #333);
  font-family: Termina;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
  margin-right: 16px;
}
.blgo .blog_list .blog_list_inner .category_box figure {
  border: 1px solid #ccc;
}
.blgo .blog_list .blog_list_inner .category_box .category {
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
  color: var(--black, #333);
  display: inline-flex;
  padding: 6px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line-lightbaige, #E5E4D5);
}
.blgo .blog_list .blog_list_inner .ttl {
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
.blgo .blog_list .blog_list_inner .txt {
  color: var(--black, #333);
  font-family: YuGothic;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
  letter-spacing: 0.48px;
}
.blgo .blog_list_news .blog_list_inner {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E5E4D5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.blgo .blog_list_news .blog_list_inner .day {
  color: var(--black, #333);
  font-family: Termina;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
  margin-right: 50px;
}
.blgo .blog_list_news .blog_list_inner .ttl {
  font-family: YuGothic;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
.blgo .blog_list_news .blog_list_inner .ttl a {
  color: var(--black, #333);
}

.pan {
  display: flex;
  flex-wrap: wrap;
}
.pan span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.pan span a {
  color: var(--black, #333);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.pan span::after {
  content: ">";
  font-size: 1rem;
  margin: 0 10px;
}
.pan span:last-of-type::after {
  display: none;
}

.privacy_top {
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0 20px;
}

.privacy_name {
  text-align: right;
  margin-top: 20px;
  padding: 0 20px;
}

.privacy {
  padding: 0 20px;
}
.privacy dt {
  margin-bottom: 10px;
}
.privacy dd {
  margin-bottom: 20px;
}
.privacy dd ol {
  padding-left: 20px;
  margin-top: 10px;
}
.privacy dd a {
  color: #333;
  text-decoration: underline;
}

.footer_list {
  margin: 10px 0;
}
.footer_list li a {
  color: #fff;
}

.lme_list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .lme_list {
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
.lme_list li {
  width: 18%;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
}
@media only screen and (max-width: 750px) {
  .lme_list li {
    width: 48%;
    margin-bottom: 20px;
  }
}

.lme_list02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 750px) {
  .lme_list02 {
    padding: 0 10px;
  }
}
.lme_list02 li {
  width: 32%;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .lme_list02 li {
    width: 48%;
  }
}

.jimu_list01 {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .jimu_list01 {
    flex-direction: column;
    padding: 0 20px;
  }
}
.jimu_list01 li {
  width: 31%;
}
@media only screen and (max-width: 750px) {
  .jimu_list01 li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.jimu_list01 li h3 {
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #960000;
}
.jimu_list01 li figure {
  margin-bottom: 20px;
}

.jumu_check {
  max-width: 600px;
  margin: 40px auto;
}
@media only screen and (max-width: 750px) {
  .jumu_check {
    padding: 0 20px;
  }
}
.jumu_check li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.jumu_check li p {
  width: calc(100% - 33px);
}
.jumu_check li::before {
  content: "";
  background-image: url(../img/check.png);
  background-size: cover;
  width: 33px;
  height: 30px;
  display: block;
  margin-right: 10px;
}

.category_mv {
  max-width: 1200px;
  margin: 0 auto;
}

.wp-block-embed iframe {
  width: 100%;
  height: 500px;
}
@media only screen and (max-width: 750px) {
  .wp-block-embed iframe {
    height: 200px;
  }
}

.pagination {
  margin: 40px 0 0;
}

.nav-links {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .nav-links {
    flex-wrap: wrap;
  }
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 20px;
  padding: 20px 25px;
  color: #333;
  border-radius: 3px;
  box-shadow: 0 3px 3px #999;
  background: #fff;
}
@media only screen and (max-width: 750px) {
  .pagination .page-numbers {
    padding: 10px 15px;
  }
}

.pagination .current {
  padding: 20px 25px;
  background: rgb(150, 0, 0);
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .pagination .current {
    padding: 10px 15px;
  }
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: rgb(150, 0, 0);
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
}

.relpost-block-container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  .relpost-block-container {
    flex-direction: column;
  }
}

.relpost-block-single {
  border-right: none !important;
  border-left: none !important;
}

.relpost-block-container a {
  width: 31%;
}
@media only screen and (max-width: 750px) {
  .relpost-block-container a {
    width: 100%;
  }
}

.relpost-block-container a .relpost-custom-block-single {
  width: 100% !important;
  height: 270px !important;
}

.relpost-block-container a .relpost-block-single-image {
  width: 100% !important;
  height: 200px !important;
}

.relpost-block-container a .relpost-block-single-text {
  text-align: left;
  margin-top: 10px;
  font-size: 1.8rem;
}/*# sourceMappingURL=style.css.map */



#related_posts {
	background-color:#fff;
	padding: 30px 0;
}
#related_posts ul{
	display:flex;
}
#related_posts ul li{
	list-style:none;
	width:31%;
	margin:0 1%;
}

#related_posts ul li h3{
	font-size:14px;
	margin-top:5px;
}

@media(max-width:750px){
#related_posts ul{
	flex-direction:column;
	padding: 0 20px;
}
	#related_posts ul li{
	list-style:none;
	width:100%;
	margin:0 0% 20px 0;
}
}


.kutikomi{
	margin:50px auto;
	max-width:1200px;
	padding:0 20px;
}




.faqMv {
  padding: 80px 0 50px;
  background: #f7f8fb;
  text-align: center;

  .inner {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
  }

  h1 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.4;
  }

  p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
  }
}

.faqArchive__section,
.faqSingle__section {
  padding: 70px 0;

  .inner {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
  }
}

.faqArchive__cats,
.faqSingle__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-bottom: 34px;

  a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;

    &:hover,
    &.is-current {
      background: #111;
      color: #fff;
      border-color: #111;
    }
  }
}

.faqList {
  display: grid;
  gap: 18px;
}

.faqItem {
  a {
    display: block;
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: .3s;

    &:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }
  }

  h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.6;
  }

  p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
  }
}

.faqSingle__content {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
}

.faqSingle__question {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.6;
}

.faqSingle__answer {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.faqSingle__label {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #960000;
}

.faqSingle__body {
  font-size: 16px;
  line-height: 2;
  color: #444;

  p {
    margin: 0 0 18px;
  }
}

.faqSingle__related {
  max-width: 880px;
  margin: 40px auto 0;
  padding: 28px;
  background: #f7f8fb;
  border-radius: 18px;

  h2 {
    margin: 0 0 18px;
    font-size: 22px;
  }

  ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  li {
    list-style: none;
  }

  a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;

    &:hover {
      background: #111;
      color: #fff;
      border-color: #111;
    }
  }
}

.faqSingle__nav,
.faqPagination {
  margin-top: 34px;
  text-align: center;

  a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .faqMv {
    padding: 60px 0 36px;

    h1 {
      font-size: 26px;
    }
  }

  .faqArchive__section,
  .faqSingle__section {
    padding: 50px 0;
  }

  .faqSingle__content {
    padding: 22px;
  }

  .faqSingle__question {
    font-size: 20px;
  }

  .faqSingle__answer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
