@charset "UTF-8";
/*==============================
	Reset
==============================*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700|Noto+Sans+JP:400,700|Noto+Serif+JP:400,700|Open+Sans:400,700");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
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%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/*==============================
	Mixin
==============================*/
/*==============================
	Setting
==============================*/
/*
font-family: 'Open Sans', sans-serif;
font-family: 'Noto Serif JP', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Lato', sans-serif;
*/
body {
  font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 100%;
  color: #262626;
  -webkit-text-size-adjust: 100%;
}

.mincho {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

a {
  transition: 0.2s;
  text-decoration: none;
}
a.textlink {
  color: #42AC29;
  text-decoration: underline;
}

.container {
  margin: auto;
}

@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 544px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 736px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1232px) {
  .container {
    max-width: 1200px;
  }
}
/*==============================
	base
==============================*/
header .container {
  height: 96px;
}

@media (max-width: 991px) {
  header .container {
    height: 80px;
    display: flex;
    align-items: center;
  }
  header .container h1 {
    width: 280px;
  }
  header .container nav {
    display: none;
  }
}
@media (min-width: 992px) {
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .container h1 {
    width: 320px;
  }
  header .container nav ul {
    display: flex;
    gap: 0.75rem;
  }
  header .container nav ul li a {
    color: #262626;
    font-weight: 700;
    border-bottom: solid 2px transparent;
    padding: 0.25rem 0.5rem;
  }
  header .container nav ul li a:hover {
    border-color: #FFB43F;
  }
}
.openbtn {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: rgba(255, 137, 15, 0.85);
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9500;
  transition: 0.25s;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
  z-index: 2;
}
.openbtn span:nth-of-type(1) {
  top: 14px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
}
.openbtn span:nth-of-type(3) {
  bottom: 14px;
}
.openbtn.is-open {
  transform: translateX(-304px);
}
.openbtn.is-open span:nth-of-type(1) {
  top: 19px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}
.openbtn.is-open span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.openbtn.is-open span:nth-of-type(3) {
  bottom: 19px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.slide_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9000;
  pointer-events: none;
}
.slide_menu .slide_menu_contents {
  background: #fff;
  width: 304px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9200;
  transform: translateX(304px);
  transition: 0.25s;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.slide_menu .slide_menu_contents .inner .ttl {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FF890F;
}
.slide_menu .slide_menu_contents .inner .global_nav {
  margin-bottom: 3rem;
}
.slide_menu .slide_menu_contents .inner .global_nav ul {
  border-top: solid 1px #ccc;
}
.slide_menu .slide_menu_contents .inner .global_nav ul li a {
  color: #262626;
  font-weight: 700;
  display: block;
  padding: 1rem;
  line-height: 1.5;
  position: relative;
  border-bottom: solid 1px #ccc;
}
.slide_menu .slide_menu_contents .inner .global_nav ul li a::after {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-size: 1.375rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  font-weight: 400;
  transform: translateY(-50%);
}
.slide_menu .slide_menu_contents .inner .global_nav ul li a:hover {
  background: rgba(255, 255, 255, 0.9);
}
.slide_menu .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9100;
  opacity: 0;
  transition: 0.25s;
}
.slide_menu.active {
  pointer-events: visible;
}
.slide_menu.active .slide_menu_contents {
  transform: translateX(0);
}
.slide_menu.active .overlay {
  opacity: 1;
}

@media (min-width: 992px) {
  .openbtn {
    display: none;
  }
}
.footer-banner {
  padding: 4rem 0;
}
.footer-banner .banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}
.footer-banner .banner-list .item a {
  display: block;
  border: solid 1px #ccc;
}
.footer-banner .banner-list .item a:hover {
  opacity: 0.75;
}

@media (min-width: 576px) {
  .footer-banner .banner-list {
    gap: 1.75rem;
  }
}
@media (min-width: 992px) {
  .footer-banner .banner-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 920px;
  }
}
footer {
  background: #F2F2F2;
  padding: 5rem 0 0;
}
footer .container .footer-logo {
  max-width: 320px;
  margin: 3rem auto 1.5rem;
}
footer .container .company-info {
  text-align: center;
}
footer .container .company-info address {
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 0.25rem;
}
footer .container .company-info .tel {
  line-height: 1.5;
}
footer .container .privacy {
  text-align: center;
  margin: 2.5rem 0;
}
footer .container .privacy a {
  font-size: 0.9125rem;
  color: #262626;
  font-weight: 700;
  text-decoration: underline;
}
footer .container .privacy a:hover {
  text-decoration: underline;
  color: #9c9c9c;
}
footer .copyright {
  text-align: center;
  font-size: 0.875rem;
  background: #FF890F;
  color: #fff;
  padding: 1rem;
}

@media (max-width: 991px) {
  footer .container .footer-nav ul {
    border-top: solid 1px #999;
  }
  footer .container .footer-nav ul li a {
    line-height: 1.5;
    display: block;
    border-bottom: solid 1px #999;
    padding: 1rem 0.5rem;
    color: #262626;
    position: relative;
  }
  footer .container .footer-nav ul li a::after {
    content: "\e5cc";
    font-family: "Material Symbols Rounded";
    font-size: 1.375rem;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  footer .container .footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  footer .container .footer-nav ul li a {
    color: #262626;
    font-weight: 700;
  }
  footer .container .footer-nav ul li a:hover {
    text-decoration: underline;
    color: #9c9c9c;
  }
}
input[type=text],
input[type=email],
input[type=tel] {
  border: solid 1px #ccc;
  padding: 0.5rem;
  border-radius: 4px;
  width: 100%;
  line-height: 1.75;
  font-size: 1rem;
}

textarea {
  border: solid 1px #ccc;
  padding: 0.5rem;
  border-radius: 4px;
  width: 100%;
  resize: vertical;
}

select {
  border: solid 1px #ccc;
  padding: 0.5rem;
  border-radius: 4px;
}

input[type=checkbox] + span {
  border: solid 1px #bbb;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  display: block;
  color: #ccc;
  transition: 0.15s;
}
input[type=checkbox] + span::before {
  content: "\f1fe";
  font-family: "Material Symbols Rounded";
  font-weight: 900;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: -6px;
  line-height: 1;
}
input[type=checkbox] + span:hover {
  background: rgba(255, 180, 63, 0.15);
}
input[type=checkbox]:checked + span {
  border: solid 1px #FFB43F;
  color: #FFB43F;
}

input[type=radio] + span {
  border: solid 1px #bbb;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  display: block;
  color: #ccc;
  transition: 0.15s;
}
input[type=radio] + span::before {
  content: "\f192";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}
input[type=radio] + span:hover {
  background: rgba(255, 180, 63, 0.15);
}
input[type=radio]:checked + span {
  border: solid 1px #42AC29;
  color: #42AC29;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0 1rem 0.5rem 0;
}

.form-memo-btm {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9c9c9c;
  margin-top: 0.5rem;
}

.submit-btn {
  text-align: center;
}
.submit-btn .wpcf7-submit {
  display: block;
  background: #42AC29;
  cursor: pointer;
  width: 280px;
  text-align: center;
  margin: auto;
  color: #fff;
  line-height: 56px;
}
.submit-btn .wpcf7-submit:disabled {
  background: #ccc;
}

.cta-area {
  background: url(../images/ww-bg02.jpg) center 70%/cover no-repeat;
  padding: 5rem 0;
}
.cta-area .container h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cta-area .container .cta-inner {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem 1rem;
  max-width: 860px;
  margin: auto;
}
.cta-area .container .cta-inner .cta-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: dashed 1px #696969;
  padding-bottom: 0.5rem;
}
.cta-area .container .cta-inner .cta-box .tel {
  text-align: center;
  font-size: 2.375rem;
  color: #FF890F;
  font-weight: 700;
}
.cta-area .container .cta-inner .cta-box .tel span {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.cta-area .container .cta-inner .cta-box .cpn-btn {
  margin-top: 0;
}
.cta-area .container .cta-inner .cta-box .cta-memo {
  text-align: center;
  margin-top: 0.75rem;
  color: #696969;
}

@media (max-width: 767px) {
  .cta-area .container .cta-inner .cta-box + .cta-box {
    margin-top: 2.5rem;
  }
}
@media (min-width: 576px) {
  .cta-area .container h2 {
    font-size: 1.125rem;
  }
  .cta-area .container .cta-inner {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .cta-area .container h2 {
    font-size: 1.25rem;
  }
  .cta-area .container h2 br {
    display: none;
  }
  .cta-area .container .cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
/*==============================
	home
==============================*/
.ww-heading {
  background: url(../images/heading-bg.png) center center no-repeat;
  background-size: contain;
  margin-bottom: 2.5rem;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ww-heading h2 {
  font-size: 1.625rem;
  line-height: 1;
  transform: translateY(2px);
}

@media (min-width: 768px) {
  .ww-heading {
    height: 137px;
  }
  .ww-heading h2 {
    font-size: 1.875rem;
  }
}
.cpn-btn {
  margin-top: 2.5rem;
}
.cpn-btn a {
  background: #42AC29;
  color: #fff;
  display: block;
  margin: auto;
  padding: 0.875rem;
  border-radius: 8px;
  text-align: center;
  width: 240px;
}
.cpn-btn a:hover {
  background: #4dc930;
}

.cpn-related {
  background: url(../images/ww-bg01.jpg) 70% bottom;
  background-size: cover;
  padding: 7rem 0 14rem;
}
.cpn-related .related-slide {
  display: grid;
  gap: 1.5rem;
}
.cpn-related .related-slide .item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
}
.cpn-related .related-slide .item figure img {
  border-radius: 6px;
}
.cpn-related .related-slide .item h3 {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}
.cpn-related .related-slide .item h3 span {
  display: block;
  font-size: 0.75em;
}

@media (max-width: 767px) {
  .cpn-related {
    padding: 7rem 0;
    background: url(../images/ww-bg01.jpg) 20% bottom;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .cpn-related .related-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1232px) {
  .cpn-related .related-slide {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1480px) {
  .cpn-related .container {
    max-width: 1448px;
  }
}
.main-visual {
  background: url(../images/ww-bgmain.jpg) center center;
  background-size: cover;
  padding: 1.5rem 0;
}
.main-visual img {
  width: 100%;
}
.main-visual .message {
  padding: 2.5rem 0 1rem;
}
.main-visual .message p {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.main-visual .message p + p {
  margin-top: 1rem;
}

.top-product {
  padding: 7rem 0;
}
.top-product .item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.top-product .item-list figure img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .main-visual .message p {
    font-size: 1.125rem;
  }
  .top-product .item-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .main-visual .message p br {
    display: none;
  }
  .top-product .item-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
/*==============================
	page
==============================*/
.page-header {
  background: url(../images/ww-bgmain.jpg) center center;
  background-size: cover;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header h1 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
}
.page-header h1 span {
  display: block;
  margin-top: 0.75rem;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  .page-header h1 span {
    font-size: 1.125rem;
  }
}
.bread {
  background: #fff;
  border-bottom: solid 1px #FF890F;
  padding: 0.5rem 0;
}
.bread ol li {
  display: inline;
  font-size: 0.9125rem;
}
.bread ol li a {
  color: #262626;
}
.bread ol li a:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.bread ol li + li::before {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-size: 1.125rem;
  vertical-align: -4px;
}

.about-outline {
  padding: 7rem 0;
}
.about-outline .container .outline-info {
  max-width: 840px;
  margin: 0 auto 7rem;
  line-height: 1.6;
}
.about-outline .container .outline-info > div {
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
}
.about-outline .container .outline-info > div + div {
  margin-top: 1rem;
}
.about-outline .container .outline-info > div dt {
  font-weight: 700;
}
.about-outline .container .gmap {
  max-width: 840px;
  margin: auto;
  position: relative;
  padding-top: 56.25%;
}
.about-outline .container .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .about-outline .container .outline-info > div dt {
    margin-bottom: 0.5rem;
  }
  .about-outline .container .outline-info > div dd {
    font-size: 0.875rem;
  }
  .about-outline .container .gmap {
    padding-top: 100%;
  }
}
@media (min-width: 768px) {
  .about-outline .container .outline-info > div {
    display: flex;
    padding: 1rem 2rem;
  }
  .about-outline .container .outline-info > div dt {
    width: 30%;
  }
  .about-outline .container .outline-info > div dd {
    width: 70%;
  }
}
.products-area {
  padding: 7rem 0;
}
.products-area .products-list {
  max-width: 920px;
  margin: auto;
  border: solid 1px #aaa;
  padding: 0 0.875rem;
  border-radius: 12px;
  line-height: 1.75;
}
.products-area .products-list .item {
  padding: 0.875rem 0;
}
.products-area .products-list .item:not(:last-child) {
  border-bottom: solid 1px #aaa;
}
.products-area .products-list .item dt {
  color: #FF890F;
  font-weight: 700;
  font-size: 1.125rem;
}
.products-area .item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 4%;
}
.products-area .item-list figure img {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .products-area .products-list .item dd {
    margin: 0.5rem 0 0 1rem;
  }
}
@media (min-width: 768px) {
  .products-area .products-list {
    padding: 0 1.5rem;
  }
  .products-area .products-list .item {
    display: flex;
    padding: 1.25rem 1rem;
  }
  .products-area .products-list .item dt {
    width: 40%;
  }
  .products-area .products-list .item dd {
    width: 60%;
  }
  .products-area .item-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .products-area .item-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.faq-area {
  padding: 7rem 0;
}
.faq-area .faq-list {
  max-width: 800px;
  margin: auto;
  line-height: 1.75;
}
.faq-area .faq-list .faq-item:nth-child(n+2) {
  margin-top: 1rem;
}
.faq-area .faq-list .faq-item dt {
  border: solid 1px #FF890F;
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
}
.faq-area .faq-list .faq-item dt::before {
  content: "Q.";
  position: absolute;
  font-size: 1.125em;
  top: 0.5rem;
  left: 0.875rem;
  color: #FF890F;
}
.faq-area .faq-list .faq-item dt:hover {
  background: rgba(255, 137, 15, 0.1);
}
.faq-area .faq-list .faq-item dd {
  padding: 0.75rem 0 1.5rem 2.5rem;
  position: relative;
  display: none;
}
.faq-area .faq-list .faq-item dd::before {
  content: "A.";
  position: absolute;
  font-size: 1.125em;
  top: 0.5rem;
  left: 0.875rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .faq-area .faq-list .faq-item dd {
    font-size: 0.9125rem;
  }
}
@media (min-width: 768px) {
  .faq-area .faq-list .faq-item dt {
    font-size: 1.125rem;
    padding: 0.875rem 3rem;
  }
  .faq-area .faq-list .faq-item dt::before {
    top: 0.625rem;
    left: 1.125rem;
  }
  .faq-area .faq-list .faq-item dd {
    padding-left: 3rem;
  }
  .faq-area .faq-list .faq-item dd::before {
    top: 0.625rem;
    left: 1.25rem;
  }
}
.associated-area {
  padding: 7rem 0;
}
.associated-area .associated-list {
  display: grid;
  gap: 3rem;
}
.associated-area .associated-list .item {
  line-height: 1.5;
}
.associated-area .associated-list .item figure {
  margin-bottom: 1rem;
}
.associated-area .associated-list .item figure img {
  border-radius: 8px;
}
.associated-area .associated-list .item .company-name {
  margin-bottom: 0.25rem;
}
.associated-area .associated-list .item h2 {
  margin-bottom: 0.25rem;
  font-size: 18px;
}
.associated-area .associated-list .item address {
  font-style: normal;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
.associated-area .associated-list .item .tel {
  margin-bottom: 0.25rem;
}
.associated-area .associated-list .item .url a {
  color: #42AC29;
}

@media (min-width: 768px) {
  .associated-area .associated-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}
@media (min-width: 992px) {
  .associated-area .container {
    max-width: 920px;
  }
  .associated-area .associated-list {
    gap: 3rem;
  }
}
.contact-area {
  padding: 7rem 0;
}
.contact-area .container .form-caution {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-area .container .contact-wrap .form-table {
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.contact-area .container .contact-wrap .form-table ._must {
  background-color: #FFB43F;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0 0.375rem;
  border-radius: 4px;
  margin-right: 0.375rem;
  vertical-align: 1px;
}
.contact-area .container .contact-wrap .form-table ._must._free {
  background: #ccc;
  color: #fff;
}
.contact-area .container .contact-wrap .reC {
  border: solid 1px #ccc;
  padding: 1rem 1rem 1rem 2.75rem;
  font-size: 0.875rem;
  position: relative;
}
.contact-area .container .contact-wrap .reC svg {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 767px) {
  .form-table tr th {
    display: block;
    width: 100%;
    padding-bottom: 0.375rem;
    border-bottom: solid 1px #ccc;
    text-align: left;
  }
  .form-table tr td {
    display: block;
    width: 100%;
    padding: 0.75rem 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .contact-area .container .contact-wrap {
    border: solid 1px #ccc;
    border-radius: 8px;
    padding: 2.5rem;
  }
  .form-table {
    border-top: solid 1px #ddd;
  }
  .form-table tr th {
    border-bottom: solid 1px #ddd;
    padding: 1.5rem 1rem;
    text-align: left;
    min-width: 200px;
    width: 30%;
    vertical-align: middle;
  }
  .form-table tr td {
    border-bottom: solid 1px #ddd;
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 992px) {
  .contact-area .container {
    max-width: 920px;
  }
}
.privacy-area {
  padding: 7rem 0;
}
.privacy-area .intro {
  max-width: 840px;
  margin: auto;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.privacy-area dl {
  max-width: 840px;
  margin: auto;
  line-height: 1.6;
}
.privacy-area dl dt {
  font-weight: 700;
  color: #FF890F;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.privacy-area dl dd {
  font-size: 0.9125rem;
  margin-bottom: 2rem;
}
.privacy-area dl dd ul {
  margin: 1rem 0 0 1.5rem;
}
.privacy-area dl dd .company-info {
  margin-top: 1rem;
}
.privacy-area dl dd .company-info .name {
  font-weight: 700;
}
.privacy-area dl dd .company-info address {
  font-style: normal;
}

.thanks-area {
  padding: 7rem 0;
}
.thanks-area .thanks-caution {
  border: solid 1px #FFB43F;
  max-width: 840px;
  padding: 1rem 1rem 1rem 2.25rem;
  border-radius: 8px;
  line-height: 1.75;
  margin: auto;
  margin-bottom: 2.5rem;
}
.thanks-area .thanks-btn a {
  background: #42AC29;
  color: #fff;
  display: block;
  margin: auto;
  padding: 0.875rem;
  border-radius: 8px;
  text-align: center;
  width: 240px;
}
.thanks-area .thanks-btn a:hover {
  background: #4dc930;
}