@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# logo
------------------------*/
.c-logo {
  width: 150px;
  height: 150px;
  position: relative;
  box-shadow: 2px 2px 8px rgba(var(--body-font-color-rgb), 0.35);
}
.c-logo::before {
  position: absolute;
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  inset: 0;
  margin: auto;
  z-index: 1;
}
.c-logo:hover {
  opacity: 1;
  transform: scale(0.96);
}

/*
# c-sns__list
------------------------*/
.c-sns__list {
  gap: 10px 30px;
}
.c-sns__list .sns-icon {
  width: 30px;
}

/*
# c-contact__list
------------------------*/
.c-contact__list {
  gap: 10px 30px;
}
.c-contact__list .contact__item {
  width: 226px;
}
.c-contact__list .contact__item-link {
  padding: 0 20px;
  min-height: 46px;
}

html {
  scroll-padding-top: 150px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 20px 0;
}
.com-table tr th {
  padding: 0 10px;
  width: 180px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 180px);
  padding: 0 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 35px;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 510px;
}

/*
# has-arrow
------------------------*/
.has-arrow {
  position: relative;
}
.has-arrow::after {
  position: absolute;
  content: "";
  -webkit-mask: url(../img/common/com_arr.svg) center/100% no-repeat;
          mask: url(../img/common/com_arr.svg) center/100% no-repeat;
  background: var(--color-white);
  width: 23px;
  height: 9px;
  z-index: 1;
}

/*
# com-button
------------------------*/
.com-button {
  display: flex;
  align-items: center;
  padding: 0 30px;
  min-height: 52px;
  border-radius: 23px;
  position: relative;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-15);
}
.com-button::after {
  inset: 0 7% 0 auto;
  margin: auto 0;
}
.com-button:hover {
  opacity: 1;
  border-radius: 0;
}
.com-button:hover::after {
  right: 3%;
}
.com-button.bg-color-white {
  background: var(--color-white);
  color: var(--primary-color);
}
.com-button.bg-color-white.has-arrow::after {
  background: var(--primary-color);
}

/*
# img-rounded
------------------------*/
.img-rounded {
  border-radius: 62px;
}

/*
# com-numbering
------------------------*/
.com-numbering {
  font-size: var(--font-size-28);
  font-family: var(--font-secondary);
  color: var(--color-white);
  width: 66px;
  height: 66px;
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/common/num_bg.png) center/100% no-repeat;
}
.com-numbering::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 17px;
  inset: -8px 0 auto;
  margin: 0 auto;
  background: url(../img/common/num_deco.png) center/100% no-repeat;
}

/*
# com-tag__list
------------------------*/
.com-tag__list {
  gap: 35px 55px;
}
.com-tag__list .com-tag__item {
  width: 330px;
}

/*==========================================
共通タイトル
===========================================*/
.primary-title {
  text-align: center;
  font-size: var(--font-size-32);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 45px;
}
.primary-title::before, .primary-title::after {
  content: "";
  flex-grow: 1;
  height: 12px;
  background: var(--primary-color);
  -webkit-mask: url(../img/common/primary-tti_bdr.png) center no-repeat;
          mask: url(../img/common/primary-tti_bdr.png) center no-repeat;
}
.primary-title::before {
  margin-right: 0.8em;
}
.primary-title::after {
  margin-left: 0.8em;
}
.primary-title.color-white {
  color: var(--color-white);
}
.primary-title.color-white::before, .primary-title.color-white::after {
  background: var(--color-white);
}

.secondary-title {
  font-size: var(--font-size-27);
  margin-bottom: 15px;
}

.dotted-title {
  font-size: var(--font-size-32);
  color: var(--primary-color);
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 10px;
  position: relative;
}
.dotted-title::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 11px;
  inset: auto 0 0;
  margin: 0 auto;
  -webkit-mask: url(../img/common/ttl_dotted.png) center/100% no-repeat;
          mask: url(../img/common/ttl_dotted.png) center/100% no-repeat;
  background: var(--primary-color);
}
.dotted-title.color-white {
  color: var(--color-white);
}
.dotted-title.color-white::after {
  background: var(--color-white);
}

/*==========================================
header
===========================================*/
#header {
  padding: 20px 2.0833%;
  height: 120px;
  width: 100%;
  inset: 0 0 auto;
  z-index: 1001;
}
#header .header__logo {
  inset: auto auto -32% 3.125%;
  z-index: 10;
}
#header .header__right {
  width: 610px;
  margin-left: auto;
}
#header .header__buttons {
  gap: 15px 30px;
}
#header .header__sns-list {
  justify-content: flex-end;
}
#header .header__nav {
  margin-top: 15px;
}
#header .header__nav-list {
  gap: 10px 30px;
}
#header .header__nav-link {
  letter-spacing: 0.08em;
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#header .header__nav-link::before, #header .header__nav-link::after {
  content: "";
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--accent-color-light);
  position: absolute;
  display: block;
}
#header .header__nav-link::before {
  left: 50%;
}
#header .header__nav-link:after {
  right: 50%;
}
#header .header__nav-link:hover {
  color: var(--accent-color-light);
}
#header .header__nav-link:hover::before, #header .header__nav-link:hover::after {
  width: 50%;
  border-bottom: 1px solid var(--accent-color-light);
}
#header .header__nav-link.current {
  border-bottom: 1px solid var(--accent-color-light);
  color: var(--accent-color-light);
}
#header .header__nav-link.current::before, #header .header__nav-link.current::after {
  border-bottom: none;
}
#header .header__nav-link.current:hover::before, #header .header__nav-link.current:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
.top-mv {
  height: clamp(636px, 49.739vw, 955px);
  margin-top: 120px;
}
.top-mv .mv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-mv .mv__catch {
  position: absolute;
  inset: 0 auto 0 7.291%;
  margin: auto 0;
  display: flex;
  align-items: center;
}

/*==========================================
footer
===========================================*/
#footer .footer__inbox {
  padding: 50px 0;
}
#footer .footer__logo {
  margin: 0 auto 35px;
}
#footer .footer__address {
  text-align: center;
  margin-bottom: 30px;
}
#footer .footer__address br {
  display: none;
}
#footer .footer__nav-item {
  position: relative;
}
#footer .footer__nav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: var(--color-white);
  inset: 0 auto 0 0;
  margin: auto 0;
}
#footer .footer__nav-item:first-child::before {
  display: none;
}
#footer .footer__nav-link {
  padding: 0 15px;
  font-size: var(--font-size-14);
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  padding: 8px 0;
}
#copyright small {
  font-size: var(--font-size-15);
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: clamp(359px, 28.1245vw, 540px);
  margin-top: 120px;
}
.lower-sv .sv__title {
  width: 878px;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  font-size: var(--font-size-38);
  border-bottom: 1px solid var(--color-white);
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.16em;
  text-shadow: 0 0 5px rgba(var(--body-font-color-rgb), 0.35);
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-white);
  inset: auto 0 -9px;
}

#about-sv {
  background: url(../../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

#brand-sv {
  background: url(../../img/sv/brand-sv_bg.jpg) center/cover no-repeat;
}

#processed-sv {
  background: url(../../img/sv/processed-sv_bg.jpg) center/cover no-repeat;
}

#info-sv {
  background: url(../../img/sv/info-sv_bg.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
/*
# top-archives
------------------------*/
.top-archives {
  padding: 130px 0 205px;
  background: url(../img/top/archive_rb_ill.png) right 7.2916% bottom 90px/10.5729% no-repeat;
}
.top-archives .archive__inbox {
  gap: 65px 100px;
}
.top-archives .archive__item {
  width: 490px;
  padding: 50px 20px 55px;
}
.top-archives .archive__item-button {
  width: 330px;
  margin: 15px auto 0;
}
.top-archives .archive__post {
  border-bottom: 1px solid var(--accent-color-light);
}
.top-archives .archive__post-link {
  padding: 25px 0;
  row-gap: 10px;
}
.top-archives .archive__post-link:hover {
  transform: translateX(10px);
}
.top-archives .archive__post-link:hover .archive__post-title {
  text-decoration: underline;
}
.top-archives .archive__post:last-of-type {
  border-bottom: none;
}
.top-archives .archive__post-date {
  font-size: var(--font-size-15);
  width: 115px;
}
.top-archives .archive__post-tags {
  width: calc(100% - 120px);
  gap: 7px;
}
.top-archives .archive__post-tags .archive__post-tag {
  font-size: var(--font-size-14);
  padding: 0 10px;
}
.top-archives .archive__post-title {
  font-size: var(--font-size-16);
  letter-spacing: 0.08em;
}

/*
# top-greeting
------------------------*/
.top-greeting {
  padding: 90px 0 100px;
  background-image: radial-gradient(#e26464 2px, transparent 2px), radial-gradient(#e26464 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  background-color: var(--primary-color);
  position: relative;
}
.top-greeting .greeting__content {
  width: 510px;
  margin-left: auto;
}
.top-greeting .greeting__title {
  font-size: var(--font-size-40);
  margin-bottom: 55px;
}
.top-greeting .greeting__imgs {
  width: 42.1875%;
  position: absolute;
  inset: -85px auto auto 4.427%;
}
.top-greeting .greeting__imgs .greeting__hero-img img {
  border-radius: 34px;
}
.top-greeting .greeting__imgs .greeting__sub-img {
  position: absolute;
  inset: auto -5.5555% -27.1358% auto;
  width: 29.6296%;
}

/*
# top-cultivation
------------------------*/
.top-cultivation {
  z-index: 1;
  padding: 105px 0 150px;
}
.top-cultivation::before, .top-cultivation::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 206px;
  top: 0;
  z-index: -1;
  background: url(../img/top/cultivation-leaf_ill.png) top center/100% no-repeat;
}
.top-cultivation::before {
  left: 0;
}
.top-cultivation::after {
  right: 0;
  transform: scale(-1, 1);
}
.top-cultivation .cultivation__card {
  margin-bottom: 45px;
  padding-bottom: 45px;
  position: relative;
  border-bottom: 1px solid var(--accent-color-light);
}
.top-cultivation .cultivation__card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.top-cultivation .cultivation__card-content {
  width: 655px;
  min-height: 260px;
}
.top-cultivation .cultivation__card-title {
  padding: 10px 0 10px 88px;
  position: relative;
}
.top-cultivation .cultivation__card-title .color-green {
  font-size: var(--font-size-36);
  background: linear-gradient(to bottom, transparent 50%, rgb(214, 235, 207) 30%);
}
.top-cultivation .cultivation__card-img {
  position: absolute;
  top: 0;
}
.top-cultivation .cultivation__card:nth-of-type(odd) .cultivation__card-img {
  right: 0;
}
.top-cultivation .cultivation__card:nth-of-type(even) .cultivation__card-img {
  left: 0;
}
.top-cultivation .cultivation__card:nth-of-type(even) .cultivation__card-content {
  margin-left: auto;
}

/*
# top-shop
------------------------*/
.top-shop {
  padding: 90px 0;
}
.top-shop .shop__lead-text {
  margin-bottom: 55px;
}
.top-shop .shop__list {
  gap: 45px 100px;
}
.top-shop .shop__item {
  width: 490px;
  padding: 25px 30px;
}
.top-shop .shop__item-title {
  font-size: var(--font-size-16);
  text-align: center;
  padding: 3px 10px;
}
.top-shop .shop__item-table th,
.top-shop .shop__item-table td {
  font-size: var(--font-size-15);
}
.top-shop .shop__item-table th {
  width: 55px;
  text-align: right;
}
.top-shop .shop__item-table td {
  padding: 0;
  width: calc(100% - 65px);
}
.top-shop .shop__item-table tr:last-child {
  padding-bottom: 0;
}
.top-shop .shop__item-button {
  width: 210px;
  margin: 10px 0 0 auto;
}
.top-shop .shop__item-button::after {
  background: var(--primary-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.top-shop .shop__item-button:hover {
  text-decoration: underline;
}
.top-shop .shop__item-button:hover::after {
  right: -3%;
}

/*
# top-item__part
------------------------*/
.top-item__part {
  padding: 60px 8.75% 75px;
  width: 83.33333%;
  margin-top: 105px;
  position: relative;
  min-width: 1180px;
}
.top-item__part::before {
  position: absolute;
  content: "";
}
.top-item__part:last-child {
  margin-bottom: 175px;
}
.top-item__part:nth-child(1)::before {
  width: 16.5625%;
  height: 139px;
  inset: auto auto 65px 5.625%;
  background: url(../img/top/furusato_ill.png) center/100% no-repeat;
}
.top-item__part:nth-child(2)::before {
  width: 16.125%;
  height: 156px;
  inset: auto 4.6875% 65px auto;
  background: url(../img/top/onlineshop_ill.png) center/100% no-repeat;
}
.top-item__part .item__part-img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 24.75%;
  display: flex;
  align-items: center;
}
.top-item__part .item__part-inner {
  width: 79.7285%;
  min-width: 780px;
}
.top-item__part:nth-child(even) {
  margin-left: auto;
  padding-left: 8.75%;
  border-radius: 178px 0 0 178px;
}
.top-item__part:nth-child(even) .item__part-img {
  left: 8.75%;
}
.top-item__part:nth-child(even) .item__part-content {
  margin-left: auto;
}
.top-item__part:nth-child(odd) {
  padding-right: 8.75%;
  border-radius: 0 178px 178px 0;
}
.top-item__part:nth-child(odd) .item__part-inner {
  margin-left: auto;
}
.top-item__part:nth-child(odd) .item__part-img {
  right: 8.75%;
}
.top-item__part .item__part-title {
  font-size: var(--font-size-40);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  line-height: 1.65;
  margin-bottom: 35px;
}
.top-item__part .item__part-content {
  width: 51.5%;
  min-width: 450px;
}

/*
# top-page__list
------------------------*/
.top-page__list {
  padding: 60px 2.0833%;
  background-image: radial-gradient(#eca09a 2px, transparent 2px), radial-gradient(#eca09a 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  background-color: var(--accent-color-extralight);
  gap: 1.0871%;
}
.top-page__list .page__item {
  width: 32.6086%;
}
.top-page__list .page__item-link {
  height: 320px;
  border-radius: 66px 66px 0 66px;
}
.top-page__list .page__item-link:hover {
  opacity: 1;
  transform: translateY(-10px);
}
.top-page__list .page__item-link::before {
  position: absolute;
  content: "";
  width: 68px;
  height: 50px;
  background: var(--primary-color);
  inset: auto 0 0 auto;
  border-radius: 25px 0 0 0;
  z-index: 1;
}
.top-page__list .page__item-link::after {
  inset: auto 19px 17px auto;
}
.top-page__list .page__item--about .page__item-link {
  background: url(../img/top/link-about_img.jpg) center/cover no-repeat;
}
.top-page__list .page__item--brand .page__item-link {
  background: url(../img/top/link-brand_img.jpg) center/cover no-repeat;
}
.top-page__list .page__item--processed .page__item-link {
  background: url(../img/top/link-processed_img.jpg) center/cover no-repeat;
}

/*
# top-contact
------------------------*/
.top-contact {
  padding: 90px 0 110px;
  background: url(../img/top/contact_bg.jpg) center/cover no-repeat;
}
.top-contact .contact__button {
  width: 512px;
  margin: 55px auto 0;
  font-size: var(--font-size-20);
  min-height: 68px;
  border-radius: 34px;
}

/*==========================================
about
===========================================*/
/*
# about-policy
------------------------*/
.about-policy .policy__card {
  border-bottom: 1px solid var(--accent-color-light);
  padding-bottom: 45px;
  margin-bottom: 45px;
  position: relative;
}
.about-policy .policy__card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-policy .policy__card-content {
  width: 655px;
  min-height: 375px;
}
.about-policy .policy__card-img {
  position: absolute;
  top: 0;
}
.about-policy .policy__card-title {
  padding: 10px 0 10px 88px;
  position: relative;
}
.about-policy .policy__card:nth-of-type(odd) .policy__card-img {
  right: 0;
}
.about-policy .policy__card:nth-of-type(even) .policy__card-content {
  margin-left: auto;
}
.about-policy .policy__card:nth-of-type(even) .policy__card-img {
  left: 0;
}

/*==========================================
brand
===========================================*/
/*
# brand__section
------------------------*/
.brand__section {
  margin-bottom: 120px;
}
.brand__section:first-of-type {
  margin-top: 120px;
}
.brand__section .brand__wrap {
  padding: 40px 45px;
}
.brand__section .brand__card {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--accent-color-light);
}
.brand__section .brand__card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.brand__section .brand__card-title {
  padding-left: 20px;
}
.brand__section .brand__card-title::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  inset: 22px auto auto 0;
}
.brand__section .brand__card-img {
  position: absolute;
  inset: 0 auto auto 0;
}
.brand__section .brand__card-content {
  width: 675px;
  margin-left: auto;
  min-height: 180px;
}

/*==========================================
processed
===========================================*/
/*
# processed__archive
------------------------*/
.processed__archive:last-of-type {
  margin-bottom: 120px;
}
.processed__archive .processed__list {
  gap: 35px 37.5px;
}
.processed__archive .processed__card {
  width: 335px;
}
.processed__archive .processed__card-link:hover {
  opacity: 1;
}
.processed__archive .processed__card-link:hover .processed__card-name {
  color: var(--primary-color);
}
.processed__archive .processed__card-link:hover .processed__card-img::before {
  opacity: 1;
}
.processed__archive .processed__card-img {
  width: 100%;
  height: 335px;
}
.processed__archive .processed__card-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-color);
  inset: 0;
  border-radius: 32px;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
}
.processed__archive .processed__card-img img {
  border-radius: 32px;
}
.processed__archive .processed__card-name {
  margin-top: 5px;
  font-size: var(--font-size-20);
  transition: all 0.3s;
}
.processed__archive .processed__card-price {
  color: var(--primary-color);
  margin-top: 5px;
}

/*
# processed-detail
------------------------*/
.processed-detail .processed__title {
  margin-bottom: 5px;
}
.processed-detail .processed__price {
  font-size: var(--font-size-24);
  border-bottom: 1px solid var(--accent-color-light);
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.processed-detail .processed__content {
  width: 715px;
}
.processed-detail .processed__img {
  width: 336px;
  height: 336px;
}
.processed-detail .processed__img img {
  border-radius: 32px;
}
.processed-detail .processed__detail-item {
  width: 315px;
  text-align: center;
}
.processed-detail .processed__detail-item dt {
  margin-bottom: 10px;
}
.processed-detail .processed__detail-item dd {
  text-align: left;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 120px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-25);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 15px 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/