@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html,
body,
head,
section,
article,
p,
a,
h1,
h2,
h3,
h4,
h5,
span,
div {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: #f6f6f6;
}

a {
  text-decoration: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* body {
  line-height: 1;
} */
p {
  line-height: 2em;
}

a {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

button {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

q {
  display: inline;
  font-style: italic;
}

q:before {
  content: '"';
  font-style: normal;
}

q:after {
  content: '"';
  font-style: normal;
}

textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=reset],
input[type=search],
input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}

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

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* .container {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
} */
body {
  font-size: 18px;
  line-height: 1.5;
  background-color: #f6f6f6 !important;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* メイン */
main {
  background: #f6f6f6;
}

/*menu*/
/* PCでは非表示 */
.sp-nav {
  display: block;
}

@media (max-width: 1200px) {
  .sp-nav {
    display: block;
  }
}
/* スマホだけ表示 */
.pc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* スマホだけ表示 */
@media (max-width: 1200px) {
  .pc-nav {
    display: none;
  }
}
.sp-nav .lang {
  text-align: left;
  width: 70%;
}

ul.menu {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 1500px) {
  ul.menu {
    gap: 20px;
  }
}
@media (max-width: 1360px) {
  ul.menu {
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  ul.menu {
    padding: 0 0;
  }
}
ul.menu li {
  line-height: 1;
}
ul.menu li a {
  font-size: 15px;
  height: 16px;
  font-weight: 550;
  line-height: 16px;
  color: #ffffff;
  filter: drop-shadow(0px 0px 8.5px rgba(0, 0, 0, 0.54));
  text-decoration: none;
}
@media (max-width: 1360px) {
  ul.menu li a {
    font-size: 14px;
    font-weight: 14px;
  }
}
ul.menu li a:hover {
  color: rgb(245, 224, 156);
  transition: all 0.5s;
}
ul.menu li.menu-item {
  line-height: 1.2em;
  text-align: center;
}

li.page_item {
  padding: 0 10px;
  font-weight: 600;
}

/* ヘッダー */
a.header-logo {
  max-width: 180px;
}
@media (max-width: 748px) {
  a.header-logo {
    max-width: 130px;
  }
}

.site-header {
  position: fixed; /* ← 絶対配置の基準にする */
  height: 96px;
  background-color: #f6f6f6;
  background-color: transparent !important;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 748px) {
  .site-header {
    height: 60px;
  }
}
@media (max-width: 500px) {
  .site-header {
    background: linear-gradient(to top, transparent, #d5d5d5);
  }
}

.header-image {
  display: block;
  width: 80%;
}

/* ヘッダー */
.header-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.header-sp {
  display: none;
}

/* PCヘッダーを表示 */
.header-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 10px;
}

@media (max-width: 1200px) {
  .header-pc {
    justify-content: space-between;
  }
}
.header-logo {
  min-width: 180px;
  display: 180px;
}

.header-r {
  width: calc(100% - 180px);
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  a.header-sp {
    width: 150px;
    height: auto;
    display: block;
  }
}
.header-pc img {
  display: block;
  height: auto;
  max-height: 50px; /* ← 好きに調整してOK */
}

.hamburger-fade {
  display: none;
}
@media (max-width: 1200px) {
  .hamburger-fade {
    display: block;
  }
}

.nav-fade {
  display: none;
}
@media (max-width: 1200px) {
  .nav-fade {
    display: block;
  }
}

button.hamburger-fade {
  position: fixed;
  top: 65px;
  right: 0;
}
@media (max-width: 748px) {
  button.hamburger-fade {
    top: 0;
  }
}

@media (max-width: 1070px) {
  .header .container .logo {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
  .main-visual {
    font-size: 24px;
    text-align: center;
    padding: 20px 0 0 0;
  }
  .header .container .logo {
    width: auto;
  }
  .header .container {
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .header {
    padding: 16px 0;
  }
  .header .container {
    gap: 12px;
  }
  .section {
    padding: 30px 0;
  }
}
/*ハンバーガーメニュー*/
/* fade-styles.css */
@media (max-width: 1200px) {
  .hamburger-fade {
    position: fixed;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .hamburger-fade__wrapper {
    position: relative;
    width: 30px;
    height: 20px;
    margin: 20px auto;
  }
  .hamburger-fade__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e6521f;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .hamburger-fade__line:nth-child(1) {
    top: 0;
  }
  .hamburger-fade__line:nth-child(2) {
    top: 10px;
  }
  .hamburger-fade__line:nth-child(3) {
    top: 20px;
  }
  .hamburger-fade__line:nth-child(4) {
    top: 27px;
  }
  .hamburger-fade__line:nth-child(5) {
    top: 36px;
  }
  .hamburger-fade__line:nth-child(6) {
    top: 45px;
  }
  .hamburger-fade__line:nth-child(7) {
    top: 54px;
  }
  .hamburger-fade.active .hamburger-fade__line {
    background-color: #fff;
  }
  .hamburger-fade.active .hamburger-fade__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger-fade.active .hamburger-fade__line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }
  .hamburger-fade.active .hamburger-fade__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .nav-fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    z-index: 900;
  }
  .nav-fade__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 40, 40, 0.95);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav-fade.active {
    visibility: visible;
  }
  .nav-fade.active .nav-fade__bg {
    opacity: 1;
  }
  .nav-fade__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 5vh 10vw 15vh;
  }
  .nav-fade__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-fade__item {
    position: relative;
    margin-bottom: 2vh;
    padding-left: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media (max-width: 1200px) and (max-width: 1024px) {
  .nav-fade__item {
    margin-bottom: 3.8vh;
  }
}
/*1200px以下で表示されるnav*/
@media (max-width: 1200px) {
  .nav-fade__item {
    opacity: 1;
    margin-bottom: 5vh;
    padding-left: 0;
  }
  .nav-fade.active .nav-fade__item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-fade.active .nav-fade__item:nth-child(1) {
    transition-delay: 0.2s;
  }
  .nav-fade.active .nav-fade__item:nth-child(2) {
    transition-delay: 0.3s;
  }
  .nav-fade.active .nav-fade__item:nth-child(3) {
    transition-delay: 0.4s;
  }
  .nav-fade.active .nav-fade__item:nth-child(4) {
    transition-delay: 0.5s;
  }
  .nav-fade.active .nav-fade__item:nth-child(5) {
    transition-delay: 0.6s;
  }
  .nav-fade.active .nav-fade__item:nth-child(6) {
    transition-delay: 0.7s;
  }
  .nav-fade.active .nav-fade__item:nth-child(7) {
    transition-delay: 0.8s;
  }
  .nav-fade__number {
    position: absolute;
    left: 0;
    color: #666;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
  }
  .nav-fade__link {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Noto Sans JP", sans-serif;
  }
  .nav-fade__link:hover {
    color: #f6efe7;
  }
  .nav-fade__info {
    margin-top: auto;
    padding-left: 60px;
    color: #666;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
  }
  .nav-fade.active .nav-fade__info {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-fade__address,
  .nav-fade__tel {
    margin: 5px 0;
  }
}
@media (max-width: 768px) {
  .nav-fade__link {
    font-size: 20px;
  }
  .nav-fade__item {
    padding-left: 40px;
    margin-bottom: 3.5vh;
  }
  .nav-fade__info {
    padding-left: 40px;
  }
}
.header-btn-contact {
  background: #fff;
  display: block;
  content: "";
  position: relative;
  height: 50px;
  background-position: center;
  background-size: contain;
  z-index: 10000;
  display: flex;
  align-items: center;
  padding-left: 14px;
  width: 140px;
  background-repeat: no-repeat;
  border-radius: 10px;
  text-decoration: none;
  color: #e6521f;
  font-weight: 700;
  font-size: 13px;
}
.header-btn-contact::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #fff;
  height: 15.9px;
  background-position: center;
  background-image: url(../images/contact-arrow@2x.png);
  background-size: contain;
  right: 2px;
  background-repeat: no-repeat;
}
.header-btn-contact::after:hover {
  background-image: url(../images/contact-arrow@2x.png);
}
.header-btn-contact:hover {
  background: rgb(243, 158, 30);
  transition: all 0.3s;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .header-btn-contact.header-btn-contact-pc {
    display: none;
  }
}
.header-btn-contact::after {
  border-left: solid 1.5px #e6521f;
  background-image: url(../images/contact-arrow-or@2x.png);
}

.hamburger-fade__line {
  background-color: #fff;
}

.page-header {
  height: 300px;
  background-color: #e6521f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  margin-bottom: 64px;
}
@media (max-width: 748px) {
  .page-header {
    height: 180px;
  }
}
.page-header h1 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}
@media (max-width: 748px) {
  .page-header h1 {
    font-size: 24px;
  }
}

.page-header-image {
  background-image: url(../images/about/page-mv.jpg);
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 748px) {
  .page-header-image {
    padding-top: 46px;
    height: 260px;
  }
}
.page-header-image h1 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin-bottom: 46px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media (max-width: 748px) {
  .page-header-image h1 {
    font-size: 29px;
    margin-bottom: 20px;
  }
}
.page-header-image .sub-title {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
@media (max-width: 748px) {
  .page-header-image .sub-title {
    font-size: 16px;
  }
}

.lang {
  color: #fff;
  margin-left: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .lang {
    margin-right: 100px;
    float: right;
  }
}
@media (max-width: 748px) {
  .lang {
    margin-right: 60px;
  }
}
.lang a {
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  padding: 10px;
}
@media (max-width: 748px) {
  .lang a {
    padding: 10px;
  }
}

.lang-select {
  display: flex;
}
.lang-select li {
  white-space: nowrap;
}
.lang-select li:first-child {
  position: relative;
}
.lang-select li:first-child::after {
  position: absolute;
  display: block;
  height: 16px;
  content: "";
  width: 1px;
  content: "";
  background: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

.header {
  background-color: #fff;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.header .container {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  gap: 58px;
}
.header .container .logo {
  width: 20%;
  height: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
  white-space: nowrap;
}
.header .container .header-info {
  width: auto;
  height: 94px;
}
.header .container .header-button-box {
  width: 567px;
  width: auto;
  padding-left: 95px;
}
.header .container .header-button-box .tel-head {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  color: #222;
  gap: 10px;
}
.header .container .header-button-box .tel-head .contact-text {
  width: 216px;
  height: 22px;
  display: block;
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  color: #222222;
}
.header .logo {
  font-size: 24px;
}
.header .header-info {
  display: flex;
  align-items: center;
}
.header .header-info .phone {
  margin-right: 20px;
  font-family: "Hiragino Kaku Gothic StdN";
  font-style: normal;
  font-weight: 800;
  font-size: 43px;
  align-items: center;
  letter-spacing: 0.05em;
  color: #222222;
  position: relative;
  padding-left: 38px;
}
.header .header-info .phone::after {
  width: 38px;
  height: 33px;
  content: "";
  display: block;
  background-image: url(../images/header-tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 14px;
}
.header .header-info .contact-button {
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 236px;
  height: 53px;
  background: #5ec604;
  border-radius: 60px;
  position: relative;
}
.header .header-info .contact-button::after {
  width: 15px;
  height: 20px;
  content: "";
  display: block;
  background-image: url(../images/header-button-arrow.png);
  background-size: cover;
  position: absolute;
  right: 28px;
}

/* =========================
   セクション
========================= */
.section {
  padding: 60px 0;
}
.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.section p {
  font-size: 16px;
  color: #333;
}

/* =========================
   カード/並び
========================= */
/*横並びボックス*/
.box {
  display: flex;
}
@media (max-width: 768px) {
  .box {
    flex-direction: column;
  }
}

/*カードを横並びボックス*/
.box-card {
  display: flex;
}
@media (max-width: 1024px) {
  .box-card {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.box-card-vr {
  display: flex;
  flex-direction: column;
}

/*縦並びカード*/
.card {
  background-color: transparent;
}
@media (max-width: 1024px) {
  .card {
    width: 100%;
  }
}
.card .image {
  margin-bottom: 24px;
}
.card .ttl-w {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 32px;
  color: #fff;
  position: relative;
}
.card .ttl {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 32px;
  position: relative;
}
.card .ttl-link-arrow {
  text-decoration: none;
}
.card .ttl-link-arrow::after {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  height: 19px;
  background-position: center;
  background-image: url(../images/contact-arrow@2x.png);
  background-size: contain;
  right: 2px;
  background-repeat: no-repeat;
}
.card .ttl-link-arrow:hover {
  background: #e6521f;
  transition: all 0.3s;
}

/* =========================
   見出し
========================= */
.head {
  margin-bottom: 32px;
}
.head .section-ttl {
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 80px;
  color: #e6521f;
  margin-bottom: 31px;
  text-align: left;
}
@media (max-width: 748px) {
  .head .section-ttl {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    padding-top: 12px;
  }
}
.head .ttl-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #e6521f;
  text-align: left;
  padding-left: 28px;
  position: relative;
}
@media (max-width: 748px) {
  .head .ttl-sub {
    font-size: 22px;
  }
}
.head .ttl-sub::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #e6521f;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.head .ttl-sub-noline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #e6521f;
  text-align: left;
  position: relative;
}
@media (max-width: 748px) {
  .head .ttl-sub-noline {
    font-size: 22px;
  }
}

.head-w {
  margin-bottom: 32px;
}
.head-w .section-ttl {
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 31px;
  text-align: left;
}
@media (max-width: 768px) {
  .head-w .section-ttl {
    font-size: 60px;
    line-height: 60px;
    padding-top: 12px;
  }
}
.head-w .ttl-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  text-align: left;
  padding-left: 28px;
  position: relative;
}
@media (max-width: 768px) {
  .head-w .ttl-sub {
    font-size: 20px;
  }
}
.head-w .ttl-sub::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

/* =========================
   text
========================= */
.text-def {
  font-size: 18px;
  line-height: 2em;
}
@media (max-width: 768px) {
  .text-def {
    font-size: 16px;
  }
}

/* =========================
   バナー
========================= */
.bnr {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .bnr {
    padding: 40px 0;
  }
}

/* =========================
   container
========================= */
/* PCレイアウト */
.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

/* =========================
   投稿
========================= */
.single-post .site-header {
  background-color: #e6521f !important;
}
.single-post .header-btn-contact {
  background: #fff;
  color: #e6521f;
}
.single-post .header-btn-contact:hover {
  opacity: 0.8;
  color: #fff;
}
.single-post .header-btn-contact:hover::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #fff;
  height: 15.9px;
  background-position: center;
  background-image: url(../images/contact-arrow@2x.png);
  background-size: contain;
  right: 2px;
  background-repeat: no-repeat;
}
.single-post .header-btn-contact::after {
  border-left: solid 1.5px #e6521f;
  background-image: url(../images/contact-arrow-or@2x.png);
}
.single-post .lang {
  color: #fff;
}
.single-post .lang a {
  color: #fff;
}
.single-post .hamburger-fade__line {
  background-color: #fff;
}
.single-post .page-header {
  height: 96px;
}
@media (max-width: 748px) {
  .single-post .page-header {
    height: 96px;
  }
}
.single-post .page-header {
  height: 96px;
}
.single-post .post-single {
  max-width: 800px;
  margin: 0 auto;
}
.single-post .post-content {
  margin-top: 24px;
  line-height: 1.9;
}
.single-post .post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
.single-post .post-nav a {
  color: #e6521f;
}
.single-post h2.post-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.single-post .post-date {
  text-align: right;
  font-size: 13px;
  margin-bottom: 8px;
  margin-left: 16px;
}
.single-post .post-thumbnail {
  text-align: center;
}
.single-post span.post-date-write {
  margin-left: 8px;
}
.single-post .post-category {
  display: block;
  background: #e6521f;
  color: #fff;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 4px;
  font-size: 13px;
}
.single-post .post-category a {
  text-decoration: none;
  color: #fff;
}
.single-post .post-content {
  line-height: 2;
  font-size: 18px;
}
@media (max-width: 768px) {
  .single-post .post-content {
    line-height: 1.6;
    font-size: 16px;
  }
}
.single-post .post-nav {
  padding: 60px 0;
  margin: 0 auto;
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .single-post .post-nav {
    padding: 30px 0 0;
  }
}

.category .site-header,
.archive .site-header {
  background-color: #e6521f !important;
}
.category .page-header,
.archive .page-header {
  height: 300px;
  background-color: #e6521f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
@media (max-width: 748px) {
  .category .page-header,
  .archive .page-header {
    height: 180px;
  }
}
.category .page-header h1,
.archive .page-header h1 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}
@media (max-width: 748px) {
  .category .page-header h1,
  .archive .page-header h1 {
    font-size: 24px;
  }
}
.category .post-container,
.archive .post-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  padding: 40px 0;
}
.category .post-container .post-wrap,
.archive .post-container .post-wrap {
  width: 24%;
  padding: 10px;
  height: 100%;
  display: block;
}
.category .post-container .post-link,
.archive .post-container .post-link {
  display: block;
  height: 100%;
}
.category .post-container .post-thumbnail,
.archive .post-container .post-thumbnail {
  height: 190px;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.category .post-container .post-thumbnail img,
.archive .post-container .post-thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.category .post-container .post-category,
.archive .post-container .post-category {
  display: block;
  background: #e6521f;
  color: #fff;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 4px;
  font-size: 13px;
}
.category .post-container .post-category a,
.archive .post-container .post-category a {
  text-decoration: none;
  color: #fff;
}
.category .post-container .post-date,
.archive .post-container .post-date {
  text-align: right;
  font-size: 13px;
  margin-bottom: 8px;
}
.category .post-container a,
.archive .post-container a {
  text-decoration: none;
}
.category .post-container a h3,
.archive .post-container a h3 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #e6521f;
}
.category .post-container a .excerpt-text,
.archive .post-container a .excerpt-text {
  line-height: 1.5;
  color: #282727;
  text-decoration: none;
}
.category .post-container .nav-below,
.archive .post-container .nav-below {
  padding: 60px 0;
  margin: 0 auto;
  width: 100%;
  display: block;
}
.category .post-container .nav-below .pagination,
.archive .post-container .nav-below .pagination {
  gap: 8px;
  justify-content: center;
}
.category .post-container .nav-below a.page-numbers,
.archive .post-container .nav-below a.page-numbers {
  display: flex;
  padding: 4px;
  border: 1px solid #e6521f;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  /* margin: 0 2%; */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e6521f;
}
.category .post-container .nav-below a.prev.page-numbers,
.category .post-container .nav-below a.next.page-numbers,
.archive .post-container .nav-below a.prev.page-numbers,
.archive .post-container .nav-below a.next.page-numbers {
  border: none;
}
.category .post-container .nav-below .page-numbers.current,
.archive .post-container .nav-below .page-numbers.current {
  display: flex;
  padding: 4px;
  border: 1px solid #e6521f;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  /* margin: 0 2%; */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-color: #e6521f;
}

.contact-section {
  padding: 60px 20px 40px;
  margin: 0 auto;
}

.contact-section .container {
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* フォーム枠 */
.contact-form {
  border-radius: 12px;
  padding: 20px 16px 24px;
}

.contact-form .form-group {
  margin-bottom: 14px;
}

.contact-form label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 4px;
}

.required-badge {
  display: inline-block;
  background: #facc15;
  color: #111827;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 6px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  background-color: #f0f2f7 !important;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
}

.contact-form textarea {
  width: 100% !important;
  min-height: 100px;
  resize: vertical;
}

/* 個人情報ボックス（スクロール） */
.privacy-wrapper {
  margin: 12px 0 8px;
}

.privacy-box {
  background: #ffffff;
  color: #111827;
  font-size: 11px;
  line-height: 1.6;
  padding: 8px 10px;
  border-radius: 2px;
  border: 1px solid #e5e7eb;
  height: 80px;
  overflow-y: auto;
}

/* 同意チェック */
.agree-area {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
}

.agree-area input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

form#mailformpro label {
  border: none !important;
  width: auto !important;
  background: none !important;
}

form#mailformpro label.mfp_checked {
  box-shadow: none !important;
}

.agree-wrapper {
  display: flex;
  padding: 0;
  justify-content: center;
}

/* 送信ボタン */
.submit-area {
  margin-top: 28px;
  text-align: center;
  background: transparent !important;
}

.submit-btn {
  width: 80%;
  padding: 20px 0;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background-color: #ffffff;
  color: #0f172a;
  transition: opacity 0.2s, transform 0.1s;
  text-align: center;
}

.submit-btn:disabled {
  cursor: default;
  box-shadow: none;
}

.submit-btn:not(:disabled):active {
  transform: translateY(1px);
}

@media (min-width: 1024px) {
  /* ---- Reset ---- */
  *,
  ::before,
  ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
  }
  /* お問い合わせフォーム */
  .contact-section .container {
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-title {
    font-size: 34px;
    margin: 60px auto;
  }
  /* フォーム枠 */
  .contact-form .form-group {
    margin-bottom: 24px;
  }
  .contact-form .form-group {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 高さをそろえる */
    gap: 16px; /* ラベルと入力欄の間隔 */
  }
  .contact-form label {
    width: 280px; /* ラベルの幅（調整OK） */
    margin-bottom: 0; /* スマホ時の余白をリセット */
    justify-content: flex-start;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form textarea {
    flex: 1; /* 入力欄を残りスペースいっぱいに */
    max-width: 330px;
  }
  .contact-form label {
    display: flex;
    align-items: center;
    font-size: 22px;
    margin-bottom: 4px;
  }
  .required-badge {
    display: inline-block;
    background: #facc15;
    color: #111827;
    font-size: 16px;
    padding: 2px 6px;
    margin-left: 6px;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form textarea {
    width: 100%;
    padding: 10px 16px;
    font-size: 22px;
    font-family: inherit;
  }
  .contact-form textarea {
    width: 100% !important;
    min-height: 200px;
    /* resize: vertical; */
  }
  .contact-form .form-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* ★ここ！！center → flex-start */
    gap: 16px;
  }
  /* 個人情報ボックス（スクロール） */
  .privacy-wrapper {
    margin: 12px 0 8px;
  }
  .privacy-box {
    background: #ffffff;
    color: #111827;
    font-size: 11px;
    line-height: 1.6;
    padding: 8px 16px;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
    height: 120px;
    overflow-y: auto;
    margin-bottom: 30px;
  }
  .agree-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  /* 同意チェック */
  .agree-area {
    display: flex; /* これが必須！ */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px; /* ← ここが効くようになる */
    margin-top: 20px;
    gap: 18px;
  }
  .agree-area span {
    white-space: nowrap; /* ← 折り返し禁止！ */
  }
  .agree-area input[type=checkbox] {
    transform: scale(1.8); /* ← 1.5〜2くらいがちょうど良い */
    margin-right: 10px;
  }
  .form-group > div {
    width: 330px;
  }
  /* 送信ボタン */
  .submit-area {
    margin-top: 88px;
    text-align: center;
    background: transparent !important;
  }
  .submit-btn {
    width: 70%;
    padding: 20px 0 !important;
    border-radius: 999px !important;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    background-color: #ffffff;
    color: #0f172a;
    transition: opacity 0.2s, transform 0.1s;
    text-align: center;
  }
  .submit-btn:not(:disabled):active {
    transform: translateY(1px);
  }
}
@media (min-width: 1024px) and (max-width: 500px) {
  .submit-btn {
    font-size: 1.2rem;
  }
}
/* =========================
   CTA
========================= */
/* 各CTAボタン共通 */
.fixed-cta-wrap {
  flex-direction: column; /* ← 横並びに */
  justify-content: center;
  row-gap: 20px;
  padding: 20px 20px;
  background-color: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
  gap: 10px;
  position: fixed;
  right: 0;
  top: 60%;
  background: rgba(235, 235, 235, 0.9);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  border-radius: 20px 0px 0px 20px;
  left: auto;
  z-index: 10000;
}

/* スマホの2段構成を解除 */
.cta-full {
  width: auto;
}

.cta-row {
  display: contents; /* LINEとメールを独立させて横並びに */
}

.cta-img-line,
.cta-img-mail {
  height: auto; /* ← まずリセット */
  max-height: 60px;
}

/*共通CTA*/
@media (max-width: 1024px) {
  /* 画面下に固定されるエリア全体 */
  .fixed-cta-wrap {
    position: fixed;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    padding: 6px 4px;
    box-sizing: border-box;
    border-radius: 0;
    background-color: rgba(230, 82, 31, 0.36); /* 半透明の背景 */
    display: flex;
    flex-direction: column; /* 1段目＋2段目の縦並び */
    gap: 6px;
    z-index: 9999;
    opacity: 0; /* 最初は見えない */
    pointer-events: none; /* クリックできない */
    transition: opacity 0.5s ease; /* ふわっと */
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: center;
    padding: 10px;
  }
}
/* ★表示させる用のクラス★ */
.fixed-cta-wrap.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 2段目（LINE＋メール）を横並びにするラッパー */
.cta-row {
  display: flex;
  gap: 4px;
}

/* ボタン別の色 */
.cta-line {
  background: #e6521f;
}

.cta-mail {
  background: #e6521f;
}

.cta-fix-download {
  box-sizing: border-box;
  border-radius: 100px;
  background: #fff;
  display: block;
  content: "";
  position: relative;
  border-left: 1.5px solid #fff;
  border: #282727 1px solid;
  height: 54px !important;
  background-position: center;
  background-size: contain;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  width: 150px;
  background-repeat: no-repeat;
  border-radius: 50px;
  text-decoration: none;
  color: #282727;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
}
.cta-fix-download::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #282727;
  height: 15.9px;
  background-position: center;
  background-image: url("../images/contact-arrow-bk@2x.png");
  background-size: 50%;
  right: 2px;
  background-repeat: no-repeat;
}
.cta-fix-download:hover {
  background: #e6521f;
  transition: all 0.3s;
  color: #fff;
}
@media (max-width: 500px) {
  .cta-fix-download {
    width: 100%;
    font-size: 13px;
  }
}

.cta-fix-line {
  box-sizing: border-box;
  border-radius: 100px;
  text-align: center;
  background: #e6521f;
  display: block;
  content: "";
  position: relative;
  border-left: 1.5px solid #fff;
  border: #282727 1px solid;
  height: 54px !important;
  background-position: center;
  background-size: contain;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  width: 150px;
  background-repeat: no-repeat;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
}
.cta-fix-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #fff;
  height: 15.9px;
  background-position: center;
  background-image: url("../images/contact-arrow@2x.png");
  background-size: contain;
  right: 2px;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  .cta-fix-line {
    width: 100%;
    font-size: 13px;
  }
}
.cta-fix-line:hover {
  background: rgba(232, 127, 18, 0.9);
  transition: all 0.3s;
}

a.cta-btn.cta-fix-download.btn-en,
a.cta-btn.cta-fix-line.btn-en {
  width: 194px;
}

.cta-line,
.cta-mail,
.cta-tel {
  justify-content: center;
}

.cta-btn .cta-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  text-align: center;
}

.cta-img-tel {
  height: auto; /* ← まずリセット */
  max-height: 40px;
}

section.cta {
  background-color: #f6efe7;
  padding: 32px 0;
}
section.cta .box {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  gap: 60px;
  z-index: 400;
  position: relative;
}
@media (max-width: 1024px) {
  section.cta .box {
    gap: 20px;
    align-items: center;
  }
}
section.cta .box .cta-line {
  background: rgba(230, 82, 31, 0.9);
  display: block;
  content: "";
  position: relative;
  right: 9px;
  border-left: 1.5px solid #fff;
  height: 54px;
  background-position: center;
  background-size: contain;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  background-repeat: no-repeat;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 768px) {
  section.cta .box .cta-line {
    right: 0;
    width: 100%;
  }
}
section.cta .box .cta-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #fff;
  height: 15.9px;
  background-position: center;
  background-image: url("../images/contact-arrow@2x.png");
  background-size: cover;
  right: 2px;
  background-repeat: no-repeat;
}
section.cta .box .cta-line:hover {
  background: #e6521f;
  transition: all 0.3s;
}
section.cta .box .cta-download {
  background: #fff;
  display: block;
  content: "";
  position: relative;
  right: 9px;
  border-left: 1.5px solid #fff;
  border: #282727 1px solid;
  height: 54px;
  background-position: center;
  background-size: contain;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  background-repeat: no-repeat;
  border-radius: 50px;
  text-decoration: none;
  color: #282727;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 768px) {
  section.cta .box .cta-download {
    right: 0;
    width: 100%;
  }
}
section.cta .box .cta-download::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #282727;
  height: 15.9px;
  background-position: center;
  background-image: url("../images/contact-arrow-bk@2x.png");
  background-size: contain;
  right: 2px;
  background-repeat: no-repeat;
}
section.cta .box .cta-download:hover {
  background: #e6521f;
  transition: all 0.3s;
}
section.cta .box .cta-support {
  background: rgba(230, 82, 31, 0.9);
  display: block;
  content: "";
  position: relative;
  right: 9px;
  border-left: 1.5px solid #fff;
  height: 54px;
  background-position: center;
  background-size: contain;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  width: 340px;
  background-repeat: no-repeat;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 768px) {
  section.cta .box .cta-support {
    right: 0;
    width: 100%;
  }
}
section.cta .box .cta-support::after {
  display: block;
  content: "";
  position: absolute;
  width: 29px;
  border-left: solid 1.5px #fff;
  height: 15.9px;
  background-position: center;
  background-image: url("../images/contact-arrow@2x.png");
  background-size: contain;
  right: 2px;
  background-repeat: no-repeat;
}
section.cta .box .cta-support:hover {
  background: #e9450a;
  transition: all 0.3s;
}

/* =========================
   form
========================= */
/*form*/
.form-group {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
  align-items: center;
}

@media (max-width: 500px) {
  .form-group {
    display: block;
  }
}
.form-area {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8em;
}

.form-group label {
  line-height: 1.5em;
  line-height: 1.5em;
  font-size: 1.2rem;
}

span.required-badge {
  margin-top: 5px;
}

span.mwform-tel-field {
  width: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
}

.form-group textarea,
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=button],
.form-group input[type=submit] {
  font-size: 1.2rem;
  padding: 10px;
  width: 100%;
}

.form-group input.tel {
  width: 30% !important;
}

span.mwform-checkbox-field-text {
  font-size: 1.4rem !important;
  white-space: nowrap;
}

@media (max-width: 500px) {
  span.mwform-checkbox-field-text {
    font-size: 1.1rem !important;
  }
}
input#consent-1 {
  /* padding: 5px; */
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  display: flex;
  align-items: center;
}

/* 戻るボタン */
.submit-area {
  margin-top: 28px;
  text-align: center;
  background: transparent !important;
}

.submit-btn-back {
  width: 80%;
  padding: 20px 0;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background-color: #bbcddb;
  color: #0f172a;
  transition: opacity 0.2s, transform 0.1s;
  text-align: center;
  margin: 30px;
  max-width: 490px;
  margin-bottom: 30px;
}

.submit-btn-back:disabled {
  cursor: default;
  box-shadow: none;
}

.submit-btn-back:not(:disabled):active {
  transform: translateY(1px);
}

/*@media (min-width: 1024px) {
    .submit-btn-back {
        width: 70%;
            max-width: 490px;
        padding: 20px 0 !important;
        border-radius: 999px !important;
        border: none;
        font-size: 20px;
        font-weight: 700;
        cursor: pointer;
    background-color: #bbcddb;
        color: #0f172a;
        transition: opacity 0.2s, transform 0.1s;
        text-align: center;
        margin-bottom: 20px;
    }
}*/
.page-template-page-contact_thanks main,
.page-template-page-contact_thanks main,
.page-template-page-contact_thanks main {
  background: #fff;
}

@media (max-width: 500px) {
  .required-badge {
    margin-bottom: 8px;
  }
  .form-area {
    max-width: 90%;
  }
  .submit-btn-back {
    border-radius: 0;
    padding: 8px 0;
    font-size: 0.9rem;
  }
}
/* =========================
   toTop
========================= */
#toTop {
  position: fixed;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background-color: rgba(0, 158, 5, 0.6117647059);
  padding: 30px;
  color: #fff;
  z-index: 1000;
}
#toTop::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  bottom: 0;
  margin: auto;
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* =========================
   共通のスクロール表示
========================= */
.js-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-scroll.is-show {
  opacity: 1;
  transform: translateY(0);
}

.footer-image {
  background-image: url("../images/footer-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 280px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-image {
    background-image: url("../images/footer-image-sp.jpg");
    height: 180px;
    background-position: top;
  }
}

footer {
  background-color: #282727;
  text-align: center;
}
footer .wraper {
  display: flex;
  padding: 40px 0 20px;
}
@media (max-width: 768px) {
  footer .wraper {
    padding: 20px 0 20px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
footer .footer-left {
  width: 200px;
  margin-right: 30px;
}
@media (max-width: 768px) {
  footer .footer-left {
    width: 100%;
    margin-right: 0;
  }
}
footer .footer-right {
  width: calc(100% - 160px);
  padding-right: 20px;
}
@media (max-width: 768px) {
  footer .footer-right {
    width: 100%;
    padding-right: 0;
  }
}
footer .footer-logo {
  text-align: left;
}
@media (max-width: 768px) {
  footer .footer-logo {
    text-align: center;
  }
}
footer .footer-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  row-gap: 0;
  justify-content: flex-start;
  margin-bottom: 20px;
  width: 100%;
  color: #fff;
  padding-right: 0;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  footer .footer-menu ul {
    gap: 16px;
  }
}
footer .footer-menu ul li {
  font-size: 17px;
  white-space: nowrap;
}
footer .footer-menu ul li a {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  footer .footer-menu ul li a {
    font-size: 15px;
  }
}
footer .footer-menu ul li a:hover {
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
}
footer .footer-menu .menu {
  padding: 0 20px;
}
footer .footer-menu2 .menu {
  justify-content: flex-start;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  footer .footer-menu2 .menu {
    flex-direction: column;
  }
}
footer .copyright {
  padding: 0 0 44px 0;
  color: #fff;
  text-align: right;
  font-size: 14px;
}
@media (max-width: 1024px) {
  footer .copyright {
    padding: 0 0 88px 0;
    text-align: center;
  }
}

footer .footer-menu .nav-fade__item,
footer .footer-menu2 .nav-fade__item {
  opacity: 1;
  margin-bottom: 0;
}

footer .footer-menu ul.menu li.menu-item {
  line-height: 1.6em;
}

@media (max-width: 768px) {
  .footer-menu ul {
    flex-direction: column;
  }
  .footer .footer-menu ul li {
    padding: 10px;
  }
  footer .footer-menu .nav-fade__item,
  footer .footer-menu2 .nav-fade__item {
    padding-left: 0;
    margin-bottom: 1.2vh;
  }
  footer .footer-logo {
    padding: 20px 0 20px 0;
  }
  footer .footer-menu ul {
    gap: 0;
  }
}
.text-center {
  text-align: center;
}

strong {
  font-weight: 600;
}

/* =========================
  PC/SP表示
========================= */
@media screen and (max-width: 1100px) {
  /* 1100px以下に適用されるCSS */
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
br.pc {
  display: block;
}

@media screen and (max-width: 900px) {
  /* 959px以下に適用されるCSS（タブレット用） */
  br.sp {
    display: none;
  }
  br.tb {
    display: block;
  }
  br.pc {
    display: none;
  }
}
@media (max-width: 748px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}

@media (max-width: 748px) {
  br.sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  br.sp {
    display: block;
  }
  br.tb {
    display: none;
  }
  br.pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */