@charset "UTF-8";
:root {
  --base: "Shippori Mincho", serif;
  --sans: "Josefin Sans", sans-serif;
  --mc: #456043;
  --fc: #3a3a3a;
  --bc: #edebeb;
  --mq: 3.75;
  /*
  --mq: 12.8vw;
  @media screen and (max-width: 1024px) {
    --mq: 7.5vw;
  }
  @media screen and (max-width: 479px) {
    --mq: 3.75vw;
  }*/
}

/*---変数---*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

section {
  position: relative;
}

input[type=submit],
input[type=button] {
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

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

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-family: var(--base);
  font-size: 1rem;
  color: var(--fc);
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base);
  }
}
body.fix {
  position: fixed;
  width: 100%;
}
body.open {
  overflow: hidden;
}

html,
body {
  position: relative;
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td,
div {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 479px) {
  p,
  li,
  dl,
  tr,
  th,
  td,
  div {
    font-size: 1.4rem;
  }
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  line-height: 1.35;
}

a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

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

.pc-tb {
  display: block;
}
@media screen and (max-width: 479px) {
  .pc-tb {
    display: none !important;
  }
}

.tb-sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block !important;
  }
}

.tb {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 479px) {
  .tb {
    display: none !important;
  }
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(70px);
  }
}
.fade-down {
  animation: fadeDown 0.6s forwards;
}

.--en {
  font-family: var(--sans);
}

.cmn-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 24px;
  width: 100%;
}
.cmn-wrap.--full {
  padding-bottom: 0;
  padding-inline: 0;
}

.cmn-ttl {
  position: relative;
}
.cmn-ttl__main {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 5.7rem; /* 178.125% */
  letter-spacing: 0.224rem;
}
@media screen and (max-width: 479px) {
  .cmn-ttl__main {
    font-size: 2.4rem;
  }
}
.cmn-ttl__sub {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}

.banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  z-index: 1001;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .banner {
    pointer-events: none;
  }
}
.banner__cnt {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 8px;
}
.banner__item {
  height: 98px;
}
.banner__item.--phone {
  width: auto;
  width: calc((100% - 8px) * 146 / 367);
}
.banner__item.--mail {
  width: auto;
  width: calc((100% - 8px) * 221 / 367);
}
.banner__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.11);
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .banner__link {
    padding: 4px;
  }
}
@media screen and (min-width: 1025px) {
  .banner__link:hover {
    opacity: 0.7;
  }
}
.banner__icon {
  width: 40px;
  height: auto;
  aspect-ratio: 1;
}
.banner__txt {
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
  font-size: min(15vw / var(--mq), 1.5rem);
}

.wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1230px;
}
@media screen and (max-width: 479px) {
  .wrap {
    padding-inline: 0;
  }
}
.wrap::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./img/bg-body.jpg) repeat-x center center/cover;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  #sec-message,
  #sec-works,
  #sec-philosophy,
  #sec-access,
  #sec-step,
  #sec-contact,
  #sec-company {
    scroll-margin-top: 56px;
  }
}

.hd {
  width: calc(100% - 480px);
  max-width: 740px;
}
.hd-cnt {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  width: calc(100% - 540px);
  max-width: 570px;
  height: 100vh;
}
.hd-name {
  position: relative;
  margin-bottom: 40px;
  width: 209px;
}
.hd-name__logo {
  transition: 0.4s;
}
.hd-name__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .hd-name__logo:hover {
    opacity: 0.7;
  }
}
.hd-menu {
  width: 100%;
}
.hd-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
.hd-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc((100% - 40px) / 2);
}
.hd-nav__item {
  width: 100%;
  border-bottom: 1px solid var(--fc);
}
.hd-nav__item:first-child {
  border-top: 1px solid var(--fc);
}
.hd-nav__link {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-block: 18px 14px;
  width: 100%;
  transition: 0.4s;
}
.hd-nav__link-dots {
  margin-bottom: 0.28rem;
  width: 8px;
  height: auto;
  background: var(--fc);
  border-radius: 50%;
  aspect-ratio: 1;
  opacity: 0;
  transition: 0.4s;
}
.hd-nav__link-main {
  padding: 0;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem; /* 175% */
  letter-spacing: 0.112rem;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hd-nav__link:hover .hd-nav__link-dots {
    transform: translateX(0);
    opacity: 1;
  }
  .hd-nav__link:hover .hd-nav__link-main {
    opacity: 0.4;
  }
}
@media screen and (min-width: 1025px) {
  .hd-nav__link.active .hd-nav__link-dots {
    transform: translateX(0);
    opacity: 1;
  }
}
.hd-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.hd-contact__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  height: 98px;
  background: #fff;
  box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.11);
  transition: 0.4s;
}
.hd-contact__link.--phone {
  width: 146px;
}
.hd-contact__link.--mail {
  width: 230px;
}
@media screen and (min-width: 1025px) {
  .hd-contact__link:hover {
    opacity: 0.7;
  }
}
.hd-contact__icon {
  width: 40px;
  height: auto;
  aspect-ratio: 1;
}
.hd-contact__txt {
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
@media screen and (max-width: 1024px) {
  .hd {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
    width: 100%;
    max-width: 480px;
    height: 56px;
    background: transparent;
    line-height: 1;
    transition: all 0.4s;
    z-index: 1000;
  }
  .hd-cnt {
    position: relative;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-block: 0;
    padding-inline: 16px;
    width: 100%;
    height: 100%;
  }
  .hd-name {
    margin-bottom: 0;
    width: 105px;
    z-index: 1001;
  }
  .hd-menu {
    margin-inline: auto 0;
    width: auto;
    max-width: none;
  }
  .hd-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    padding-bottom: 70px;
    width: 100%;
    height: 100svh;
    background: var(--bc);
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.19);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  .hd-nav__name {
    margin-bottom: 40px;
    width: 221px;
  }
  .hd-nav__name img {
    width: 100%;
    height: auto;
  }
  .hd-nav__list {
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: min(200vw / var(--mq), 24rem);
  }
  .hd-nav__list.--list01 {
    border-top: 1px solid var(--fc);
  }
  .hd-nav__item {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .hd-nav__item:first-child {
    border-top: none;
  }
  .hd-nav__link {
    justify-content: flex-start;
    padding-block: min(18vw / var(--mq), 1.8rem) min(14vw / var(--mq), 1.4rem);
    padding-inline: min(15vw / var(--mq), 2rem);
  }
  .hd-nav__link-main {
    color: var(--fc);
    line-height: 1.56;
  }
  .hd-nav__link-dots {
    display: none;
  }
  .hd-nav__link-main {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 27px; /* 180% */
    letter-spacing: 1.05px;
    text-align: left;
  }
  .hd-toggle {
    position: relative;
    margin-inline: auto 0;
    width: 20px;
    height: 100%;
    cursor: pointer;
    z-index: 1002;
  }
  .hd-toggle div {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
  }
  .hd-toggle span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    background: #332d2b;
    transition: 0.35s ease-in-out;
  }
  .hd-toggle__line {
    height: 1px;
  }
  .hd-toggle__line:nth-child(1) {
    top: 0;
  }
  .hd-toggle__line:nth-child(2) {
    top: 9px;
  }
  .hd-toggle__line:nth-child(3) {
    position: relative;
    top: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .hd.fixed {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.08);
  }
  .hd.fixed .hd-name {
    opacity: 1;
  }
}
.hd.open {
  background: transparent;
  backdrop-filter: none;
}
.hd.open .hd-name::before {
  opacity: 1;
}
.hd.open .hd-name__logo {
  opacity: 0;
}
.hd.open .hd-nav {
  opacity: 1;
  transition: 0.4s;
  visibility: visible;
}
.hd.open .hd-nav__list {
  position: relative;
}
.hd.open .hd-toggle span:nth-child(1) {
  top: 7px;
  transform: rotate(320deg);
}
.hd.open .hd-toggle span:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle span:nth-child(3) {
  top: 7px;
  transform: rotate(-320deg);
}

.ft {
  position: relative;
  padding-block: 64px 8px;
}
@media screen and (max-width: 1024px) {
  .ft {
    padding-bottom: 110px;
  }
}
.ft__wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 24px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .ft__wrap {
    padding-inline: 16px;
  }
}
.ft-name__logo {
  margin-inline: auto;
  max-width: 209px;
  transition: 0.4s;
}
.ft-name__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .ft-name__logo:hover {
    opacity: 0.7;
  }
}
.ft-menu {
  margin-top: 40px;
  width: 100%;
}
.ft-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .ft-nav {
    gap: 32px 24px;
  }
}
.ft-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 479px) {
  .ft-nav__list {
    width: calc((100% - 24px) / 2);
  }
}
.ft-nav__item {
  padding-left: 24px;
  width: 100%;
  border-bottom: 1px solid var(--fc);
}
@media screen and (max-width: 479px) {
  .ft-nav__item {
    padding-left: min(8vw / var(--mq), 0.8rem);
  }
}
@media screen and (max-width: 360px) {
  .ft-nav__item {
    padding-left: 4px;
  }
}
.ft-nav__item:first-child {
  border-top: 1px solid var(--fc);
}
.ft-nav__link {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 18px 14px;
  width: 100%;
  transition: 0.4s;
}
.ft-nav__link-main {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 0;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .ft-nav__link-main {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 360px) {
  .ft-nav__link-main {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .ft-nav__link:hover span {
    opacity: 0.4;
  }
}
.ft__copy {
  margin-top: 70px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8rem; /* 180% */
  letter-spacing: 0.07rem;
}

.content {
  position: relative;
  margin-right: min(5.859375vw, 7.5rem);
  width: 480px;
  background: #fff;
  box-shadow: 1px 3px 29px 0px rgba(0, 0, 0, 0.25);
  overflow: clip;
}
@media screen and (max-width: 1024px) {
  .content {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
  }
}
.content.open {
  background: transparent;
  box-shadow: none;
}
.content.open .main {
  visibility: hidden;
}
.content.open .ft {
  visibility: hidden;
}

.sec-fv {
  position: relative;
  z-index: 1;
  height: 100svh;
}
@media screen and (max-width: 1024px) {
  .sec-fv {
    height: calc(100svh - 100px);
  }
}
.sec-fv__block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 36svh;
  color: #1c4e18;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .sec-fv__block {
    margin-inline: auto 0;
    padding-top: 20px;
    width: 85%;
    height: 24svh;
  }
}
.sec-fv__block-ttl {
  position: relative;
  max-width: 350px;
  width: 100%;
  color: #212121;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 4.3rem; /* 179.167% */
  letter-spacing: 0.264rem;
}
@media screen and (max-width: 479px) {
  .sec-fv__block-ttl {
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 176.19%;
    letter-spacing: 0.147rem;
  }
}
@media screen and (max-width: 374px) {
  .sec-fv__block-ttl {
    font-size: 5.3333333333vw;
  }
}
.sec-fv__slide-cnt {
  position: relative;
  margin-inline: auto 0;
  width: 87%;
  height: 64svh;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .sec-fv__slide-cnt {
    width: 85%;
    height: calc(76svh - 100px);
  }
}
.sec-fv__slide-ph {
  position: relative;
  width: 100%;
  height: 64svh;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .sec-fv__slide-ph {
    height: calc(76svh - 100px);
  }
}
.sec-fv__slide-ph img {
  width: auto;
  max-width: none;
  height: 100%;
  aspect-ratio: 4096/2725;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}
@keyframes zoomUp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}
.sec-fv .swiper-slide-active .sec-fv__slide-ph img,
.sec-fv .swiper-slide-duplicate-active .sec-fv__slide-ph img,
.sec-fv .swiper-slide-prev .sec-fv__slide-ph img {
  animation: zoomUp 8s linear 0.001s normal both;
}

.sec-about {
  padding-top: 95px;
}
.sec-about__ph {
  margin-left: -24px;
}
.sec-about__head {
  margin-top: 40px;
}
.sec-about__txt {
  margin-top: 24px;
}
.sec-about__txt-st {
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}

.sec-mission {
  padding-block: 56px 96px;
}
.sec-mission__slide {
  position: relative;
}
.sec-mission__slide-item {
  padding-block: 12px 35px;
  padding-inline: 24px;
  height: auto;
}
.sec-mission .swiper-button-prev, .sec-mission .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  aspect-ratio: 1;
}
@media screen and (max-width: 479px) {
  .sec-mission .swiper-button-prev, .sec-mission .swiper-button-next {
    width: 32px;
  }
}
.sec-mission .swiper-button-prev::after, .sec-mission .swiper-button-next::after {
  content: "";
  width: 48px;
  height: auto;
  aspect-ratio: 1;
  background: url(./img/icon-arrow_slide.svg) no-repeat center center/cover;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .sec-mission .swiper-button-prev::after, .sec-mission .swiper-button-next::after {
    width: 32px;
  }
}
.sec-mission .swiper-button-prev.swiper-button-disabled, .sec-mission .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
.sec-mission .swiper-button-prev {
  left: 8px;
}
@media screen and (max-width: 479px) {
  .sec-mission .swiper-button-prev {
    left: 4px;
  }
}
.sec-mission .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.sec-mission .swiper-button-next {
  right: 8px;
}
@media screen and (max-width: 479px) {
  .sec-mission .swiper-button-next {
    right: 4px;
  }
}
.sec-mission .swiper-pagination {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 48px);
  height: 11px;
  background: #d9d9d9;
  border-radius: 8px;
}
.sec-mission .swiper-pagination span {
  background: #747373;
  border-radius: 5px;
}
.sec-mission .mission-box {
  padding: 40px 16px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 3px 15px 0px rgba(0, 0, 0, 0.25);
}
.sec-mission .mission-box__ph {
  margin-top: 24px;
}
.sec-mission .mission-box__txt {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}

.sec-philosophy {
  background: var(--bc);
  padding-block: 96px;
}
.sec-philosophy__txt {
  margin-top: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
.sec-philosophy .philosophy-tab {
  margin-top: 37px;
}
.sec-philosophy .philosophy-tab__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 17px;
}
@media screen and (max-width: 479px) {
  .sec-philosophy .philosophy-tab__list {
    gap: 8px;
  }
}
.sec-philosophy .philosophy-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 17px) / 2);
}
@media screen and (max-width: 479px) {
  .sec-philosophy .philosophy-tab__item {
    width: calc((100% - 8px) / 2);
  }
}
.sec-philosophy .philosophy-tab__btn {
  position: relative;
  padding: 0;
  width: 100%;
  height: 60px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.13);
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 479px) {
  .sec-philosophy .philosophy-tab__btn {
    padding: 8px 4px;
    gap: 4px;
  }
}
.sec-philosophy .philosophy-tab__btn.--btn01 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), #fff;
  color: var(--fc);
}
.sec-philosophy .philosophy-tab__btn.--btn01 .philosophy-tab__arrow::after {
  border-right: 1px solid var(--fc);
  border-top: 1px solid var(--fc);
}
.sec-philosophy .philosophy-tab__btn.--btn01.active {
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .sec-philosophy .philosophy-tab__btn.--btn01:hover {
    background: #fff;
  }
}
.sec-philosophy .philosophy-tab__btn.--btn02 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), #939393;
  color: #fff;
}
.sec-philosophy .philosophy-tab__btn.--btn02 .philosophy-tab__arrow::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.sec-philosophy .philosophy-tab__btn.--btn02.active {
  background: #939393;
}
@media screen and (min-width: 1025px) {
  .sec-philosophy .philosophy-tab__btn.--btn02:hover {
    background: #939393;
  }
}
.sec-philosophy .philosophy-tab__icon {
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 360px) {
  .sec-philosophy .philosophy-tab__icon {
    width: 20px;
  }
}
.sec-philosophy .philosophy-tab__st {
  font-family: var(--base);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 479px) {
  .sec-philosophy .philosophy-tab__st {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 360px) {
  .sec-philosophy .philosophy-tab__st {
    font-size: 1.2rem;
  }
}
.sec-philosophy .philosophy-tab__arrow {
  position: relative;
}
.sec-philosophy .philosophy-tab__arrow::after {
  content: "";
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 4px;
  width: 10px;
  height: 10px;
  border-right: 1px solid white;
  border-top: 1px solid white;
  transform: rotate(135deg);
}
@media screen and (max-width: 479px) {
  .sec-philosophy .philosophy-tab__arrow::after {
    margin-left: 4px;
  }
}
@media screen and (max-width: 360px) {
  .sec-philosophy .philosophy-tab__arrow::after {
    width: 8px;
    height: 8px;
  }
}
.sec-philosophy__detail {
  margin-top: 24px;
}
.sec-philosophy .philosophy-cnt {
  padding: 24px;
}
.sec-philosophy .philosophy-cnt__subttl {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
.sec-philosophy .philosophy-cnt__ttl {
  margin-top: 8px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 4.6rem; /* 176.923% */
  letter-spacing: 0.182rem;
}
@media screen and (max-width: 479px) {
  .sec-philosophy .philosophy-cnt__ttl {
    font-size: 2rem;
  }
}
.sec-philosophy .philosophy-cnt__txt {
  margin-top: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.1rem;
}
.sec-philosophy .philosophy-cnt.--cnt01 {
  background: #fff;
}
.sec-philosophy .philosophy-cnt.--cnt02 {
  background: #939393;
  color: #fff;
}

.sec-works {
  position: relative;
  padding-block: 96px;
}
.sec-works__txt {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
.sec-works .works-slide {
  position: relative;
  margin-top: 28px;
}
.sec-works .works-slide__item {
  padding-block: 12px 35px;
  padding-bottom: 35px;
  padding-inline: 24px;
  height: auto;
}
.sec-works .swiper-button-prev, .sec-works .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  aspect-ratio: 1;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-prev, .sec-works .swiper-button-next {
    width: 32px;
  }
}
.sec-works .swiper-button-prev::after, .sec-works .swiper-button-next::after {
  content: "";
  width: 48px;
  height: auto;
  aspect-ratio: 1;
  background: url(./img/icon-arrow_slide.svg) no-repeat center center/cover;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-prev::after, .sec-works .swiper-button-next::after {
    width: 32px;
  }
}
.sec-works .swiper-button-prev.swiper-button-disabled, .sec-works .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
.sec-works .swiper-button-prev {
  left: 8px;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-prev {
    left: 4px;
  }
}
.sec-works .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.sec-works .swiper-button-next {
  right: 8px;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-next {
    right: 4px;
  }
}
.sec-works .swiper-pagination {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 48px);
  height: 11px;
  background: #d9d9d9;
  border-radius: 8px;
}
.sec-works .swiper-pagination span {
  background: #747373;
  border-radius: 5px;
}
.sec-works .works-box {
  padding: 40px 16px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 3px 15px 0px rgba(0, 0, 0, 0.25);
}
.sec-works .works-box__name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 4.3rem; /* 179.167% */
  letter-spacing: 0.168rem;
}
@media screen and (max-width: 479px) {
  .sec-works .works-box__name {
    font-size: 2rem;
  }
}
.sec-works .works-box__catch {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
.sec-works .works-box__data {
  margin-top: 16px;
}
.sec-works .works-box__data-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.sec-works .works-box__data-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.sec-works .works-box__data-name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 60px;
  background: var(--fc);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.7rem; /* 192.857% */
  letter-spacing: 0.098rem;
}
.sec-works .works-box__data-txt {
  font-size: 1.4rem;
  line-height: 2.7rem; /* 192.857% */
  letter-spacing: 0.098rem;
}
.sec-works .works-box__ph {
  margin-top: 24px;
}
.sec-works .works-box__txt {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
.sec-works .works-box__voice {
  margin-top: 24px;
}
.sec-works .works-box__voice-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.7rem; /* 192.857% */
  letter-spacing: 0.098rem;
}
.sec-works .works-box__voice-ttl::after {
  flex: 1;
  content: "";
  width: 100%;
  max-width: 250px;
  height: 1px;
  background: var(--fc);
}
.sec-works .works-box__voice-txt {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 2.7rem; /* 192.857% */
  letter-spacing: 0.098rem;
}
.sec-works .works-slide__item.--soon .works-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 910px;
}
@media screen and (max-width: 479px) {
  .sec-works .works-slide__item.--soon .works-box {
    min-height: 250px;
  }
}
.sec-works .works-slide__item.--soon .works-box .works-box__txt {
  margin-top: 8px;
  text-align: center;
}

.sec-faq {
  background: var(--bc);
  padding-block: 96px;
}
.sec-faq .faq-list {
  margin-top: 40px;
}
.sec-faq .faq-list__item {
  padding: 16px;
  border-radius: 10px;
  background: #fff;
}
.sec-faq .faq-list__item:not(:last-child) {
  margin-bottom: 24px;
}
.sec-faq .faq-list__head {
  position: relative;
  padding-right: 24px;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .sec-faq .faq-list__head:hover {
    opacity: 0.6;
  }
}
.sec-faq .faq-list__head-name {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3.2rem; /* 177.778% */
  letter-spacing: 0.126rem;
}
@media screen and (max-width: 479px) {
  .sec-faq .faq-list__head-name {
    font-size: 1.6rem;
  }
}
.sec-faq .faq-list__head-name span {
  font-family: var(--sans);
}
.sec-faq .faq-list__head::before, .sec-faq .faq-list__head::after {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 1px;
  background: #000;
  transition: opacity 0.3s ease;
}
.sec-faq .faq-list__head::before {
  top: 50%;
  transform: translateY(-50%);
}
.sec-faq .faq-list__head::after {
  top: 50%;
  transform: rotate(90deg);
  transition: 0.3s;
}
.sec-faq .faq-list__head.selected::after {
  transform: rotate(180deg);
  transition: 0.3s;
}
.sec-faq .faq-list__cnt {
  display: none;
  position: relative;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #9d9d9d;
}
.sec-faq .faq-list__cnt-txt {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 16px;
  font-size: 1.5rem;
  line-height: 2.7rem; /* 180% */
  letter-spacing: 0.105rem;
}
.sec-faq .faq-list__cnt-txt span {
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.2rem; /* 177.778% */
}

.sec-company {
  padding-block: 96px 82px;
}
.sec-company .company-overview {
  margin-top: 17px;
}
.sec-company .company-overview__list {
  margin-top: 40px;
}
.sec-company .company-overview__item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding-block: 14px 14px;
  padding-inline: 24px;
}
@media screen and (max-width: 479px) {
  .sec-company .company-overview__item {
    padding-inline: 8px;
  }
}
.sec-company .company-overview__item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.sec-company .company-overview__name {
  padding-right: 4px;
  width: 180px;
  font-size: 1.4rem;
  line-height: 2.7rem; /* 192.857% */
  letter-spacing: 0.098rem;
}
@media screen and (max-width: 479px) {
  .sec-company .company-overview__name {
    width: 100px;
  }
}
.sec-company .company-overview__value {
  flex: 1;
  font-size: 1.4rem;
  line-height: 2.7rem; /* 192.857% */
  letter-spacing: 0.098rem;
}

.sec-contact {
  padding-block: 96px;
  background: var(--bc);
}
.sec-contact .contact-form {
  margin-top: 40px;
}



/* フォーム部分 */
.wpcf7-list-item {
  margin: 0 0 1em 0;
}

form {
  overflow: hidden;
}

form ul {
  display: block;
  margin-bottom: 32px;
  margin-top: 40px;
}

.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
}

.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.item-notice p {
  font-size: 14px;
}

form ul li:last-of-type {
  width: 100%;
}

form ul .item-name {
  color: #2c2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

form ul .item-name span.item-req {
  color: #fff;
  background: var(--fc);
  text-align: center;
  padding: 6px 22px;
  font-size: 14px;
	border-radius: 100px;
}

form ul .item-name span.item-noreq {
  color: #fff;
  background: #b4b4b4;
  text-align: center;
  padding: 6px 22px;
  font-size: 14px;
	border-radius: 100px;
}

form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}

form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
}

form ul li:last-of-type input {
  width: 100%;
  display: block;
}

form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 240px;
}

form ul li:last-of-type input,
form ul li:last-of-type textarea,
form ul li:last-of-type select {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  background: ;
}

@media (max-width: 1024px) {
  form ul .item-name {
    font-size: 14px;
  }
}
.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}

.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}

.section-form__check span {
  background: none;
}

form [type=submit] {
  background: var(--fc);
  height: 56px;
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
  color: #fff;
    font-family: var(--base);
}

@media (min-width: 1025px) {
  form [type=submit]:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
}
.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  size: cover !important;
  position: center center !important;
}

.wpcf7-spinner {
  display: none !important;
}

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}

li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}

li.item-form.itemform_add_search button {
  width: 120px;
  background: #216724;
  border: none;
  color: #fff;
}

.form-caption {
  margin-bottom: 120px;
}

.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  margin-bottom: 32px;
}

.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}

.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}

.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type,
  form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }
  form [type=submit] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
}

.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.wpcf7-not-valid-tip {
  /*   display: none !important; */
}

.contact__form .privacy-policy-scroll {
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.contact__form .privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
  color: #2c2928;
}

.contact__form .privacy-policy-scroll p a {
  color: #5839ff;
}

.form__notice {
  font-size: 14px;
  margin-top: 16px;
}

.privacy-policy-scroll {
  background: #fff;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}

.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #a7a7a7;
  border-radius: 10px;
}

.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #fff;
}

.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  color: #fff;
  opacity: 1;
}

.privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 12px;
    margin-top: 2%;
  }
}
.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}

.item-form.itemform_add_search .wpcf7-form-control-wrap {
  width: calc(100% - 96px);
}

.item-form.itemform_add_search button.wpcf7c-elm-step1 {
  width: 80px;
  background: var(--fc);
  font-size: 12px;
  text-align: center;
  color: #fff;
}

span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.privacy-box {
  background: #fff;
  border: solid 1px #d8d8d8;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 26px;
  box-sizing: border-box;
}

.privacy-box h3 {
  color: #111111;
  font-size: 16px;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2%;
}

.privacy-box p {
  color: #111111;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
}

.privacy-box p:not(:last-of-type) {
  margin-bottom: 4%;
}

@media (max-width: 1024px) {
  .privacy-box {
    padding: 2% 2% 3%;
  }
}
@media (max-width: 640px) {
  .privacy-box {
    padding: 4% 4% 5%;
  }
}
.section-form__check1,
.section-form__check2 {
  padding: 24px;
  text-align: center;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
}

span.wpcf7-list-item.first,
span.wpcf7-list-item.last {
  width: 90px !important;
}
span.wpcf7-list-item.first.last {
  width: auto !important;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio label input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #111111;
  /* 枠線の色 */
  border-radius: 50%;
  /* 丸くする */
  color: #ffffff;
  /* 背景色 */
  -moz-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  /* Safari対応 */
  outline: none;
  /* フォーカス時の枠線を消す */
  cursor: pointer;
  /* ポインタを変更 */
  background: #fff !important;
}

.wpcf7-form-control.wpcf7-radio label input[type=radio]:checked {
  color: #000000 !important;
  /* チェック時の背景色 */
  box-shadow: inset 0 0 0 4px #ffffff;
  /* 中央に白い丸を作る */
  background: var(--fc) !important;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}

@media (max-width: 640px) {
  .wpcf7-form-control.wpcf7-radio label input[type=radio] {
    padding: 8px;
  }
}
/* チェック時のスタイル */
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.wpcf7-list-item input[type=radio] {
  width: auto !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item,
.section-form__check3 .wpcf7-list-item {
  justify-content: center;
}

/* form radio */
/* ラジオボタンが選択された状態 */
input[type=radio]:checked + label {
  background-color: #e0e0e0;
  /* 背景色（選択されたときの色） */
  color: var(--fc);
  /* 文字色 */
  border: 2px solid #c6a160;
  /* 枠線の色 */
  font-weight: bold;
  /* 太字 */
}

input[type=radio] + label {
  padding: 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

input[type=radio]:not(:checked) + label {
  background-color: #fff;
  color: #666;
  border: 1px solid #ddd;
}


.form-date-notice02 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}