@charset "UTF-8";
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;
}
@media (max-width: 768px) {
  header .head_left h1 {
    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: 17px 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:nth-child(7) {
  background-image: url(img/img10.jpg);
  background-size: cover;
}

.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;
  line-height: 0;
}
.column03 ul li figure span {
  position: absolute;
  bottom: 0px;
  right: 0px;
  color: #fff;
  background-color: rgb(150, 0, 0);
  padding: 5px;
  line-height: 1.5;
}
.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: 100%;
  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;
}
.companybox03 table th span {
  font-size: 1.6rem;
  margin-left: 5px;
}
@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;
}
.business.completion {
  margin: 50px 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;
}
@media (max-width: 768px) {
  .website_box01 .inner {
    padding: 0 20px;
  }
}
.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;
  padding: 0 10px 10px 10px;
  margin-top: 10px;
}
.website_box01 .inner ul li:hover a {
  border: none;
}
.website_box01 .inner ul li a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .website_box01 .inner ul li a {
    width: 97%;
  }
}
.website_box01 .inner ul li h3 {
  margin-bottom: 10px;
  display: flex;
  padding: 10px 10px 0 10px;
}
.website_box01 .inner ul li h3 span {
  margin-left: auto;
  display: inline-block;
}
.website_box01 .inner ul li p {
  padding: 0 10px 0 10px;
  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;
}
@media (max-width: 768px) {
  .websaite_contents {
    margin: 30px 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: 2.4rem;
    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;
}
@media (max-width: 768px) {
  .websaite_contents .inner .sub_ttl {
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 20px;
  }
}
.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%;
}
.websaite_contents .left_box p {
  line-height: 2;
}
@media (max-width: 768px) {
  .websaite_contents .left_box {
    width: 100%;
    padding: 0px;
  }
}
.websaite_contents .right_box {
  width: 48%;
  text-align: center;
}
.websaite_contents .right_box p {
  line-height: 2;
}
@media (max-width: 768px) {
  .websaite_contents .right_box {
    width: 100%;
  }
}
.websaite_contents .point_list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
  line-height: 2;
}
.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: 32%;
  }
}
.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;
  line-height: 2;
  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 .thumbnail {
  margin-bottom: 20px;
  margin-top: 20px;
}
.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: 16px;
  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 5px 10px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.single_box .inner .categories ul li ul {
  margin: 0px 0px 0px 10px;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories ul li ul {
    margin: 10px 0px 0px 0px;
  }
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories ul li ul li {
    margin: 0px 10px 10px 0;
  }
  .single_box .inner .categories ul li ul li:first-child {
    margin: 10px 10px 10px 0;
  }
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories ul li ul li ul {
    margin: 0px 10px 10px 0;
  }
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories ul li ul li ul li {
    margin: 10px 10px 10px 0;
  }
}
.single_box .inner .categories ul li ul li:first-child {
  margin: 0px 10px 10px 0;
}
@media only screen and (max-width: 750px) {
  .single_box .inner .categories ul li ul li:first-child {
    margin: 0px 10px 10px 0;
  }
}
.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: 40px auto 0;
}
@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;
}
.jimu_list01 li p {
  line-height: 2;
}

.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;
}

.footer_sitemap {
  background-color: #960000;
  padding: 50px 0;
  margin-bottom: 30px;
}
.footer_sitemap .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner {
    padding: 0 20px;
  }
}
.footer_sitemap .inner h2 {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer_sitemap .inner h2 {
    position: relative;
    pointer-events: all;
  }
  .footer_sitemap .inner h2::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #fff;
    right: 0;
    top: 30%;
  }
  .footer_sitemap .inner h2::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 3px;
    height: 25px;
    background-color: #fff;
    right: 10px;
  }
  .footer_sitemap .inner h2.activ::after {
    display: none;
  }
}
.footer_sitemap .inner .footer_seo_text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  line-height: 1.9;
  margin: 0 0 30px;
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner .footer_seo_text {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: block !important;
  }
}
.footer_sitemap .inner .footer_sitemap_wappper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px 50px;
}
.footer_sitemap .inner .footer_sitemap_wappper.start {
  justify-content: flex-start;
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner .footer_sitemap_wappper {
    flex-direction: column;
    display: none;
    gap: 20px;
  }
  .footer_sitemap .inner .footer_sitemap_wappper.activ {
    display: block;
  }
}
.footer_sitemap .inner .footer_sitemap_wappper > li {
  margin-right: 0;
  min-width: 220px;
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner .footer_sitemap_wappper > li {
    min-width: 100%;
  }
}
.footer_sitemap .inner .footer_sitemap_wappper > li > p {
  margin-bottom: 18px;
  color: #fff;
}
.footer_sitemap .inner .footer_sitemap_wappper > li > p > a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
}
.footer_sitemap .inner .footer_sitemap_wappper > li > p > a::before {
  content: "";
  display: block;
  left: 4px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box {
    flex-direction: column;
    gap: 14px;
  }
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul {
  padding-left: 15px;
  margin-top: 5px;
  min-width: 220px;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul.start {
  padding-left: 0;
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul {
    padding-left: 5px;
    min-width: 100%;
  }
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li {
  margin-bottom: 10px;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > a {
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 1.8;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > a::before {
  content: "";
  display: block;
  left: 4px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > ul {
  padding-left: 14px;
  margin-top: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 750px) {
  .footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > ul {
    padding-left: 10px;
  }
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > ul li {
  margin-bottom: 8px;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > ul li a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}
.footer_sitemap .inner .footer_sitemap_wappper > li .footer_flex_box > ul > li > ul li a::before {
  content: "";
  display: block;
  left: 4px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}

.fee_box_service {
  border: 3px solid #ab6161;
  padding: 30px;
  text-align: center;
  margin-top: 20px;
  border-radius: 20px;
}
.fee_box_service p {
  font-size: 4rem;
  color: #970000;
}
.fee_box_service p span {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.template_list_wapper {
  display: flex;
  margin: 30px 0 100px;
  gap: 10px;
}
.template_list_wapper li {
  width: 32%;
}

.template-sale-lp {
  background: #fff;
  color: #222;
}

.template-sale-lp .inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 20px;
}

.template-sale-lp .inner.narrow {
  width: min(100%, 900px);
}

.template-fv {
  padding: 110px 0 90px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.template-fv__sub,
.sec-title {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #777;
  font-weight: 700;
}

.template-fv__title {
  margin: 0 0 24px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.35;
  font-weight: 700;
}

.template-fv__text,
.lead,
.sec-lead {
  color: #666;
  line-height: 2;
  font-size: 15px;
}

.template-fv__btns,
.template-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  min-width: 220px;
  padding: 16px 22px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  transition: 0.3s;
}

.btn--fill {
  background: #222;
  color: #fff;
}

.btn--line {
  background: #fff;
  color: #222;
}

.btn:hover {
  opacity: 0.8;
}

.template-intro,
.template-feature,
.template-list-sec,
.how-to-buy,
.template-cta {
  padding: 90px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.feature-card,
.template-card {
  border: 1px solid #e8e8e8;
  padding: 30px;
  background: #fff;
}

.feature-card h3,
.template-card__title,
.flow-item__body h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.5;
}

.feature-card p,
.template-card__text,
.flow-item__body p,
.template-cta__text {
  margin: 0;
  color: #666;
  line-height: 2;
  font-size: 14px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.template-card__meta {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #888;
  font-weight: 700;
}

.template-card__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.link-btn {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #222;
  text-decoration: none;
  color: #222;
  font-weight: 700;
}

.link-btn:hover {
  opacity: 0.7;
}

.flow-list {
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}

.flow-item__num {
  font-size: 22px;
  font-weight: 700;
  color: #999;
}

.template-cta {
  border-top: 1px solid #eee;
  text-align: center;
}

.template-cta__title {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .template-fv {
    padding: 80px 0 64px;
  }
  .template-intro,
.template-feature,
.template-list-sec,
.how-to-buy,
.template-cta {
    padding: 64px 0;
  }
  .feature-grid,
.template-grid {
    grid-template-columns: 1fr;
  }
  .flow-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-card,
.template-card {
    padding: 22px;
  }
  .btn {
    min-width: 100%;
  }
}
.template-contact-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 20px 100px;
}

.template-contact-page__head {
  text-align: center;
  margin-bottom: 42px;
}

.template-contact-page__sub {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  color: #888;
  font-weight: 700;
}

.template-contact-page__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.template-contact-page__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #666;
}

.template-contact-page__form {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px 40px;
  border: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
}

.template-contact-page__form .wpcf7 {
  width: 100%;
}

.template-contact-page__form .wpcf7 form {
  margin: 0;
}

.template-contact-page__form .wpcf7 label {
  display: block;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  color: #222;
}

.template-contact-page__form .wpcf7 input[type=text],
.template-contact-page__form .wpcf7 input[type=email],
.template-contact-page__form .wpcf7 input[type=tel],
.template-contact-page__form .wpcf7 select,
.template-contact-page__form .wpcf7 textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px 18px;
  border: 1px solid #dcdcdc;
  background: #fff;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.template-contact-page__form .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.template-contact-page__form .wpcf7 input[type=text]:focus,
.template-contact-page__form .wpcf7 input[type=email]:focus,
.template-contact-page__form .wpcf7 input[type=tel]:focus,
.template-contact-page__form .wpcf7 select:focus,
.template-contact-page__form .wpcf7 textarea:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.template-contact-page__form .wpcf7 select {
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 48px;
}

.template-contact-page__form .wpcf7 input::-moz-placeholder, .template-contact-page__form .wpcf7 textarea::-moz-placeholder {
  color: #999;
}

.template-contact-page__form .wpcf7 input:-ms-input-placeholder, .template-contact-page__form .wpcf7 textarea:-ms-input-placeholder {
  color: #999;
}

.template-contact-page__form .wpcf7 input::placeholder,
.template-contact-page__form .wpcf7 textarea::placeholder {
  color: #999;
}

.template-contact-page__form .wpcf7 .wpcf7-acceptance {
  display: block;
  margin: 10px 0 28px;
}

.template-contact-page__form .wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  color: #555;
}

.template-contact-page__form .wpcf7 .wpcf7-acceptance input {
  margin-top: 3px;
}

.template-contact-page__form .wpcf7 input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 16px 26px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.template-contact-page__form .wpcf7 input[type=submit]:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.template-contact-page__form .wpcf7 .wpcf7-submit {
  display: block;
  margin: 0 auto;
}

.template-contact-page__form .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #d63638;
}

.template-contact-page__form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .template-contact-page {
    padding: 52px 16px 72px;
  }
  .template-contact-page__form {
    padding: 24px 18px;
  }
  .template-contact-page__form .wpcf7 input[type=text],
.template-contact-page__form .wpcf7 input[type=email],
.template-contact-page__form .wpcf7 input[type=tel],
.template-contact-page__form .wpcf7 select,
.template-contact-page__form .wpcf7 textarea {
    padding: 14px 14px;
    font-size: 14px;
  }
  .template-contact-page__form .wpcf7 input[type=submit] {
    width: 100%;
    min-width: 100%;
  }
}
.line_flow {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .line_flow {
    top: auto;
    transform: none;
    left: 0;
    width: 100%;
    bottom: 0;
  }
}
.line_flow a {
  background-color: #06c755;
  color: #fff;
  padding: 10px;
}
@media (max-width: 750px) {
  .line_flow a {
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media (min-width: 751px) {
  .line_flow a {
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

/* =========================================
   Case Archive / Taxonomy / Single
========================================= */
.caseArchive,
.caseSingle {
  padding: 0 0 80px;
}

.caseArchive .inner,
.caseSingle .inner {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

/* ---------- FV ---------- */
.caseArchive__fv,
.caseSingle__fv {
  padding: 72px 0 40px;
  background: #f7f8fb;
}

.caseArchive__sub,
.caseSingle__cats {
  margin: 0 0 12px;
}

.caseArchive__sub {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgb(150, 0, 0);
  text-transform: uppercase;
}

.caseArchive__title,
.caseSingle__title {
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
}

.caseArchive__title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.caseSingle__title {
  font-size: clamp(2.6rem, 3.8vw, 4rem);
}

.caseArchive__lead,
.caseSingle__lead {
  margin: 20px 0 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
}

/* ---------- Filter ---------- */
.caseArchive__filter {
  padding: 28px 0 12px;
}

.caseArchive__filterList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.caseArchive__filterBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #d8deea;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.3s;
}

.caseArchive__filterBtn:hover,
.caseArchive__filterBtn.is-active {
  border-color: rgb(150, 0, 0);
  background: rgb(150, 0, 0);
  color: #fff;
}

/* ---------- Grid ---------- */
.caseArchive__content {
  padding-top: 24px;
}

.caseArchive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.caseCard {
  height: 100%;
}

.caseCard__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.caseCard__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.caseCard__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef2f7;
}

.caseCard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.caseCard__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.caseCard__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.caseCard__cat,
.caseSingle__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3ff;
  color: rgb(150, 0, 0);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.caseCard__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  color: #222;
}

.caseCard__excerpt {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #666;
}

.caseCard__meta,
.caseSingle__meta {
  margin: 0;
}

.caseCard__metaRow,
.caseSingle__metaRow {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #eef1f5;
}

.caseCard__metaRow:first-child,
.caseSingle__metaRow:first-child {
  border-top: none;
}

.caseCard__metaRow dt,
.caseSingle__metaRow dt {
  font-size: 1.3rem;
  font-weight: 700;
  color: #444;
}

.caseCard__metaRow dd,
.caseSingle__metaRow dd {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666;
}

/* ---------- Pagination ---------- */
.caseArchive__pagination {
  margin-top: 40px;
  text-align: center;
}

.caseArchive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 4px;
  padding: 0 12px;
  border: 1px solid #d8deea;
  border-radius: 10px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
}

.caseArchive__pagination .page-numbers.current,
.caseArchive__pagination .page-numbers:hover {
  background: rgb(150, 0, 0);
  border-color: rgb(150, 0, 0);
  color: #fff;
}

.caseArchive__empty {
  padding: 50px 20px;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

/* ---------- Single ---------- */
.caseSingle__main {
  padding-top: 40px;
}

.caseSingle__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.caseSingle__content {
  min-width: 0;
}

.caseSingle__hero {
  overflow: hidden;
  border-radius: 20px;
  background: #eef2f7;
}

.caseSingle__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.caseSingle__editor {
  margin-top: 32px;
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}

.caseSingle__editor h2,
.caseSingle__heading {
  margin: 56px 0 20px;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.caseSingle__editor h3,
.caseSingle__subheading {
  margin: 28px 0 14px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  color: #222;
}

.caseSingle__editor p {
  margin: 0 0 1.4em;
}

.caseSingle__editor ul,
.caseSingle__editor ol {
  margin: 0 0 1.6em 1.4em;
  padding: 0;
}

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

.caseSingle__section {
  margin-top: 48px;
}

.caseSingle__box {
  padding: 24px;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  background: #fff;
}

.caseSingle__box + .caseSingle__box {
  margin-top: 16px;
}

.caseSingle__box p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

.caseSingle__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.caseSingle__figure {
  margin: 0;
}

.caseSingle__figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  background: #fff;
}

.caseSingle__figure figcaption {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #666;
  text-align: center;
}

/* ---------- Sidebar ---------- */
.caseSingle__sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.caseSingle__info,
.caseSingle__cta {
  padding: 24px;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.caseSingle__cta {
  margin-top: 20px;
}

.caseSingle__sideTitle {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.caseSingle__cta p {
  margin: 0 0 18px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
}

.caseSingle__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgb(150, 0, 0);
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: 0.3s;
}

.caseSingle__ctaBtn:hover {
  background: rgb(150, 0, 0);
  color: #fff;
}

/* ---------- Nav ---------- */
.caseSingle__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #e8edf5;
}

.caseSingle__navItem--next {
  text-align: right;
}

.caseSingle__nav a {
  color: rgb(150, 0, 0);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

.caseSingle__nav a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .caseArchive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .caseSingle__layout {
    grid-template-columns: 1fr;
  }
  .caseSingle__sidebar {
    position: static;
    top: auto;
  }
}
@media (max-width: 767px) {
  .caseArchive,
.caseSingle {
    padding-bottom: 56px;
  }
  .caseArchive__fv,
.caseSingle__fv {
    padding: 56px 0 30px;
  }
  .caseArchive__lead,
.caseSingle__lead {
    font-size: 1.5rem;
  }
  .caseArchive__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .caseCard__body {
    padding: 16px;
  }
  .caseCard__title {
    font-size: 1.8rem;
  }
  .caseSingle__gallery {
    grid-template-columns: 1fr;
  }
  .caseSingle__box {
    padding: 18px;
  }
  .caseSingle__nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .caseSingle__navItem--next {
    text-align: center;
  }
  .caseCard__metaRow,
.caseSingle__metaRow {
    grid-template-columns: 72px 1fr;
  }
}
@media (max-width: 750px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .pc_hide {
    display: none !important;
  }
}
/* =========================================
   大阪市ページ専用
========================================= */
.osakaWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.osakaWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.osakaWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.osakaWebDesign .lowerPageHead p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* =========================================
   セクション共通
========================================= */
.osakaWebDesign .pageSection {
  padding: 70px 0;
}

.osakaWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 5px solid #970000;
  font-size: 28px;
  line-height: 1.4;
}

.osakaWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* =========================================
   リスト初期化
========================================= */
.osakaWebDesign ul,
.osakaWebDesign ol {
  margin: 0;
  padding: 0;
}

.osakaWebDesign ul li,
.osakaWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.osakaWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.osakaWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.osakaWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.osakaWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.osakaWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   お悩み
========================================= */
.osakaWebDesign .troubleList {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.osakaWebDesign .troubleItem {
  padding: 20px;
  border-left: 4px solid #970000;
  background: #f9faff;
  box-sizing: border-box;
}

.osakaWebDesign .troubleItem h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.6;
}

.osakaWebDesign .troubleItem p {
  margin: 0;
}

/* =========================================
   ポイント
========================================= */
.osakaWebDesign .pointList {
  margin-top: 20px;
  padding-left: 20px;
}

.osakaWebDesign .pointList li {
  list-style: decimal;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   業種一覧
========================================= */
.osakaWebDesign .industryList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.osakaWebDesign .industryList li {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   エリア一覧
========================================= */
.osakaWebDesign .areaList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.osakaWebDesign .areaList li {
  display: inline-block;
  background: #f1f3f7;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   制作事例
========================================= */
.osakaWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.osakaWebDesign .caseItem {
  width: 100%;
}

.osakaWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.osakaWebDesign .caseItem__thumb {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.osakaWebDesign .caseItem__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.osakaWebDesign .caseItem__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   ボタン
========================================= */
.osakaWebDesign .pageBtnWrap,
.osakaWebDesign .ctaBtnWrap {
  margin-top: 24px;
  text-align: center;
}

.osakaWebDesign .pageBtn,
.osakaWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.osakaWebDesign .pageBtn:hover,
.osakaWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   CTA
========================================= */
.osakaWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .osakaWebDesign .serviceList,
.osakaWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .osakaWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .osakaWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .osakaWebDesign .pageSection {
    padding: 50px 0;
  }
  .osakaWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .osakaWebDesign .serviceList,
.osakaWebDesign .caseList {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   都島区ページ専用
========================================= */
.miyakojimaWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.miyakojimaWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.miyakojimaWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.miyakojimaWebDesign .lowerPageHead p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* =========================================
   セクション共通
========================================= */
.miyakojimaWebDesign .pageSection {
  padding: 70px 0;
}

.miyakojimaWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  font-size: 28px;
  line-height: 1.4;
}

.miyakojimaWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* =========================================
   リスト初期化
========================================= */
.miyakojimaWebDesign ul,
.miyakojimaWebDesign ol {
  margin: 0;
  padding: 0;
}

.miyakojimaWebDesign ul li,
.miyakojimaWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.miyakojimaWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.miyakojimaWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.miyakojimaWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.miyakojimaWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.miyakojimaWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   制作事例
========================================= */
.miyakojimaWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.miyakojimaWebDesign .caseItem {
  width: 100%;
}

.miyakojimaWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.miyakojimaWebDesign .caseItem figure {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.miyakojimaWebDesign .caseItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.miyakojimaWebDesign .caseItem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   CTA
========================================= */
.miyakojimaWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

.miyakojimaWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.miyakojimaWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .miyakojimaWebDesign .serviceList,
.miyakojimaWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .miyakojimaWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .miyakojimaWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .miyakojimaWebDesign .pageSection {
    padding: 50px 0;
  }
  .miyakojimaWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .miyakojimaWebDesign .serviceList,
.miyakojimaWebDesign .caseList {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   京橋ページ専用
========================================= */
.kyobashiWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.kyobashiWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.kyobashiWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.kyobashiWebDesign .lowerPageHead p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* =========================================
   セクション共通
========================================= */
.kyobashiWebDesign .pageSection {
  padding: 70px 0;
}

.kyobashiWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  font-size: 28px;
  line-height: 1.4;
}

.kyobashiWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* =========================================
   リスト初期化
========================================= */
.kyobashiWebDesign ul,
.kyobashiWebDesign ol {
  margin: 0;
  padding: 0;
}

.kyobashiWebDesign ul li,
.kyobashiWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.kyobashiWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.kyobashiWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.kyobashiWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.kyobashiWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.kyobashiWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   制作事例
========================================= */
.kyobashiWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.kyobashiWebDesign .caseItem {
  width: 100%;
}

.kyobashiWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.kyobashiWebDesign .caseItem figure {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.kyobashiWebDesign .caseItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kyobashiWebDesign .caseItem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   CTA
========================================= */
.kyobashiWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

.kyobashiWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.kyobashiWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .kyobashiWebDesign .serviceList,
.kyobashiWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .kyobashiWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .kyobashiWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .kyobashiWebDesign .pageSection {
    padding: 50px 0;
  }
  .kyobashiWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .kyobashiWebDesign .serviceList,
.kyobashiWebDesign .caseList {
    grid-template-columns: 1fr;
  }
}
.miyakojimaWebDesign .pageLeadLink,
.miyakojimaWebDesign .pageLinkText {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

.miyakojimaWebDesign .pageBtnWrap {
  margin-top: 24px;
  text-align: center;
}

.miyakojimaWebDesign .pageBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
}

/* =========================================
   北区ページ専用
========================================= */
.kitaWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.kitaWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.kitaWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.kitaWebDesign .lowerPageHead p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.kitaWebDesign .pageLeadLink {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   セクション共通
========================================= */
.kitaWebDesign .pageSection {
  padding: 70px 0;
}

.kitaWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 5px solid #970000;
  font-size: 28px;
  line-height: 1.4;
}

.kitaWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.kitaWebDesign .pageLinkText {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   リスト初期化
========================================= */
.kitaWebDesign ul,
.kitaWebDesign ol {
  margin: 0;
  padding: 0;
}

.kitaWebDesign ul li,
.kitaWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.kitaWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.kitaWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.kitaWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.kitaWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.kitaWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   制作事例
========================================= */
.kitaWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.kitaWebDesign .caseItem {
  width: 100%;
}

.kitaWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.kitaWebDesign .caseItem figure {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.kitaWebDesign .caseItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kitaWebDesign .caseItem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   ボタン
========================================= */
.kitaWebDesign .pageBtnWrap {
  margin-top: 24px;
  text-align: center;
}

.kitaWebDesign .pageBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.kitaWebDesign .pageBtn:hover {
  opacity: 0.85;
}

/* =========================================
   CTA
========================================= */
.kitaWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

.kitaWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.kitaWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   リンク
========================================= */
.kitaWebDesign a {
  transition: 0.3s;
}

.kitaWebDesign a:hover {
  opacity: 0.8;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .kitaWebDesign .serviceList,
.kitaWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .kitaWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .kitaWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .kitaWebDesign .lowerPageHead p {
    font-size: 15px;
  }
  .kitaWebDesign .pageSection {
    padding: 50px 0;
  }
  .kitaWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .kitaWebDesign .serviceList,
.kitaWebDesign .caseList {
    grid-template-columns: 1fr;
  }
  .kitaWebDesign .serviceItem,
.kitaWebDesign .caseItem {
    padding: 16px;
  }
}
/* =========================================
   中央区ページ専用
========================================= */
.chuoWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.chuoWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.chuoWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.chuoWebDesign .lowerPageHead p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.chuoWebDesign .pageLeadLink {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   セクション共通
========================================= */
.chuoWebDesign .pageSection {
  padding: 70px 0;
}

.chuoWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 5px solid #970000;
  font-size: 28px;
  line-height: 1.4;
}

.chuoWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.chuoWebDesign .pageLinkText {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   リスト初期化
========================================= */
.chuoWebDesign ul,
.chuoWebDesign ol {
  margin: 0;
  padding: 0;
}

.chuoWebDesign ul li,
.chuoWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.chuoWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.chuoWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.chuoWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.chuoWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.chuoWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   制作事例
========================================= */
.chuoWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.chuoWebDesign .caseItem {
  width: 100%;
}

.chuoWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.chuoWebDesign .caseItem figure {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.chuoWebDesign .caseItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.chuoWebDesign .caseItem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   ボタン
========================================= */
.chuoWebDesign .pageBtnWrap {
  margin-top: 24px;
  text-align: center;
}

.chuoWebDesign .pageBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.chuoWebDesign .pageBtn:hover {
  opacity: 0.85;
}

/* =========================================
   CTA
========================================= */
.chuoWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

.chuoWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.chuoWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   リンク
========================================= */
.chuoWebDesign a {
  transition: 0.3s;
}

.chuoWebDesign a:hover {
  opacity: 0.8;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .chuoWebDesign .serviceList,
.chuoWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .chuoWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .chuoWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .chuoWebDesign .lowerPageHead p {
    font-size: 15px;
  }
  .chuoWebDesign .pageSection {
    padding: 50px 0;
  }
  .chuoWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .chuoWebDesign .serviceList,
.chuoWebDesign .caseList {
    grid-template-columns: 1fr;
  }
  .chuoWebDesign .serviceItem,
.chuoWebDesign .caseItem {
    padding: 16px;
  }
}
/* =========================================
   福島区ページ専用
========================================= */
.fukushimaWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.fukushimaWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.fukushimaWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.fukushimaWebDesign .lowerPageHead p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.fukushimaWebDesign .pageLeadLink {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   セクション共通
========================================= */
.fukushimaWebDesign .pageSection {
  padding: 70px 0;
}

.fukushimaWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 5px solid #970000;
  font-size: 28px;
  line-height: 1.4;
}

.fukushimaWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.fukushimaWebDesign .pageLinkText {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   リスト初期化
========================================= */
.fukushimaWebDesign ul,
.fukushimaWebDesign ol {
  margin: 0;
  padding: 0;
}

.fukushimaWebDesign ul li,
.fukushimaWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.fukushimaWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fukushimaWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.fukushimaWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.fukushimaWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.fukushimaWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   制作事例
========================================= */
.fukushimaWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.fukushimaWebDesign .caseItem {
  width: 100%;
}

.fukushimaWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fukushimaWebDesign .caseItem figure {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.fukushimaWebDesign .caseItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fukushimaWebDesign .caseItem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   ボタン
========================================= */
.fukushimaWebDesign .pageBtnWrap {
  margin-top: 24px;
  text-align: center;
}

.fukushimaWebDesign .pageBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.fukushimaWebDesign .pageBtn:hover {
  opacity: 0.85;
}

/* =========================================
   CTA
========================================= */
.fukushimaWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

.fukushimaWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.fukushimaWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   リンク
========================================= */
.fukushimaWebDesign a {
  transition: 0.3s;
}

.fukushimaWebDesign a:hover {
  opacity: 0.8;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .fukushimaWebDesign .serviceList,
.fukushimaWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .fukushimaWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .fukushimaWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .fukushimaWebDesign .lowerPageHead p {
    font-size: 15px;
  }
  .fukushimaWebDesign .pageSection {
    padding: 50px 0;
  }
  .fukushimaWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .fukushimaWebDesign .serviceList,
.fukushimaWebDesign .caseList {
    grid-template-columns: 1fr;
  }
  .fukushimaWebDesign .serviceItem,
.fukushimaWebDesign .caseItem {
    padding: 16px;
  }
}
.areaInternalLinks {
  padding: 70px 0;
  background: #f7f8fb;
}

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

.areaInternalLinks__title {
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 5px solid #970000;
  font-size: 28px;
  line-height: 1.4;
}

.areaInternalLinks__lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.areaInternalLinks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.areaInternalLinks__item {
  list-style: none;
}

.areaInternalLinks__item a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  line-height: 1.6;
  transition: 0.3s;
}

.areaInternalLinks__item a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.areaInternalLinks__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.areaInternalLinks__sub a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #970000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: 0.3s;
}

.areaInternalLinks__sub a:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .areaInternalLinks {
    padding: 50px 0;
  }
  .areaInternalLinks__title {
    font-size: 22px;
  }
  .areaInternalLinks__sub {
    flex-direction: column;
  }
  .areaInternalLinks__sub a {
    text-align: center;
  }
}
.border_left {
  border-left: none !important;
}

/* =========================================
   地域ページ共通
========================================= */
.areaWebDesign {
  overflow: hidden;
}

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

/* =========================================
   ヘッダー
========================================= */
.areaWebDesign .lowerPageHead {
  padding: 80px 0 40px;
  background: #f7f8fb;
  text-align: center;
}

.areaWebDesign .lowerPageHead h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.4;
}

.areaWebDesign .lowerPageHead p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.areaWebDesign .pageLeadLink {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   セクション共通
========================================= */
.areaWebDesign .pageSection {
  padding: 70px 0;
}

.areaWebDesign .pageSection h2 {
  margin: 0 0 20px;
  padding-left: 12px;
  border-left: 5px solid #970000;
  font-size: 28px;
  line-height: 1.4;
}

.areaWebDesign .pageSection p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.areaWebDesign .pageLinkText {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================
   リスト初期化
========================================= */
.areaWebDesign ul,
.areaWebDesign ol {
  margin: 0;
  padding: 0;
}

.areaWebDesign ul li,
.areaWebDesign ol li {
  list-style: none;
}

/* =========================================
   サービス一覧
========================================= */
.areaWebDesign .serviceList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.areaWebDesign .serviceItem {
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-sizing: border-box;
  transition: 0.3s;
}

.areaWebDesign .serviceItem:hover {
  transform: translateY(-5px);
}

.areaWebDesign .serviceItem h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
}

.areaWebDesign .serviceItem p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =========================================
   制作事例
========================================= */
.areaWebDesign .caseList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.areaWebDesign .caseItem {
  width: 100%;
}

.areaWebDesign .caseItem a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.areaWebDesign .caseItem figure {
  margin: 0 0 12px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}

.areaWebDesign .caseItem figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.areaWebDesign .caseItem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================================
   ボタン
========================================= */
.areaWebDesign .pageBtnWrap {
  margin-top: 24px;
  text-align: center;
}

.areaWebDesign .pageBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.areaWebDesign .pageBtn:hover {
  opacity: 0.85;
}

/* =========================================
   CTA
========================================= */
.areaWebDesign .ctaSection {
  background: #f7f8fb;
  text-align: center;
}

.areaWebDesign .ctaBtn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #111;
  color: #fff;
  line-height: 1.4;
  transition: 0.3s;
}

.areaWebDesign .ctaBtn:hover {
  opacity: 0.85;
}

/* =========================================
   リンク
========================================= */
.areaWebDesign a {
  transition: 0.3s;
}

.areaWebDesign a:hover {
  opacity: 0.8;
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .areaWebDesign .serviceList,
.areaWebDesign .caseList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .areaWebDesign .lowerPageHead {
    padding: 60px 0 30px;
  }
  .areaWebDesign .lowerPageHead h1 {
    font-size: 26px;
  }
  .areaWebDesign .lowerPageHead p {
    font-size: 15px;
  }
  .areaWebDesign .pageSection {
    padding: 50px 0;
  }
  .areaWebDesign .pageSection h2 {
    font-size: 22px;
  }
  .areaWebDesign .serviceList,
.areaWebDesign .caseList {
    grid-template-columns: 1fr;
  }
  .areaWebDesign .serviceItem,
.areaWebDesign .caseItem {
    padding: 16px;
  }
}
.pageLinkText {
  text-align: center;
  margin-top: 20px !important;
}

/* =========================================
   業種LP専用
========================================= */
.industryWebDesign {
  overflow: hidden;
  color: #222;
}

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

/* =========================================
   共通見出し
========================================= */
.industrySectionHead {
  margin-bottom: 30px;
  text-align: center;
}

.industrySectionHead__sub {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #970000;
  text-transform: uppercase;
  font-weight: 700;
}

.industrySectionHead h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.5;
}

/* =========================================
   ボタン
========================================= */
.industryBtn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  transition: 0.3s;
}

.industryBtn--primary {
  background: #111;
  color: #fff;
}

.industryBtn--secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.industryBtn:hover {
  opacity: 0.85;
}

/* =========================================
   FV
========================================= */
.industryHero {
  padding: 90px 0 80px;
  background: linear-gradient(135deg, #f7f8fb 0%, #eef3ff 100%);
}

.industryHero .inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.industryHero__sub {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #970000;
  text-transform: uppercase;
}

.industryHero__title {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.25;
}

.industryHero__lead {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

.industryHero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industryHero__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.industryHero__point strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

.industryHero__point ul {
  margin: 0;
  padding: 0;
}

.industryHero__point li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.industryHero__point li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #970000;
  position: absolute;
  left: 0;
  top: 10px;
}

/* =========================================
   セクション共通
========================================= */
.industryProblem,
.industryReason,
.industryCase,
.industryFlow,
.industryFaq,
.industryAreaLinks,
.industryCta {
  padding: 80px 0;
}

/* =========================================
   課題
========================================= */
.industryProblem__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.industryProblem__item {
  padding: 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
}

.industryProblem__item h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.industryProblem__item p {
  margin: 0;
  line-height: 1.9;
  color: #555;
}

/* =========================================
   理由
========================================= */
.industryReason {
  background: #f7f8fb;
}

.industryReason__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.industryReason__item {
  position: relative;
  padding: 28px;
  background: #fff;
  border-radius: 18px;
}

.industryReason__num {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #970000;
}

.industryReason__item h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.industryReason__item p {
  margin: 0;
  line-height: 1.9;
  color: #555;
}

/* =========================================
   事例
========================================= */
.industryCase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.industryCase__item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.industryCase__thumb {
  margin: 0 0 14px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f3f3;
}

.industryCase__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.industryCase__title {
  margin: 0;
  line-height: 1.8;
  font-weight: 700;
}

.industryCase__btn {
  margin-top: 28px;
  text-align: center;
}

/* =========================================
   フロー
========================================= */
.industryFlow {
  background: #f7f8fb;
}

.industryFlow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.industryFlow__item {
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
}

.industryFlow__item span {
  display: inline-block;
  margin-bottom: 12px;
  color: #970000;
  font-weight: 700;
}

.industryFlow__item h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.industryFlow__item p {
  margin: 0;
  line-height: 1.8;
  color: #555;
}

/* =========================================
   FAQ
========================================= */
.industryFaq__list {
  display: grid;
  gap: 20px;
}

.industryFaq__item {
  padding: 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
}

.industryFaq__item h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.industryFaq__item p {
  margin: 0;
  line-height: 1.9;
  color: #555;
}

/* =========================================
   地域リンク
========================================= */
.industryAreaLinks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industryAreaLinks__list a {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.industryAreaLinks__list a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* =========================================
   CTA
========================================= */
.industryCta {
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: #fff;
  text-align: center;
}

.industryCta__sub {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.industryCta h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.5;
}

.industryCta__text {
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   レスポンシブ
========================================= */
@media (max-width: 1024px) {
  .industryHero .inner,
.industryProblem__grid,
.industryReason__grid,
.industryFlow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industryCase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .industryHero,
.industryProblem,
.industryReason,
.industryCase,
.industryFlow,
.industryFaq,
.industryAreaLinks,
.industryCta {
    padding: 56px 0;
  }
  .industryHero .inner,
.industryProblem__grid,
.industryReason__grid,
.industryCase__grid,
.industryFlow__list {
    grid-template-columns: 1fr;
  }
  .industryHero__title {
    font-size: 34px;
  }
  .industrySectionHead h2,
.industryCta h2 {
    font-size: 26px;
  }
  .industryHero__buttons {
    flex-direction: column;
  }
  .industryBtn {
    width: 100%;
  }
}
.industryAreaLinksBlock {
  padding: 80px 0;
  background: #f7f8fb;
}

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

.industryAreaLinksBlock__lead {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 1.9;
  color: #555;
}

.industryAreaLinksBlock__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.industryAreaLinksBlock__list a {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddd;
  color: #111;
  text-decoration: none;
  line-height: 1.6;
  transition: 0.3s;
}

.industryAreaLinksBlock__list a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 767px) {
  .industryAreaLinksBlock {
    padding: 56px 0;
  }
}
.caseRelatedLinks {
  padding: 60px 0;
  background: #f7f8fb;
}

.caseRelatedLinks .inner {
  width: min(900px, 100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.caseRelatedLinks__title {
  margin-bottom: 20px;
  font-size: 24px;
}

.caseRelatedLinks__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.caseRelatedLinks__list a {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.caseRelatedLinks__list a:hover {
  background: #111;
  color: #fff;
}

/* =========================
  共通
========================= */
.topIndustry,
.topArea {
  padding: 80px 0;
  background: #f7f8fb;
}

.topArea {
  background: #fff;
  /* 少し変えてメリハリ */
}

.topIndustry .inner,
.topArea .inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

/* タイトル */
.topIndustry h2,
.topArea h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

/* リスト */
.topIndustry ul,
.topArea ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* リンクカード */
.topIndustry li a,
.topArea li a {
  display: block;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #111;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* hover */
.topIndustry li a:hover,
.topArea li a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-3px);
}

/* =========================
  スマホ
========================= */
@media (max-width: 767px) {
  .topIndustry,
.topArea {
    padding: 56px 0;
  }
  .topIndustry h2,
.topArea h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .topIndustry ul,
.topArea ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .topIndustry li a,
.topArea li a {
    padding: 14px;
    font-size: 14px;
  }
}
.areaFaq__list {
  display: grid;
  gap: 20px;
}

.areaFaq__item {
  padding: 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
}

.areaFaq__item h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
}

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

@media (max-width: 767px) {
  .areaFaq__item {
    padding: 18px;
  }
  .areaFaq__item h3 {
    font-size: 16px;
  }
  .areaFaq__item p {
    font-size: 14px;
  }
}
.footerLinks {
  padding: 60px 0;
  background: #960000;
  color: #fff;
  margin-top: 100px;
}

.footerLinks__inner {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footerLinks__title {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}

.footerLinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerLinks li {
  margin-bottom: 10px;
}

.footerLinks a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footerLinks a:hover {
  color: #fff;
  padding-left: 4px;
}

/* スマホ */
@media (max-width: 767px) {
  .footerLinks__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.faqMv {
  padding: 80px 0 50px;
  background: #f7f8fb;
  text-align: center;
}
.faqMv .inner {
  width: min(1000px, 100% - 40px);
  margin: 0 auto;
}
.faqMv h1 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.4;
}
.faqMv p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

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

.faqArchive__cats,
.faqSingle__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-bottom: 34px;
}
.faqArchive__cats a,
.faqSingle__cats 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: 0.3s;
}
.faqArchive__cats a:hover, .faqArchive__cats a.is-current,
.faqSingle__cats a:hover,
.faqSingle__cats a.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: 0.3s;
}
.faqItem a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.faqItem h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.6;
}
.faqItem 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;
}
.faqSingle__body p {
  margin: 0 0 18px;
}

.faqSingle__related {
  max-width: 880px;
  margin: 40px auto 0;
  padding: 28px;
  background: #f7f8fb;
  border-radius: 18px;
}
.faqSingle__related h2 {
  margin: 0 0 18px;
  font-size: 22px;
}
.faqSingle__related ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.faqSingle__related li {
  list-style: none;
}
.faqSingle__related 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: 0.3s;
}
.faqSingle__related a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.faqSingle__nav,
.faqPagination {
  margin-top: 34px;
  text-align: center;
}
.faqSingle__nav a,
.faqPagination 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;
  }
  .faqMv 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;
  }
}/*# sourceMappingURL=style.css.map */