@charset "UTF-8";
/*
Theme Name: 鏡のデパート
Theme URL: https://glass-department.com/kagami
Description: 鏡のデパートテーマ
Author: GLASS DEPARTMENT
Version: 1.0.0
*/
:root {
  --cl-pri: #000;
  --cl-ac: rgba(0, 134, 209, 1);
  --cl-light: rgba(0, 134, 209, 0.1);
  --cl-sec: #ab8c1f;
}

/* TOP:関連サイト 非表示 */
.home .main .relatedsite {
  display: none !important;
}

/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

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

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

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

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid transparent;
}

html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  color: var(--cl-pri);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 12px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

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

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ===================================

  共通レイアウト

====================================== */
.wrap {
  padding-top: 50px;
}
.wrap__inner {
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrap .main {
  width: 870px;
}

@media screen and (max-width: 1199px) {
  .wrap {
    padding-top: 30px;
  }
  .wrap__inner {
    width: 100%;
    padding: 0 30px;
    max-width: 100%;
    display: block;
  }
  .wrap .main {
    width: 100%;
  }
  .wrap:not(.home) {
    padding-top: 40px;
  }
}
@media screen and (max-width: 758px) {
  .wrap__inner {
    padding: 0 15px;
  }
  .wrap:not(.home) {
    padding-top: 30px;
  }
}
/* ===================================

  下層メインビジュアル

====================================== */
.l-mv {
  padding-top: 50px;
}
.l-mv__inner {
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}
.l-mv__title {
  padding-bottom: 2px;
  padding-left: 15px;
  font-size: 24px;
  font-weight: 500;
  border-left: 5px solid var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .l-mv {
    padding-top: 40px;
  }
  .l-mv__inner {
    width: 100%;
    padding: 0 30px;
    max-width: 100%;
  }
  .l-mv__title {
    padding-bottom: 1px;
    padding-left: 12px;
    font-size: 22px;
    border-left: 4px solid var(--cl-ac);
  }
}
@media screen and (max-width: 758px) {
  .l-mv {
    padding-top: 30px;
  }
  .l-mv__inner {
    padding: 0 15px;
  }
  .l-mv__title {
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.5;
  }
}
/* ===================================

  section-title

====================================== */
.section-title .title {
  padding: 10px 15px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--cl-light);
  border-left: 5px solid var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .section-title .title {
    padding: 8px 12px;
    font-size: 22px;
  }
}
@media screen and (max-width: 758px) {
  .section-title .title {
    font-size: 20px;
    border-left: 4px solid var(--cl-ac);
  }
}
/* ===================================

  more-btn

====================================== */
.more-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 520px;
  height: 60px;
  background-color: var(--cl-ac);
  background-image: url(img/ico/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 11px 15px;
  background-position: center right 25px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}
.more-btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  .more-btn {
    background-size: 8px 12px;
    background-position: center right 20px;
    width: 400px;
    height: 60px;
    font-size: 16px;
  }
  .more-btn:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 758px) {
  .more-btn {
    width: 100%;
    font-size: 14px;
  }
}
/* ===================================

  フッター追従メニュー

====================================== */
.popup {
  display: none;
}

@media screen and (max-width: 1199px) {
  .popup {
    position: fixed;
    bottom: -80px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 60px;
    background-color: var(--cl-ac);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .popup.show {
    opacity: 1;
    bottom: 0;
    z-index: 99;
  }
  .popup__inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .popup__btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 420px;
    height: 40px;
    background-color: #fff55f;
    background-image: url(img/ico/ico-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 12px 14px;
    background-position: center right 13px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 9999px;
    -webkit-box-shadow: 0 2px 0 #007966;
            box-shadow: 0 2px 0 #007966;
    z-index: 1;
  }
}
@media screen and (max-width: 758px) {
  .popup__inner {
    padding: 0 15px;
  }
  .popup__btn {
    max-width: 100%;
  }
}
/* ===================================

  ページネーション

====================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.pagination-wrap {
  margin-top: 60px;
}
.pagination-wrap .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination-wrap .page-numbers {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4d4d4d;
}
.pagination-wrap .page-numbers + .page-numbers {
  margin-left: 10px;
}
.pagination-wrap .page-numbers.current, .pagination-wrap .page-numbers:hover {
  opacity: 1;
  background-color: #666666;
  color: #fff;
  border-color: #666666;
}

@media screen and (max-width: 1199px) {
  .pagination-wrap {
    margin-top: 50px;
  }
  .pagination-wrap .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .pagination-wrap .page-numbers + .page-numbers {
    margin-left: 6px;
  }
  .pagination-wrap .page-numbers:hover {
    background-color: #fff;
    color: #4d4d4d;
    border-color: #ccc;
  }
}
@media screen and (max-width: 758px) {
  .pagination-wrap {
    margin-top: 40px;
  }
  .pagination-wrap .page-numbers {
    font-size: 12px;
  }
  .pagination-wrap .page-numbers + .page-numbers {
    margin-left: 5px;
  }
}
/* ===================================

  パンくずリスト

====================================== */
.breadcrumb-wrap {
  padding: 7px 0;
  background-color: #ccc;
}
.breadcrumb-wrap .breadcrumb {
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-all;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap {
    padding: 8px 0;
  }
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    padding: 0 30px;
    max-width: 100%;
    font-size: 11px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap {
    padding: 5px 0;
  }
  .breadcrumb-wrap .breadcrumb {
    padding: 0 15px;
    font-size: 10px;
  }
}
/* ===================================

  ヘッダー

====================================== */
.header {
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-top {
  width: 100%;
  background-color: var(--cl-sec);
}
.header-top__inner {
  width: 1180px;
  margin: 0 auto;
  padding: 10px 0;
}
.header-top__link {
  display: block;
  width: 100%;
}
.header-top__img {
  display: block;
  width: 100%;
}
.header-top__img.sp {
  display: none;
}
.header-body {
  width: 100%;
  height: 80px;
  background-color: #fff;
}
.header-body__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
}
.header-logo {
  width: 341px;
}
.header-logo__link, .header-logo__img {
  display: block;
  width: 100%;
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-tel {
  display: block;
  width: 100%;
}
.header-tel.sp {
  display: none;
}
.header-tel__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-tel__img {
  width: 30px;
}
.header-tel__num {
  margin-left: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 31px;
  font-weight: 500;
}
.header-tel__txt {
  margin-top: 3px;
  font-size: 12px;
  text-align: center;
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 28px;
  -webkit-box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}
.header__links .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80px;
  height: 80px;
  padding-top: 13px;
}
.header__links .link + .link {
  margin-left: 3px;
}
.header__links .link__img {
  display: block;
  width: auto;
  height: 30px;
}
.header__links .link__txt {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.header__links .link.novice {
  background-color: #fff;
}
.header__links .link.mypage {
  background-color: #ff0000;
  color: #fff;
}
.header__links .link.est {
  background-color: var(--cl-ac);
  color: #fff;
}
.header__links .link.cart {
  position: relative;
  background-color: #f7ca00;
  cursor: pointer;
}
.header__links .link.cart .cart-badge {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0.65em;
  right: 1em;
  background-color: #f7ca00;
  min-width: 1.4286em;
  height: 1.4286em;
  padding: 0 0.25em;
  font-size: 0.875em;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
  border: 0.15em solid var(--cl-pri);
  border-radius: 1em;
  z-index: 1;
}
.header-nav {
  background-color: #f2f2f2;
  width: 100%;
  height: 50px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.header-nav .header__inner {
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}
.header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-nav__item {
  width: 25%;
  border-left: 2px solid #fff;
}
.header-nav__item:last-child {
  border-right: 2px solid #fff;
}
.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
}

.fixed-header {
  position: fixed;
  top: -100px;
  z-index: -10;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fixed-header.active {
  top: 0;
  z-index: 10;
  opacity: 1;
}

.menu-btn {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header-top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 0 30px;
    height: 40px;
  }
  .header-top__link {
    width: auto;
    height: 26px;
  }
  .header-top__img {
    height: 100%;
  }
  .header-body {
    height: 50px;
  }
  .header-body__inner {
    width: 100%;
    padding: 0 0 0 30px;
  }
  .header-logo {
    width: 170px;
  }
  .header-tel {
    width: 45px;
    height: 45px;
    border: 1px solid var(--cl-ac);
    border-radius: 4px;
  }
  .header-tel.pc {
    display: none;
  }
  .header-tel.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 5px;
  }
  .header-tel__top {
    display: block;
  }
  .header-tel__num {
    display: none;
  }
  .header-tel__txt {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 500;
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
    color: var(--cl-ac);
  }
  .header__links {
    margin-left: 6px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header__links .link {
    width: 50px;
    height: 50px;
    padding-top: 7px;
  }
  .header__links .link + .link {
    margin-left: 0;
  }
  .header__links .link__img {
    height: 18px;
  }
  .header__links .link__txt {
    margin-top: 8px;
    font-size: 10px;
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
  }
  .header__links .link.novice {
    display: none;
  }
  .header__links .link.mypage {
    display: none;
  }
  .header__links .link.est {
    display: none;
  }
  .header__links .link.cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__links .link.cart .link__txt {
    margin-top: 3px;
  }
  .header__links .link.cart .cart-badge {
    top: 0.5em;
    right: 0.5em;
  }
  .header-nav {
    display: none;
  }
  .menu-btn {
    display: block;
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0;
    background-color: #fff;
    overflow: hidden;
    outline: none;
  }
  .menu-btn span {
    position: absolute;
    top: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--cl-ac);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu-btn span:first-child {
    top: 16px;
  }
  .menu-btn span:last-of-type {
    top: 32px;
  }
  .menu-btn.active {
    background-color: var(--cl-ac);
  }
  .menu-btn.active span {
    background-color: #fff;
  }
  .menu-btn.active span:first-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 24px;
    left: 15px;
  }
  .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn.active span:last-of-type {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: 15px;
    top: auto;
    bottom: 24px;
  }
}
@media screen and (max-width: 758px) {
  .header-top__inner {
    padding: 0 15px;
  }
  .header-top__img.pc {
    display: none;
  }
  .header-top__img.sp {
    display: block;
  }
  .header-body {
    height: 50px;
  }
  .header-body__inner {
    padding: 0 0 0 15px;
  }
  .header__links .link.cart .cart-badge {
    top: 0.6em;
    right: 0.6em;
  }
}
/* ===================================

  スマホメニュー

====================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 1199px) {
  .drawer {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: -10;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .drawer.show {
    left: 0;
    opacity: 1;
    z-index: 100;
  }
  .drawer__contents {
    width: calc(100% - 50px);
    height: 100%;
    background-color: #fff;
  }
  .drawer #close-btn {
    position: absolute;
    top: 40px;
    right: 0;
  }
  .drawer__inner {
    overflow-y: scroll;
    scrollbar-width: none;
    overscroll-behavior-y: none;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  .drawer__inner::-webkit-scrollbar {
    display: none;
  }
  .drawer__body {
    padding: 40px 0 120px;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .drawer-top .link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    z-index: 1;
  }
  .drawer-top .link-novice {
    height: 50px;
    border: 1px solid #b3b3b3;
    background-image: url(img/ico/ico-novice.png);
    background-repeat: no-repeat;
    background-size: 14px 20px;
    background-position: center left 20px;
  }
  .drawer-top .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10px;
  }
  .drawer-top .links .link {
    width: calc((100% - 10px) / 2);
    height: 40px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center left 10px;
  }
  .drawer-top .links .link.signup {
    background-color: #333;
    background-image: url(img/ico/ico-signup.svg);
    background-size: 17px 20px;
  }
  .drawer-top .links .link.mypage {
    background-color: #f00;
    background-image: url(img/ico/ico-key.svg);
    background-size: 14px 20px;
  }
  .drawer-btm {
    margin-top: 30px;
  }
  .drawer-btm .item + .item {
    margin-top: 20px;
  }
  .drawer-btm .item__title {
    display: block;
    width: 100%;
    padding: 5px 40px 5px 10px;
    background-color: var(--cl-light);
    background-image: url(img/ico/ico-arrow-circle.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center right 10px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    border-bottom: 2px solid var(--cl-ac);
  }
  .drawer-btm .item .list {
    border-bottom: 1px solid #ccc;
  }
  .drawer-btm .item .list__link {
    display: block;
    width: 100%;
    padding: 12px 40px 12px 10px;
    font-size: 14px;
    line-height: 1.5;
    background-image: url(img/ico/ico-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 6px 8px;
    background-position: center right 14px;
  }
}
@media screen and (max-width: 758px) {
  .drawer__body {
    padding: 38px 0 150px;
    max-width: 100%;
  }
}
/* ===================================

  フッター

====================================== */
.footer {
  margin-top: 90px;
}
.footer__inner {
  width: 1240px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}
.footer__contents {
  padding: 30px 0;
  background-color: #f2f2f2;
}
.footer__contents .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__navs {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__nav {
  width: calc((100% - 80px) / 3);
}
.footer__nav .title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid #666666;
}
.footer__nav .items {
  margin-top: 1em;
}
.footer__nav .item + .item {
  margin-top: 0.25em;
}
.footer__nav .item__link {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__nav .item__link::before {
  content: "";
  position: relative;
  top: 0.35em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 9px;
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center center;
}
.footer__banners {
  width: 280px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}
.footer__banners .banner + .banner {
  margin-top: 10px;
}
.footer__banners .banner__link, .footer__banners .banner__img {
  display: block;
  width: 100%;
}
.footer__btm {
  padding: 23px 0;
  background-color: #4d4d4d;
}
.footer__btm .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__btm .item + .item {
  margin-left: 25px;
}
.footer__btm .item__link {
  display: block;
  font-size: 14px;
  color: #fff;
}
.footer__copy {
  padding: 12px 0;
  background-color: var(--cl-ac);
}
.footer__copy .copy {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .footer {
    margin-top: 60px;
    padding-bottom: 60px;
  }
  .footer__inner {
    width: 100%;
    padding: 0 30px;
    max-width: 100%;
  }
  .footer__contents {
    padding: 40px 0;
  }
  .footer__contents .footer__inner {
    display: block;
  }
  .footer__navs {
    padding-right: 0;
  }
  .footer__nav {
    width: calc((100% - 60px) / 3);
  }
  .footer__nav .title {
    font-size: 16px;
    padding-bottom: 12px;
  }
  .footer__nav .items {
    margin-top: 14px;
  }
  .footer__nav .item__link::before {
    top: 0.3em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-size: 14px 14px;
  }
  .footer__banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 40px;
  }
  .footer__banners .banner {
    width: 280px;
  }
  .footer__banners .banner + .banner {
    margin-top: 0;
    margin-left: 30px;
  }
  .footer__btm {
    padding: 18px 0;
  }
  .footer__btm .item + .item {
    margin-left: 15px;
  }
  .footer__btm .item__link {
    font-size: 12px;
  }
  .footer__copy {
    padding: 15px 0;
  }
  .footer__copy .copy {
    font-size: 12px;
  }
}
@media screen and (max-width: 758px) {
  .footer__inner {
    padding: 0 15px;
  }
  .footer__contents {
    padding: 30px 0;
  }
  .footer__navs {
    display: block;
  }
  .footer__nav {
    width: 100%;
  }
  .footer__nav + .footer__nav {
    margin-top: 25px;
  }
  .footer__nav .title {
    font-size: 14px;
  }
  .footer__nav .item + .item {
    margin-top: 8px;
  }
  .footer__nav .item__link::before {
    top: 0.35em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13px;
            flex: 0 0 13px;
    width: 13px;
    height: 13px;
    margin-right: 8px;
    background-size: 13px 13px;
  }
  .footer__banners {
    display: block;
    margin-top: 30px;
  }
  .footer__banners .banner {
    width: 100%;
  }
  .footer__banners .banner + .banner {
    margin-top: 10px;
    margin-left: 0;
  }
  .footer__btm {
    padding: 30px 0;
  }
  .footer__btm .items {
    display: block;
  }
  .footer__btm .item + .item {
    margin-left: 0;
    margin-top: 13px;
  }
  .footer__copy {
    padding: 12px 0;
  }
}
/* ===================================

  サイドバー

====================================== */
.sidebar {
  width: 290px;
}
.sidebar .widget + .widget {
  margin-top: 20px;
}
.sidebar .widget__title {
  display: block;
  width: 100%;
  padding: 5px 40px 5px 10px;
  background-color: var(--cl-light);
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center right 10px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 2px solid var(--cl-ac);
}
.sidebar .widget__title:hover {
  color: var(--cl-ac);
}
.sidebar .widget .list {
  border-bottom: 1px solid #ccc;
}
.sidebar .widget .list__link {
  display: block;
  width: 100%;
  padding: 12px 40px 12px 10px;
  font-size: 14px;
  line-height: 1.5;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 6px 8px;
  background-position: center right 14px;
}
.sidebar .widget .list__link:hover {
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .sidebar {
    display: none;
  }
}
/* ===================================

  詳細・固定ページコンテンツ

====================================== */
.page .main .entry__body,
.single .main .entry__body {
  padding-top: 40px;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
}
.page .main .entry__body > *:first-child,
.single .main .entry__body > *:first-child {
  margin-top: 0 !important;
}
.page .main .entry__body .wp-block-columns,
.single .main .entry__body .wp-block-columns {
  margin-top: 2em;
}
.page .main .entry__body .wp-block-column > *:first-child,
.single .main .entry__body .wp-block-column > *:first-child {
  margin-top: 0;
}
.page .main .entry__body h2,
.page .main .entry__body h3,
.page .main .entry__body h4,
.page .main .entry__body h5,
.page .main .entry__body h6,
.single .main .entry__body h2,
.single .main .entry__body h3,
.single .main .entry__body h4,
.single .main .entry__body h5,
.single .main .entry__body h6 {
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.page .main .entry__body > h2, .page .main .entry__body > h3, .page .main .entry__body > h4,
.single .main .entry__body > h2,
.single .main .entry__body > h3,
.single .main .entry__body > h4 {
  margin-top: 60px;
}
.page .main .entry__body > h5, .page .main .entry__body > h6,
.single .main .entry__body > h5,
.single .main .entry__body > h6 {
  margin-top: 40px;
}
.page .main .entry__body > p,
.single .main .entry__body > p {
  margin-top: 40px;
}
.page .main .entry__body > .wp-block-image, .page .main .entry__body > .wp-block-buttons, .page .main .entry__body > .wp-block-liquid-speech-balloon, .page .main .entry__body > .toc-mokuji-content, .page .main .entry__body > figure.wp-block-embed-youtube, .page .main .entry__body > table, .page .main .entry__body > ol, .page .main .entry__body > ul, .page .main .entry__body > blockquote, .page .main .entry__body > iframe,
.single .main .entry__body > .wp-block-image,
.single .main .entry__body > .wp-block-buttons,
.single .main .entry__body > .wp-block-liquid-speech-balloon,
.single .main .entry__body > .toc-mokuji-content,
.single .main .entry__body > figure.wp-block-embed-youtube,
.single .main .entry__body > table,
.single .main .entry__body > ol,
.single .main .entry__body > ul,
.single .main .entry__body > blockquote,
.single .main .entry__body > iframe {
  margin-top: 40px;
}
.page .main .entry__body > details,
.single .main .entry__body > details {
  margin-top: 2em;
}
.page .main .entry__body h2,
.single .main .entry__body h2 {
  padding: 10px 15px;
  font-size: 28px;
  background-color: var(--cl-light);
  border-left: 5px solid var(--cl-ac);
}
.page .main .entry__body h3,
.single .main .entry__body h3 {
  font-size: 24px;
  padding-left: 15px;
  border-left: 5px solid var(--cl-ac);
}
.page .main .entry__body h4,
.single .main .entry__body h4 {
  font-size: 20px;
  color: var(--cl-ac);
}
.page .main .entry__body h5,
.single .main .entry__body h5 {
  font-size: 19px;
}
.page .main .entry__body h6,
.single .main .entry__body h6 {
  font-size: 18px;
}
.page .main .entry__body p,
.single .main .entry__body p {
  line-height: 2;
}
.page .main .entry__body p + p,
.single .main .entry__body p + p {
  margin-top: 1.5em;
}
.page .main .entry__body .wp-block-image img,
.single .main .entry__body .wp-block-image img {
  margin: 0;
}
.page .main .entry__body .wp-block-image::after,
.single .main .entry__body .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.page .main .entry__body .aligncenter,
.single .main .entry__body .aligncenter {
  margin: 40px auto 0;
}
.page .main .entry__body .alignright,
.single .main .entry__body .alignright {
  margin-left: auto;
}
.page .main .entry__body .wp-caption,
.single .main .entry__body .wp-caption {
  max-width: 100%;
}
.page .main .entry__body .wp-caption-text,
.single .main .entry__body .wp-caption-text {
  margin-top: 3px;
}
.page .main .entry__body pre,
.single .main .entry__body pre {
  overflow-x: auto;
}
.page .main .entry__body table,
.single .main .entry__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.page .main .entry__body table th,
.single .main .entry__body table th {
  display: table-cell;
  vertical-align: middle;
  background-color: #ddd;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  border: 1px solid #e6e6e6;
  color: #000;
  font-weight: 400;
}
.page .main .entry__body table th a,
.single .main .entry__body table th a {
  color: inherit;
}
.page .main .entry__body table td,
.single .main .entry__body table td {
  display: table-cell;
  vertical-align: middle;
  height: 65px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.page .main .entry__body table td a,
.single .main .entry__body table td a {
  color: inherit;
}
.page .main .entry__body ol li,
.page .main .entry__body ul li,
.single .main .entry__body ol li,
.single .main .entry__body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
}
.page .main .entry__body ol li + li,
.page .main .entry__body ul li + li,
.single .main .entry__body ol li + li,
.single .main .entry__body ul li + li {
  margin-top: 0.75em;
}
.page .main .entry__body ul li::before,
.single .main .entry__body ul li::before {
  content: "";
  position: relative;
  top: 5px;
  margin-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  width: 15px;
  height: 15px;
  background-color: var(--cl-ac);
  border-radius: 50%;
}
.page .main .entry__body ol,
.single .main .entry__body ol {
  counter-reset: num;
  list-style-type: none;
}
.page .main .entry__body ol li,
.single .main .entry__body ol li {
  line-height: 1.5;
}
.page .main .entry__body ol li::before,
.single .main .entry__body ol li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(num);
  counter-increment: num;
  position: relative;
  top: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  margin-right: 10px;
  padding-bottom: 0;
  -ms-flex: 0 0 25px;
      flex: 0 0 25px;
  width: 25px;
  height: 25px;
  background-color: var(--cl-ac);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 50%;
}
.page .main .entry__body a,
.single .main .entry__body a {
  position: relative;
  color: #1a0dab;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page .main .entry__body .wp-block-buttons .wp-block-button a,
.single .main .entry__body .wp-block-buttons .wp-block-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 320px;
  height: 55px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: var(--cl-ac) !important;
  background-image: url(img/ico/ico-link-btn.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center right 25px;
}
.page .main .entry__body details,
.single .main .entry__body details {
  margin-top: 2em;
}
.page .main .entry__body .wp-calendar-table caption,
.single .main .entry__body .wp-calendar-table caption {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.page .main .entry__body blockquote,
.single .main .entry__body blockquote {
  word-break: break-all;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 35px 40px 35px 60px;
  border: 1px solid #ccc;
}
.page .main .entry__body blockquote::before,
.single .main .entry__body blockquote::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 5px;
  height: calc(100% - 60px);
  background-color: var(--cl-ac);
}
.page .main .entry__body blockquote p,
.single .main .entry__body blockquote p {
  margin-top: 0;
}
.page .main .entry__body blockquote p + p,
.single .main .entry__body blockquote p + p {
  margin-top: 1em;
}
.page .main .entry__body blockquote cite,
.single .main .entry__body blockquote cite {
  display: block;
  margin-top: 40px;
  padding-bottom: 0.5em;
  font-size: 14px;
  font-style: normal;
  color: var(--cl-ac);
}
.page .main .entry__body blockquote a,
.single .main .entry__body blockquote a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--cl-ac);
}
.page .main .entry__body blockquote a:hover,
.single .main .entry__body blockquote a:hover {
  opacity: 0.6;
}
.page .main .entry__body hr.wp-block-separator,
.single .main .entry__body hr.wp-block-separator {
  margin: 40px auto;
  width: 30%;
  height: 2px;
  border-bottom: 2px solid var(--cl-ac);
  border-top: none;
}
.page .main .entry__body hr.wp-block-separator.is-style-wide,
.single .main .entry__body hr.wp-block-separator.is-style-wide {
  width: 100%;
  border-bottom: 2px dashed var(--cl-ac);
}
.page .main .entry__body .liquid-speech-balloon-text p,
.single .main .entry__body .liquid-speech-balloon-text p {
  margin-top: 0;
}
.page .main .entry__body iframe,
.single .main .entry__body iframe {
  max-width: 100%;
  width: 100%;
}
.page .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper,
.single .main .entry__body figure.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  margin-bottom: 0;
  padding-top: 56.25%;
  width: 100%;
}
.page .main .entry__body figure.wp-block-embed-youtube iframe,
.single .main .entry__body figure.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.page .main .entry__body .wp-block-columns.is-layout-flex,
.single .main .entry__body .wp-block-columns.is-layout-flex {
  gap: 2em;
}
.page .main .entry__body .wp-block-group.adfayabe-table,
.single .main .entry__body .wp-block-group.adfayabe-table {
  margin-top: 3em;
  width: 100%;
  overflow-x: scroll;
}

@media screen and (max-width: 1199px) {
  .page .main .entry__body,
  .single .main .entry__body {
    padding-top: 35px;
  }
  .page .main .entry__body > h2, .page .main .entry__body > h3, .page .main .entry__body > h4,
  .single .main .entry__body > h2,
  .single .main .entry__body > h3,
  .single .main .entry__body > h4 {
    margin-top: 45px;
  }
  .page .main .entry__body > h5, .page .main .entry__body > h6,
  .single .main .entry__body > h5,
  .single .main .entry__body > h6 {
    margin-top: 35px;
  }
  .page .main .entry__body > p,
  .single .main .entry__body > p {
    margin-top: 30px;
  }
  .page .main .entry__body > .wp-block-image, .page .main .entry__body > .wp-block-buttons, .page .main .entry__body > .wp-block-liquid-speech-balloon, .page .main .entry__body > .toc-mokuji-content, .page .main .entry__body > figure.wp-block-embed-youtube, .page .main .entry__body > table, .page .main .entry__body > ol, .page .main .entry__body > ul, .page .main .entry__body > blockquote, .page .main .entry__body > iframe, .page .main .entry__body > details,
  .single .main .entry__body > .wp-block-image,
  .single .main .entry__body > .wp-block-buttons,
  .single .main .entry__body > .wp-block-liquid-speech-balloon,
  .single .main .entry__body > .toc-mokuji-content,
  .single .main .entry__body > figure.wp-block-embed-youtube,
  .single .main .entry__body > table,
  .single .main .entry__body > ol,
  .single .main .entry__body > ul,
  .single .main .entry__body > blockquote,
  .single .main .entry__body > iframe,
  .single .main .entry__body > details {
    margin-top: 35px;
  }
  .page .main .entry__body h2,
  .single .main .entry__body h2 {
    padding: 8px 12px;
    font-size: 22px;
    border-left: 4px solid var(--cl-ac);
  }
  .page .main .entry__body h3,
  .single .main .entry__body h3 {
    font-size: 20px;
    padding-left: 12px;
    border-left: 4px solid var(--cl-ac);
  }
  .page .main .entry__body h4,
  .single .main .entry__body h4 {
    font-size: 18px;
  }
  .page .main .entry__body h5,
  .single .main .entry__body h5 {
    font-size: 16px;
  }
  .page .main .entry__body h6,
  .single .main .entry__body h6 {
    font-size: 15px;
  }
  .page .main .entry__body p + p,
  .single .main .entry__body p + p {
    margin-top: 1em;
  }
  .page .main .entry__body .aligncenter,
  .single .main .entry__body .aligncenter {
    margin: 35px auto 0;
  }
  .page .main .entry__body .wp-caption-text,
  .single .main .entry__body .wp-caption-text {
    margin-top: 2px;
  }
  .page .main .entry__body table th,
  .single .main .entry__body table th {
    font-size: 16px;
    height: 58px;
  }
  .page .main .entry__body table td,
  .single .main .entry__body table td {
    height: 58px;
  }
  .page .main .entry__body ul li::before,
  .single .main .entry__body ul li::before {
    top: 4px;
    margin-right: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
  }
  .page .main .entry__body ol li::before,
  .single .main .entry__body ol li::before {
    top: 0;
    margin-right: 8px;
    padding-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
            flex: 0 0 20px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .page .main .entry__body .wp-block-buttons .wp-block-button a,
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    max-width: 100%;
    background-size: 30px 30px;
    background-position: center right 15px;
    font-size: 15px;
  }
  .page .main .entry__body blockquote,
  .single .main .entry__body blockquote {
    padding: 30px 50px;
  }
  .page .main .entry__body blockquote::before,
  .single .main .entry__body blockquote::before {
    left: 25px;
    width: 4px;
    height: calc(100% - 30px);
  }
  .page .main .entry__body blockquote cite,
  .single .main .entry__body blockquote cite {
    margin-top: 35px;
    font-size: 12px;
  }
  .page .main .entry__body hr.wp-block-separator,
  .single .main .entry__body hr.wp-block-separator {
    margin: 35px auto;
    width: 30%;
    height: 2px;
  }
  .page .main .entry__body iframe,
  .single .main .entry__body iframe {
    margin-top: 35px;
  }
  .page .main .entry__body .wp-block-columns.is-layout-flex,
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1.5em;
  }
  .page .main .entry__body .wp-block-group.adfayabe-table,
  .single .main .entry__body .wp-block-group.adfayabe-table {
    margin-top: 2em;
  }
}
@media screen and (max-width: 758px) {
  .page .main .entry__body,
  .single .main .entry__body {
    padding-top: 30px;
  }
  .page .main .entry__body > h2, .page .main .entry__body > h3, .page .main .entry__body > h4,
  .single .main .entry__body > h2,
  .single .main .entry__body > h3,
  .single .main .entry__body > h4 {
    margin-top: 40px;
  }
  .page .main .entry__body > h5, .page .main .entry__body > h6,
  .single .main .entry__body > h5,
  .single .main .entry__body > h6 {
    margin-top: 30px;
  }
  .page .main .entry__body > p,
  .single .main .entry__body > p {
    margin-top: 25px;
  }
  .page .main .entry__body > .wp-block-image, .page .main .entry__body > .wp-block-buttons, .page .main .entry__body > .wp-block-liquid-speech-balloon, .page .main .entry__body > .toc-mokuji-content, .page .main .entry__body > figure.wp-block-embed-youtube, .page .main .entry__body > table, .page .main .entry__body > ol, .page .main .entry__body > ul, .page .main .entry__body > blockquote, .page .main .entry__body > iframe, .page .main .entry__body > details,
  .single .main .entry__body > .wp-block-image,
  .single .main .entry__body > .wp-block-buttons,
  .single .main .entry__body > .wp-block-liquid-speech-balloon,
  .single .main .entry__body > .toc-mokuji-content,
  .single .main .entry__body > figure.wp-block-embed-youtube,
  .single .main .entry__body > table,
  .single .main .entry__body > ol,
  .single .main .entry__body > ul,
  .single .main .entry__body > blockquote,
  .single .main .entry__body > iframe,
  .single .main .entry__body > details {
    margin-top: 30px;
  }
  .page .main .entry__body h2,
  .single .main .entry__body h2 {
    padding: 6px 10px;
    font-size: 18px;
  }
  .page .main .entry__body h3,
  .single .main .entry__body h3 {
    font-size: 16px;
    padding-left: 10px;
  }
  .page .main .entry__body h4,
  .single .main .entry__body h4 {
    font-size: 15px;
  }
  .page .main .entry__body h5,
  .single .main .entry__body h5 {
    font-size: 14px;
  }
  .page .main .entry__body h6,
  .single .main .entry__body h6 {
    font-size: 13px;
  }
  .page .main .entry__body .aligncenter,
  .single .main .entry__body .aligncenter {
    margin: 25px auto 0;
  }
  .page .main .entry__body table th,
  .single .main .entry__body table th {
    font-size: 13px;
    height: 45px;
  }
  .page .main .entry__body table td,
  .single .main .entry__body table td {
    height: 45px;
  }
  .page .main .entry__body ul li::before,
  .single .main .entry__body ul li::before {
    top: 0.5em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8px;
            flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }
  .page .main .entry__body ol li::before,
  .single .main .entry__body ol li::before {
    top: -1px;
    margin-right: 8px;
    padding-bottom: 1px;
    font-size: 10px;
  }
  .page .main .entry__body blockquote,
  .single .main .entry__body blockquote {
    padding: 20px 20px 20px 30px;
  }
  .page .main .entry__body blockquote::before,
  .single .main .entry__body blockquote::before {
    left: 15px;
    height: calc(100% - 30px);
  }
  .page .main .entry__body blockquote cite,
  .single .main .entry__body blockquote cite {
    margin-top: 25px;
    font-size: 11px;
  }
  .page .main .entry__body .wp-block-buttons .wp-block-button,
  .single .main .entry__body .wp-block-buttons .wp-block-button {
    margin: 0 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .page .main .entry__body .wp-block-buttons .wp-block-button a,
  .single .main .entry__body .wp-block-buttons .wp-block-button a {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
  }
  .page .main .entry__body hr.wp-block-separator,
  .single .main .entry__body hr.wp-block-separator {
    margin: 25px auto;
    height: 2px;
  }
  .page .main .entry__body .wp-block-columns.is-layout-flex,
  .single .main .entry__body .wp-block-columns.is-layout-flex {
    gap: 1em;
  }
}
/* ===================================

  MV

====================================== */
.home .mv {
  padding: 40px 0 20px;
  background-color: var(--cl-light);
}
.home .mv .swiper {
  position: relative;
}
.home .mv .swiper-slide {
  width: 100%;
}
.home .mv .swiper-slide__link {
  display: block;
  width: 100%;
}
.home .mv .swiper-slide__img {
  display: block;
  width: 100%;
}
.home .mv .swiper-pagination {
  position: relative;
  z-index: 10;
  bottom: 0;
  margin-top: 15px;
}
.home .mv .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #4d4d4d;
  margin: 0 7px;
  opacity: 1;
}
.home .mv .swiper-pagination-bullet-active {
  background: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .home .mv {
    padding: 20px 0;
  }
  .home .mv .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px;
  }
}
/* ===================================

  ページ内アンカー

====================================== */
.home .main .anchors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .main .anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 30px;
  width: calc((100% - 40px) / 3);
  height: 85px;
  background-image: url(img/ico/ico-arrow-btm-gr.svg);
  background-repeat: no-repeat;
  background-size: 13px 10px;
  background-position: center right 20px;
  font-size: 22px;
  font-weight: 500;
  color: var(--cl-ac);
  border: 2px solid var(--cl-ac);
  border-radius: 4px;
}
.home .main .anchor:hover {
  opacity: 1;
  background-color: var(--cl-ac);
  background-image: url(img/ico/ico-arrow-btm-wh.svg);
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .home .main .anchor {
    padding-left: 20px;
    width: calc((100% - 20px) / 3);
    height: 60px;
    background-size: 12px 8px;
    background-position: center right 15px;
    font-size: 18px;
  }
  .home .main .anchor:hover {
    background-image: url(img/ico/ico-arrow-btm-gr.svg);
    background-color: #fff;
    color: var(--cl-ac);
  }
}
@media screen and (max-width: 758px) {
  .home .main .anchors {
    display: block;
  }
  .home .main .anchor {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    width: 100%;
    height: 50px;
    background-position: center right 20px;
  }
  .home .main .anchor + .anchor {
    margin-top: 10px;
  }
}
/* ===================================

  上部画像ブロック

====================================== */
.home .c-block {
  margin-top: 40px;
}
.home .c-block > * {
  margin-bottom: 40px;
}
.home .c-block > *:last-child {
  margin-bottom: 0;
}
.home .c-block > * a,
.home .c-block > * img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .c-block {
    margin-top: 35px;
  }
  .home .c-block > * {
    margin-bottom: 30px;
  }
  .home .c-block > .wp-block-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .home .c-block > .wp-block-columns .wp-block-column {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc((100% - 30px) / 2) !important;
            flex: 0 0 calc((100% - 30px) / 2) !important;
  }
}
@media screen and (max-width: 758px) {
  .home .c-block {
    margin-top: 30px;
  }
  .home .c-block > * {
    margin-bottom: 15px;
  }
  .home .c-block > .wp-block-columns .wp-block-column {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc((100% - 10px) / 2) !important;
            flex: 0 0 calc((100% - 10px) / 2) !important;
  }
}
/* ===================================

  用途・場所で探す

====================================== */
.home .main .purpose {
  margin-top: 90px;
}
.home .main .purpose__contents {
  margin-top: 30px;
}
.home .main .purpose .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .purpose .entry {
  width: calc((100% - 60px) / 4);
}
.home .main .purpose .entry + .entry {
  margin-left: 20px;
}
.home .main .purpose .entry:nth-child(4n+1) {
  margin-left: 0;
}
.home .main .purpose .entry:nth-child(n+5) {
  margin-top: 20px;
}
.home .main .purpose .entry__link {
  display: block;
  width: 100%;
}
.home .main .purpose .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .main .purpose .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .main .purpose .entry__body {
  padding: 5px 10px;
  background-color: #f2f2f2;
  word-break: break-all;
}
.home .main .purpose .entry__title {
  padding-right: 1.25em;
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center right 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.home .main .purpose .entry__link:hover {
  opacity: 0.6;
}
.home .main .purpose .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .main .purpose .entry__link:hover .entry__title {
  color: var(--cl-ac);
}
.home .main .purpose .more-btn {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  .home .main .purpose {
    margin-top: 60px;
  }
  .home .main .purpose__contents {
    margin-top: 25px;
  }
  .home .main .purpose .entry {
    width: calc((100% - 40px) / 3);
  }
  .home .main .purpose .entry + .entry {
    margin-left: 20px;
  }
  .home .main .purpose .entry:nth-child(3n+1) {
    margin-left: 0;
  }
  .home .main .purpose .entry:nth-child(n+4) {
    margin-top: 20px;
  }
  .home .main .purpose .entry__body {
    padding: 4px 10px;
  }
  .home .main .purpose .entry__title {
    font-size: 15px;
    background-size: 15px 15px;
  }
  .home .main .purpose .entry__link:hover {
    opacity: 1;
  }
  .home .main .purpose .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .main .purpose .entry__link:hover .entry__title {
    color: var(--cl-pri);
  }
  .home .main .purpose .more-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .purpose .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home .main .purpose .entry {
    width: calc((100% - 15px) / 2);
  }
  .home .main .purpose .entry + .entry {
    margin-left: 0;
  }
  .home .main .purpose .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .main .purpose .entry__body {
    padding: 4px 5px;
  }
  .home .main .purpose .entry__title {
    font-size: 12px;
    background-size: 12px 12px;
  }
  .home .main .purpose .more-btn {
    margin-top: 40px;
  }
}
/* ===================================

  お悩みから探す

====================================== */
.home .main .worries {
  margin-top: 90px;
}
.home .main .worries__contents {
  margin-top: 30px;
}
.home .main .worries .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .worries .item {
  width: calc((100% - 20px) / 2);
  border: 1px solid #b3b3b3;
  border-radius: 8px;
}
.home .main .worries .item:nth-child(n+3) {
  margin-top: 20px;
}
.home .main .worries .item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 20px 30px 15px;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 10px 12px;
  background-position: center right 30px;
}
.home .main .worries .item__head {
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}
.home .main .worries .item__ico {
  display: block;
  width: auto;
  max-width: 20px;
  height: 20px;
}
.home .main .worries .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.home .main .worries .item__title {
  margin-top: -0.25em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.home .main .worries .item__txt {
  margin-top: 2px;
  line-height: 2;
}
.home .main .worries .item__link:hover .item__title {
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .home .main .worries {
    margin-top: 60px;
  }
  .home .main .worries__contents {
    margin-top: 25px;
  }
  .home .main .worries .item {
    width: calc((100% - 15px) / 2);
    border-radius: 6px;
  }
  .home .main .worries .item:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .main .worries .item__link {
    padding: 15px 20px 12px;
    background-size: 8px 10px;
    background-position: center right 20px;
  }
  .home .main .worries .item__head {
    width: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
  .home .main .worries .item__ico {
    width: auto;
    max-width: 15px;
    height: 15px;
  }
  .home .main .worries .item__title {
    margin-top: -0.3em;
    font-size: 18px;
  }
  .home .main .worries .item__txt {
    margin-top: 3px;
  }
  .home .main .worries .item__link:hover .item__title {
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .home .main .worries .items {
    display: block;
  }
  .home .main .worries .item {
    width: 100%;
  }
  .home .main .worries .item:nth-child(n+2) {
    margin-top: 10px;
  }
  .home .main .worries .item__link {
    padding: 15px 22px 12px;
    background-size: 8px 12px;
    background-position: center right 20px;
  }
  .home .main .worries .item__title {
    margin-top: -0.25em;
    font-size: 15px;
  }
  .home .main .worries .item__txt {
    margin-top: 2px;
  }
}
/* ===================================

  種類から選ぶ

====================================== */
.home .main .glasstype {
  margin-top: 90px;
}
.home .main .glasstype__contents {
  margin-top: 30px;
}
.home .main .glasstype .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .glasstype .entries::after {
  content: "";
  display: block;
  width: calc((100% - 40px) / 3);
}
.home .main .glasstype .entry {
  width: calc((100% - 40px) / 3);
}
.home .main .glasstype .entry:nth-child(n+4) {
  margin-top: 15px;
}
.home .main .glasstype .entry__link {
  display: block;
  border: 1px solid #b3b3b3;
}
.home .main .glasstype .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .main .glasstype .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .main .glasstype .entry__link:hover {
  opacity: 0.6;
}
.home .main .glasstype .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .main .glasstype .entry__body {
  padding: 10px 15px 15px;
  word-break: break-all;
}
.home .main .glasstype .entry__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cl-ac);
}
.home .main .glasstype .entry__txt {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.home .main .glasstype .entry__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  z-index: 1;
}
.home .main .glasstype .entry__link:hover {
  border-color: var(--cl-ac);
}
.home .main .glasstype .entry__link:hover .entry__btn {
  border-color: var(--cl-ac);
  color: var(--cl-ac);
}
.home .main .glasstype .more-btn {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  .home .main .glasstype {
    margin-top: 60px;
  }
  .home .main .glasstype__contents {
    margin-top: 25px;
  }
  .home .main .glasstype .entry__link:hover {
    opacity: 1;
  }
  .home .main .glasstype .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .main .glasstype .entry__body {
    padding: 8px 12px 12px;
  }
  .home .main .glasstype .entry__title {
    font-size: 18px;
  }
  .home .main .glasstype .entry__txt {
    margin-top: 6px;
    font-size: 13px;
  }
  .home .main .glasstype .entry__btn {
    margin-top: 12px;
    height: 35px;
    font-size: 14px;
  }
  .home .main .glasstype .entry__link:hover {
    border-color: #b3b3b3;
  }
  .home .main .glasstype .entry__link:hover .entry__btn {
    border-color: #b3b3b3;
    color: var(--cl-pri);
  }
  .home .main .glasstype .more-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .glasstype .entries::after {
    display: none;
  }
  .home .main .glasstype .entry {
    width: calc((100% - 15px) / 2);
  }
  .home .main .glasstype .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .main .glasstype .entry__body {
    padding: 12px 10px 10px;
  }
  .home .main .glasstype .entry__title {
    font-size: 14px;
  }
  .home .main .glasstype .entry__txt {
    margin-top: 3px;
    font-size: 11px;
  }
  .home .main .glasstype .entry__btn {
    margin-top: 7px;
    height: 30px;
    font-size: 12px;
  }
  .home .main .glasstype .more-btn {
    margin-top: 40px;
  }
}
/* ===================================

  加工の種類を見る

====================================== */
.home .main .machining {
  margin-top: 90px;
}
.home .main .machining__contents {
  margin-top: 30px;
}
.home .main .machining .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .machining .entries::after {
  content: "";
  display: block;
  width: calc((100% - 40px) / 3);
}
.home .main .machining .entry {
  width: calc((100% - 40px) / 3);
}
.home .main .machining .entry:nth-child(n+4) {
  margin-top: 20px;
}
.home .main .machining .entry__link {
  display: block;
  width: 100%;
}
.home .main .machining .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .main .machining .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .main .machining .entry__body {
  padding: 8px 15px;
  background-color: #f2f2f2;
  word-break: break-all;
}
.home .main .machining .entry__title {
  padding-right: 1.25em;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center right 0;
}
.home .main .machining .entry__link:hover {
  opacity: 0.6;
}
.home .main .machining .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .main .machining .entry__link:hover .entry__title {
  color: var(--cl-ac);
}
.home .main .machining .more-btn {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  .home .main .machining {
    margin-top: 60px;
  }
  .home .main .machining__contents {
    margin-top: 25px;
  }
  .home .main .machining .entry__body {
    padding: 4px 10px;
  }
  .home .main .machining .entry__title {
    font-size: 15px;
    background-size: 15px 15px;
  }
  .home .main .machining .entry__link:hover {
    opacity: 1;
  }
  .home .main .machining .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .main .machining .entry__link:hover .entry__title {
    color: var(--cl-pri);
  }
  .home .main .machining .more-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .machining .entries {
    display: block;
  }
  .home .main .machining .entries::after {
    display: none;
  }
  .home .main .machining .entry {
    width: 100%;
  }
  .home .main .machining .entry + .entry {
    margin-top: 10px;
  }
  .home .main .machining .entry__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home .main .machining .entry__thumb {
    width: 108px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 108px;
            flex: 0 0 108px;
  }
  .home .main .machining .entry__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0 15px 0 18px;
  }
  .home .main .machining .entry__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    padding-right: 25px;
    font-size: 14px;
  }
  .home .main .machining .more-btn {
    margin-top: 40px;
  }
}
/* ===================================

  選ばれる理由

====================================== */
.home .main .reason {
  margin-top: 90px;
}
.home .main .reason__contents {
  margin-top: 40px;
}
.home .main .reason__contents > * {
  margin-bottom: 40px;
}
.home .main .reason__contents > *:last-child {
  margin-bottom: 0;
}
.home .main .reason__contents > * a,
.home .main .reason__contents > * img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .main .reason {
    margin-top: 60px;
  }
  .home .main .reason__contents {
    margin-top: 30px;
  }
  .home .main .reason__contents > * {
    margin-bottom: 30px;
  }
  .home .main .reason__contents > .wp-block-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .home .main .reason__contents > .wp-block-columns .wp-block-column {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc((100% - 30px) / 2) !important;
            flex: 0 0 calc((100% - 30px) / 2) !important;
  }
}
@media screen and (max-width: 758px) {
  .home .main .reason {
    margin-top: 55px;
  }
  .home .main .reason__contents > * {
    margin-bottom: 15px;
  }
  .home .main .reason__contents > .wp-block-columns .wp-block-column {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc((100% - 10px) / 2) !important;
            flex: 0 0 calc((100% - 10px) / 2) !important;
  }
}
/* ===================================

  関連サイト

====================================== */
.home .main .relatedsite {
  margin-top: 90px;
}
.home .main .relatedsite__contents {
  margin-top: 30px;
}
.home .main .relatedsite .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .relatedsite .item {
  display: block;
  width: calc((100% - 20px) / 2);
}
.home .main .relatedsite .item:nth-child(n+3) {
  margin-top: 20px;
}
.home .main .relatedsite .item__link, .home .main .relatedsite .item__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .main .relatedsite {
    margin-top: 60px;
  }
  .home .main .relatedsite__contents {
    margin-top: 25px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .relatedsite {
    margin-top: 60px;
  }
  .home .main .relatedsite__contents {
    margin-top: 25px;
  }
  .home .main .relatedsite .items {
    display: block;
  }
  .home .main .relatedsite .item {
    width: 100%;
  }
  .home .main .relatedsite .item + .item {
    margin-top: 20px;
  }
}
/* ===================================

  用途一覧

====================================== */
.post-type-archive-purpose .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-purpose .main .entry {
  width: calc((100% - 60px) / 4);
}
.post-type-archive-purpose .main .entry + .entry {
  margin-left: 20px;
}
.post-type-archive-purpose .main .entry:nth-child(4n+1) {
  margin-left: 0;
}
.post-type-archive-purpose .main .entry:nth-child(n+5) {
  margin-top: 20px;
}
.post-type-archive-purpose .main .entry__link {
  display: block;
  width: 100%;
}
.post-type-archive-purpose .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.post-type-archive-purpose .main .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-purpose .main .entry__body {
  padding: 5px 10px;
  background-color: #f2f2f2;
  word-break: break-all;
}
.post-type-archive-purpose .main .entry__title {
  padding-right: 1.25em;
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center right 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.post-type-archive-purpose .main .entry__link:hover {
  opacity: 0.6;
}
.post-type-archive-purpose .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.post-type-archive-purpose .main .entry__link:hover .entry__title {
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .post-type-archive-purpose .main .entry {
    width: calc((100% - 40px) / 3);
  }
  .post-type-archive-purpose .main .entry + .entry {
    margin-left: 20px;
  }
  .post-type-archive-purpose .main .entry:nth-child(3n+1) {
    margin-left: 0;
  }
  .post-type-archive-purpose .main .entry:nth-child(n+4) {
    margin-top: 20px;
  }
  .post-type-archive-purpose .main .entry__body {
    padding: 4px 10px;
  }
  .post-type-archive-purpose .main .entry__title {
    font-size: 15px;
    background-size: 15px 15px;
  }
  .post-type-archive-purpose .main .entry__link:hover {
    opacity: 1;
  }
  .post-type-archive-purpose .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .post-type-archive-purpose .main .entry__link:hover .entry__title {
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-purpose .main .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .post-type-archive-purpose .main .entry {
    width: calc((100% - 15px) / 2);
  }
  .post-type-archive-purpose .main .entry + .entry {
    margin-left: 0;
  }
  .post-type-archive-purpose .main .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .post-type-archive-purpose .main .entry__body {
    padding: 4px 5px;
  }
  .post-type-archive-purpose .main .entry__title {
    font-size: 12px;
    background-size: 12px 12px;
  }
}
/* ===================================

  お悩み一覧

====================================== */
.post-type-archive-worries .main .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-worries .main .item {
  width: calc((100% - 20px) / 2);
  border: 1px solid #b3b3b3;
  border-radius: 8px;
}
.post-type-archive-worries .main .item:nth-child(n+3) {
  margin-top: 20px;
}
.post-type-archive-worries .main .item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 20px 30px 15px;
  background-image: url(img/ico/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 10px 12px;
  background-position: center right 30px;
}
.post-type-archive-worries .main .item__head {
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}
.post-type-archive-worries .main .item__ico {
  display: block;
  width: auto;
  max-width: 20px;
  height: 20px;
}
.post-type-archive-worries .main .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.post-type-archive-worries .main .item__title {
  margin-top: -0.25em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.post-type-archive-worries .main .item__txt {
  margin-top: 2px;
  line-height: 2;
}
.post-type-archive-worries .main .item__link:hover .item__title {
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .post-type-archive-worries .main .item {
    width: calc((100% - 15px) / 2);
    border-radius: 6px;
  }
  .post-type-archive-worries .main .item:nth-child(n+3) {
    margin-top: 15px;
  }
  .post-type-archive-worries .main .item__link {
    padding: 15px 20px 12px;
    background-size: 8px 10px;
    background-position: center right 20px;
  }
  .post-type-archive-worries .main .item__head {
    width: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
  .post-type-archive-worries .main .item__ico {
    width: auto;
    max-width: 15px;
    height: 15px;
  }
  .post-type-archive-worries .main .item__title {
    margin-top: -0.3em;
    font-size: 18px;
  }
  .post-type-archive-worries .main .item__txt {
    margin-top: 3px;
  }
  .post-type-archive-worries .main .item__link:hover .item__title {
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-worries .main .items {
    display: block;
  }
  .post-type-archive-worries .main .item {
    width: 100%;
  }
  .post-type-archive-worries .main .item:nth-child(n+2) {
    margin-top: 10px;
  }
  .post-type-archive-worries .main .item__link {
    padding: 15px 22px 12px;
    background-size: 8px 12px;
    background-position: center right 20px;
  }
  .post-type-archive-worries .main .item__title {
    margin-top: -0.25em;
    font-size: 15px;
  }
  .post-type-archive-worries .main .item__txt {
    margin-top: 2px;
  }
}
/* ===================================

  用途一覧

====================================== */
.post-type-archive-machining .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-machining .main .entries::after {
  content: "";
  display: block;
  width: calc((100% - 40px) / 3);
}
.post-type-archive-machining .main .entry {
  width: calc((100% - 40px) / 3);
}
.post-type-archive-machining .main .entry:nth-child(n+4) {
  margin-top: 20px;
}
.post-type-archive-machining .main .entry__link {
  display: block;
  width: 100%;
}
.post-type-archive-machining .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.post-type-archive-machining .main .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-machining .main .entry__body {
  padding: 8px 15px;
  background-color: #f2f2f2;
  word-break: break-all;
}
.post-type-archive-machining .main .entry__title {
  padding-right: 1.25em;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center right 0;
}
.post-type-archive-machining .main .entry__link:hover {
  opacity: 0.6;
}
.post-type-archive-machining .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.post-type-archive-machining .main .entry__link:hover .entry__title {
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .post-type-archive-machining .main .entry__body {
    padding: 4px 10px;
  }
  .post-type-archive-machining .main .entry__title {
    font-size: 15px;
    background-size: 15px 15px;
  }
  .post-type-archive-machining .main .entry__link:hover {
    opacity: 1;
  }
  .post-type-archive-machining .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .post-type-archive-machining .main .entry__link:hover .entry__title {
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-machining .main .entries {
    display: block;
  }
  .post-type-archive-machining .main .entries::after {
    display: none;
  }
  .post-type-archive-machining .main .entry {
    width: 100%;
  }
  .post-type-archive-machining .main .entry + .entry {
    margin-top: 10px;
  }
  .post-type-archive-machining .main .entry__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .post-type-archive-machining .main .entry__thumb {
    width: 108px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 108px;
            flex: 0 0 108px;
  }
  .post-type-archive-machining .main .entry__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0 15px 0 18px;
  }
  .post-type-archive-machining .main .entry__title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    padding-right: 25px;
    font-size: 14px;
  }
}
/* ===================================

  商品一覧ページ

====================================== */
.post-type-archive-product .main .category-title,
.tax-product_cat .main .category-title {
  padding: 10px 15px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--cl-light);
  border-left: 5px solid var(--cl-ac);
  word-break: break-all;
}
.post-type-archive-product .main .entries,
.tax-product_cat .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}
.post-type-archive-product .main .entries::after,
.tax-product_cat .main .entries::after {
  content: "";
  display: block;
  width: calc((100% - 40px) / 3);
}
.post-type-archive-product .main .entry,
.tax-product_cat .main .entry {
  width: calc((100% - 40px) / 3);
}
.post-type-archive-product .main .entry:nth-child(n+4),
.tax-product_cat .main .entry:nth-child(n+4) {
  margin-top: 15px;
}
.post-type-archive-product .main .entry__link,
.tax-product_cat .main .entry__link {
  display: block;
  border: 1px solid #b3b3b3;
}
.post-type-archive-product .main .entry__thumb,
.tax-product_cat .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.post-type-archive-product .main .entry__thumb-img,
.tax-product_cat .main .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-product .main .entry__link:hover,
.tax-product_cat .main .entry__link:hover {
  opacity: 0.6;
}
.post-type-archive-product .main .entry__link:hover .entry__thumb-img,
.tax-product_cat .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.post-type-archive-product .main .entry__body,
.tax-product_cat .main .entry__body {
  padding: 10px 15px 15px;
  word-break: break-all;
}
.post-type-archive-product .main .entry__title,
.tax-product_cat .main .entry__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cl-ac);
}
.post-type-archive-product .main .entry__txt,
.tax-product_cat .main .entry__txt {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.post-type-archive-product .main .entry__link:hover,
.tax-product_cat .main .entry__link:hover {
  border-color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .post-type-archive-product .main .category-title,
  .tax-product_cat .main .category-title {
    padding: 8px 12px;
    font-size: 22px;
  }
  .post-type-archive-product .main .entries,
  .tax-product_cat .main .entries {
    margin-top: 25px;
  }
  .post-type-archive-product .main .entry__link:hover,
  .tax-product_cat .main .entry__link:hover {
    opacity: 1;
  }
  .post-type-archive-product .main .entry__link:hover .entry__thumb-img,
  .tax-product_cat .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .post-type-archive-product .main .entry__body,
  .tax-product_cat .main .entry__body {
    padding: 8px 12px 12px;
  }
  .post-type-archive-product .main .entry__title,
  .tax-product_cat .main .entry__title {
    font-size: 18px;
  }
  .post-type-archive-product .main .entry__txt,
  .tax-product_cat .main .entry__txt {
    margin-top: 6px;
    font-size: 13px;
  }
  .post-type-archive-product .main .entry__btn,
  .tax-product_cat .main .entry__btn {
    margin-top: 12px;
    height: 35px;
    font-size: 14px;
  }
  .post-type-archive-product .main .entry__link:hover,
  .tax-product_cat .main .entry__link:hover {
    border-color: #b3b3b3;
  }
  .post-type-archive-product .main .entry__link:hover .entry__btn,
  .tax-product_cat .main .entry__link:hover .entry__btn {
    border-color: #b3b3b3;
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-product .main .category-title,
  .tax-product_cat .main .category-title {
    font-size: 18px;
    border-left: 4px solid var(--cl-ac);
  }
  .post-type-archive-product .main .entries,
  .tax-product_cat .main .entries {
    margin-top: 20px;
  }
  .post-type-archive-product .main .entries::after,
  .tax-product_cat .main .entries::after {
    display: none;
  }
  .post-type-archive-product .main .entry,
  .tax-product_cat .main .entry {
    width: calc((100% - 15px) / 2);
  }
  .post-type-archive-product .main .entry:nth-child(n+3),
  .tax-product_cat .main .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .post-type-archive-product .main .entry__body,
  .tax-product_cat .main .entry__body {
    padding: 12px 10px 10px;
  }
  .post-type-archive-product .main .entry__title,
  .tax-product_cat .main .entry__title {
    font-size: 14px;
  }
  .post-type-archive-product .main .entry__txt,
  .tax-product_cat .main .entry__txt {
    margin-top: 3px;
    font-size: 11px;
  }
  .post-type-archive-product .main .entry__btn,
  .tax-product_cat .main .entry__btn {
    margin-top: 7px;
    height: 30px;
    font-size: 12px;
  }
  .post-type-archive-product .main .more-btn,
  .tax-product_cat .main .more-btn {
    margin-top: 40px;
  }
}
/* ===================================

  お知らせ一覧

====================================== */
.category-news .main .entry {
  width: 100%;
  border-bottom: 1px solid #cacaca;
}
.category-news .main .entry:first-child {
  border-top: 1px solid #cacaca;
}
.category-news .main .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 0;
  width: 100%;
}
.category-news .main .entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  width: 260px;
}
.category-news .main .entry__date {
  width: 115px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 115px;
          flex: 0 0 115px;
}
.category-news .main .entry__cates {
  width: 145px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 145px;
          flex: 0 0 145px;
}
.category-news .main .entry__cate {
  position: relative;
  display: inline-block;
  padding: 7px 17px;
  background-color: var(--cl-ac);
  color: #fff;
  z-index: 1;
  border-radius: 9999px;
}
.category-news .main .entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.5;
  word-break: break-all;
}
.category-news .main .entry .newbadge {
  margin-right: 35px;
  color: #da1c24;
  text-wrap: nowrap;
}
.category-news .main .entry__title {
  font-weight: 400;
}

@media screen and (max-width: 1199px) {
  .category-news .main .entry__link {
    padding: 20px 0;
  }
  .category-news .main .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
            flex: 0 0 210px;
    width: 210px;
  }
  .category-news .main .entry__date {
    width: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
  }
  .category-news .main .entry__cates {
    width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
  .category-news .main .entry__cate {
    padding: 6px 12px;
  }
  .category-news .main .entry .newbadge {
    margin-right: 20px;
  }
}
@media screen and (max-width: 758px) {
  .category-news .main .entry__link {
    display: block;
    padding: 15px 0;
  }
  .category-news .main .entry__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .category-news .main .entry__date {
    width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }
  .category-news .main .entry__cates {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .category-news .main .entry__cate {
    padding: 4px 8px;
  }
  .category-news .main .entry__body {
    display: block;
    margin-top: 8px;
  }
  .category-news .main .entry .newbadge {
    margin-right: 1em;
  }
}
/* ===================================

  ブログ一覧

====================================== */
.blog .main .entries,
.category-blog .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog .main .entry,
.category-blog .main .entry {
  width: calc((100% - 60px) / 4);
}
.blog .main .entry + .entry,
.category-blog .main .entry + .entry {
  margin-left: 20px;
}
.blog .main .entry:nth-child(4n+1),
.category-blog .main .entry:nth-child(4n+1) {
  margin-left: 0;
}
.blog .main .entry:nth-child(n+5),
.category-blog .main .entry:nth-child(n+5) {
  margin-top: 20px;
}
.blog .main .entry__link,
.category-blog .main .entry__link {
  display: block;
  width: 100%;
}
.blog .main .entry__thumb,
.category-blog .main .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.blog .main .entry__thumb-img,
.category-blog .main .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog .main .entry__body,
.category-blog .main .entry__body {
  padding: 5px 10px;
  background-color: #f2f2f2;
  word-break: break-all;
}
.blog .main .entry__title,
.category-blog .main .entry__title {
  padding-right: 1.25em;
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center right 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.blog .main .entry__link:hover,
.category-blog .main .entry__link:hover {
  opacity: 0.6;
}
.blog .main .entry__link:hover .entry__thumb-img,
.category-blog .main .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.blog .main .entry__link:hover .entry__title,
.category-blog .main .entry__link:hover .entry__title {
  color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .blog .main .entry,
  .category-blog .main .entry {
    width: calc((100% - 40px) / 3);
  }
  .blog .main .entry + .entry,
  .category-blog .main .entry + .entry {
    margin-left: 20px;
  }
  .blog .main .entry:nth-child(3n+1),
  .category-blog .main .entry:nth-child(3n+1) {
    margin-left: 0;
  }
  .blog .main .entry:nth-child(n+4),
  .category-blog .main .entry:nth-child(n+4) {
    margin-top: 20px;
  }
  .blog .main .entry__body,
  .category-blog .main .entry__body {
    padding: 4px 10px;
  }
  .blog .main .entry__title,
  .category-blog .main .entry__title {
    font-size: 15px;
    background-size: 15px 15px;
  }
  .blog .main .entry__link:hover,
  .category-blog .main .entry__link:hover {
    opacity: 1;
  }
  .blog .main .entry__link:hover .entry__thumb-img,
  .category-blog .main .entry__link:hover .entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .blog .main .entry__link:hover .entry__title,
  .category-blog .main .entry__link:hover .entry__title {
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .blog .main .entries,
  .category-blog .main .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blog .main .entry,
  .category-blog .main .entry {
    width: calc((100% - 15px) / 2);
  }
  .blog .main .entry + .entry,
  .category-blog .main .entry + .entry {
    margin-left: 0;
  }
  .blog .main .entry:nth-child(n+3),
  .category-blog .main .entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .blog .main .entry__body,
  .category-blog .main .entry__body {
    padding: 4px 5px;
  }
  .blog .main .entry__title,
  .category-blog .main .entry__title {
    font-size: 12px;
    background-size: 12px 12px;
  }
}
/* ===================================

  固定ページ

====================================== */
.page .main .entry__head {
  margin-top: -0.5em;
}
.page .main .entry__title {
  padding-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 2px solid var(--cl-ac);
}
.page .main .entry__thumb {
  margin-top: 25px;
}
.page .main .entry__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .page .main .entry__head {
    margin-top: 0;
  }
  .page .main .entry__title {
    font-size: 28px;
  }
  .page .main .entry__thumb {
    margin-top: 22px;
  }
}
@media screen and (max-width: 758px) {
  .page .main .entry__title {
    font-size: 20px;
  }
  .page .main .entry__thumb {
    margin-top: 15px;
  }
}
/* ===================================

  お問い合わせ

====================================== */
.page-contact .main .entry__txt {
  margin-top: 22px;
  font-weight: 500;
  line-height: 2;
}
.page-contact .main .entry-tel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 35px auto 0;
  width: 380px;
  height: 105px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.page-contact .main .entry-tel__span {
  font-weight: 500;
  text-align: center;
}
.page-contact .main .entry-tel__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 13px;
}
.page-contact .main .entry-tel__img {
  width: 30px;
}
.page-contact .main .entry-tel__num {
  margin-left: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 31px;
  font-weight: 500;
}
.page-contact .main .entry-tel__txt {
  margin-top: 3px;
  font-size: 12px;
  text-align: center;
}
.page-contact .main .entry__body {
  padding-top: 50px;
}
.page-contact .main .form__wrap {
  padding-top: 50px;
}
.page-contact .main .form-section + .form-section {
  margin-top: 60px;
}
.page-contact .main .form-section__title {
  padding: 12px 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--cl-light);
  border-bottom: 3px solid var(--cl-ac);
}
.page-contact .main .form__list {
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
}
.page-contact .main .form__list:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page-contact .main .form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-contact .main .form__group + .form__group {
  margin-top: 15px;
}
.page-contact .main .form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.5em;
  width: 220px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}
.page-contact .main .form__head .req,
.page-contact .main .form__head .any {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 14px;
  width: 40px;
  height: 20px;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  z-index: 1;
}
.page-contact .main .form__head .req {
  background-color: #db2b39;
}
.page-contact .main .form__head .any {
  background-color: #666666;
}
.page-contact .main .form__label {
  font-weight: 500;
  line-height: 1.5;
}
.page-contact .main .form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 40px;
}
.page-contact .main .form__body > .wpcf7-form-control-wrap {
  width: 100%;
}
.page-contact .main .form__body-text {
  margin-left: 15px;
  font-weight: 500;
}
.page-contact .main .form__body .adds-text {
  line-height: 1.5;
  margin-left: 20px;
}
.page-contact .main .form__body.w50 > .wpcf7-form-control-wrap {
  width: 50%;
}
.page-contact .main .form__body.w42 > .wpcf7-form-control-wrap {
  width: 42.4%;
}
.page-contact .main .form__body.w24 > .wpcf7-form-control-wrap {
  width: 24.2%;
}
.page-contact .main .form__body input {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-contact .main .form__body input[type=text],
.page-contact .main .form__body input[type=email],
.page-contact .main .form__body input[type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.page-contact .main .form__body input[type=text]#datepicker {
  cursor: pointer;
}
.page-contact .main .form__body textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 15px;
  width: 100%;
  height: 160px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.page-contact .main .form__body input::-webkit-input-placeholder, .page-contact .main .form__body textarea::-webkit-input-placeholder {
  color: #808080;
}
.page-contact .main .form__body input::-moz-placeholder, .page-contact .main .form__body textarea::-moz-placeholder {
  color: #808080;
}
.page-contact .main .form__body input:-ms-input-placeholder, .page-contact .main .form__body textarea:-ms-input-placeholder {
  color: #808080;
}
.page-contact .main .form__body input::-ms-input-placeholder, .page-contact .main .form__body textarea::-ms-input-placeholder {
  color: #808080;
}
.page-contact .main .form__body input::placeholder,
.page-contact .main .form__body textarea::placeholder {
  color: #808080;
}
.page-contact .main .form__body .select-wrap {
  position: relative;
  width: 330px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.page-contact .main .form__body .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0px 7px;
  border-color: #808080 transparent transparent transparent;
  pointer-events: none;
}
.page-contact .main .form__body .select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 15px;
  width: 100%;
  height: 100%;
  color: inherit;
  cursor: pointer;
}
.page-contact .main .form__body .select-wrap select::-ms-expand {
  display: none;
}
.page-contact .main .form__body.col2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-contact .main .form__body.col2.w48 .wpcf7-form-control-wrap {
  width: calc((100% - 20px) / 2);
}
.page-contact .main .form-attach {
  padding-top: 0.35em;
  padding-right: 105px;
}
.page-contact .main .form-attach__txt {
  line-height: 1.7;
}
.page-contact .main .form-attach__items {
  margin-top: 23px;
}
.page-contact .main .form-attach__item + .form-attach__item {
  margin-top: 15px;
}
.page-contact .main .form-attach__item input[type=file] {
  width: 100%;
  color: inherit;
}
.page-contact .main .form-attach__item input[type=file]::-webkit-file-upload-button {
  margin-right: 10px;
  width: 160px;
  height: 40px;
  background-color: #e6e6e6;
  border: 1px solid #ccc;
  color: inherit;
  cursor: pointer;
}
.page-contact .main .form-attach__item input[type=file]::file-selector-button {
  margin-right: 10px;
  width: 160px;
  height: 40px;
  background-color: #e6e6e6;
  border: 1px solid #ccc;
  color: inherit;
  cursor: pointer;
}
.page-contact .main .form__notice {
  width: 100%;
  margin-top: 25px;
  line-height: 1.5;
}
.page-contact .main .form__notice span {
  color: #db2b39;
}
.page-contact .main .agree {
  margin-top: 30px;
  padding-top: 40px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  border-top: 1px solid #ccc;
}
.page-contact .main .agree .wpcf7-list-item-label {
  margin-left: 0.5em;
}
.page-contact .main .agree .wpcf7-list-item-label a {
  color: #4085d6;
  text-decoration: underline;
}
.page-contact .main input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 90px auto 0;
  width: 620px;
  height: 60px;
  background-color: #f7ca00;
  font-size: 18px;
  font-weight: 500;
  border-radius: 9999px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-contact .main input[type=submit]:hover {
  opacity: 0.6;
}
.page-contact .main .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 0.3em;
}
.page-contact .main .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}
.page-contact .main .wpcf7-response-output {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 1199px) {
  .page-contact .main .entry__txt {
    margin-top: 1em;
  }
  .page-contact .main .entry-tel {
    margin-top: 30px;
    width: 330px;
    height: 100px;
  }
  .page-contact .main .entry-tel__top {
    margin-top: 10px;
  }
  .page-contact .main .entry-tel__img {
    width: 28px;
  }
  .page-contact .main .entry-tel__num {
    margin-left: 8px;
    font-size: 30px;
  }
  .page-contact .main .entry-tel__txt {
    margin-top: 2px;
    font-size: 11px;
  }
  .page-contact .main .entry__body {
    padding-top: 40px;
  }
  .page-contact .main .form__wrap {
    padding-top: 40px;
  }
  .page-contact .main .form-section + .form-section {
    margin-top: 40px;
  }
  .page-contact .main .form-section__title {
    padding: 8px 12px;
    font-size: 20px;
    border-bottom: 2px solid var(--cl-ac);
  }
  .page-contact .main .form__list {
    padding: 20px 0;
  }
  .page-contact .main .form__group + .form__group {
    margin-top: 12px;
  }
  .page-contact .main .form__group + .form__group.mt0 {
    margin-top: 10px;
  }
  .page-contact .main .form__head {
    width: 195px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 195px;
            flex: 0 0 195px;
  }
  .page-contact .main .form__head .req,
  .page-contact .main .form__head .any {
    margin-right: 10px;
    width: 36px;
    height: 18px;
    font-size: 12px;
  }
  .page-contact .main .form__body {
    padding-right: 0;
  }
  .page-contact .main .form__body-text {
    margin-left: 12px;
  }
  .page-contact .main .form__body .adds-text {
    margin-left: 12px;
    font-size: 13px;
  }
  .page-contact .main .form__body input[type=text],
  .page-contact .main .form__body input[type=email],
  .page-contact .main .form__body input[type=tel] {
    padding: 0 12px;
  }
  .page-contact .main .form__body textarea {
    padding: 10px 12px;
    height: 140px;
  }
  .page-contact .main .form__body .select-wrap {
    width: 280px;
  }
  .page-contact .main .form__body .select-wrap::after {
    right: 15px;
    border-width: 8px 6px 0px 6px;
  }
  .page-contact .main .form__body .select-wrap select {
    padding: 0 12px;
  }
  .page-contact .main .form__body.col2.w48 .wpcf7-form-control-wrap {
    width: 100%;
  }
  .page-contact .main .form__body.col2 .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
    margin-top: 10px;
  }
  .page-contact .main .form-attach {
    padding-right: 0;
  }
  .page-contact .main .form-attach__items {
    margin-top: 20px;
  }
  .page-contact .main .form-attach__item + .form-attach__item {
    margin-top: 12px;
  }
  .page-contact .main .form-attach__item input[type=file]::-webkit-file-upload-button {
    margin-right: 8px;
    width: 140px;
    height: 35px;
  }
  .page-contact .main .form-attach__item input[type=file]::file-selector-button {
    margin-right: 8px;
    width: 140px;
    height: 35px;
  }
  .page-contact .main .form__notice {
    margin-top: 1.5em;
  }
  .page-contact .main .agree {
    margin-top: 20px;
    padding-top: 40px;
  }
  .page-contact .main input[type=submit] {
    margin-top: 40px;
    width: 400px;
    height: 60px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .page-contact .main .entry-tel {
    width: 100%;
    height: 100px;
  }
  .page-contact .main .entry-tel__top {
    margin-top: 8px;
  }
  .page-contact .main .entry-tel__img {
    width: 24px;
  }
  .page-contact .main .entry-tel__num {
    margin-left: 6px;
  }
  .page-contact .main .form__wrap {
    padding-top: 30px;
  }
  .page-contact .main .form-section + .form-section {
    margin-top: 30px;
  }
  .page-contact .main .form-section__title {
    padding: 6px 10px;
    font-size: 16px;
  }
  .page-contact .main .form__list {
    padding: 15px 0;
  }
  .page-contact .main .form__head {
    padding: 0;
  }
  .page-contact .main .form__group {
    display: block;
  }
  .page-contact .main .form__group + .form__group {
    margin-top: 12px;
  }
  .page-contact .main .form__head {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-contact .main .form__head .req,
  .page-contact .main .form__head .any {
    width: 32px;
    height: 16px;
    font-size: 12px;
  }
  .page-contact .main .form__label {
    font-size: 14px;
  }
  .page-contact .main .form__body {
    margin-top: 8px;
  }
  .page-contact .main .form__body-text {
    margin-left: 8px;
  }
  .page-contact .main .form__body .adds-text {
    display: block;
    margin-top: 5px;
    margin-left: 0;
    font-size: 12px;
  }
  .page-contact .main .form__body.w24 > .wpcf7-form-control-wrap {
    width: 50%;
  }
  .page-contact .main .form__body textarea {
    height: 120px;
  }
  .page-contact .main .form__body .select-wrap {
    width: 100%;
  }
  .page-contact .main .form__body .select-wrap::after {
    right: 12px;
  }
  .page-contact .main .form__body.col2 {
    display: block;
  }
  .page-contact .main .form__body.col2 .wpcf7-form-control-wrap {
    display: block;
  }
  .page-contact .main .form__body.col2 .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
    margin-bottom: 10px;
  }
  .page-contact .main .form__group + .form__group.mt0 {
    margin-top: 0;
  }
  .page-contact .main .form__group + .form__group.mt0 .form__body {
    margin-top: 10px;
  }
  .page-contact .main .form-attach__items {
    margin-top: 20px;
  }
  .page-contact .main .form-attach__item + .form-attach__item {
    margin-top: 10px;
  }
  .page-contact .main .form-attach__item input[type=file]::-webkit-file-upload-button {
    width: 120px;
  }
  .page-contact .main .form-attach__item input[type=file]::file-selector-button {
    width: 120px;
  }
  .page-contact .main .agree {
    margin-top: 15px;
    padding-top: 20px;
  }
  .page-contact .main .agree input[type=checkbox] {
    position: relative;
    top: 2px;
  }
  .page-contact .main input[type=submit] {
    margin-top: 30px;
    width: 100%;
  }
}
/* ===================================

  詳細ページ

====================================== */
.single .main .entry__head {
  margin-top: -0.5em;
}
.single .main .entry__title {
  padding-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 2px solid var(--cl-ac);
}
.single .main .entry__thumb {
  margin-top: 25px;
}
.single .main .entry__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .single .main .entry__head {
    margin-top: 0;
  }
  .single .main .entry__title {
    font-size: 28px;
  }
  .single .main .entry__thumb {
    margin-top: 22px;
  }
}
@media screen and (max-width: 758px) {
  .single .main .entry__title {
    font-size: 20px;
  }
  .single .main .entry__thumb {
    margin-top: 15px;
  }
}
/* ===================================

  商品詳細

====================================== */
.single-product .main .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--cl-light);
  border: none;
}
.single-product .main .woocommerce-message::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--cl-ac);
}
.single-product .main .woocommerce-message .button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 24px;
  min-width: 187px;
  height: 56px;
  margin-left: auto;
  background-color: var(--cl-ac);
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  border-radius: 9999px;
  z-index: 1;
}
.single-product .main .entry__body {
  word-break: break-all;
}
.single-product .main .entry__body::before {
  content: "";
  display: block;
  clear: both;
}
.single-product .main .entry__title {
  margin-top: -0.25em;
  font-size: 32px;
}
.single-product .main .entry__cates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}
.single-product .main .entry__cates span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 5.5em;
  padding: 0.25em;
  font-size: 14px;
  color: #fff;
  background-color: var(--cl-ac);
  border-radius: 0.25em;
  z-index: 1;
}
.single-product .main .entry__cate {
  margin-left: 1em;
  line-height: 1.5;
  font-size: 14px;
}
.single-product .main .entry__meta {
  margin-top: 1.5em;
}
.single-product .main .entry__meta .price {
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  border: none;
  color: #db2b39;
}
.single-product .main .entry__meta .price small {
  font-size: 0.5em;
}
.single-product .main .product .product_title {
  display: none !important;
}
.single-product .main .product .summary {
  margin-bottom: 60px;
}
.single-product .main .woocommerce-product-details__short-description {
  margin-top: 30px;
}
.single-product .main .woocommerce-product-details__short-description p {
  line-height: 1.75;
  font-weight: 400;
}
.single-product .main .woocommerce-product-details__short-description p + p {
  margin-top: 20px;
}
.single-product .main .woocommerce-product-details__short-description strong {
  font-weight: 400;
}
.single-product .main form.cart {
  position: relative;
  display: block;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--cl-light);
  border-radius: 0.5em;
  z-index: 1;
}
.single-product .main form.cart > .wckalkulator-price:last-of-type {
  display: none;
}
.single-product .main table.variations tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-product .main table.variations tbody tr + tr {
  margin-top: 20px;
}
.single-product .main table.variations tbody td.label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
  margin: 0;
  padding: 0;
}
.single-product .main table.variations tbody td.label .dashicons {
  display: none;
}
.single-product .main table.variations tbody td.value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  padding-bottom: 0 !important;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex label {
  position: relative;
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  width: 100%;
  max-width: calc((100% - 0.5em - 4px) / 2) !important;
  text-align: center;
  cursor: pointer;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex i {
  position: absolute;
  bottom: 0.3em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  font-size: 14px;
  font-style: normal;
  color: #4d4d4d;
  white-space: nowrap;
  z-index: 2;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex img {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  border: 2px solid #ccc;
  border-radius: 0.5em;
  z-index: 1;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex input[type=radio]:checked + i {
  color: var(--cl-ac);
}
.single-product .main table.variations tbody td.value .wck-shape-swatch--flex input[type=radio]:checked ~ img {
  border: 2px solid var(--cl-ac);
}
.single-product .main table.variations tbody td.value .wck-shape-width--flex,
.single-product .main table.variations tbody td.value .wck-shape-height--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .main table.variations tbody td.value input[type=number] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  height: 40px;
  padding: 0 0.5em;
  background-color: #fff;
  border: 1px solid #ccc;
}
.single-product .main table.variations tbody td.value .after-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  white-space: nowrap;
  margin-left: 0.5em;
}
.single-product .main table.variations tbody .wck-size-thickness,
.single-product .main table.variations tbody .wck-edge-processing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .main table.variations tbody .wck-size-thickness .label,
.single-product .main table.variations tbody .wck-edge-processing .label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
  margin: 0;
  padding-right: 0 !important;
}
.single-product .main table.variations tbody .wck-size-thickness .value,
.single-product .main table.variations tbody .wck-edge-processing .value {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.single-product .main table.variations tbody .wck-size-thickness .value select,
.single-product .main table.variations tbody .wck-edge-processing .value select {
  width: 100%;
  height: 100%;
  padding: 0 0.5em;
}
.single-product .main table.variations tbody .wck-size-width,
.single-product .main table.variations tbody .wck-size-height {
  padding-bottom: 0;
}
.single-product .main table.variations tbody .wck-size-width .label,
.single-product .main table.variations tbody .wck-size-height .label {
  padding-top: 0.25em;
}
.single-product .main .wckalkulator-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 32px;
}
.single-product .main .wckalkulator-price span {
  font-size: 16px;
  font-weight: 700;
}
.single-product .main .wckalkulator-price span:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.single-product .main .wckalkulator-price #wckalkulator-price ins {
  text-decoration: none;
}
.single-product .main .wckalkulator-price #wckalkulator-price bdi,
.single-product .main .wckalkulator-price #wckalkulator-price .woocommerce-Price-currencySymbol {
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  border: none;
  color: #db2b39;
}
.single-product .main .quantity {
  display: inline-block;
  vertical-align: middle;
}
.single-product .main .quantity input {
  width: 65px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.single-product .main button.single_add_to_cart_button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
  margin-left: 5px;
  width: calc(100% - (2.2rem + 3em - 0.9375em + 0.5em));
  height: 50px;
  background-color: var(--cl-ac);
  color: #fff;
  border-radius: 9999px;
  z-index: 1;
}
.single-product .main .product_meta {
  display: none !important;
}

@media screen and (max-width: 1199px) {
  .single-product .main .woocommerce-message {
    display: block;
    padding: 20px 15px;
    line-height: 1.5;
  }
  .single-product .main .woocommerce-message::before {
    display: none;
  }
  .single-product .main .woocommerce-message .button {
    width: 200px;
    margin: 20px 0 0;
    height: 40px;
    float: none;
  }
  .single-product .main .entry__title {
    margin-top: 20px;
    font-size: 24px;
  }
  .single-product .main .entry__cates {
    margin-top: 20px;
  }
  .single-product .main .entry__cates span {
    min-width: 50px;
    padding: 3px 6px;
    font-size: 11px;
  }
  .single-product .main .entry__cate {
    font-size: 11px;
  }
  .single-product .main .product .summary {
    margin-bottom: 38px;
  }
  .single-product .main .woocommerce-product-details__short-description {
    margin-top: 20px;
  }
  .single-product .main form.cart {
    margin-top: 20px;
    padding: 20px;
  }
  .single-product .main table.variations tbody tr + tr {
    margin-top: 1.2em;
  }
  .single-product .main table.variations tbody td.label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85px;
            flex: 0 0 85px;
    width: 85px;
    font-size: 14px;
  }
  .single-product .main table.variations tbody .wck-size-thickness .label,
  .single-product .main table.variations tbody .wck-edge-processing .label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85px;
            flex: 0 0 85px;
    width: 85px;
  }
  .single-product .main table.variations tbody .wck-size-width .label,
  .single-product .main table.variations tbody .wck-size-height .label {
    padding-top: 0.5em;
  }
  .single-product .main .wckalkulator-price {
    margin-bottom: 25px;
  }
  .single-product .main .wckalkulator-price span {
    font-size: 14px;
  }
  .single-product .main .wckalkulator-price #wckalkulator-price bdi,
  .single-product .main .wckalkulator-price #wckalkulator-price .woocommerce-Price-currencySymbol {
    font-size: 30px;
  }
  .single-product .main .quantity input {
    width: 56px;
  }
  .single-product .main button.single_add_to_cart_button {
    width: calc(100% - 66px);
  }
}
/* ===================================

  404ページ
  お問い合わせ完了ページ

====================================== */
.error404 .main .contents__pagetitle,
.page-thanks .main .contents__pagetitle {
  padding-bottom: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 2px solid var(--cl-ac);
}
.error404 .main .contents__body,
.page-thanks .main .contents__body {
  margin-top: 30px;
}
.error404 .main .contents__title,
.page-thanks .main .contents__title {
  font-size: 24px;
  font-weight: 500;
}
.error404 .main .contents__txt,
.page-thanks .main .contents__txt {
  margin-top: 2em;
  line-height: 2;
}
.error404 .main .contents__txt + p,
.page-thanks .main .contents__txt + p {
  margin-top: 1em;
}
.error404 .main .contents__link,
.page-thanks .main .contents__link {
  display: block;
  margin: 50px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--cl-ac);
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .error404 .main .contents__pagetitle,
  .page-thanks .main .contents__pagetitle {
    font-size: 28px;
  }
  .error404 .main .contents__title,
  .page-thanks .main .contents__title {
    font-size: 20px;
  }
  .error404 .main .contents__link,
  .page-thanks .main .contents__link {
    margin-top: 2em;
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .error404 .main .contents__pagetitle,
  .page-thanks .main .contents__pagetitle {
    font-size: 20px;
  }
  .error404 .main .contents__title,
  .page-thanks .main .contents__title {
    font-size: 16px;
  }
  .error404 .main .contents__link,
  .page-thanks .main .contents__link {
    font-size: 14px;
  }
}
/* ===================================

  商品カテゴリー一覧ページ

====================================== */
.page-product-category-list .main .category-title {
  padding: 10px 15px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  background-color: var(--cl-light);
  border-left: 5px solid var(--cl-ac);
  word-break: break-all;
}
.page-product-category-list .main .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}
.page-product-category-list .main .entries::after {
  content: "";
  display: block;
  width: calc((100% - 40px) / 3);
}
.page-product-category-list .main .cate-entry {
  width: calc((100% - 40px) / 3);
}
.page-product-category-list .main .cate-entry:nth-child(n+4) {
  margin-top: 15px;
}
.page-product-category-list .main .cate-entry__link {
  display: block;
  border: 1px solid #b3b3b3;
}
.page-product-category-list .main .cate-entry__thumb {
  width: 100%;
  overflow: hidden;
}
.page-product-category-list .main .cate-entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-product-category-list .main .cate-entry__link:hover {
  opacity: 0.6;
}
.page-product-category-list .main .cate-entry__link:hover .cate-entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.page-product-category-list .main .cate-entry__body {
  padding: 10px 15px 15px;
  word-break: break-all;
}
.page-product-category-list .main .cate-entry__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cl-ac);
}
.page-product-category-list .main .cate-entry__txt {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.page-product-category-list .main .cate-entry__link:hover {
  border-color: var(--cl-ac);
}

@media screen and (max-width: 1199px) {
  .page-product-category-list .main .category-title {
    padding: 8px 12px;
    font-size: 22px;
  }
  .page-product-category-list .main .entries {
    margin-top: 25px;
  }
  .page-product-category-list .main .cate-entry__link:hover {
    opacity: 1;
  }
  .page-product-category-list .main .cate-entry__link:hover .cate-entry__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .page-product-category-list .main .cate-entry__body {
    padding: 8px 12px 12px;
  }
  .page-product-category-list .main .cate-entry__title {
    font-size: 18px;
  }
  .page-product-category-list .main .cate-entry__txt {
    margin-top: 6px;
    font-size: 13px;
  }
  .page-product-category-list .main .cate-entry__btn {
    margin-top: 12px;
    height: 35px;
    font-size: 14px;
  }
  .page-product-category-list .main .cate-entry__link:hover {
    border-color: #b3b3b3;
  }
  .page-product-category-list .main .cate-entry__link:hover .cate-entry__btn {
    border-color: #b3b3b3;
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .page-product-category-list .main .category-title {
    font-size: 18px;
    border-left: 4px solid var(--cl-ac);
  }
  .page-product-category-list .main .entries {
    margin-top: 20px;
  }
  .page-product-category-list .main .entries::after {
    display: none;
  }
  .page-product-category-list .main .cate-entry {
    width: calc((100% - 15px) / 2);
  }
  .page-product-category-list .main .cate-entry:nth-child(n+3) {
    margin-top: 15px;
  }
  .page-product-category-list .main .cate-entry__body {
    padding: 12px 10px 10px;
  }
  .page-product-category-list .main .cate-entry__title {
    font-size: 14px;
  }
  .page-product-category-list .main .cate-entry__txt {
    margin-top: 3px;
    font-size: 11px;
  }
  .page-product-category-list .main .cate-entry__btn {
    margin-top: 7px;
    height: 30px;
    font-size: 12px;
  }
  .page-product-category-list .main .more-btn {
    margin-top: 40px;
  }
}