@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Zen+Maru+Gothic&display=swap');

/*
Theme Name: puzzle
Theme URI: null
Description: Description
Author: 81bridge - SGX
Version: 1.0
*/
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.wp-block-image figure,
.wp-block-image figcaption {
  display: block;
}

a.nolink,
a.nolink:hover {
  opacity: 1;
  cursor: pointer;
}

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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,
font,
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 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}
figure {
  margin: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (width < 897px) {
  html {
    font-size: 14px;
  }
}

body,
table,
input,
textarea,
select,
option {
  font-family: 'Noto Sans JP', sans-serif;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

a,
a:link {
  color: var(--bordercolor);
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
}

a:visited {
  color: var(--bordercolor);
}

a:hover {
  color: #212836;
}

a:active {
  color: var(--bordercolor);
}

address {
  font-style: normal;
  text-align: center;
  width: 100%;
}

img {
  width: 100%;
}

:root {
  --color-brawn: #30290B;
  --color-brawn-light: #423e29;
  --color-yellow: #EDD662;
  --color-yellow-light: #faeeb2;
  --color-white: #FFFBE9;
  --color-green: #5A9A50;
  --color-bule: #7597EE;
  --color-red: #EE8775;

  --font-baby: "ab-babywalk", sans-serif;
  --font-mizole: "mizolet", sans-serif;
  --font-maru: "Zen Maru Gothic", serif;
  --font-quick: "Quicksand", serif;

  --padding-large: 180px;
  --padding-middle: 120px;
  --padding-small: 80px;
  --padding-minimum: 48px;
}

@media (width < 897px) {
  :root {
    --padding-large: 120px;
    --padding-middle: 80px;
    --padding-small: 48px;
    --padding-minimum: 24px;

  }
}

/*--------------------------
  common setting
----------------------------*/
.content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.common_title {
  color: var(--color-brawn);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  font-size: 2.8rem;
  width: fit-content;
  margin: 0 auto 48px;
  font-family: var(--font-quick);
  font-weight: 500;
  align-items: center;
}
.common_title .jp_title {
  font-size: 1.1rem;
  font-family: var(--font-maru);
  text-align: center;
  letter-spacing: 0.1em;
}
.common_title::before {
  position: absolute;
  background: url("img/common/dot.png") no-repeat center center;
  background-size: contain;
  width: 100px;
  height: 20px;
  top: calc(50% + 4px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
}

/*--------------------------
  header
----------------------------*/
.header_content {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  top: 48px;
  width: 100%;
  padding-right: 2%;
  box-sizing: border-box;
  z-index: 99999;
}
.header_content .logoBox {
  height: 80px;
  width: 280px;
}

.header_content .logoBox h1 {
  padding: 16px 48px 16px 64px;
  border-radius: 0 50px 50px 0;
  background: var(--color-white);
  box-sizing: border-box;
}

.header_content .logoBox img {
  width: 100%;
  object-fit: contain;
}

.header_menu_list {
  display: flex;
  flex-direction: row;
  gap: 24px;

}

.header_menu_list > li {
  width: 45px;
  height: 45px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    width: 24px;
  }
}
.header_menu_list > li > a {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_menu_list > li:last-child img {
  width: 20px;
}
.menu_btn .menu_btn_box {
  display: none;
  top: 80px;
  right: 0;
  width: 0;
  background: var(--color-green);
  transition: all 1s;
}
.menu_btn.active .menu_btn_box {
  display: block;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: calc(100vh - 80px);
  background: var(--color-green);
}
.menu_btn_box {
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.menu_btn_box li {
  border-bottom: 1px solid var(--color-white);
  box-sizing: border-box;
}
.menu_btn_box li p {
  padding: 24px 16px;
  transition: all 0.6s;
  color: var(--color-white);
}
.header_menu_list > li a, .menu_btn, .header_menu_list img {
  transition: all 0.6s;
}

@media(896px < width) {
  .header_menu_list > li a:hover, .menu_btn:hover {
    background: var(--color-green);
    cursor: pointer;
  }
  .header_menu_list > li a:hover img, .menu_btn:hover img {
    filter:contrast(0)  brightness(1.8);
  }
  .menu_btn_box li a:hover p {
    transform: scale(1.03);
    align-items: center;
  }
}
@media(width < 897px) {
  .header_content {
    top: 16px;
  }
  .header_content .logoBox {
    width: 180px;
    height: auto;
  }
  .header_content .logoBox h1 {
    padding: 10px 32px 10px 24px;
  }

}
/*--------------------------
  commonSetting
----------------------------*/
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (width < 897px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  
}
.btn_box {
  display: flex;
  justify-content: center;

}
.btn_box a > p {
  display: inline-block;
  padding: 18px 64px 18px;
  border: 2px solid var(--color-yellow);
  color: var(--color-brawn);
  font-size: 1.2rem;
  font-family: var(--font-maru);
  letter-spacing: 0.06em;
  transition: all 0.6s;
  box-sizing: border-box;
  border-radius: 50px;
}
@media (896px < width) {
  .btn_box a:hover p {
    background: var(--color-yellow);
  }
}
.comVisual {
  width: 100%;
  aspect-ratio: 7/2;
  object-fit: cover;
  position: relative;

  & .page_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
    color: var(--color-green);
    font-size: 1.8rem;
    font-family: var(--font-baby);
  }
}
@media (1300px < width) {
  .comVisual {
    aspect-ratio: 4/1;
  }
}
@media (width < 897px) {
  .comVisual {
    aspect-ratio: 3/1;
  }
}
@media(width < 897px) {
  .menu_btn.active .menu_btn_box {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
/*--------------------------
  index
----------------------------*/
.kvContent {
  width: 100%;
  padding-bottom: var(--padding-middle);
}
.kvContent .kvBox {
  position: relative;
}
.kvContent .kvBox::before {
  position: absolute;
  background: url("img/common/wave.png") repeat-x center center;
  background-size: 130px;
  width: 100%;
  height: 150px;
  bottom: -50px;
  left: 0;
  content: "";
  transform: scale(1, -1);
}
.kvContent img {
  object-fit: cover;
  max-height: 90vh;
  aspect-ratio: 16/9;
}
.kvContent .kvBox h2 {
  position: absolute;
  right: 0;
  bottom: -40px;
  padding: 32px 48px 32px 24px;
  box-sizing: border-box;
  font-size: 2.2rem;
  min-height: 200px;
  font-family: var(--font-baby);
  background: var(--color-yellow-light);
  border-radius: 20px 0 0 20px;
  border: 4px solid #fff;
  border-right: 0;
  display: flex;
  align-items: center;
  color: var(--color-brawn);
  line-height: 1.7;
}
@media(1000px < width) {
  .kvContent .kvBox h2 {
    min-width: 550px;
    width: 40%;
    font-size: 2.6rem;
    min-height: 230px;
  }
}
@media(width < 897px) {
  .kvContent .kvBox h2 {
    width: 80%;
    padding: 16px 24px 16px 16px;
    font-size: 1.6rem;
    width: 80%;
    min-height: 160px;
  }
}
.kvContent .kvBox h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: fit-content;
  transform: translate(-50%, -50%);
  padding: 16px 32px;
  background: var(--color-white);
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-family: var(--font-maru);
  letter-spacing: 0.1em;
  color: var(--color-bule);
}
@media(width < 897px) {
  .kvContent {
    padding-bottom: 24px;
  }
  .indexPage .kvContent {
    padding-bottom: var(--padding-middle);
  }
  .kvContent img {
    aspect-ratio: 4/3;
  }
  .indexPage .kvContent img {
    aspect-ratio: 3/4;
  }
  .kvContent .kvBox h3 {
    min-width: 260px;
    width: 60%;
    padding: 16px;
    text-align: center;
    font-size: 1.3rem;
  }
}
.index_about_section > div {
  display: flex;
  justify-content: center;
}
@media(width < 897px) {
  .index_about_section > div {
    display: flex;
    flex-direction: column;
  }
}
.index_about_section > div figure {
  width: 55%;
  max-width: 550px;
  padding-bottom: 48px;
}
.index_about_section > div figure img {
  border-radius: 20px;
}
.index_about_section > div > div {
  margin-left: -6%;
  margin-top: var(--padding-large);
  width: 45%;
  background: #fff;
  border: 3px solid var(--color-yellow);
  box-sizing: border-box;
  padding: 32px;
  border-radius: 20px;
  max-height: 300px;
  max-width: 500px;
}
.index_about_section > div > div h2 {
  font-size: 1.5rem;
  font-family: var(--font-maru);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  color: var(--color-brawn-light)
}
.index_about_section > div > div p {
  line-height: 1.7em;
  font-size: 1rem;
  font-family: var(--font-maru);
  color: var(--color-brawn-light)
}
.index_point_section {
  padding: var(--padding-middle) 16px 0;
  box-sizing: border-box;
}
.index_point_section .index_point_group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.index_point_section .index_point_group li {
  width: calc(100% / 3 - 24px);
  max-width: 450px;
  min-width: 320px;
  border: 3px solid var(--color-green);
  border-radius: 24px;
  overflow: hidden;

}
.index_point_section .index_point_group li figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.index_point_section .index_point_group li > div {
  padding: 32px 16px;
  box-sizing: border-box;
  border-radius: 0 0 24px 24px;

}
.index_point_section .index_point_group li > div h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-green);
  font-family: var(--font-maru);
}
.index_point_section .index_point_group li > div p {
  font-size: 1.05rem;
  color: var(--color-brawn-light);
  line-height: 1.8em;

}
@media(width < 897px) {
  .index_about_section > div figure,
  .index_about_section > div > div {
    width: 100%;
    margin: 0 auto;
  }
}

.index_blog_section {
  padding-top: 120px;
  width: 100%;
  
  .indexPage_blog_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 80px;

    .indexPage_blogbox {
      width: calc(100% / 3 - 24px);
      min-width: 280px;

      .index_blog_item {
        position: relative;
        border-radius: 12px;

        .indexPage_blogthumbnail {
          width: 100%;

          img {
            aspect-ratio: 4/3;
            object-fit: cover;
          }
        }

        .indexPage_blog_textbox {
          position: absolute;
          bottom: 0;
          left: 0;
          background: rgba(255, 251, 233, 0.8);
          backdrop-filter: blur(2px);
          width: 100%;
          padding: 20px 16px;
          box-sizing: border-box;
        }
      }
    }
  }
}
.indexPage_blog_textbox p {
  color: var(--color-brawn-light);
}
.indexPage_blog_textbox h3 {
  font-family: var(--font-maru);
  margin-top: 8px;
  color: var(--color-green);
}
@media(896px < width) {
  .indexPage_blogbox a .index_blog_item {
    transition: all 0.4s;
  }
  .indexPage_blogbox a:hover .index_blog_item {
    transform: scale(0.97);
  }
}
.worry_section {
  padding: var(--padding-middle) 0 0;
}
.index_worry_toptxt {
  text-align: center;
}
.stylePage_search_category {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border: 4px;
}
.stylePage_search_category input {
  border: 2px solid var(--color-yellow);
  padding: 10px 8px;
  color: var(--color-brawn-light);
  box-sizing: border-box;
  border-radius: 4px;
}
.stylePage_search_category [type="submit"] {
  padding: 10px 16px;
  background: var(--color-yellow);
  color: var(--color-brawn);
  transition: all 0.4s;
}
.stylePage_search_category h3 {
  font-size: 1.3rem;
  font-family: var(--font-mizole);
  color: var(--color-green);
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-yellow);
}
.stylePage_search_category_ul li a p {
  border: 2px solid var(--color-bule);
  padding: 16px 24px;
  border-radius: 50px;
  box-sizing: border-box;
  color: var(--color-bule);
  transition: all 0.4s;
}
.stylePage_search_category_ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.catalogUl {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.catalogUl .catalog_li {
  width: calc(100% / 3 - 24px);
  min-width: 280px;
}
.catalogUl .catalog_li a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.6s;
}
.catalogUl .catalog_li img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.catalogUl .catalog_li p {
  font-size: 1rem;
  color: var(--color-brawn);
  font-family: var(--font-mizole);
  text-align: center;
}
.worry_more_box {
  display: flex;
  justify-content: center;
}
.worry_more_box p {
  padding: 16px 32px;
  box-sizing: border-box;
  border: 2px solid var(--color-yellow);

}
@media(896px < width) {
  .stylePage_search_category_ul li a:hover p {
    background: var(--color-bule);
    color: #fff;
  }
  .stylePage_search_category [type="submit"]:hover {
    background: var(--color-bule);
    color: #fff;
    border: 2px solid var(--color-bule);
    cursor: pointer;
  }
  .catalogUl .catalog_li a:hover {
    transform: scale(0.97);
  }
}
/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
.Page .topBg {
  margin-top: 32px;
}

#pagePath {
  max-width: 1150px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;

  li {
    margin-right: 10px;
    display: inline;
    letter-spacing: 0.08em;

    a {
      padding-right: 30px;
      display: inline-block;
      background: url("img/common/right-icon.png") no-repeat right center;
      background-size: 9px auto;
    }

    @media (896px < width) {
      a:hover {
        opacity: 0.7;
      }
    }

    img {
      width: 15px;
      padding-bottom: 3px;
      display: inline-block;
      vertical-align: middle;
    }
  }
}
@media(width < 897px) {
  #pagePath {
    display: none;
  }
  #pagePath li a .home-icon {
    width: 13px;
  }
}
@media(896px < width) {
  #pagePath li a .home-icon {
    width: 15px;
  }
}

@media all and (max-width: 896px) {
  #pagePath {
    max-width: inherit;
    margin: 0 auto 42px;
    padding: 0 24px;
  }

  #pagePath li {
    margin-right: 9px;
  }

  #pagePath li a {
    padding-right: 26px;
    background: url("img/common/sp_icon03.png") no-repeat right center;
    background-size: 8px auto;
  }

  #pagePath li img {
    margin: -3px 0 0;
  }

  .single_catalog_pagepath {
    margin-top: 60px;
  }
}

/*------------------------------------------------------------
	archive
------------------------------------------------------------*/
.bg_archive {
  background: url("img/common/kv_1.jpg") no-repeat center center;
  background-size: 100%;
}

.blogPage_item_widget {
  width: 80%;
  max-width: 200px;
  text-align: center;
}

.widget.widget_archive {
  padding: 24px 16px;
  background: var(--graywhitecolor);
  box-sizing: border-box;
  text-align: center;
  background: var(--color-yellow);
  border-radius: 12px;
}
.widget.widget_archive > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget.widget_archive > ul li a {
  color: var(--color-brawn-light);
  transition: all 0.4s;
}
.widget-title {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-family: var(--font-baby);
}

.blogPage_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
@media(width < 897px) {
  .blogPage_inner {
    margin-bottom: var(--padding-middle);
  }
}
.title-wrap {
  margin: 8px 0;
  display: flex;
  gap: 24px;
}

.blog_li {
  border-bottom: 1px solid var(--graywhitecolor);
}

.blog_li a {
  padding: 32px 16px;
  transition: all 0.6s;
}

.blogUl img {
  aspect-ratio: 2/1;
  object-fit: cover;
}

.pageNavi {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}
.pageNavi > li a {
  transition: all 0.4s;
}
@media(896px < width) {
  .pageNavi > li a:hover {
    color: var(--color-bule);
  }
}
.singleBox {
  gap: 16px;
  display: flex;
  flex-direction: column;
  color: var(--color-brawn-light);
}

.single_txt h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-family: var(--font-mizole);
  color: var(--color-green);
  border-bottom: 2px dashed var(--color-green);
  padding-bottom: 8px;
}
.single_txt p {
  line-height: 1.8em;
  font-size: 1rem;
}
.single_txt img {
  margin-top: 32px;
}
.news_date {
  color: var(--bggraycolor);
}
.blog_txt {
  transition: all 0.4s;
}
@media (max-width: 896px) {
  .blogUl img {
    margin-bottom: 16px;
  }

  .blog_li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blogPage_inner {
    align-items: center;
  }

  .widget.widget_archive {
    width: 80%;
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
  }

  .pageNavi {
    margin-bottom: 24px;
  }
  section.comVisual.bg_archive {
    aspect-ratio: 3 / 2;
    background-size: cover;
  }
}

@media (min-width: 897px) {

  .blogPage_inner,
  .news {
    display: flex;
    gap: 48px;
    flex-direction: row;
    margin-bottom: 120px;
  }

  .blogPage_item_widget,
  .newsPage_item.newsPage_item_widget {
    width: 20%;
    min-width: 180px;
  }

  .blogUl img {
    width: 50%;
  }

  .blog_li>a {
    display: flex;
    gap: 24px;
  }

  .blog_li a:hover {
    transform: scale(0.97);
    background: #fff;
  }
  .blog_li a:hover .blog_txt {
    color: var(--color-red);
  }
  .widget.widget_archive > ul li a:hover {
    color: var(--color-bule);
  }
}
/*--------------------------
  searchPage
----------------------------*/
.worry_txtgroup .date {
  margin-bottom: 16px;
}
.worry_txtgroup .singlePage_pagetitle {
  font-size: 1.5rem;
  font-family: var(--font-maru);
  margin-bottom: 32px;
  border-bottom: 2px dashed var(--color-green);
  padding-bottom: 8px;
  color: var(--color-green);
}
.single_content {
  padding-bottom: var(--padding-middle);
}
.single_content figure {
  margin: 0 auto 32px;
  text-align: center;
}
.single_content figure img {
  width: 100%;
  max-width: 650px;
}
.single_detail_content {
  color: var(--color-brawn);
  line-height: 1.8em;
  font-size: 1.15rem;
}
.single_detail_content .detail_txt_question {
  background: #cff1c9;
  padding: 24px 16px;
  margin-bottom: var(--padding-small);
  border-radius: 4px;
  width: 90%;
  max-width: 650px;
}
.single_detail_content .detail_txt_answer {
  width: 90%;
  margin:  0 0 0 auto;
  max-width: 650px;  
  background: #ffd7d0;
  border-radius: 4px;
  padding: 24px 16px;
  margin-bottom: 32px;

}
/*--------------------------
  singlePage
----------------------------*/
.Page.singlePage {
  margin-bottom: var(--padding-middle);
}
/*--------------------------
  topicPage
----------------------------*/
.topicPage {
  padding-top: 160px;
}

.topicPage .entry-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

/*--------------------------
  footer
----------------------------*/
footer {
  background: var(--color-yellow-light);
}

.footer_content {
  padding: 80px 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;

  .footer_logo {
    width: calc(40% - 48px);
    min-width: 320px;

    img {
      max-width: 200px;
    }
  }
}
.footer_menu_box {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer_menu_box .menu_item {
  position: relative;
}
.footer_menu_box .menu_item a p {
  padding: 4px 16px;
  box-sizing: border-box;
  transition: all 0.4s;
  position: relative;
}
.fotter_addressBox {
  padding: 24px 0;
}
@media(896px < width) {
  .footer_menu_box .menu_item a:hover p {
    color: var(--color-red);
  }
  .footer_menu_box .menu_item:not(:last-child)::before {
    position: absolute;
    background: var(--color-white);
    background-size: 100%;
    width: 8px;
    aspect-ratio: 1/1;
    top: 50%;
    right: -16px;
    border-radius: 50%;
    transform: translate(0, -50%);
    content: "";
  }
  .footer_menu_box .menu_item a p::before {
    position: absolute;
    border-bottom: 1px solid var(--color-red);
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    content: ""; 
    transition: all 0.6s;
  }
  .footer_menu_box .menu_item a:hover p::before {
    position: absolute;
    width: 100%;
    left: 0;
  }
}
@media(width < 897px) {
  .footer_menu_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
/*------------------------------------------------------------
	contact
------------------------------------------------------------*/
.contactPage {
  padding-top: var(--padding-large);
}
.contactPage .topTxt {
  margin: 0 0 24px 3px;
  letter-spacing: 0.06em;
  text-align: center;
}
.contactPage .topTxt:last-child {
  margin-bottom: 48px;
}
.contactPage table {
  margin-bottom: 158px;
  width: 100%;
  border-collapse: collapse;
  word-break: break-all;
  max-width: 800px;
  margin: 0 auto 48px;
}

.contactPage th,
.contactPage td {
  padding: 16px 0 16px 32px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e6e6e6;
}

.contactPage th {
  padding: 16px 32px 16px 0;
  width: 29%;
  font-weight: 500;
}

.contactPage td {
  font-size: 1.3rem;
  position: relative;
}

.contactPage th p {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.contactPage th .must {
  width: fit-content;
  padding: 0 6px;
  color: #fff;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--color-green);
  text-align: center;
  letter-spacing: 0.06em;
}

.contactPage td:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  top: 0;
  height: 60%;
  border-left: 1px solid #e6e6e6;
  content: "";
  transform: translateY(25%);
}

.contactPage td input[type="email"],
.contactPage td input[type="tel"],
.contactPage td input[type="text"],
.contactPage td input[type="number"],
.contactPage td select,
.contactPage td textarea {
  color: #212836;
  width: 100%;
  height: 42px;
  padding: 8px 10px 8px 16px;
  -webkit-appearance: none;
  box-sizing: border-box;
  background: #F4F4F4;
  border: 1px solid #F4F4F4;
  border-radius: 4px;
  font-size: 0.9rem;
}

.contactPage td .wid01 {
  width: 98px !important;
}

.contactPage td .ico {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.6rem;
}

.contactPage td .add {
  margin-bottom: 20px;
}

.contactPage td textarea {
  height: 265px;
  resize: vertical;
  padding: 20px 10px 20px 23px;
}

.contactPage .txtP {
  margin-bottom: 45px;
  line-height: 1.9;
  text-align: center;
}

.contactPage .txtP a {
  text-decoration: underline;
}

.contactPage .txtP a:hover {
  opacity: 0.7;
}

.contactPage .agreeTxt {
  width: 460px;
  margin: 0 auto 64px;
  padding: 12px 10px 16px 80px;
  box-sizing: border-box;
  border: 1px solid #CCC;
}

.contactPage .agreeTxt input[type="checkbox"] {
  display: none;
}

.contactPage .agreeTxt input[type="checkbox"]~span {
  background: url("img/common/check_box_bg02.png") no-repeat left top 9px;
  background-size: 16px 16px;
  display: block;
  min-height: 16px;
  padding: 4px 0 6px 26px;
}

.contactPage .agreeTxt input[type="checkbox"]:checked~span {
  background: url("img/common/check_box_bg01.png") no-repeat left top 9px;
  background-size: 16px 16px;
}

.contactPage .submit {
  text-align: center;
}

.contactPage .submit li {
  margin: 0 6px;
  display: inline-block;
  vertical-align: top;
}

.ajax-loader {
  display: none !important;
}

.contactPage .submitBtn {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  color: #fff;
  transition: all 0.4s;
  text-align: center;
  background: var(--color-green);
  width: fit-content;
  padding: 16px 48px;
}
.contactPage .submitBtn input {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.contactPage .info02 {
  text-align: center;
}
.contactPage .submitBtn > span {
  display: none;
}
.contactPage .submitBtn {
  transition:  all 0.4s;
  margin: 0 auto;
}
.contactPage .submit_box {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}
.contactPage .submit_box > p {
  width: fit-content;
  display: flex;
  justify-content: center;
}
.contactPage .submit_box > p .wpcf7-spinner {
  display: none;
}
.contactPage .submit_box > p [type="submit"] {
  background: var(--color-brawn);
  color: var(--color-white);
  padding: 16px 32px;
  box-sizing: border-box;
  min-width: 250px;
  max-width: 300px;
  border: none;
  transition: all 0.6s;
}
@media (896px < width) {
  .contactPage .submit_box > p [type="submit"]:hover {
    background-color: var(--color-yellow);
    color: var(--color-brawn);
    cursor: pointer;
  }
}
@media (897px < width) {
  .contactPage .submitBtn:hover {
    opacity: 0.4;
  }
}

.contactPage .submit li input {
  color: #fff;
  width: 258px;
  height: 48px;
  font-size: 1.6rem;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  background: none;
}
.contactPage .submit li input:disabled {
  cursor: default;
  pointer-events: none;
}

.contactPage .submit .back .info01 {
  background: #919191;
  border-color: #919191;
}

.contactPage .submit li.disabled .info01 {
  background: #CECECE;
  border-color: #CECECE;
}

.contactPage .submit li.disabled .info01:after {
  display: none;
}

.contactPage .errTop {
  margin-bottom: 16px;
  padding: 18px 10px;
  color: #C1272D;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 3px solid #C1272D;
  background: #FCDEDD;
  text-align: center;
}

.contactPage .errTop img {
  margin: -3px 10px 0 0;
  display: inline-block;
  vertical-align: middle;
}

.contactPage .error td input,
.contactPage .error td select,
.contactPage .error td textarea {
  background: #FCDEDD;
  border: 1px solid #C1272D;
}

.contactPage .error td .errorTxt {
  margin: 2px 0 -22px;
  display: block;
  color: #DE2B2B;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
}

.contactPage .confirmTab th,
.contactPage .confirmTab td {
  height: 60px;
}

.contactPage .confirmTab td .add {
  margin-bottom: 4px;
}

.thanks .title {
  margin-bottom: 32px;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}

.thanks .thanksTxt {
  margin-bottom: 180px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}

.thanks .linkBtn a {
  margin: 0 auto;
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  width: 256px;
  color: #fff;
  text-align: center;
  position: relative;
  background: #212836;
  border: 1px solid #212836;
  box-sizing: border-box;
}

.thanks .linkBtn a:before {
  margin-top: -4px;
  position: absolute;
  left: 11px;
  top: 50%;
  width: 21px;
  height: 11px;
  background: url("img/common/icon07.png") no-repeat left center;
  background-size: 21px auto;
  content: "";
  z-index: 3;
  transition: .3s;
  -webkit-transition: .3s;
}

.thanks .linkBtn .info {
  position: relative;
  z-index: 2;
}

.thanks .linkBtn a:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  left: auto;
  right: 0;
  background-color: #fff;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media all and (min-width: 897px) {
  .contactPage .submit li:hover .info01:after {
    width: 100%;
    right: auto;
    left: 0;
  }

  .contactPage .submit li:hover .info01:before {
    right: -21px;
    background-image: url("img/common/icon08.png");
  }

  .contactPage .submit li.disabled:hover .info01:before {
    right: 10px;
    background-image: url("img/common/icon05.png");
  }

  .contactPage .submit li:hover input {
    color: #212836;
  }

  .contactPage .submit li.disabled:hover input {
    color: #fff;
  }

  .contactPage .submit li.back:hover .info01:before {
    left: -21px;
    background-image: url("img/common/icon14.png");
  }

  .thanks .linkBtn a:hover {
    color: #212836;
  }

  .thanks .linkBtn a:hover:before {
    background-image: url("img/common/icon14.png");
    left: -21px;
  }

  .thanks .linkBtn a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
  }
}

@media all and (max-width: 896px) {
  .contactPage .topTxt {
    margin: 0 0 17px;
    line-height: 1.9;
    text-align: center;
  }

  .contactPage table {
    margin-bottom: 48px;
  }

  .contactPage th,
  .contactPage td {
    float: left;
    width: 100%;
    padding: 0 0 25px;
    box-sizing: border-box;
  }

  .contactPage th {
    padding: 22px 0 10px;
    width: 100%;
    border: none;
  }

  .contactPage td:before {
    display: none;
  }

  .contactPage td input[type="text"],
  .contactPage td input[type="email"],
  .contactPage td input[type="tel"],
  .contactPage td textarea {
    height: 58px;
    font-size: 1.2rem;
    padding: 5px 10px 5px 25px;
  }

  .contactPage td {
    font-size: 1.4rem;
  }

  .contactPage td .wid01 {
    width: 124px !important;
  }

  .contactPage td .ico {
    margin-right: 7px;
  }

  .contactPage td .add {
    margin-bottom: 20px;
  }

  .contactPage td textarea {
    height: 180px;
    padding: 20px 10px 20px 25px;
  }

  .contactPage .txtP {
    margin-bottom: 23px;
    line-height: 1.85;
  }

  .contactPage .agreeTxt {
    width: auto;
    margin: 0 auto 51px;
    padding: 14px 10px 14px 30px;
  }

  .contactPage .agreeTxt span.wpcf7-list-item {
    margin: 0 !important;
  }

  .contactPage .submit li {
    margin: 0 0 15px;
    display: block;
  }

  .contactPage .submit li:last-child {
    margin-bottom: 0;
  }

  .contactPage .submit li span:before {
    right: 17px;
  }

  .contactPage .submit li input {
    width: 100%;
    height: 60px;
  }

  .contactPage .errTop {
    margin-bottom: 18px;
    padding: 23px 10px 20px;
    font-size: 1.6rem;
    border-width: 2px;
    line-height: 1.9;
  }

  .contactPage .errTop img {
    margin: 0 auto 5px;
    display: block;
  }

  .contactPage .error td .errorTxt {
    margin: 3px 0 -19px;
    font-size: 1.1rem;
  }

  .contactPage .confirmTab th,
  .contactPage .confirmTab td {
    padding: 21px 0 7px;
    height: auto;
    line-height: 2;
  }

  .contactPage .confirmTab td {
    padding: 0 0 20px;
  }

  .contactPage .confirmTab td .add {
    margin-bottom: 4px;
  }

  .thanks .title {
    margin-bottom: 22px;
    font-size: 2.4rem;
  }

  .thanks .thanksTxt {
    margin-bottom: 37px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.9;
  }

  .thanks .linkBtn a {
    margin: 0 auto;
    height: 60px;
    width: 100%;
    font-size: 1.6rem;
    max-width: 450px;
    letter-spacing: 0.06em;
  }

  .thanks .linkBtn a:before {
    left: 16px;
  }
}
.wpcf7-not-valid-tip {
  font-size: 1.25rem !important;
}
@media all and (max-width: 374px) {
  .contactPage .txtP {
    margin: 0 -17px 23px;
  }

  .contactPage .agreeTxt {
    padding: 14px 5px 14px 10px;
    font-size: 1.3rem;
  }
}
/*----privacy-----*/
.privacy {
  padding-bottom: var(--padding-small);
}
.privacy .headLine02 {
  font-size: 1.8rem;
  font-family: var(--font-maru);
  color: var(--color-green);
  text-align: center;
  margin-bottom: 32px;
}
.privacy .headLine03 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-family: var(--font-maru);
}
.privacy p {
  margin-bottom: var(--padding-minimum);
  line-height: 1.8em;
}