@charset "UTF-8";
:root {
  --color01: #666666;
  --color02: #858281;
  --color03: #727171;
  --product01: #73c8dd;
  --product02: #b8a072;
  --product03: #ea6671;
  --product04: #915b43;
  --product05: #ef8b84;
  --product06: #f3a037;
  --product07: #daa651;
  --product08: #a7b659;
  --product09: #5e8e35;
  --product10: #ba5f69;
  --awesome: "Font Awesome 6 Free";
  --en: "Marcellus",
      serif;
}

html {
  color: var(--color01);
  font-family: "Noto Sans JP";
  line-height: 1.5;
  scroll-padding-top: 140px;
}
body {
  overflow-x: hidden;
}

.screen-reader-text {
  display: none;
}

[class*=u-ofi] {
  height: 100%;
}

svg {
  height: auto;
}

button {
  border: none;
}

figure {
  text-align: center;
}

#wrapper {
  min-width: 320px;
  overflow: hidden;
}

/* js-toggle */
.js-toggle {
  cursor: pointer;
}

.js-toggle + * {
  display: none;
}

.breadcrumb {
  margin: 30px 0;
}

.header {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  z-index: 100;
  
}

.header-cmn {
  padding: 20px 0;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.header .top-inner {
  position: relative;
}

.header.fixed {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: fixed;
  top: 0;
  left: 0;
}
.insta img {
	max-width: 25px;
}
.logo img {
  max-width: 150px;
}

@media (max-width: 599px) {
  .header-cmn {
    padding: 15px 0;
  }
  .logo img {
    max-width: 110px;
  }
  .footer-logo img {
    max-width: 170px;
  }
}
.info {
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.header-menu li:not(.btn-cmn01) {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--en);
}

.header-menu li:not(.btn-cmn01):last-of-type {
  padding-left: 80px;
}
@media (max-width: 1024px) {
  .header-menu li:not(.btn-cmn01):last-of-type {
    padding-left: 40px;
  }
}
@media (max-width: 599px) {
  .header-menu li:not(.btn-cmn01):last-of-type {
    padding-left: 0;
  }
}

.header-menu li a:not(.btn-cmn01 a) {
  display: block;
  text-align: center;
  width: 100%;
}

.header-menu .btn-cmn01 {
  margin-left: 60px;
}

.header-menu li .ttl {
  display: block;
}

.header-logo {
  position: relative;
  z-index: 1000;
  margin-left: 30px;
}


/* ハンバーガーメニュー  */
/* berger */
.berger-menu {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.berger-menu li {
  line-height: 2;
  transform: translateX(-15px);
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.26, 1, 0.48, 1);
}

.berger-menu li + li {
  margin-top: 15px;
}

.berger-menu li a {
  display: block;
}

.berger-menu li.ttl {
  font-weight: bold;
}

.berger-menu li .en {
  font-size: 18px;
  margin-right: 10px;
  letter-spacing: 1.08px;
  font-family: var(--en);
}

.berger-menu li .ja {
  font-size: 13px;
  letter-spacing: 0.78px;
}

.berger-menu .dropdown {
  font-weight: normal;
  padding-left: 1em;
}

.berger-body {
  height: 100vh;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 100px 30px 100px;
  transition: all 0.4s cubic-bezier(0.61, 0.12, 0.16, 1);
  background: #e5f2f9;
  opacity: 0;
  visibility: hidden;
}

.berger-body.active {
  pointer-events: all;
  z-index: 251;
  opacity: 1;
  visibility: visible;
  transition: all 1s cubic-bezier(0.26, 1, 0.48, 1);
}

.berger-body .btn-cmn01 {
  margin-top: 80px;
}

.berger-body.active .berger-menu li {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: all 1s cubic-bezier(0.26, 1, 0.48, 1);
  transition-delay: 0.5s;
}
.berger-body.active .berger-menu li:nth-child(2) {
  transition-delay: 0.6s;
}
.berger-body.active .berger-menu li:nth-child(3) {
  transition-delay: 0.7s;
}
.berger-body.active .berger-menu li:nth-child(4) {
  transition-delay: 0.8s;
}
.berger-body.active .berger-menu li:nth-child(5) {
  transition-delay: 0.9s;
}
.berger-body.active .berger-menu li:nth-child(6) {
  transition-delay: 1s;
}
.berger-body.active .berger-menu li:nth-child(7) {
  transition-delay: 1.1s;
}

.berger-body nav {
  height: 100%;
}

.berger-body nav > * {
  height: 100%;
}

.berger-nav {
  padding: 40px;
}

.toggle {
  background: unset;
  cursor: pointer;
  display: none;
  height: 25px;
  position: relative;
  width: 40px;
  z-index: 260;
}

.toggle .bar {
  -webkit-transition: ease 0.4s;
  background-color: #333;
  height: 2px;
  left: 0;
  position: absolute;
  transition: ease 0.4s;
  width: 100%;
}

.toggle .bar:nth-of-type(1) {
  top: 0;
}

.toggle .bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.toggle .bar:nth-of-type(3) {
  bottom: 0;
}

.toggle.active .bar:nth-of-type(1) {
  transform: translateY(15px) rotate(-45deg);
}

.toggle.active .bar:nth-of-type(2) {
  opacity: 0;
}

.toggle.active .bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

.overlay {
  -webkit-transform: translate3d(0, 0, 0) !important;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transform: translate3d(0, 0, 0) !important;
  visibility: hidden;
  width: 100%;
  z-index: 249;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.info-box {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

/* 共通コンテンツ間隔 */
[class*=section-m],
[class*=section-p] {
  --section-xlarge: 250px;
  --section-large: 200px;
  --section-medium: 100px;
  --section-small: 80px;
  --section-xsmall: 60px;
}

.section-my-xlarge {
  margin-bottom: var(--section-xlarge);
  margin-top: var(--section-xlarge);
}

.section-mt-xlarge {
  margin-top: var(--section-xlarge);
}

.section-mb-xlarge {
  margin-bottom: var(--section-xlarge);
}

.section-my-large {
  margin-bottom: var(--section-large);
  margin-top: var(--section-large);
}

.section-mt-large {
  margin-top: var(--section-large);
}

.section-mb-large {
  margin-bottom: var(--section-large);
}

.section-my-medium {
  margin-bottom: var(--section-medium);
  margin-top: var(--section-medium);
}

.section-mt-medium {
  margin-top: var(--section-medium);
}

.section-mb-medium {
  margin-bottom: var(--section-medium);
}

.section-my-small {
  margin-bottom: var(--section-small);
  margin-top: var(--section-small);
}

.section-mt-small {
  margin-top: var(--section-small);
}

.section-mb-small {
  margin-bottom: var(--section-small);
}

.section-my-xsmall {
  margin-bottom: var(--section-xsmall);
  margin-top: var(--section-xsmall);
}

.section-mt-xsmall {
  margin-top: var(--section-xsmall);
}

.section-mb-xsmall {
  margin-bottom: var(--section-xsmall);
}

.section-py-xlarge {
  padding-bottom: var(--section-xlarge);
  padding-top: var(--section-xlarge);
}

.section-pt-xlarge {
  padding-top: var(--section-xlarge);
}

.section-pb-xlarge {
  padding-bottom: var(--section-xlarge);
}

.section-py-large {
  padding-bottom: var(--section-large);
  padding-top: var(--section-large);
}

.section-pt-large {
  padding-top: var(--section-large);
}

.section-pb-large {
  padding-bottom: var(--section-large);
}

.section-py-medium {
  padding-bottom: var(--section-medium);
  padding-top: var(--section-medium);
}

.section-pt-medium {
  padding-top: var(--section-medium);
}

.section-pb-medium {
  padding-bottom: var(--section-medium);
}

.section-py-small {
  padding-bottom: var(--section-small);
  padding-top: var(--section-small);
}

.section-pt-small {
  padding-top: var(--section-small);
}

.section-pb-small {
  padding-bottom: var(--section-small);
}

.section-py-xsmall {
  padding-bottom: var(--section-xsmall);
  padding-top: var(--section-xsmall);
}

.section-pt-xsmall {
  padding-top: var(--section-xsmall);
}

.section-pb-xsmall {
  padding-bottom: var(--section-xsmall);
}

/*===================================
共通ボタン
===================================*/
[class*=btn-cmn] {
  --btn-mt-xlarge: 90px;
  --btn-mt-large: 60px;
  --btn-mt-medium: 50px;
  --btn-mt-small: 40px;
  --btn-mt-xsmall: 30px;
}

/* btn-cmn01 */
.btn-cmn01 {
  display: flex;
  justify-content: center;
  margin-top: var(--btn-mt-large);
  width: max-content;
	margin-left: auto;
	margin-right: auto;
}
.btn-cmn01 a,
.btn-cmn01 input {
  align-items: center;
  display: flex;
  width: 460px;
  max-width: 100%;
  line-height: 1;
  text-align: center;
  justify-content: center;
  background: var(--color02);
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.05em;
  padding: 15px 30px;
  position: relative;
  border: 1px solid var(--color02);
  font-family: "Marcellus", "Noto Sans JP";
}
.btn-cmn01 a:hover,
.btn-cmn01 input:hover {
  color: var(--color02);
  background: #fff;
  border: 1px solid var(--color02);
}
.btn-cmn01 a::before,
.btn-cmn01 input::before {
  content: "";
  display: inline-block;
  background: url(../images/top/MC_PC09.png) no-repeat;
  background-size: contain;
  width: clamp(6.688rem, 4.898rem + 7.64vw, 10.625rem);
  height: clamp(5.438rem, 4.216rem + 5.21vw, 8.125rem);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-cmn01--small a, .btn-cmn01.post-back-btn a {
  padding: 10px 25px;
  font-size: 16px;
  width: 220px;
  justify-content: flex-end;
}
.btn-cmn01--small a::before, .btn-cmn01.post-back-btn a::before {
  width: 76px;
  height: 62px;
}
.btn-cmn01.post-back-btn a {
  padding: 15px 25px;
  justify-content: center;
}
.btn-cmn01.post-back-btn a::before {
  left: 5px;
}

.btn-icon-left a {
  padding-left: 15px;
  padding-right: 0;
  justify-content: flex-start;
}
.btn-icon-left a::before {
  left: auto;
  transform: translate(50%, -50%);
  right: 7px;
}

@media (max-width: 599px) {
  .btn-cmn01 a,
.btn-cmn01 input {
    width: 260px;
    font-size: 18px;
    justify-content: flex-end;
    padding-right: 50px;
  }
  .btn-cmn01 input {
    justify-content: center;
    padding-right: 30px;
  }
  .btn-cmn01--small a {
    width: 205px;
    font-size: 16px;
  }
  .btn-cmn01--small a::before {
    width: 76px;
    height: 62px;
  }
}
/* btn-cmn02 */
.btn-cmn02 {
  display: flex;
  justify-content: center;
  margin-top: var(--btn-mt-medium);
}

.btn-cmn02 > * {
  align-items: center;
  display: flex;
  width: 150px;
  max-width: 100%;
  line-height: 1;
  text-align: center;
  justify-content: center;
  border: 1px solid var(--color03);
  color: var(--color03);
  font-size: 18px;
  padding: 10px;
  font-family: var(--en);
}
.btn-cmn02 > *:hover {
  background: var(--color03);
  color: #fff;
}

@media (max-width: 599px) {
  .btn-cmn02 > * {
    font-size: 16px;
  }
}
/* 共通ボタン上書き */
.btn-mt-xlarge {
  margin-top: var(--btn-mt-xlarge);
}

.btn-mt-large {
  margin-top: var(--btn-mt-large);
}

.btn-mt-medium {
  margin-top: var(--btn-mt-medium);
}

.btn-mt-small {
  margin-top: var(--btn-mt-small);
}

.btn-mt-xsmall {
  margin-top: var(--btn-mt-xsmall);
}

.btn-mt-none {
  margin-top: 0;
}

.btn-w-full > * {
  width: 100%;
}

.btn-w-xlarge > * {
  width: 350px;
}

.btn-w-xlarge > * {
  width: 300px;
}

.btn-w-medium > * {
  width: 250px;
}

.btn-w-small > * {
  width: 200px;
}

.btn-w-xsmall > * {
  width: 150px;
}

.btn-left {
  justify-content: flex-start;
}

.btn-center {
  justify-content: center;
}

.btn-right {
  justify-content: flex-end;
}

.post-cmn01 .item a {
  display: block;
}

.post-cmn01 .thumb {
  position: relative;
}

.post-cmn01 .desc .date {
  font-size: 12px;
  line-height: 1;
}

.post-cmn01 .desc .ttl {
  font-size: 16px;
}

.post-cmn01 .thumb .cate {
  display: inline-block;
  background: var(--color01);
  padding: 10px 15px;
  font-size: 14px;
  position: absolute;
  top: -20px;
  right: 10px;
  border-radius: 20px;
  z-index: 1;
}

.post-cmn01 .cate02 {
  margin: -10px -10px 0 0;
}
.post-cmn01 .cate02 span {
  display: inline-block;
  background: var(--color01);
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 20px;
  margin: 10px 10px 0 0;
}

@media (max-width: 599px) {
  .post-cmn01 .desc .ttl {
    font-size: 14px;
  }
}
.cat-menu {
  border-radius: 20px;
  padding: 20px;
  background: var(--color01);
}
.cat-menu .cat-item,
.cat-menu .cat-item-all {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
}
.cat-menu .current-cat {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(161, 157, 157, 0.3);
}

.post-back-btn.btn-cmn01 a {
  max-width: 220px;
}

.post-ttl {
  font-size: 24px;
}

.post-txt {
  letter-spacing: 0.05em;
  line-height: 2;
}

#toc_container {
  width: 100%;
  margin: 30px 0;
}

#toc_container .toc_list li a {
  text-decoration: underline;
  color: var(--color-primary--dark);
  font-weight: bold;
  font-size: 18px;
}

.post-txt h2,
.post-txt h3,
.post-txt h4,
.post-txt img {
  margin: 1em 0;
}

.post-txt h1 {
  font-size: clamp(1.75rem, 1.629rem + 0.52vw, 2.25rem);
  font-weight: bold;
		line-height: 1.2

}

.post-txt h2 {
  font-size: clamp(22px, 19.696px + 0.62vw, 32px);
  font-size: clamp(1.375rem, 1.231rem + 0.62vw, 2rem);
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
	line-height: 1.2
}
.post-txt h2::before {
  content: "";
  display: inline-block;
  background: url(../images/h1.png) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: .5em;
	flex-shrink: 0;
}

.post-txt h3 {
  font-size: clamp(20px, 18.16px + 0.49vw, 28px);
  font-size: clamp(1.25rem, 1.135rem + 0.49vw, 1.75rem);
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
		line-height: 1.2

}
.post-txt h3::before {
  content: "";
  display: inline-block;
  background: url(../images/h2.png) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  margin-right: .5em;
		flex-shrink: 0;

}

.post-txt h4 {
  color: var(--color01);
  font-size: clamp(18px, 16.16px + 0.49vw, 26px);
  font-size: clamp(1.125rem, 1.01rem + 0.49vw, 1.625rem);
  border-left: 8px solid var(--color01);
  padding-left: 1em;
  font-weight: bold;
		line-height: 1.2

}

.post-txt h5 {
  font-weight: bold;
  font-size: 17px;
		line-height: 1.2

}

.pagination {
  width: 100%;
}

.pagination .nav-links > * {
  margin: 0 10px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  background: #fff;
  border: 1px solid var(--color01);
  font-size: 16px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  border-radius: 50%;
}

.pagination .page-numbers.current {
  background: var(--color01);
  color: #191919;
  color: #fff;
}

.pagination .item.now,
.pagination .item a {
  align-items: center;
  display: flex;
  justify-content: center;
}

.pagination .item a {
  height: 100%;
  width: 100%;
}

.pagination .item a:hover {
  background-color: #ca1c27;
}

.pagination .prev:hover {
  transform: translateX(-10px);
}

.pagination .next:hover {
  transform: translateX(10px);
}

.pagination .now {
  background-color: #ca1c27;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-navigation .nav-links > * {
  max-width: 48%;
}
.post-navigation .nav-links a {
  text-decoration: underline;
  color: var(--color-primary--dark);
}

[class*=ttl-cmn] {
  --ttl-fz-xlarge: 44px;
  --ttl-fz-large: 40px;
  --ttl-fz-medium: 36px;
  --ttl-fz-small: 24px;
  --ttl-fz-xsmall: 20px;
  --ttl-mb-xlarge: 70px;
  --ttl-mb-large: 60px;
  --ttl-mb-medium: 50px;
  --ttl-mb-small: 40px;
  --ttl-mb-xsmall: 20px;
}

/* 共通タイトル１ */
.ttl-cmn01 {
  color: var(--color02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 256px;
  min-height: 233px;
  background: url(../images/top/bg01.png) repeat-x;
  background-size: 100% auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding: 20px 0 0;
}
.ttl-cmn01 .en {
  font-size: 40px;
  font-family: var(--en);
  letter-spacing: 0.1em;
  line-height: 1.2;
  display: block;
  margin-bottom: 20px;
}
.ttl-cmn01 .ja {
  font-size: 16px;
  line-height: 1;

  display: block;
}

@media (max-width: 599px) {
  .ttl-cmn01 {
    background: url(../images/top/bg01-sp.png) repeat-x;
	  background-size: 100% auto;
    width: 166px;
    min-height: 151px;
  }
  .ttl-cmn01 .en {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ttl-cmn01 .ja {
    font-size: 14px;
  }
}
.lead-cmn01 {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.lead-cmn01 .sub-txt {
  font-size: 15px;
  margin-left: 20px;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media (max-width: 1024px) {
  .lead-cmn01 {
    font-size: 20px;
  }
  .lead-cmn01 .sub-txt {
    font-size: 14px;
    margin-left: 0;
    margin-top: 5px;
  }
}

.ttl--vertical {
  -ms-writing-mode: tb-rl;
  word-break: keep-all;
  writing-mode: vertical-rl;
}

.ttl-left {
  justify-content: flex-start;
}

.ttl-left > * {
  justify-content: flex-start;
}

.ttl-center {
  justify-content: center;
}

.ttl-center > * {
  justify-content: center;
}

.ttl-right {
  justify-content: flex-end;
}

.ttl-right > * {
  justify-content: flex-end;
}

.ttl-mb-xlarge {
  margin-bottom: var(--ttl-mb-xlarge);
}

.ttl-mb-large {
  margin-bottom: var(--ttl-mb-large);
}

.ttl-mb-medium {
  margin-bottom: var(--ttl-mb-medium);
}

.ttl-mb-small {
  margin-bottom: var(--ttl-mb-small);
}

.ttl-mb-xsmall {
  margin-bottom: var(--ttl-mb-xsmall);
}

.ttl-mb-none {
  margin-bottom: 0;
}

.footer {
  position: relative;
  padding-bottom: 40px;
}

.footer-copy {
  font-size: 14px;
}

.footer-menu li {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer-menu li a {
  display: block;
  width: 100%;
}

.footer-subMenu {
  margin-top: 10px;
}

.footer-subMenu a {
  font-size: 14px;
}

.footer-left {
  font-weight: bold;
}

.footer-left .insta {
  align-items: center;
  background: #ca1c27;
  border-radius: 50%;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.footer-cta .box {
  position: relative;
  display: block;
}
.footer-cta .pbox figure {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-accent);
}
.footer-cta .pbox img {
  border-radius: 20px;
  overflow: hidden;
  opacity: 0.7;
}
.footer-cta .tbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-cta .tbox .ttl {
  width: 90%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.footer-container {
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 20px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}

/*トップへ戻る*/
.totop {
  align-items: center;
  bottom: 20px;
  cursor: pointer;
  display: flex;
  font-weight: bold;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 60px;
  z-index: 200;
}

.totop:before {
  content: "";
  display: block;
  height: 15px;
  left: 50%;
  position: absolute;
  top: -15px;
  transform: translateX(-50%);
  width: 1px;
}

.privacy-box .privacy-lead {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.privacy-item + .privacy-item {
  margin-top: 30px;
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.wpcf7-response-output {
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
  display: block;
}

.form .item + .item {
  margin-top: 50px;
}

.form .item dt {
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

.form .item .optional,
.form .item .require {
  margin-left: 15px;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
}

.form .item .require {
  color: red;
}

.form .item dd.form-caption {
  width: 100%;
  display: block;
}

.form-link a {
  text-decoration: underline;
}

.form .item dd input[type=text],
.form .item dd input[type=email],
.form .item dd input[type=tel],
.form .item dd input[type=date],
.form .item dd textarea {
  background-color: #f5f5f5;
  border: none;
  padding: 15px 20px;
  height: 60px;
  width: 100%;
}

.form .item dd > * ::-moz-placeholder {
  color: #b5b5b5;
}

.form .item dd > * ::placeholder {
  color: #b5b5b5;
}

.form .item dd input[type=date] {
  width: 200px;
}

.form .item dd.zip input[type=text] {
  width: 200px;
}

.form .item dd textarea {
  height: 270px;
}

.form .btn-cmn01 > * {
  width: 280px;
}

.wpcf7-list-item.first {
  margin-right: 20px;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}

.wpcf7-radio {
  display: flex;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border-radius: 100%;
  /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.04em;
  margin-top: auto;
  width: 1.2em;
  box-shadow: inset 3px 3px 5px #ececec;
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: var(--color01);
  /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 4px #fff;
}

.form .radiobox input:checked + label:after {
  opacity: 1;
  visibility: visible;
}

.confirm-box {
  border: 2px solid #ca1c27;
  padding: 30px;
}

.top-hero {
  position: relative;
}
.top-hero-inner {
  position: relative;
  height: 100%;
  width: 92vw;
  margin-right: auto;
  margin-left: auto;
}
.top-hero-img {
  margin: 0 calc(50% - 50vw);
}
.top-hero-logo {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 5;
  max-width: 90px;
  display: none;
}
.top-hero-logo svg {
  width: 100%;
}
.top-hero-catch {
  font-size: 36px;
  font-family: "Shippori Mincho";
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1.5;
  color: #000;
  position: absolute;
  left: 0;
  z-index: 5;
  top: 30%;
  margin-left: 3%;
  margin-top: 5%;
}

@media (max-width: 599px) {
  .top-hero {
    background-position: center 35%, center;
    height: auto;
  }
  .top-hero .pbox {
    width: 90%;
  }
  .top-hero-logo {
    max-width: 68px;
  }
  .top-hero-catch {
    top: 15%;
  }
  .top-hero .tbox {
    top: 60%;
    left: 0;
    transform: translateY(-50%);
  }
}
.swiper-slide img {
  transition: 6s 1s ease-out;
  transform: scale(1);
}

.swiper-slide[class*=-active] img {
  transition-delay: 0s;
  transform: scale(1.1);
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  display: block;
  width: 4rem;
  height: 5px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: unset;
}

.swiper-pagination-bullet + * {
  margin-right: 0.5em;
}

.swiper-pagination-bullet-active {
  background: #eee;
}

.sub-hero {
  height: 40vh;
  min-height: 250px;
  position: relative;
}
.sub-hero .pbox {
  height: 100%;
  background: var(--color-accent);
}
.sub-hero .pbox img {
  opacity: 0.6;
  filter: blur(5px);
}

.sub-hero figure {
  height: 100%;
}

.sub-hero .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
}
.sub-hero .catch .inner1000 {
  display: flex;
  justify-content: center;
}
.sub-hero .catch h2 .en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: var(--color-primary--dark);
  padding: 0.3em;
  line-height: 1;
  color: #fff;
  font-family: var(--en);
  font-weight: 900;
  font-size: clamp(2rem, 1.596rem + 1.72vw, 3.75rem);
}
.sub-hero .catch h2 .ja {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  font-family: var(--ja);
  font-weight: bold;
  color: #fff;
}
.sub-hero .catch h2 .ja::before, .sub-hero .catch h2 .ja::after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 30px;
  height: 1px;
  margin: 0 10px;
}

.home-about {
  position: relative;
  z-index: 4;
}
.home-about .about-box {
  position: relative;
}
.home-about .about-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 350px;
}
.home-about .about-img01 {
  max-width: 200px;
  margin-bottom: 40px;
}
.home-about .tbox {
  width: 47%;
}
.home-about .tbox .txt {
  line-height: 1.9;
  text-align: justify;
  letter-spacing: 0.04em;
}
.home-about .gelato-list {
  margin-top: 40px;
}

@media (max-width: 599px) {
  .home-about .about-img01 {
    max-width: 130px;
    margin-bottom: 20px;
  }
  .home-about .about-logo {
    position: static;
    transform: unset;
    margin-left: auto;
    margin-right: auto;
  }
  .home-about .tbox {
    width: 100%;
    order: 2;
  }
  .home-about .tbox .txt {
    line-height: 1.75;
  }
  .home-about .pbox {
    margin-bottom: 40px;
  }
  .home-about .pbox .img {
    width: 53%;
    margin-right: calc(50% - 50vw);
  }
  .home-about .pbox .sp-img {
    width: 32%;
    margin-right: auto;
    margin-left: auto;
  }
}
.parallax {
  overflow: hidden;
}
.parallax .rellax {
  height: 115% !important;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-concept .concept-img01 {
  max-width: 150px;
}
.home-concept .concept-box .txt {
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: justify;
}
.home-concept .concept-box .pbox {
  width: 42%;
}
.home-concept .concept-gallery {
  width: 95vw;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.home-concept .concept-gallery .img:first-of-type {
  margin-top: 18%;
}
.home-concept .concept-gallery .img:nth-of-type(2) {
  margin-top: 5%;
}
.home-concept .concept-gallery .img:nth-of-type(3) {
  margin-top: 13%;
  margin-left: 16%;
}
@media (max-width: 599px) {
  .home-concept .concept-gallery .img:nth-of-type(3) {
    margin-left: 8%;
  }
}
.home-concept .concept-gallery .img:last-of-type {
  margin-top: 8%;
  margin-right: 12%;
}
@media (max-width: 599px) {
  .home-concept .concept-gallery .img:last-of-type {
    margin-right: 8%;
  }
}

.home-blog {
  position: relative;
  z-index: 3;
}

@media (max-width: 599px) {
  .home-concept .concept-img01 {
    max-width: 90px;
  }
  .home-concept .concept-box {
    margin-top: 100px;
  }
  .home-concept .concept-box .pbox {
    display: none;
  }
  .home-concept .concept-box .tbox {
    position: relative;
  }
  .home-concept .concept-box .tbox::before {
    content: "";
    display: block;
    background: url(../images/top/concept01.png) no-repeat;
    background-size: contain;
    width: 210px;
    height: 230px;
    position: absolute;
    right: 0;
    top: -100px;
  }
  .home-concept .concept-gallery {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}
.home-feature {
  position: relative;
}
.home-feature .feature-ttl {
  position: relative;
  top: 0;
  transform: translateY(60%);
  z-index: 1;
}
.home-feature .gelato-pbox {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
  margin-top: -30px;
}
.home-feature .spoon-img {
  overflow: hidden;
  position: absolute;
  bottom: -15px;
  right: 0;
  transform: translateY(50%);
  max-width: 650px;
}
.home-feature .feature-top {
  
  margin: 9% auto 9% 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 599px) {
  .home-feature .feature-top {
     margin: 24% auto 24% 0;
  }
}
.home-feature .feature-top .txt {
  line-height: 1.9;
}
.home-feature .feature-box li + li {
  margin-top: 70px;
}
.home-feature .feature-box .txt {
  line-height: 1.9;
  text-align: justify;
  letter-spacing: 0.64px;
}
.home-feature .feature-box .img {
  width: 33%;
}
.home-feature .feature-box .img2 {
  position: relative;
}
.home-feature .feature-box .img2 .pic {
  width: 64%;
  height: auto;
}
.home-feature .feature-box .img2 .pic img {
  height: auto !important;
}
.home-feature .feature-box .img2 .pic:nth-child(2) {
  position: absolute;
  bottom: 0;
  width: 48%;
  right: 0;
}
.home-feature .feature-box .num-wrap {
  display: flex;
  align-items: center;
  font-family: var(--en);
  color: var(--color02);
  position: relative;
  background: url(../images/top/bg01.png) repeat-x;
  background-size: 110% auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px 15px 7px;
}
.home-feature .feature-box .num-wrap .point {
  font-size: 18px;
  line-height: 1;
}
.home-feature .feature-box .num-wrap .num {
  font-size: 44px;
  line-height: 1;
  margin-left: 0.25em;
}
.home-feature .feature-box .tbox {
	width: 61%;
}
@media (max-width: 1024px) {
  .home-feature .spoon-img {
    max-width: 300px;
  }
}
@media (max-width: 599px) {
  .home-feature .feature-box .img {
    width: 55%;
    margin-right: auto;
    margin-left: auto;
  }
  .home-feature .feature-box li + li {
    margin-top: 55px;
  }
  .home-feature .feature-box .img2 {
    width: 100%;
  }
  .home-feature .feature-box .img2 .pic {
    width: 55%;
  }
  .home-feature .feature-box .img2 .pic:nth-child(2) {
    width: 45%;
    bottom: -80px;
  }
	.home-feature .feature-box .tbox {
		width: 100%
	}
}
.home-lineup .bg-wrap {
  position: relative;
}
.home-lineup .bg-wrap .bg {
  margin: -5% calc(50% - 50vw) 0;
}
.home-lineup .lineup-logo {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 338px;
  width: 100%;
  z-index: 1;
}
.home-lineup .lineup-lead {
  font-size: 22px;
  letter-spacing: 0.05em;
}
.home-lineup .lineup-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
  position: relative;
}
.home-lineup .lineup-list::before {
  content: "";
  width: 100%;
  order: 1;
}
.home-lineup .lineup-list::after {
  content: "";
  width: 100%;
  order: 2;
}
.home-lineup .lineup-list li {
  width: calc(25% - 6px);
  position: relative;
　padding-bottom: 80px!important;
}
.home-lineup .lineup-list li:nth-of-type(n+4) {
  order: 1;
}
.home-lineup .lineup-list li:nth-of-type(n+8) {
  order: 2;
}
.home-lineup .lineup-list li a {
  display: block;
  position: relative;
}
.home-lineup .lineup-list li .pbox {
  position: relative;
}
.home-lineup .lineup-list li .en {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.home-lineup .lineup-list li .en .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.home-lineup .lineup-list li .en .en-txt {
  font-family: var(--en);
  font-size: 16px;
  line-height: 1;
  padding: 10px 20px;
  letter-spacing: 0.68px;
  color: #fff;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.home-lineup .lineup-list li .ja {
  font-size: 20px;
  letter-spacing: 0.05em;
}
.home-lineup .lineup-list li .lead {
  letter-spacing: 0.05em;
  line-height: 1.6;
	font-size: 14px;
}

@media (max-width: 599px) {
  .home-lineup .lineup-lead {
    font-size: 16px;
  }
  .home-lineup .lineup-logo {
    width: clamp(11.875rem, 7.67rem + 17.94vw, 21.125rem);
    top: 40%;
  }
  .home-lineup .lineup-list {
    justify-content: space-between;
    row-gap: 30px;
    -moz-column-gap: 6px;
         column-gap: 6px;
    margin: 0 calc(50% - 50vw);
  }
  .home-lineup .lineup-list::before, .home-lineup .lineup-list::after {
    display: none;
  }
  .home-lineup .lineup-list li {
    width: calc(50% - 3px);
   padding-bottom: 10px!important;
  }
  .home-lineup .lineup-list li .ja {
    font-size: 18px;
  }
  .home-lineup .lineup-list li .en .en-txt {
    padding: 5px 15px;
    font-size: 11.5px;
  }
  .home-lineup .lineup-list .tbox {
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {
  .btn-cmn01 {
    margin-top: calc(var(--btn-mt-medium) * 0.9);
  }
  .btn-cmn02 {
    margin-top: calc(var(--btn-mt-xsmall) * 0.9);
  }
  .btn-mt-xlarge {
    margin-top: calc(var(--btn-mt-xlarge) * 0.85);
  }
  .btn-mt-large {
    margin-top: calc(var(--btn-mt-large) * 0.85);
  }
  .btn-mt-medium {
    margin-top: calc(var(--btn-mt-medium) * 0.85);
  }
  .btn-mt-small {
    margin-top: calc(var(--btn-mt-small) * 0.85);
  }
  .btn-mt-xsmall {
    margin-top: calc(var(--btn-mt-xsmall) * 0.85);
  }
  .btn-mt-none {
    margin-top: 0;
  }
  .ttl--horizontal\@tb {
    writing-mode: initial;
  }
  .ttl-mb-xlarge {
    margin-bottom: calc(var(--ttl-mb-xlarge) * 0.8);
  }
  .ttl-mb-large {
    margin-bottom: calc(var(--ttl-mb-large) * 0.8);
  }
  .ttl-mb-medium {
    margin-bottom: calc(var(--ttl-mb-medium) * 0.8);
  }
  .ttl-mb-small {
    margin-bottom: calc(var(--ttl-mb-small) * 0.8);
  }
  .ttl-mb-xsmall {
    margin-bottom: calc(var(--ttl-mb-xsmall) * 0.8);
  }
  .ttl-mb-none\@tb {
    margin-bottom: 0;
  }
  .toggle {
    display: block;
  }
  .section-my-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.85);
    margin-top: calc(var(--section-xlarge) * 0.85);
  }
  .section-mt-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.85);
  }
  .section-mb-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.85);
  }
  .section-my-large {
    margin-bottom: calc(var(--section-large) * 0.85);
    margin-top: calc(var(--section-large) * 0.85);
  }
  .section-mt-large {
    margin-top: calc(var(--section-large) * 0.85);
  }
  .section-mb-large {
    margin-bottom: calc(var(--section-large) * 0.85);
  }
  .section-my-medium {
    margin-bottom: calc(var(--section-medium) * 0.85);
    margin-top: calc(var(--section-medium) * 0.85);
  }
  .section-mt-medium {
    margin-top: calc(var(--section-medium) * 0.85);
  }
  .section-mb-medium {
    margin-bottom: calc(var(--section-medium) * 0.85);
  }
  .section-my-small {
    margin-bottom: calc(var(--section-small) * 0.85);
    margin-top: calc(var(--section-small) * 0.85);
  }
  .section-mt-small {
    margin-top: calc(var(--section-small) * 0.85);
  }
  .section-mb-small {
    margin-bottom: calc(var(--section-small) * 0.85);
  }
  .section-my-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.85);
    margin-top: calc(var(--section-xsmall) * 0.85);
  }
  .section-mt-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.85);
  }
  .section-mb-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.85);
  }
  .section-py-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.85);
    padding-top: calc(var(--section-xlarge) * 0.85);
  }
  .section-pt-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.85);
  }
  .section-pb-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.85);
  }
  .section-py-large {
    padding-bottom: calc(var(--section-large) * 0.85);
    padding-top: calc(var(--section-large) * 0.85);
  }
  .section-pt-large {
    padding-top: calc(var(--section-large) * 0.85);
  }
  .section-pb-large {
    padding-bottom: calc(var(--section-large) * 0.85);
  }
  .section-py-medium {
    padding-bottom: calc(var(--section-medium) * 0.85);
    padding-top: calc(var(--section-medium) * 0.85);
  }
  .section-pt-medium {
    padding-top: calc(var(--section-medium) * 0.85);
  }
  .section-pb-medium {
    padding-bottom: calc(var(--section-medium) * 0.85);
  }
  .section-py-small {
    padding-bottom: calc(var(--section-small) * 0.85);
    padding-top: calc(var(--section-small) * 0.85);
  }
  .section-pt-small {
    padding-top: calc(var(--section-small) * 0.85);
  }
  .section-pb-small {
    padding-bottom: calc(var(--section-small) * 0.85);
  }
  .section-py-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.85);
    padding-top: calc(var(--section-xsmall) * 0.85);
  }
  .section-pt-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.85);
  }
  .section-pb-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.85);
  }
}
@media (max-width: 599px) {
  .inner,
.inner1100,
.inner1200,
.inner1250,
.inner1300,
.inner1400,
.inner1500,
.inner500,
.inner600,
.inner700,
.inner800,
.inner900,
.inner950 {
    width: 92%;
  }
  .btn-cmn01 {
    margin-top: calc(var(--btn-mt-medium) * 0.8);
  }
  .btn-cmn02 {
    margin-top: calc(var(--btn-mt-xsmall) * 0.8);
  }
  .btn-cmn02 > * {
    font-size: 16px;
  }
  .btn-mt-xlarge {
    margin-top: calc(var(--btn-mt-xlarge) * 0.7);
  }
  .btn-mt-large {
    margin-top: calc(var(--btn-mt-large) * 0.7);
  }
  .btn-mt-medium {
    margin-top: calc(var(--btn-mt-medium) * 0.7);
  }
  .btn-mt-small {
    margin-top: calc(var(--btn-mt-small) * 0.7);
  }
  .btn-mt-xsmall {
    margin-top: calc(var(--btn-mt-xsmall) * 0.7);
  }
  .btn-mt-none {
    margin-top: 0;
  }
  .ttl--horizontal\@sp {
    writing-mode: initial;
  }
  .ttl-center\@sp {
    justify-content: center;
  }
  .ttl-mb-xlarge {
    margin-bottom: calc(var(--ttl-mb-xlarge) * 0.7);
  }
  .ttl-mb-xlarge {
    margin-bottom: calc(var(--ttl-mb-xlarge) * 0.7);
  }
  .ttl-mb-large {
    margin-bottom: calc(var(--ttl-mb-large) * 0.7);
  }
  .ttl-mb-medium {
    margin-bottom: calc(var(--ttl-mb-medium) * 0.7);
  }
  .ttl-mb-small {
    margin-bottom: calc(var(--ttl-mb-small) * 0.7);
  }
  .ttl-mb-xsmall {
    margin-bottom: calc(var(--ttl-mb-xsmall) * 0.7);
  }
  .ttl-mb-none\@sp {
    margin-bottom: 0;
  }
  .section-my-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.7);
    margin-top: calc(var(--section-xlarge) * 0.7);
  }
  .section-mt-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.7);
  }
  .section-mb-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.7);
  }
  .section-my-large {
    margin-bottom: calc(var(--section-large) * 0.7);
    margin-top: calc(var(--section-large) * 0.7);
  }
  .section-mt-large {
    margin-top: calc(var(--section-large) * 0.7);
  }
  .section-mb-large {
    margin-bottom: calc(var(--section-large) * 0.7);
  }
  .section-my-medium {
    margin-bottom: calc(var(--section-medium) * 0.7);
    margin-top: calc(var(--section-medium) * 0.7);
  }
  .section-mt-medium {
    margin-top: calc(var(--section-medium) * 0.7);
  }
  .section-mb-medium {
    margin-bottom: calc(var(--section-medium) * 0.7);
  }
  .section-my-small {
    margin-bottom: calc(var(--section-small) * 0.7);
    margin-top: calc(var(--section-small) * 0.7);
  }
  .section-mt-small {
    margin-top: calc(var(--section-small) * 0.7);
  }
  .section-mb-small {
    margin-bottom: calc(var(--section-small) * 0.7);
  }
  .section-my-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.7);
    margin-top: calc(var(--section-xsmall) * 0.7);
  }
  .section-mt-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.7);
  }
  .section-mb-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.7);
  }
  .section-py-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.7);
    padding-top: calc(var(--section-xlarge) * 0.7);
  }
  .section-pt-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.7);
  }
  .section-pb-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.7);
  }
  .section-py-large {
    padding-bottom: calc(var(--section-large) * 0.7);
    padding-top: calc(var(--section-large) * 0.7);
  }
  .section-pt-large {
    padding-top: calc(var(--section-large) * 0.7);
  }
  .section-pb-large {
    padding-bottom: calc(var(--section-large) * 0.7);
  }
  .section-py-medium {
    padding-bottom: calc(var(--section-medium) * 0.7);
    padding-top: calc(var(--section-medium) * 0.7);
  }
  .section-pt-medium {
    padding-top: calc(var(--section-medium) * 0.7);
  }
  .section-pb-medium {
    padding-bottom: calc(var(--section-medium) * 0.7);
  }
  .section-py-small {
    padding-bottom: calc(var(--section-small) * 0.7);
    padding-top: calc(var(--section-small) * 0.7);
  }
  .section-pt-small {
    padding-top: calc(var(--section-small) * 0.7);
  }
  .section-pb-small {
    padding-bottom: calc(var(--section-small) * 0.7);
  }
  .section-py-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.7);
    padding-top: calc(var(--section-xsmall) * 0.7);
  }
  .section-pt-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.7);
  }
  .section-pb-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.7);
  }
  .contact-box {
    padding: 50px 25px 25px;
  }
  .contact-box .tel-icon {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-box .tel {
    font-size: 30px;
  }
  .form .item + .item {
    margin-top: 35px;
  }
}


/*===================================
2025追記
===================================*/
.about-box {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 100%;
  margin-bottom: 30px;
}
.inner1000 {
  margin-bottom: 30px;
}
.second_box {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
	.pc_none {
		display: none!important;
	}
}









/*===================================
2025追記 FV以下追加
===================================*/

.sp_none {
  display: block;
}


#block01 {
  opacity: 0;
}

#block01 {
  opacity: 0;
  pointer-events: none; /* 必要なら非操作に */
  animation: showImage 1s ease 4s forwards;
}

@keyframes showImage {
  to {
    opacity: 1;
    pointer-events: auto;
  }
}



.catch_copy span {
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
  display: block;
}
.catch_copy span:first-child {
  animation: catch_anime 1.8s forwards 1s;
}
.catch_copy span:nth-child(2) {
  animation: catch_anime 1.8s forwards 2s;
}
.catch_copy span:nth-child(3) {
  animation: catch_anime 1.8s forwards 3s;
}
.catch_copy span:nth-child(4) {
  animation: catch_anime 1.8s forwards 4s;
}

@keyframes catch_anime {
  0% {
    transform: translateX(-5px);
  }
   100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-about {
  overflow: hidden;
}

.fv_top {
  background-image: url(https://test.milkcrown-ice.com/wp-content/themes/milk-crown/images/top/c2_bag.png);
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100vw;
  background-size: cover;
}

.card-container{
  display: flex;
  margin: 20px auto;
  width: 61vw;
  margin-bottom: 90px;
}
.card-container a{
  text-decoration: none;
  color: #cddc39;
}

.card-text{
  width:100%;
  margin: 10px 15px;
}
.card-text h2{
  padding-top: 10px;
  font-size: 1em;
}
.card-text p{
  font-family: "Shippori Mincho";
  font-weight: 500;
  letter-spacing: 2.2px;
  color: #000000;
  margin-left: 24px;
  font-size: 0.95em;
  line-height: 1.6;
}
.card-img img{
  width: 31vw;
}
.oda_img1 {
  margin-left: 4.5vw;
}

.card-container_under {
  display: flex;
  margin: 20px auto;
  margin-bottom: 60px;
  width: 81vw;
}
.card-container_under .card-text {
width: 51vw;
}

.card-container_under .card-img img{
  width: 22vw;
}

.card-container_under h3 {
  font-family: "Shippori Mincho";
  font-weight: 500;
  color: #000000;
  font-size: 1.6em;
  margin-left: 23px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.sp_img_name {
  display: flex;
}




.underline {
  text-decoration-color: #B4DAEC;
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -3px;
  text-decoration-skip-ink: none;
}




/*card_oda*/
.card_oda {
  text-align: right;
  font-family: "Shippori Mincho";
  bottom: 0;
  right: 0;
  margin-top: 30px;
}


.romanized {
  font-size: 12px;
  color: #000;
  margin-bottom: 2px;
}

.job-title {
  font-size: 16px;
  letter-spacing: 2px;
  color: #000;
}

.name {
  font-size: 24px;
  font-weight: 400;
  margin-left: 10px;
  color: #000;
}

.row {
  display: flex;
  justify-content: end;
  align-items: baseline;
  font-family: "Shippori Mincho";
}

















/*PCサイズ*/

@media screen and (min-width:650px) {
  .card-container{
      width: 56vw;
      height: min-content;
  }



}










@media (max-width: 599px) {
  .top-hero-catch {
    font-size: 25px;
}
  .card-container {
    display: flex;
    flex-direction: column-reverse;
  }
.card-container_under {
  display: flex;
}
.pc_none {
  display: block;
}
.sp_none {
  display: none;
}



.card-container {
  width: auto;
}


.card-text{
  width:auto;
  margin: 5px 15px;
}

.card-text p{
  font-size: 1em;
  letter-spacing: 1.2px;
  margin-left: 0px;

}
.sp_text_hokkaido p{
  margin-left: 17px;
}

.card-text.t2 p{
  width: auto;
}


.card-img img {
  width: 53vw;
}
.fv.fv_top {
  background-image: url(https://test.milkcrown-ice.com/wp-content/themes/milk-crown/images/top/sp_back_1.png);
  background-size: cover;
}



.card-container_under {
  display: block;
  width: 86vw;
  margin-left: 17px;
}

.card-container_under .card-img img {
  width: auto;
  margin-bottom: 30px;
}

.card-container_under .card-text {
  width: auto;
}




.underline {
  text-decoration-color: #B4DAEC;
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -5px;
  text-decoration-skip-ink: none;
}
.card-container_under h3 {
  margin-bottom: 30px;
  margin-left: 0px;
}
.inner1000 {
  margin-bottom: 30px;
  padding-right: 5px;
  padding-left: 7px;
}
.row {
  display: block;
}
.card_oda {
  text-align:  left;
  margin-left: 10px;
  margin-top: 0px;
  transform: translateY(57%);
}
.job-title {
  text-align: left;
  margin-left: 10px;
  margin-bottom: 30px;
}
.romanized {
  text-align: left;
  margin-left: 10px;
  margin-bottom: 10px;
}
.fv_top {
  padding-top: 30px!important;
  padding-bottom: 10px!important;
}

.home-about2 .card-text {
  margin-bottom: 30px;
}
.card-container_under {
    margin-bottom: 30px;
}

.home-feature .spoon-img {
    bottom: 2px;

}

}

.sp_6items {
width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
