@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap");
@import url("https://use.typekit.net/vxt0gvy.css");
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap");
/*
Theme Name: NSS MARKETING
Theme URI: null
Description: Description
Author: 81bridge - SGX
Version: 1.0
*/

.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
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: default;
  pointer-events: none;
}
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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,
figure,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
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;
  box-sizing: border-box;
}
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: #212836;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
a:visited {
  color: #212836;
}
a:hover {
  color: #212836;
}
a:active {
  color: #212836;
}
	section {
	  padding: 40px 20px;
	  @media (max-width: 550px) {
	    padding: 20px 10px;
	  }
	}
h2 {
  font-family: "Hina Mincho", sans-serif;
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
/* .clearfix:after {content: "";display: block;clear: both;} */
/* flex */
.flex,
.flexA,
.flexB,
.flexC {
  display: flex;
  flex-wrap: wrap;
}
.flexA {
  justify-content: space-around;
}
.flexB {
  justify-content: space-between;
}
.flexC {
  justify-content: center;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: #212836;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: #fff;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
/* #container {
	padding-top: 83px;
	overflow: hidden;
	text-align: left;
} */
.special #container {
  padding: 0;
}
#main {
  display: block;
  margin-top: 80px;
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

:root {
  --main-color: #1783cc;
  --sub-color: #ed4701;
  --accent-color:#91afcc;
  --font-min: "Hina Mincho", sans-serif;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 896px) {
  body {
    min-width: inherit;
    font-size: 1.4rem;
  }
  a:hover,
  a:hover img {
    opacity: 1 !important;
  }
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  #main {
    margin-bottom: 50px;
    margin-left: 0;
  }
}


/*------------------------------------------------------------
	サイドバー　ウィジェット
------------------------------------------------------------*/

.widgetFlex {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: stretch;
}
.widgetInner {
  width: 80%;
	flex:1;
}
/* サイドバーレイアウト枠 */
.sidebar-area {
  z-index: 10;
  background-color: #fff;
  padding: 20px;
  min-width: 350px;
	max-width:450px;
  width: 20%;

  .sidebar-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 100%;

    /* サイドバー共通レイアウト */
    & .custom-widget {
      margin-bottom: 10px;
    }
  
    & .widget-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 16px;
      padding-bottom: 4px;
      border-bottom: 1px solid #c9c9c9;
      position: relative;
    }
  
    /* --- 検索欄のスタイル --- */
    & .search-form {
      display: flex;
      border: 1px solid #bbb;
      overflow: hidden;
      border-radius: 4px;
  
      & .search-field {
        flex: 1;
        padding: 8px 12px;
        border: none;
        outline: none;
        font-size: 14px;
      }
  
      & .search-submit {
        width: 48px;
        background: #746c53; /* 画像に近い色 */
        border: none;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
      }
    }
  
    /* --- サイドバーリンクデザイン --- */
    & ul {
      list-style: none;
      padding-left: 0;
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
  
      & li {
        font-size: 14px;
  
        & a {
          width: 100%;
          display: block;
          background-color: #eee;
          color: #333;
          text-decoration: none;
  
          &:hover {
            text-decoration: underline;
          }
        }
      }
    }
  
    /* --- カテゴリーアコーディオン --- */
    .accordion-widget {
      & .accordion-title {
        cursor: pointer;
        padding: 10px 0;
        font-weight: bold;
        border-bottom: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
  
        &.open {
          color: #0073aa;
        }
        & .accordion-title-icon {
          display: flex;
          gap: 10px;
  
          & img {
            width: 20px;
            aspect-ratio: 1;
            object-fit: contain;
          }
        }
      }
  
      & .accordion-content {
        display: none;
        padding: 10px 0;
        & ul {
          & li {
            & a {
              width: fit-content;
              display: inline;
              background-color: unset;
            }
          }
        }
      }
    }
  
    & .wp-block-heading {
      position: relative;
      margin-bottom: 10px;
      font-size: 18px;
  
      &:after {
        content: "";
        display: block;
        height: 2px;
        background: linear-gradient(
          to right,
          var(--main-color),
          var(--sub-color)
        );
        margin-top: 5px;
      }
    }
    /* サイドバー検索バーデザイン */
    & .wp-block-latest-posts__post-title {
      padding: 5px;
    }
    .wp-block-search {
      max-width: 300px;
      label {
        display: none;
      }
      .wp-block-search__inside-wrapper {
        display: flex;
        align-items: stretch;
        border: 1px solid #333;
        justify-content: space-between;
        border-radius: 5px;
        input {
          border-radius: 5px 0 0 5px;
          width: 80%;
          border: none;
          border-radius: unset;
          padding: unset;
          background-color: unset;
        }
        button {
          border: none;
          border-radius: 0 5px 5px 0;
          width: 100%;
          max-width: 70px;
        }
      }
    }
  
    /* 親カテゴリ行 */
    & .widget_categories {
      & li.cat-item {
        position: relative;
        padding-left: 24px;
        cursor: pointer;
  
        /* 左のフォルダアイコン */
        &::before {
          content: "📁";
          position: absolute;
          left: 0;
          top: 2px;
          font-size: 14px;
        }
  
        /* 開閉ボタン */
        &.cat-parent > & a::after {
          content: "▶";
          font-size: 12px;
          margin-left: 6px;
          transition: transform 0.2s ease;
        }
  
        /* 開いている時の矢印 */
        &.open > & a::after {
          transform: rotate(90deg);
        }
  
        /* 子カテゴリ（デフォルト非表示にする） */
        &.cat-parent > & ul.children {
          display: none;
          margin-left: 10px;
          padding-left: 10px;
          border-left: 1px solid #ccc;
  
          & li & a {
            padding: 3px 0;
            display: block;
          }
        }
      }
    }
  
    /* サイドバーお気に入り投稿デザイン */
    .favorites-list {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      background-color: unset;
  
      li {
        min-width: 280px;
        overflow: hidden;
        position: relative;
        padding: 0;
        background-color: var(--accent-color);
  
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
  
        a {
          margin: 10px 5px;
          display: inline-block;
          background-color: unset;
          color: #fff;
        }
        &:hover {
          box-shadow: 0 5px 10px rgba(87, 87, 87, 0.199);
        }
      }
    }
  }
}
/* SNSシェアデザイン*/
.addtoany_content {
  margin: 16px !important;
}
/* widgetのお気に入り記事デザイン*/
.simplefavorite-button.preset {
  margin-bottom: 20px;
}
.favorites-list {
  background-color: #fff9fc;
}
.favorites-list li {
  border-top: none !important;
  border-bottom: 1px solid #ddd;
}

/* お気に入りページデザイン */
.favorite-page {
  .favorite-topkv {
    position: relative;
    .favorite-topimg {
      max-height: 300px;
      width: 100%;
      object-fit: cover;
      border-bottom: 3px solid var(--main-color);
    }
    h3 {
      position: absolute;
      background-color: #fff;
      border-top: 3px solid var(--main-color);
      border-right: 3px solid var(--main-color);
      border-radius: 0 20px 0 0;
      bottom: 0;
      left: 0;
      text-align: center;
      padding: 20px 40px;
      font-size: clamp(2.4rem, 4vw, 3.2rem);
    }
  }
  .favorites-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    background-color: unset;

    li {
      width: calc(100% / 4 - 24px);
      min-width: 280px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      padding: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;

      .wp-post-image {
        width: 100%;
        aspect-ratio: 3 / 2;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
        margin: 0;
      }
      a {
        margin: 20px 5px;
        display: inline-block;
      }
      &:hover {
        box-shadow: 0 5px 10px rgba(87, 87, 87, 0.199);

        img {
          transform: scale(1.08);
        }
      }
    }

    h2,
    .favorite-title {
      font-size: 15px;
      line-height: 1.4;
      padding: 12px 14px 42px;
    }

    .simplefavorite-button,
    .favorite-button {
      margin: 0 0px 10px 5px;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;

      h2 {
        font-size: 14px;
      }
    }
  }
  .favorite-none {
    max-width: 500px;
    margin: 0 auto;

    .favorite-imgBox {
      margin-bottom: 30px;
      margin-left: 40px;
      img {
      }
    }
    .none-textbox {
      text-align: center;
      p {
        font-size: 26px;
        margin-bottom: 10px;
      }
      a {
        background-color: var(--accent-color);
        padding: 10px 40px;
        color: #fff;
        font-size: 26px;
        display: inline-block;
        width: fit-content;
        font-weight: 800;
        border-radius: 10px;
        &:hover {
          transform: scale(1.1);
        }
      }
    }
    @media (max-width: 768px) {
      .favorite-imgBox {
        width: 70%;
        margin: 0 auto;
      }
      .none-textbox {
        text-align: center;
        p {
          font-size: 18px;
        }
        a {
          font-size: 20px;
        }
      }
    }
  }
}

@media (max-width: 1200px) {
  .widgetInner {
    width: 100%;
  }
  .widgetFlex {
    flex-direction: column;
  }
  .sidebar-area {
    width: 100%;
    max-width: unset;
    height: 100%;
    padding: 40px 20px;
  }
}
/*------------------------------------------------------------
	　検索ページ
------------------------------------------------------------*/
.search-wrapper {
  min-height: 50vh;

  & .search-title {
    font-size: 24px;
    border-bottom: 2px solid var(--sub-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  & .search-count {
    margin-bottom: 20px;
  }
  & .blogUl {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

    margin: 0 auto;

    & li {
      width: calc(100% / 3 - 30px);
      min-width: 300px;
      background-color: #eee;
      padding: 10px;
      box-sizing: border-box;
      & a {
        & figure {
          overflow: hidden;
          & img {
            transition: all 0.3s ease-in-out;
            aspect-ratio: 2 / 1;
            object-fit: cover;
          }
          & .blog_txt {
            & .blog_date {
              font-size: 12px !important;
            }
            & .title-wrap {
              & .new_recent {
                color: red;
              }
            }
          }
        }
      }
    }
    & li:hover a figure img {
      transform: scale(1.1);
    }
  }
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  box-sizing: border-box;
  background-color: var(--main-color);

  .headerFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
  }

  h1 {
    background-color: #fff;
    a {
      display: block;

      img {
        height: 80px;
        object-fit: contain;
      }
    }
  }

  nav {
    .naviPc {
      display: flex;
      gap: 20px;

      .nav_item {
        a {
          color: #ffffff;
          letter-spacing: 2px;
        }

        &:hover {
          opacity: 0.7;
        }
      }

      .contact {
        a {
          color: #ffffff;
          background-color: var(--sub-color);
          border-radius: 50px;
          padding: 3px 15px;
        }
      }
    }
  }

  .menu-btn {
    width: 77px;
    height: 77px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 39px;
    position: relative;
    background-color: var(--sub-color);
    border: 2px solid var(--sub-color);
    box-sizing: border-box;

    span {
      transition: all 0.4s;
      box-sizing: border-box;
      position: absolute;
      left: calc(50% - 14px);
      width: 28px;
      height: 3px;
      border-radius: 2px;
      background-color: #fff;

      &:nth-of-type(1) {
        top: 24px;
      }
      &:nth-of-type(2) {
        top: 35px;
      }
      &:nth-of-type(3) {
        top: 46px;
      }
    }

    &.on {
      span {
        top: 35px !important;
        opacity: 0;
      }

      span:nth-of-type(1) {
        transform: rotate(45deg);
        opacity: 1;
      }

      span:nth-of-type(3) {
        transform: rotate(-45deg);
        opacity: 1;
      }
    }
  }

  &.on {
    height: 90px;
    background: #fff;

    h1 {
      padding: 19px 0 0 50px;

      img {
        width: 228px;
      }
    }

    .menu-btn {
      width: 52px;
      height: 52px;

      span {
        width: 25px;
        left: calc(50% - 13px);

        &:nth-of-type(1) {
          top: 13px;
        }
        &:nth-of-type(2) {
          top: 22px;
        }
        &:nth-of-type(3) {
          top: 31px;
        }
      }

      &.on span {
        top: 23px !important;
      }
    }
  }
}

/* --- menuBox --- */
.menuBox {
  display: none;
  position: fixed;
  background: #1784cc80;
  backdrop-filter: blur(10px);
  z-index: 1000;
  overflow-y: auto;
  box-sizing: border-box;
  right: 0;
  top: 80px;
  width: 100%;
  height: calc(100% - 60px);

  .naviUl {
    padding: 0 27px 50px;

    li {
      a {
        padding: 20px 30px 19px 0;
        position: relative;
        font-size: 1.6rem;
        display: block;
        font-weight: 500;
        color: #fff;
        letter-spacing: 0.06em;
        border-bottom: 1px solid #fff;

        &::before {
          position: absolute;
          right: 0;
          top: 50%;
          margin-top: -5px;
          width: 21px;
          height: 11px;
          background: url("img/common/icon05.png") no-repeat left top;
          background-size: 21px 11px;
          content: "";
          transition: 0.3s;
        }
      }

      &.blank a::before {
        margin-top: -8px;
        width: 17px;
        height: 17px;
        background: url("img/common/icon13.png") no-repeat left top;
        background-size: 17px 17px;
      }
    }
  }
}

/* PC */
@media (min-width: 897px) {
  #gHeader {
    .menu-btn:hover {
      opacity: 0.7;
    }
  }

  .menuBox {
    .naviUl li a:hover::before {
      right: -15px;
    }
  }
}

/* SP */
@media (max-width: 896px) {
  #gHeader {
    height: 80px;

    .headerFlex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      margin: 0 15px;
    }

    h1 a {
      padding: 5px;
      display: inline-block;
      width: 160px;
    }

    nav .naviPc {
      display: none;
    }

    .menu-btn {
      width: 35px;
      height: 35px;

      span {
        left: calc(50% - 8px);
        width: 16px;
        height: 2px;

        &:nth-of-type(1) {
          top: 9px;
        }
        &:nth-of-type(2) {
          top: 15px;
        }
        &:nth-of-type(3) {
          top: 21px;
        }
      }

      &.on span {
        top: 15px !important;
      }
    }
  }
}


/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#pagePath {
  padding: 0 20px;
  margin: 0 auto 20px;
}
#pagePath li {
  margin-right: 10px;
  display: inline;
  letter-spacing: 0.08em;
  font-size: 14px;
}
#pagePath li a {
  padding-right: 30px;
  display: inline-block;
  background: url("img/common/icon04.png") no-repeat right center;
  background-size: 9px auto;
}
#pagePath li img {
  margin: -3px 0 0;
  display: inline-block;
  vertical-align: middle;
}
#pagePath li a:hover {
  opacity: 0.7;
}
@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;
  }
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
  padding: 20px 100px;
  border-top: 3px dashed var(--main-color);
  margin-top: 20px;
}
#gFooter .logo {
  text-align: center;
  margin-bottom: 20px;
}
#gFooter .naviPc {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#gFooter .naviPc li a {
  padding: 0 5px 5px;
  border-bottom: 1px solid var(--sub-color);
  transition: all 0.3s ease-in-out;
}
#gFooter .naviPc li a:hover {
  border-bottom: 1px solid #fff;
}
#gFooter .privacyTop {
  font-weight: 100;
  font-size: 12px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
#gFooter .privacyTop:hover {
  opacity: 0.6;
}
#gFooter address {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  font-style: normal;
  text-align: center;
}
.pageTop a {
  position: fixed;
  right: 46px;
  bottom: 25px;
  z-index: 600;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--main-color);
}
.pageTop a:hover {
  opacity: 0.7;
}
@media all and (max-width: 896px) {
  #gFooter {
    padding: 22px 0;
    border-top: 1px solid #efeded;
    margin-left: 0px;
  }
  .special #gFooter {
    border-top: none;
  }
  #gFooter address {
    font-size: 1.2rem;
    text-align: center;
  }
  .pageTop {
    display: none;
  }
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media all and (max-width: 896px) {
  .content {
    max-width: inherit;
    padding: 0;
  }
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
  margin-bottom: 26px;
  padding: 93px 0 63px;
  text-align: center;
  border-bottom: 1px solid #d1cfcf;
}
.pageTitle .headLine01 .en {
  margin-bottom: 8px;
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}
.pageTitle .headLine01 .jp {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media all and (max-width: 896px) {
  .pageTitle {
    margin-bottom: 13px;
    padding: 18px 0 30px;
  }
  .pageTitle .headLine01 .en {
    margin-bottom: 2px;
    font-size: 3rem;
  }
  .pageTitle .headLine01 .jp {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  transition:
    transform 1s,
    opacity 1s;
}
.fadeInUp.on {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
  transition:
    transform 1.5s,
    opacity 1s;
}
.fadeInRight.on {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
  transition:
    transform 2s,
    opacity 1s;
}
.fadeInLeft.on {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.fadeInzoom {
  opacity: 0;
  transform: scale(1.2); /* 少し大きくしておく */
  transition:
    transform 2s ease,
    opacity 1.5s ease;
}

.fadeInzoom.on {
  opacity: 1;
  transform: scale(1); /* 通常サイズへ */
}
/*------------------------------------------------------------
	indexPage
------------------------------------------------------------*/
/* mainVisual */
.mainVisual {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}
.mainVisual::before {
  content: "";
  position: absolute;
  background-color: #3333337a;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mainVisual h2 {
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: max-content;
  color: #fff;
  z-index: 10;
  font-weight: 600;
  font-size: clamp(2rem , 4vw , 3rem);
  opacity: 0;
  text-align: center;
  width: 100%;
  line-height: 1.2; 
  transform: translateX(-50px);
  animation: slideIn 1s ease-out 0.4s forwards;
}
.mainVisual h2 span {
  text-shadow: 0 0 4px var(--main-color);
  padding: 4px 16px;
  color: #fff;
  text-align: center;
  background: linear-gradient(to right, #00000083, #00000049 100%);
}
.mainVisual img {
  object-position:center;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
/* .slideOuter {
  position: relative;
  width: 100%;
  height: 400px;
}

.slide {
  aspect-ratio: 4 / 1;
  object-position: bottom;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 7s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1.1); 
} */
@media (max-width: 800px) {
  .mainVisual{
    max-height: 700px;
  }
}
/* ▼ アニメーション定義 */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* infoBox */
.infoBox {
  text-align: center;
  margin-top: 40px;
  & p {
    font-size: 6rem;
    font-weight: 800;
    text-shadow: 4px 4px 0 #b3e0ff;
    color: var(--main-color);
  }
}
@media (max-width: 570px) {
  .infoBox {
    & p {
      font-size: 4rem;
    }
  }
}

/* conceptSec */
.conceptSec {
  position: relative;
  &::before {
    position: absolute;
    content: "";
    background: url("img/common/bk.png");
    background-repeat: repeat;
    background-size: contain;
    right: 0;
    top: 0;
    width: 200px;
    height: 560px;
    z-index: -1;
  }
  &::after {
    position: absolute;
    content: "";
    background: url("img/common/bk.png");
    background-repeat: repeat;
    background-size: contain;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 560px;
    z-index: -1;
  }
  & .conceptBox {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;

    & .imgOuter {
      width: 30%;

      & img {
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        box-shadow: 1px 5px 6px 1px rgba(46, 46, 46, 0.71);
        object-fit: cover;
        max-width: 300px;
        width: 100%;
      }
    }
    & p {
      width: 70%;
      font-size: 18px;
      line-height: 1.8;
      letter-spacing: 1.4px;
    }
  }
  & .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    & figure {
      max-width: 400px;
    }

    & img {
      object-fit: cover;
      border-radius: 0 30px 0 30px;
      box-shadow: 1px 5px 6px 1px rgba(46, 46, 46, 0.558);
      width: 100%;
    }

    & .galleryBox01 {
      width: 50%;
    }
    & .galleryBox02 {
      width: 50%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }
  @media (max-width: 750px) {
    & .conceptBox {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      & .imgOuter {
        width: 100%;
        & img {
          max-width: 250px;
        }
      }
      & p {
        width: 100%;
        font-size: 16px;
      }
    }
  }
  @media (max-width: 480px) {
    & .gallery {
      gap: 20px;
      margin-top: 20px;
      & .galleryBox02 {
        gap: 20px;
      }
    }
  }
}

/* rankingSec*/
.rankingSec {
  background-color: #fffef7;
  background-image: url("https://www.transparenttextures.com/patterns/redox-01.png");


  & h3 {
    text-align: center;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto 60px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    font-family: var(--font-min);
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -50px;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background-color: var(--sub-color);
    }
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -50px;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background-color: var(--sub-color);
    }
  }

  & .blogInner {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;

    & li {
      width: calc(100% / 4 - 15px);
      min-width: 230px;
      background-color: #fff;
      & a {
        & figure {
          overflow: hidden;
          & img {
            aspect-ratio: 2/ 1;
            object-fit: cover;
            transition: all 0.3s ease-in-out;
          }
        }
        & .txtBox {
          margin-top: 20px;
          display: flex;
          flex-direction: column;
          gap: 10px;
          padding: 0 5px;
          & p {
            color: #333;
            font-size: 13px;
          }
          & span {
            font-weight: 100;
            font-size: 14px;
          }
        }
      }
      &:hover img {
        transform: scale(1.1);
      }
    }
  }
}
@media (max-width: 600px) {
  .rankingSec {
    h3 {
      margin-bottom: 20px;
    }
    & .blogInner {
      gap: 5px;

      & li {
        width: calc(100% / 2 - 10px);
        min-width: unset;
        padding: 5px;
        & a {
          & .txtBox {
            & span {
              font-size: 10px;
            }
          }
        }
      }
    }
  }
}

/* blogSec*/
.blogSec {
  background: url("img/common/blog_bk.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  width: 100%;
  position: relative;
  margin-top: 50px;
  &::after {
    position: absolute;
    content: "";
    background: url("img/common/blog_bk.jpg") no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    mask: url("img/common/wave.png") repeat-x left top / cover;
    mask-size: cover;
    width: 100%;
    height: 80px;
    top: -55px;
    left: 0;
    z-index: 2;
  }

  & h3 {
    text-align: center;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto 60px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    font-family: var(--font-min);
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -50px;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background-color: var(--sub-color);
    }
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -50px;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background-color: var(--sub-color);
    }
  }
  & .blogInner {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;

    & li {
      width: calc(100% / 3 - 30px);
      min-width: 250px;
      background-color: #fff;
      padding: 10px;
      & a {
        & figure {
          overflow: hidden;
          & img {
            aspect-ratio: 2 / 1;
            object-fit: cover;
            transition: all 0.3s ease-in-out;
          }
        }
        & .txtBox {
          & span {
            font-weight: 100;
            font-size: 14px;
          }
        }
      }
      &:hover img {
        transform: scale(1.1);
      }
    }
  }
  & .btnBox {
    & a {
      border-radius: 10px;
      display: block;
      font-size: 14px;
      font-weight: var(--font-weight-bold);
      letter-spacing: 0.15em;
      line-height: 2.142;
      margin: 30px 0 0 auto;
      max-width: 250px;
      padding: 10px 8px;
      text-align: center;
      width: 100%;
      color: #fff;
      text-shadow: 1px 1px 3px #333333;
      background: linear-gradient(120deg, #1783cc, #cceaff);
      background-size: 200% 200%;
      transition: background-position 0.4s ease-in-out;

      &:hover {
        background-position: right center;
      }
    }
  }
}
@media (max-width: 600px) {
  .blogSec {

    h3 {
      margin-bottom: 20px;
      font-size: 24px;
    }
    & .blogInner {
      gap: 10px;

      & li {
        width: calc(100% / 2 - 10px);
        min-width: unset;
        padding: 5px;
        & a {
          & .txtBox {
            & span {
              font-size: 10px;
            }
          }
        }
      }
    }
  }
}
/*------------------------------------------------------------
	seasonSec
------------------------------------------------------------*/
.seasonSec {
  background-color: #fffef7;
  background-image: url("https://www.transparenttextures.com/patterns/redox-01.png");
  padding: 60px 40px;
  position: relative;
  &::before {
    content: "四季折々";
    position: absolute;
    font-size: 15rem;
    top: 20px;
    left: 0;
    color: #ddd;
    opacity: 0.3;
    writing-mode: sideways-rl;
    font-weight: 800;
    font-family: var(--font-min);
  }

  & .seasonTop {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
  }
  .seasonOuter{
    display: flex;
    flex-direction: column;
    gap: 50px;
    & .seasonBox {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      padding: 40px;
      width: 100%;
      background-image: linear-gradient(145deg, #ffffff, #fff2fb);
      border-radius: 20px;
  
      & h3 {
        position: absolute;
        top: -20px;
        left: -20px;
        font-weight: 700;
        font-size: 5rem;
        border-radius: 50%;
        background-color: #ffe3f7;
        padding: 20px;
        line-height: 1;
        box-shadow: 2px 2px 6px #3333332c;
        font-family: var(--font-min);
        font-weight: 500;
        text-shadow: 2px 2px 3px #0000002a;
      }
      & figure {
        width: 50%;
        & img {
          border-radius: 20px;
        }
      }
      & .seasonList {
        width: 50%;
  
        & li {
          margin-bottom: 20px;
  
          & h4 {
            font-size: 20px;
            margin-bottom: 5px;
          }
          & p {
            margin-left: 15px;
          }
        }
      }
    }
    & .seasonBox.summer {
      background-image: linear-gradient(145deg, #ffffff, #f2fcff);
      & h3 {
        background-color: #f2fcff;
      }
    }
    & .seasonBox.autumn {
      background-image: linear-gradient(145deg, #ffffff, #fffcf2);
      & h3 {
        background-color: #fffcf2;
      }
    }
    & .seasonBox.winter {
      background-image: linear-gradient(145deg, #ffffff, #ebebeb);
      & h3 {
        background-color: #ebebeb;
      }
    }
  }
}
@media (max-width: 796px) {
  .seasonSec {
    padding: 60px 10px;
    .seasonOuter{
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px ;
      justify-content: center;
      & .seasonBox {
        flex-direction: column;
        padding: 10px;
        width: calc(100% / 2 - 10px);
        & h3 {
          top: 0px;
          left: 0px;
          font-size: 3rem;
          padding: 10px;
        }
        & figure {
          width: 100%;
          max-width: 500px;
        }
        & .seasonList {
          width: 100%;
          max-width: 500px;
  
          & li {
            & h4 {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 500px) {
.seasonSec {
    padding: 60px 10px;
    .seasonOuter{
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px ;
      justify-content: center;
      & .seasonBox {
        flex-direction: column;
        padding: 10px;
        width: 100%;
        & h3 {
          font-size: 4rem;
        }
        & figure {
          img{
            aspect-ratio: 2 / 1;
            object-fit: cover;
          }
        }
        & .seasonList {
          & li {
            margin-bottom: 10px;
            & h4 {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
}
/*------------------------------------------------------------
	buttom-contact
------------------------------------------------------------*/
.containerbox {
  width: 100%;
  background: url("img/index/contact.jpg") no-repeat center / cover;
  padding: 50px;
  box-sizing: border-box;

  & .container {
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    backdrop-filter: blur(10px);

    & h3 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 0;
      text-align: center;
      font-family: var(--font-min);
      color: #fff;
      margin-bottom: 30px;
    }

    & p {
      line-height: 2;
      color: #fff;
      letter-spacing: 0.15em;
      font-size: 16px;
    }

    & .button,
    & .tel {
      display: block;
      max-width: 400px;
      width: 100%;
      padding: 16px;
      font-size: 1.6rem;
      line-height: 2;
      color: #555;
      text-align: center;
      letter-spacing: 0.15em;
      border-radius: 3px;
      background-color: #fff;
      transition: all 0.5s ease-in-out;
      margin: 30px auto 0;

      & a {
        color: #fff;

        &:hover {
          opacity: 0.6;
        }
      }

      &:hover {
        color: #ffffff;
        background-color: var(--main-color);
      }
    }
  }
}
@media (max-width: 600px) {
  .containerbox {
    padding: 20px;

    & .container {
      padding: 20px;

      & h3 {
        font-size: 2.4rem;
        margin-bottom: 20px;
      }

      & p {
        font-size: 14px;
      }

      & .button,
      & .tel {
        padding: 10px;
      }
    }
  }
}
/*------------------------------------------------------------
	comVisual
------------------------------------------------------------*/
.comVisual {
  margin-bottom: 25px;
  color: #fff;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url("img/page/visual.jpg") no-repeat center center;
  background-size: cover;
}
.comVisual .headLine05 {
  font-size: 4.6rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 3px var(--main-color);
}
@media all and (max-width: 896px) {
  .comVisual {
    height: 200px;
  }
  .comVisual .headLine05 {
    font-size: 2rem;
  }
}
/*------------------------------------------------------------
	blogPage 掲載記事一覧
------------------------------------------------------------*/
.blogPage,
.archivePage {
  margin: 0 16px;
  & .blog_archive {
    & .blog_list {
      margin-bottom: 80px;
      margin-top: 20px;
      & .blogPage_item {
        & .blogUl {
          display: flex;
          gap: 20px;
          flex-wrap: wrap;
          justify-content: center;

          & li {
            width: calc(100% / 3 - 30px);
            min-width: 260px;
            background-color: #eee;
            padding: 10px;
            box-sizing: border-box;
            & a {
              & figure {
                overflow: hidden;
                & img {
                  transition: all 0.3s ease-in-out;
                  aspect-ratio: 3 / 2;
                  object-fit: cover;
                }
                & .blog_txt {
                  & .blog_date {
                    font-size: 12px !important;
                  }
                  & .title-wrap {
                    & .new_recent {
                      color: red;
                    }
                  }
                }
              }
            }
          }
          & li:hover a figure img {
            transform: scale(1.1);
          }
        }
        @media (max-width: 600px) {
          & .blogUl {
            gap: 10px;

            & li {
              width: calc(100% / 2 - 10px);
              min-width: unset;
              padding: 5px;
              & a {
                & .txtBox {
                  & span {
                    font-size: 10px;
                  }
                }
              }
            }
          }
        }
      }
      & .all_tabs {
        max-width: 300px;
        margin: 0 auto 20px;
        & a {
          color: var(--main-color);
          text-align: center;
          font-size: 24px;
          font-weight: 700;
          margin-bottom: 20px;
          background-color: #eee;
          padding: 5px 10px;
          border-radius: 10px;
          box-shadow: 2px 2px 4px #33333334;
          width: 100%;
          display: block;
          &:hover {
            opacity: 0.6;
          }
        }
        
      }
      & .category_tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;

        & .category_tabs_item {
          border: 2px solid var(--sub-color);
          padding: 10px 20px;
          width: 50%;

          & .area_title {
            text-align: center;
            color: #395033;
            border-bottom: 2px solid #395033;
            font-size: 20px;
            font-weight: 700;
            max-width: 300px;
            margin: 0 auto 20px;
          }
          & ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            & li {
              & a {
                background-color: #ddd;
                padding: 0 5px;
                min-width: 60px;
                display: inline-block;
                text-align: center;
                &:hover {
                  opacity: 0.5;
                }
              }
            }
          }
        }
        & .area_tabs {
          & ul {
            & li:nth-child(n + 21) {
              display: none;
            }
          }
        }
        /* 開いた状態のとき表示 */
        & .area_tabs {
          & ul.show-all {
            & li {
              display: block;
            }
          }
        }
      }
      @media (max-width: 796px) {
        & .category_tabs {
          flex-direction: column;

          & .category_tabs_item {
            width: 100%;
          }
        }
      }
      @media (max-width: 450px) {
        & .all_tabs {
          & a {
            font-size: 18px;
            padding: 3px 10px;
          }
          
        }
        & .category_tabs {
          gap: 10px;
  
          & .category_tabs_item {
            padding: 10px;
            & .area_title {
              border-bottom: 1px solid #395033;
              font-size: 16px;
            }
            & ul {
              display: flex;
              flex-wrap: wrap;
              gap: 5px;
              & li {
                & a {
                  background-color: #ddd;
                  padding: 0 5px;
                  min-width: 60px;
                  display: inline-block;
                  text-align: center;
                }
              }
            }
          }
         
        }
      }
    }
  }
  .blogPage_item_widget {
    background-color: var(--accent-color);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;

    & .widget-title {
      font-weight: 700;
      font-size: 20px;
      padding-left: 10px;
      border-left: 5px solid var(--main-color);
      margin-bottom: 10px;
      color: #fff;
    }
    ul {
      display: flex;
      gap: 10px;
    }
    & a {
      color: #fff;
    }
  }
}



/*------------------------------------------------------------
	singlePage 記事ページ
------------------------------------------------------------*/
.singlePage {
  & .news {
    margin: 0 16px;
    & .singleBox {
      & news_date {
        font-size: 14px;
      }
      & .single_txt {
        & h2 {
          text-align: center;
          font-size: 3rem;
          margin: 10px 0 40px;
          border-bottom: 1px solid var(--sub-color);
        }
        & h3 {
          background-color: var(--sub-color);
          font-weight: 700;
          color: #fff;
          padding: 10px;
          margin-top: 20px;
		      font-size:18px;
    }
        & h4 {
          background-color: #fff;
          border: 1px solid #ddd;
          color: #333;
          padding: 5px 16px;
        }
        & a {
          color: var(--sub-color);
        }
        & img {
          margin-top: 20px;
          max-height: 400px;
          height: 100%;
          width: 100%;
          object-fit: cover;
        }
      }
      & .pageNavi {
        display: flex;
        justify-content: space-between;
      }
    }
  }
}

/* singleページ：関連記事デザイン */
.relatedPosts {
  margin-top: 80px;

  h3 {
    font-size: 24px;
    border-left: 3px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 30px;
  }
  ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

    li {
      width: calc(100% / 4 - 20px);
      min-width: 200px;
      box-shadow: 2px 2px 6px #55555565;
      transition: all 0.3s ease-in-out;

      &:hover {
        transform: scale(1.05);
      }
      a {
        p {
          padding: 10px;
			font-size:14px
        }
      }
    }
    img {
      width: 100%;
      aspect-ratio: 2 / 1;
      object-fit: cover;
    }
  }
}

/* singleページ：キーワード検索デザイン */
.keyword-box {
  border-radius: 20px;
  border: 3px solid var(--accent-color);
  padding: 20px;
  margin: 40px 0;
  .key-title {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 5px;
    border-bottom: 2px dashed #555;
    width: fit-content;
    margin: 0 auto 20px;

    img {
      width: 30px;
    }
    h4 {
      text-align: center;
      font-size: 24px;
    }
  }
  ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 800px;
    margin: 0 auto;

    li {
      a {
        color: #fff;
        background-color: var(--accent-color);
        width: fit-content;
        padding: 0 10px;
        border-radius: 5px;
      }
    }
  }
}
/*------------------------------------------------------------
	共通デザイン
------------------------------------------------------------*/
/* 最新記事アップ通知バー */
.latestBar {
  padding: 5px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px 13px;
  font-size: 14px;
  border: 2px solid #6b451a;
  outline: 1px solid #6b451a;
  outline-offset: -5px;
  /*   background-image: url("https://www.transparenttextures.com/patterns/always-grey.png"); */
  .latestBarText {
    animation: scale-blink 1s infinite;
  }
  .latestDate {
    font-weight: 700;
  }
  .latestBtn {
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    background: #6b451a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0px 0px 3px #fff;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
      );
      transform: skewX(-20deg);
      transition: left 0.6s ease-in-out;
    }

    &:hover {
      opacity: 0.7;
      &::before {
        left: 120%;
      }
    }
  }
}
@keyframes shine {
  from {
    left: -120%;
  }
  to {
    left: 120%;
  }
}
@keyframes scale-blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}
/* 月間アーカイブデザイン */
.month_archive {
  background-color:#fffef7;
  background-image: url("https://www.transparenttextures.com/patterns/redox-01.png");
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;

  & .widget-title {
    font-weight: 700;
    font-size: 20px;
    padding-left: 10px;
    border-left: 5px solid var(--main-color);
    color: var(--main-color);
    margin-bottom: 10px;
  }
  & ul {
    display: flex;
    gap: 10px;

    & a {
      color: #fff;
      background-color: #fff;
      padding: 3px 10px;
      border-radius: 5px;
      color: var(--accent-color);
      border: 2px solid #fff;
      display: block;

      &:hover {
        background-color: var(--accent-color);
        color: #fff;
      }
    }
  }
}

/*------------------------------------------------------------
	contact
------------------------------------------------------------*/
.contactPage .topTxt {
  margin: 0 0 68px 3px;
  letter-spacing: 0.06em;
}
.contactPage table {
  margin-bottom: 158px;
  width: 100%;
  border-collapse: collapse;
  word-break: break-all;
}
.contactPage th,
.contactPage td {
  padding: 28px 0 28px 58px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #d1cfcf;
}
.contactPage th {
  padding: 20px 50px 20px 0;
  width: 29%;
  font-weight: 500;
}
.contactPage td {
  font-size: 1.3rem;
  position: relative;
}
.contactPage th .must {
  float: right;
  width: 44px;
  color: #fff;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  background: #212836;
  text-align: center;
}
.contactPage td:before {
  position: absolute;
  left: 0;
  top: 27px;
  width: 1px;
  bottom: 27px;
  background: #d1cfcf;
  content: "";
}
.contactPage td input[type="text"],
.contactPage td input[type="email"],
.contactPage td input[type="number"],
.contactPage td input[type="tel"],
.contactPage td select,
.contactPage td textarea {
  width: 100%;
  height: 58px;
  color: #212836;
  font-size: 1.3rem;
  padding: 5px 10px 5px 23px;
  -webkit-appearance: none;
  box-sizing: border-box;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  border-radius: 4px;
}
.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 100px;
  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 .submit li .info01 {
  display: block;
  position: relative;
  background: #212836;
  border: 1px solid #212836;
}
.contactPage .submit li .info02 {
  position: relative;
  z-index: 2;
}
.contactPage .submit li .info01:before {
  margin-top: -5px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 21px;
  height: 11px;
  background: url("img/common/icon05.png") no-repeat left center;
  background-size: 21px 11px;
  content: "";
  z-index: 3;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.contactPage .submit li .info01: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);
}
.contactPage .submit .back .info01:before {
  margin-top: -5px;
  position: absolute;
  right: auto;
  left: 10px;
  top: 50%;
  width: 21px;
  height: 11px;
  background: url("img/common/icon07.png") no-repeat left center;
  background-size: 21px 11px;
  content: "";
}
.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: 0.3s;
  -webkit-transition: 0.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;
  }
}
@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 {
  margin-bottom: 240px;
}
.privacy p {
  margin-bottom: 4px;
  line-height: 2.3;
  letter-spacing: 0.06em;
}
.privacy h3 {
  font-size: 24px;
  margin-bottom: 30px;
  padding-left: 10px;
  border-left: 5px solid var(--main-color);
  position: relative;
}
.privacy h4 {
  border-bottom: 1px solid #333;
  width: fit-content;
  padding: 0 10px;
  margin-bottom: 10px;
}
.privacy h5 {
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.privacy .txt01 {
  margin-bottom: 65px;
}
.privacy .txt02 {
  margin-bottom: 72px;
}
.privacy .txt03 {
  margin-bottom: 35px;
}
.privacy .txt04 {
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  .privacy {
    margin-bottom: 110px;
  }
  .privacy .pageTitle {
    padding: 28px 0 30px;
  }
  .privacy .pageTitle .headLine01 .en {
    margin-bottom: 8px;
    font-size: 3.2rem;
  }
  .privacy .pageTitle .headLine01 .jp {
    font-size: 2rem;
  }
  .privacy #pagePath {
    margin-bottom: 56px;
  }
  .privacy p {
    margin-bottom: 3px;
    line-height: 1.85;
    letter-spacing: 0.01em;
  }
  .privacy h5 {
    margin-bottom: 3px;
    letter-spacing: 0.01em;
  }
  .privacy .txt01 {
    margin-bottom: 57px;
  }
  .privacy .txt02 {
    margin-bottom: 60px;
  }
  .privacy .txt03 {
    margin-bottom: 27px;
  }
  .privacy .txt04 {
    margin-bottom: 0;
  }
}
.wpcf7-response-output {
  display: none !important;
}
