/* 
  bg = background
  cl = color
 */
html {
  overflow-x: hidden;
  background-color: var(--cl-bg-base);
  color: var(--cl-text);
}
body {
  font-family: 'Noto Sans JP', sans-serif; 
}
:root {

  /* bg-color */
  /* --cl-bg-base: #F3F6ED; */
  --cl-bg-base: #f0f7ee;
  --cl-bg-footer: #f5f5f5;
  --cl-bg-primary: #46b023;
  /* 住友館　薄い黄緑 */
  /* --cl-bg-primary: #91c800; */
  --cl-bg-primary-ticker: rgba(45, 142, 23, .75);
  --cl-bg-secondary: white;
  --cl-bg-accent: #F8B600;
  --cl-bg-accent02: #0F4503;
  --cl-bg-accent03: #ede302;
  --cl-bg-linear-gradient:linear-gradient(45deg, #008a3e 0%, #00c00a 50%, #a4da00 100%);
  /* text-color */
  --cl-text: black;
  /* --cl-title: #026833; */
  --cl-title: var(--cl-bg-primary);
  --cl-text-accent: white;
  --cl-text-not-important: #666;
  /* remの設定 */
  --fz10: calc(10 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz40: calc(40 / 16 * 1rem);
  --fz48: calc(48 / 16 * 1rem);
  --fz56: calc(56 / 16 * 1rem);
  --fz64: calc(64 / 16 * 1rem);
  --fz72: calc(72 / 16 * 1rem);
  --fz96: calc(96 / 16 * 1rem);
  --fz80: calc(80 / 16 * 1rem);
}
.mb40 {
  margin-bottom: 40px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
.mt80 {
  margin-top: 80px;
}
.mt70 {
  margin-top: 70px;
}
.mt60 {
  margin-top: 60px;
}
.mt50 {
  margin-top: 50px;
}
.mt40 {
  margin-top: 40px;
}
.mt30 {
  margin-top: 30px;
}
.mt20 {
  margin-top: 20px;
}
.mt10 {
  margin-top: 10px;
}
.mt05 {
  margin-top: 5px;
}

.mt-30 {
	margin-top: -30px;
}
.mt-50 {
	margin-top: -50px;
}

.pt80 {
  padding-top: 80px;
}





.mlauto {
  margin-left: auto;
  margin-right: 0;
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
	overflow-x: hidden;
}
.text-align-right {
  text-align: right !important;
}
.text-align-center {
  text-align: center !important;
}
.text-align-left {
  text-align: left;
}


h1, h2 {
  font-size: var(--fz40);
  line-height: 1.5;
}
h3 {
  font-size: var(--fz32);
  line-height: 1.5;
}
h4 {
  font-size: var(--fz24);
  line-height: 1.5
}
p, summary {
  font-size: var(--fz20);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--cl--text);
  word-wrap: break-word;
}

/* a:hover {
  opacity: 0.7;
} */
.primary-big {
  font-size: 120%;
  font-weight: 800;
  color: var(--cl-bg-primary);
}


.inner {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 2000px;
}

.right {
  float: right;
}

.logo {
  width: 300px;
  float: left;
  margin: 0;
  
}
.logo a:hover {
  opacity: 0.7;
}

.mask-white {
  background-color: var(--cl-bg-secondary);
}

.btns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.btns-box {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px 15px;
  border-radius: 50em;
  background-color: var(--cl-bg-primary);
  text-align: center;
  color: var(--cl-text-accent);
  font-size: var(--fz20);
  line-height: 1;
}

.btn:hover ,.btn-arrow:hover {
  background-color: var(--cl-bg-secondary);
  border: 1px solid var(--cl-bg-primary);
  color: var(--cl-bg-primary);
  opacity: 1;
}

.btn--inverse {
  background-color: var(--cl-bg-secondary);
  color: var(--cl-bg-accent02);
  border: 1px solid var(--cl-bg-accent02);
}

.btn--inverse:hover {
  opacity: 1;
  background-color: var(--cl-bg-accent02);
  color: var(--cl-bg-secondary);
  border: 1px solid var(--cl-bg-secondary);
}


.btn--size-s {
  padding: 8px 10px;
  font-size: var(--fz14);
}

.btn-arrow {
  display: inline-block;
  /* vertical-align: middle; */
  border-radius: 50em;
  padding: 10px 15px 13px;
  background-color: var(--cl-bg-accent);
  color: var(--cl-text-accent);
  font-size: var(--fz20);
  font-weight: bold;
  line-height: 1;
}




.btn-arrow::after {
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cl-text-accent);
  border-right: 2px solid var(--cl-text-accent);
  transform: rotate(45deg);
  margin-left: 10px;
  vertical-align: middle;
  margin-top: -4px;
}


.btn-arrow:hover::after {
  border-color: var(--cl-bg-primary);
}
.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  margin-top: 1px;
  transform: rotate(45deg);
  border-top: 2px solid var(--cl-text-accent);
  border-right: 2px solid var(--cl-text-accent);
  transition: border-color 0.3s ease;
}

.btn-arrow:hover .arrow {
  border-color: var(--cl-text);
}
.btn-arrow--square {
  border-radius: 20px;
}
.btn-arrow.btn-arrow--size-l {
  padding: 40px 40px 40px;
  font-size: clamp(var(--fz20), 3vw, var(--fz32));
  font-weight: bold;
}
.btn-arrow--size-l:after{
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--cl-text-accent);
  border-right: 3px solid var(--cl-text-accent);
  margin-top: -4px;
}
/* .btn--size-x-l {
  padding-left: 20px;
  padding-right: 20px;
} */
.btn--accent {
  background-color: var(--cl-bg-accent);
}
.btn--accent02 {
  background-color: var(--cl-bg-accent02);
}

.btn-before {
  font-size: var(--fz20);
  color: var(--cl-bg-accent02);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  line-height: 1;
}

.btn-before::before { /* 背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 40px; /* 横幅 */
  height: 40px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  background: var(--cl-bg-primary);
}
.btn-before::after { /* くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-135deg);
}
.btn-next {
  display: inline-block;
  font-size: var(--fz20);
  color: var(--cl-text);
  position: relative;
  padding-right: 50px;
  z-index: 2;
}

.btn-next::before { /* 背景の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 3px;
  width: 40px; /* 横幅 */
  height: 40px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  background: var(--cl-bg-primary);
}
 
.btn-next::after { /* くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.btn-next:hover, .btn-before:hover {
  opacity: .5;
}
.btn-next--size-l {
  padding-right: 70px;
  font-size: var(--fz24);

}
.btn-next--size-l:before {
  width: 50px; /* 横幅 */
  height: 50px; /* 高さ */
}
.btn-next--size-l:after {
  right: 25px;
}


.flex {
  display: flex;
  align-items: baseline;
  gap:20px;
}


.category-badge, .term-badge {
  display: inline-block;
  padding: 5px 20px 5px;
  border-radius: 50em;
  text-align: center;
  font-size: var(--fz20);
  line-height: 1;
}

.badge {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--cl-bg-accent);
  color: white;
  font-size: var(--fz20);
  text-align: center;
  text-transform: uppercase;
}

.card-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card-list .card {
  flex: 1;
}
.card {
  max-width: 300px;
/*   min-width: 300px; */
  width: 100%;
  border-radius: 50px;
  background-color: var(--cl-bg-secondary);
  color: var(--cl-text);
  box-shadow: 0 10px 20px #ccc;
}
.card__img {
  overflow: hidden;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom: solid 1px #ccc ;
}



.card__article {
  padding: 20px 10px 30px;
  min-height: 100px;
}
.card__article h3 {
  font-size: var(--fz24);
}
.card__article p{
  font-size: var(--fz20);
  margin-top: 20px;
}

.card-wides {
  display: flex;
  flex-direction: column;
  gap: 40px;

}
.card-wide  {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 30px;
  background-color: var(--cl-bg-secondary);
  overflow: hidden;
  border-radius: 50px;
  padding-right: 10px;
  border: 1px solid var(--cl-bg-primary-ticker);
}
.card-wide:hover {
  opacity: .7;
}

.card-wide__bg {
  overflow: hidden;
  width: 30%;
  overflow: hidden;
  border: solid 1px #ccc;
}
.card-wide__bg img {
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 400 / 266;
}
.card-wide__title-contents {
  width: 65%;
  padding-bottom: 10px;
}
.card-wide__title {
  font-size: var(--fz32);
  line-height: 1.2;
}


.card02-lists {
  display: grid;
  grid-template-columns:  1fr 1fr;
  gap: 40px;
}

.card02-lists a:hover {
  opacity: .7;
}
.card02 {
  overflow: hidden;
  border-radius: 50px;
  background-color: var(--cl-bg-secondary);
}

.card02__contents {
  display: flex;
  align-items: stretch;
}
.card02__bg {
  width: 50%;
  overflow: hidden
}
.card02__bg img {

  min-height: 300px;
  object-fit: cover;
}
.card02__article {
  position: relative;
  width:50%;
  padding: 20px;
}
.card02__article .btn-next {
  position: absolute;
  bottom:20px;
  right: 20px;
}



.big-card01 {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}


.big-card01__img {
  overflow: hidden !important;
  
}
.big-card01__img img {
  aspect-ratio: 3/1;
  display: block;
  min-height: 300px;
}
.big-card01__article {
  position: absolute;
  width: 40%;
  bottom: 0;
  background-color: var(--cl-bg-primary);
  backdrop-filter: blur(25px);
  color: var(--cl-text-accent);
  padding-left: 30px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  border-bottom-left-radius: 50px;   /* 左下 */
}
.big-card01__text {
  margin-top: 10px;
}


.transparent-card {
  background-color: transparent;
  color: var(--cl-text);
  border: none;
  padding: 0;
  max-width: 400px;
  min-width: 200px;
}
.transparent-card__img {
  border-top-left-radius: 50px;   /* 左上 */
  border-top-right-radius: 50px;   /* 右上 */
  overflow: hidden;
}
.transparent-card__img img {
	aspect-ratio: 5/3;
}

.leaf-bg {
  width: 100%;
  position: relative;
  aspect-ratio: 3/2;
}
.leaf-bg img {
  position: absolute;
  object-position: 30% 60%;
  border-top-left-radius: 300px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 300px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  margin: 20px 0;
}

.leaf-bg::after {
  position:absolute;
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  border-top-left-radius: 300px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 300px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  top: 0;
  left: 30px;
  background: var(--cl-bg-linear-gradient);
  z-index: -1;
}

.leaf-bg__caption {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 5px 10px;
  font-size: clamp(var(--fz20),3vw,var(--fz32));
  color: var(--cl-text-accent);
  background-color: rgba(0,0,0, .7);
  letter-spacing: 0.1em;
  border-radius: 20px;
  white-space: nowrap;
}



.leaf-bg--size_l {
  min-height: 300px;
}
.leaf-bg--size_s {
  min-height: 100px;
  max-height: 300px;

}
.leaf-bg--size_l img{
  width: calc(100% - 30px);
  height: calc(100% - 60px);
  margin: 30px 0;
  min-height: 300px;
}
.leaf-bg--size_l::after {
  min-height: 300px;
}
.leaf-bg--caption_yukinko .leaf-bg__caption {
  top: 10%;
  transform: translate(-50%, -50%);

}
.leaf-bg.leaf-bg--contain::after {
  left: 0;
}
.leaf-bg.leaf-bg--contain img {
  object-fit: contain;
  border-radius: 0;
  width: 80%;
  height: 80%;
}

.transparent-card__title {
  font-size: var(--fz24);
  color: var(--cl-text);
  padding-bottom: 20px;
}

/* tel */

.tel, .mail {
  min-height: 44px;
  line-height: 1.3;
  margin-top: 20px;
  letter-spacing: 0.008em;
  /* padding-left: 50px; */
  /* background-image: url(../images/common/smartphone-icon.png); */
  background-position: left;
  background-repeat: no-repeat;
  background-size: 48px;
}
.mail {
  background-image: none;
}
.caution {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.008em;
}
.number, .mail__address{
  display: inline-block;
  position: relative;
  font-size: var(--fz32);
  font-weight: bold;
  padding-left: 55px;

}

.number:before, .mail__address:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
}
.number:before {
  background-image: url(../images/common/smartphone-icon.png);
  
}
.mail__address:before {
  background-image: url(../images/common/mail-icon.png);
}

.number--warn, .mail__address--warn {
  color: var(--cl-bg-primary);
}

.titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-circle,
.title-circle-after {
  display: flex;
  align-items: start;
  gap: 10px;
  line-height: 1.4;/*行高*/
  color: var(--cl-text);
}
.title-circle:before {
  max-width: 30px;
  min-width: 30px;
  max-height: 30px;
  min-height: 30px;
  margin-top: 3px;
  content: '';
  border-radius: 100%;
  background: var(--cl-bg-primary);
}

.title-circle-after:after{
  max-width: 30px;
  min-width: 30px;
  max-height: 30px;
  min-height: 30px;
  margin-top: 3px;
  content: '';
  border-radius: 100%;
  background: var(--cl-bg-primary);
}

.title-border-bottom {
  border-bottom: 3px solid var(--cl-bg-accent02);
}

.title-first-letter:first-letter {
  font-size: 120%;
  color: var(--cl-bg-primary);
  border-bottom: 3px solid var(--cl-bg-primary);
}
.title-first-letter.light{
  color: var(--cl-text-accent)
}
.title-first-letter.light:first-letter {
  font-size: 120%;
  color: var(--cl-text-accent);
  border-bottom: 3px solid var(--cl-bg-secondary);
}

.title-first-letter-white:first-letter {
  font-size: 120%;
  color: var(--cl-text-accent);
  border-bottom: 3px solid var(--cl-text-accent);
}


.title-border-left{
  padding:0.25em 0.5em; /*上下 左右の余白*/
  border-left:solid 6px var(--cl-bg-primary); /*左線*/
  background:transparent; /*背景色に透明を指定*/
}
.title-description {
  font-size: var(--fz20);
  line-height: 1.5;
}
.title-description > span {
  color: var(--cl-bg-primary);
  font-weight: bold;
}
.title-description > .big-span {
  color: var(--cl-bg-primary);
  font-weight: bold;
  font-size: 120%;
}
/* form */
.qa-6 {
    max-width: 1500px;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #050505;
    font-weight: 600;
    font-size: var(--fz24);
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: var(--cl-bg-primary);
    content: "Q";
    font-weight: bold;
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #050505b3;
    border-right: 3px solid #050505b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
    font-weight :bold
}



.flow04 {
  width: 100%;
  position: relative;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 60px;
   
}

.flow04 > li {
  list-style-type: none;
  max-width: 350px;
  display: flex;
  
  border-radius: 20px;
  position: relative;
}

.flow04 > li .icon04 {
  min-width: 2em;
  min-height: 2em;
  text-align: center;
  color: #fff;
  background: var(--cl-bg-accent);
  border-radius: 100vh;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: var(--cl-bg-accent);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* 1) 親DLで中央寄せ（GridでもFlexでもOK。ここではGrid） */
.flow04 > li dl {
  background: var(--cl-bg-linear-gradient);
  display: grid;
  justify-items: center;   /* 子要素（dt, dd）を横方向中央 */
  padding: 30px 20px;
  margin: 0;
  border: 3px solid var(--cl-bg-accent);
  border-radius: 20px;
  position: relative;
  text-align: center;      /* ddの横書きは中央寄せ */
}

.flow04 > li:not(:first-child)::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid var(--cl-bg-accent, #E26B5D);
  border-right: 4px solid var(--cl-bg-accent, #E26B5D);
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 1) 親DLで中央寄せ（GridでもFlexでもOK。ここではGrid） */
.flow04 > li dl {
  display: grid;
  justify-items: center;   /* 子要素（dt, dd）を横方向中央 */
  padding: 30px 20px;
  margin: 0;
  border: 3px solid var(--cl-bg-accent);
  position: relative;
  text-align: center;      /* ddの横書きは中央寄せ */
}

/* 2) 縦書きの見た目中心を安定させる */
.flow04 > li dl dt {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--cl-text-accent);
  margin: 0 0 10px;
  line-height: 1;
  inline-size: max-content;     /* 内容幅だけを基準に中央へ */
}

/* 3) .icon04 の“横ぶくれ”を解消して厳密センターへ */
.flow04 > li .icon04 {
  /* min- をやめ、論理サイズで正方形に固定 */
  inline-size: 2em;             /* = width */
  block-size: 2em;              /* = height */
  line-height: 2em;             /* テキストを垂直中央 */
  display: inline-block;               /* inline-block→blockで扱い安定 */
  margin-inline: auto;          /* 自分自身を中央へ */
  text-align: center;
  color: var(--cl-text-accent);
  background: var(--cl-bg-accent);
  border-radius: 100vh;
  position: relative;
  text-combine-upright: none;   /* ← 横並びを禁止 */
  margin-bottom: 10px;
}

/* 吹き出し三角はそのままでOK（中央基準は維持） */
.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: var(--cl-bg-accent);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
}
@media(max-width: 767px){
  .flow04 {
    flex-direction: column;
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child)::before {
  left: 50%;
  top: -20px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  }

  .flow04 > li dl {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .flow04 > li dl dt {
  writing-mode: horizontal-tb;
  white-space: wrap;
  width: 100%;
  }
  .flow04 > li .icon04 {
    margin-bottom: 0;
    margin-right: 20px;
    display: none;
  }
}




.sp, .btn-sp {
  display: none !important;
}
.tablet, .sp-tablet, .sp-tablet__flex {
  display: none !important;
}

/* loader */
.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: var(--cl-bg-base);
  z-index: 999;
  top: 0;
  left: 0;
  gap: 20px;
}
.loader__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: var(--cl-bg-base);
  top: 0;
  left: 0;
  gap: 20px;
}
/* .loader__char {
  
} */
.loader__logo {
  width: 300px;
  height: auto;
  margin-right: 20px;
}

/* hamburger */
.hamburger {
  background-color: var(--cl-bg-primary-ticker);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;

  width: 300px;
  font-size: var(--fz20);
  color: var(--cl-text-accent);
  border-radius: 50px;
  line-height: 2;
}
.hamburger {
  text-align: right;
}
.hamburger.active {
	position: fixed;
}
.hamburger__content {
  text-align: left;
}

.hamburger li {
  list-style: circle inside ;
}
.hamburger__sub-titles li{
  padding-left: 30px;
}
.hamburger__sub-titles li:hover {
  padding-left: 0px;
  transition: padding-left 0.3s ease;
}



/* header */
header {
  background-color: var(--cl-bg-secondary);
  height: 100px;
}

.header-fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0
}
.header-logo {
  width: clamp(180px, 20vw, 350px) !important;
  transition: opacity 2s;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  margin-right: 30px;
  transition: opacity 2s;
}
.header-nav li {
  color: var(--cl-text);
  margin-left: 30px;
  font-family: Zen Maru Gothic;
  font-size: var(--fz20);
  font-weight: 800;

}
header .right {
  display: flex;
  margin-top: 25px;
}
header .inner {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__hamburger {
  display: none;
  position: absolute;
  width: 300px;
  max-width: 300px;
  max-height: 98vh;
  overflow-y: auto;
  z-index: 4;
  right: 0;
  top: 5px;
  transition: display 2s 1s;

}


/* mv */
.mv {
  /* background-image: url(../images/common/noise.webp), linear-gradient( var(--cl-bg-secondary), var(--cl-bg-base)); */
  background-image: linear-gradient( var(--cl-bg-secondary), var(--cl-bg-base));
  background-repeat: repeat;

}

.mv__content{
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
}

.mv__content.mv__content--product-ch {
  flex-direction: row;
}

.mv__bg {
  border-top-left-radius: 300px;
  /* border-top-right-radius: 50px; */
  /* border-bottom-right-radius: 300px; */
  border-bottom-left-radius: 300px;
  width: 75%;
  overflow: hidden;
}
.mv__right {
  height: 200px;
}

.mv__bg img {
  display: block;
  aspect-ratio: 1087/449;
}

.mv__article {
  position: absolute;
  z-index: 2;
  top: 50%;
  left:20px;
  transform: translateY(-50%);
  /* max-width: 70%; */
  color: var(--cl-text);
  padding: 10px;
}

.mv__article--product-ch {
  position: static;
  transform: translateY(0);
}
.mv__title {
  position: relative;
  white-space: normal;
  line-height: 1;
  font-style: italic;
  font-weight: bold;
}


.mv__article--product-ch .mv__title {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.mv__title-en {
  display: block;
  font-size: var(--fz72);
  line-height: 1.2;
  color: var(--cl-title);
}

.mv__title-en.is-active {
  opacity: .7 !important;
}

.mv__title-en.animation-text >.char {
  padding-right: 12px;
  margin-left: -8px;
}



.mv-post__content {
  padding-top: 20px;
  padding-bottom: 80px;
  margin: 0 auto;
  max-width: 2000px;
  display: flex;
  justify-content: space-between;
  border-bottom: 3mm ridge var(--cl-bg-primary-ticker) ;
}
.mv-post__bg {
  overflow: hidden;
  width: 40%;
  border-radius: 50px;
}
.mv-post__bg img {
  aspect-ratio: 34/21;
}
.mv-post__title-contents {
  width: 55%;
}
.mv-post__title-contents .title-circle span {
  font-size: var(--fz24);
  font-weight: 800;

}
.mv-post__title {
  margin-top: 20px;
  font-size: var(--fz32);
  line-height: 1.2;
  color: var(--cl-bg-accent02)
}
.mv-post__category {
  margin-top: 20px;
  font-size: var(--fz24);
  font-weight: 600;
  font-style: italic;
  color: var(--cl-bg-primary);
}
.date {
  font-size: var(--fz20);
  color: var(--cl-bg-primary);
}

.category-icons {
  width: 100%;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.category-icon.animation-text {
  padding: 5px 20px 5px;
}








/* .page-product-ch__works {
  background-color: black;
} */
/* single */
.post-page {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 2000px;;
  padding-top: 20px;
}
.post-page__link {
  display: flex;
  justify-content: space-between;
}



/* footer */
footer .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
footer {
  border-top: 1px solid var(--cl-bg-primary);
}
footer a:hover {
  opacity: 0.7;
}

.footer__content {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}
.footer__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__item,.footer__ul, .footer__caption {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__item:last-child {
  width: 100%;
}

.footer__title, .footer__ul li {
  font-size: var(--fz20);
}
.footer__title {
  font-weight: bold;
}
.footer__ul li, .footer__caption li{
  color: var(--cl-text-not-important) ;
}
.footer__ul li {
  list-style: circle inside;
}
.mv__wrapper {
  padding-top: 40px;
  background-color: var(--cl-bg-secondary);
}
.mv__content.inner {
  padding-right: 0;
}
/* dl */
.company-data-lists {
  max-width: 1000px;
  margin-right:auto;
  margin-left: auto;
}
.company-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border-top: 1px dashed var(--cl-bg-accent02);
  border-right: 1px dashed var(--cl-bg-accent02);
  font-size: var(--fz20)

}
.company-dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width:20%;
  padding: 10px  10px 10px;
  background-color: var(--cl-bg-primary);
  color: var(--cl-bg-secondary);
  border-bottom: 1px dashed var(--cl-bg-accent02);
}
.company-dl dd {
  width: 80%;
  padding: 10px 0 10px 30px;
  border-bottom: 1px dashed var(--cl-bg-accent02);
  background-color: var(--cl-bg-secondary);
}
.company-dl span {
  display: inline-block;
  vertical-align: middle;
}
.company-data-lists {
  max-width: 1000px;
  margin-right:auto;
  margin-left: auto;
}
.history-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  font-size: var(--fz20)

}

.history-dl dt, .history-dl dd {
  border-bottom: 1px dashed var(--cl-bg-accent02);
  background-color: var(--cl-bg-secondary);
  display: flex;
  align-items: center;
}
.history-dl dt {
  justify-content: center;
  width:25%;
  padding: 10px  10px 10px;
  font-size: var(--fz32);
  font-weight: 600;
  color: var(--cl-bg-primary);
}
.history-dl dd {
  width: 75%;
  padding: 10px 0 10px 30px;
  background-color: var(--cl-bg-secondary);
  font-size: var(--fz20);
  
}
.history-dl span {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.2em;
  
}


/* template-contact */
.template-contact {
  background-color: var(--cl-bg-secondary);
  background-image: url(../images/common/bg09.png);
  background-size: cover;
  background-position: left center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.template-contact__content {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.template-contact__item {
  /* display: inline-block; */
  flex: 1;
  text-align: center;
}
.template-contact__item:first-of-type{
  border-right: solid 1px;
  border-color: black;
}

.template-contact__item .btn-arrow {
  margin-top: 40px;
}

.template-contact__item .tel {
  display: inline-block; 
}

.template-contact--page_contact {
  background-image: none;
  background-color: transparent;
}
/* function */
.active {
  display: block !important;
  transition: display 2s 1s;
}
.no-scroll {
  overflow: hidden !important;
}
.none {
  opacity:0;
  pointer-events: none; 
}
.text-border {
  text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px  1px 0 white,
    1px  1px 0  white
}
.yukinko-logo {
	position: absolute;
	width: clamp(50px, 20vw, 300px);
	right: 0;
	z-index: 2;
}
.yukinko-logo > img{
	object-fit: contain;
}

.no-news {
	height: 250px;
}




@media screen and (max-width:1000px) {
  .inner,
  .post-page
  {
    padding-left:20px;
    padding-right:20px;
  }
  .pc {
    display: none ;
  }
  .pc-sp {
    display: none;
  }
  .card02-lists {
    grid-template-columns:  1fr ;
  }
  .leaf-bg {
    aspect-ratio: 4/3;
  }

  .logo {
    width: 260px;
  }
  .sp-tablet {
    display: block !important;
  }
  .sp-tablet__flex {
		display: flex !important;
	}
  .mv__bg img {
  display: block;
  aspect-ratio: 3/2;
}

}

@media screen and (max-width: 768px) {
  .card-list {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 600px) {
h1,h2 {
  font-size: var(--fz32);
}
h3 {
  font-size: var(--fz24);
}
h4 {
  font-size: var(--fz16);
}
p {
  font-size: var(--fz16);
}
  .pc__flex {
		display: flex !important;
	}
	.sp__tablet__flex {
		display: none !important;
	}
  .pc-tablet {
    display: none;
  }
  .pc-sp {
    display: block;
  }
  .logo {
    width: 180px;
  }
  .sp {
    display: block !important;
  }

  .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  header {
    height: 70px;
  }
  header .inner {
    height: 70px;
  }
  .card {
    min-width: auto;
  }
  .card-wide {
    max-width: 400px;
    flex-direction: column;
    gap: 0;
    padding:0;
    margin: 0 auto;
  }
  .card-wide .mt20 {
    margin-top: 5px;
  }

  .card-wide__bg,.card-wide__title-contents {
    width: 100%;
  }
  .card-wide__bg img {
  min-width: auto;
  min-height: 200px;
  aspect-ratio: 400/225
}
  .card-wide__title-contents {
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card-wide__title {
    font-size: var(--fz24);
  }
  .leaf-bg img ,.leaf-bg::after {
  border-top-left-radius: 150px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 150px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  }
  .card02__contents {
    flex-direction: column;
  }
  .card02__bg, .card02__article {
    width: 100%;
  }
  .card02__bg img {
    min-height: auto;
    aspect-ratio: 8/5;
  }
  .card02__article {
    text-align: right;
  }
  .card02__title {
    text-align: left;
  }
  .card02__article .btn-next {
    position: relative;
  }
  .btn-arrow {
    font-size: var(--fz24);
  }
  /* mv スマホ */
  .mv.inner{
  padding-left: 0;
}
  .mv__content {
    position: static;
    flex-direction: column-reverse;
    gap: 20px;}

  .mv__content.inner {
  padding-left: 0;
}
  .mv__article {
    position: static;
    max-width: 100%;
    left:0;
    transform: translateY(0%);
  }
  .mv__title {
    text-align: center;
    max-width: 100%;
    left: 0;
    
  }
  .mv__title .mv__title-en {
    font-size: var(--fz48);
    line-height: 1.2;
    padding-left: 30px;
  }

  .mv-post__category {
    font-weight: 800;
  }
  .mv__bg {
    width: 100%;
    border-top-left-radius: 150px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 150px;
    border-bottom-left-radius: 25px;

  }
  .mv-post__content {
    display: block;
  }

  .mv-post__title-contents, .mv-post__bg {
    width: 100%;
  }


  .footer__content {
    flex-direction: column;
  }
  .footer__items {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .footer__item {
    padding: 10px 0;
    border-top: solid 1px var(--cl-bg-primary);
  }
  .footer__title a {
    display: block;
    transition: letter-spacing 0.3s ease;
  }
  .footer__title a:hover {
    letter-spacing: 1em;
  }
  .footer__ul {
    display: none;
  }
  .btn {
  padding: 5px 10px 10px;
  border-radius: 50em;
  text-align: center;
  font-size: var(--fz20);
  line-height: 1;
}
  .btn-sp {
    display: inline-block;
  }
  .template-contact {
  padding-top: 20px;
  padding-bottom: 20px;
}

  .template-contact__content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .template-contact__item {
    width: 100%;
  }

  .template-contact__item:first-of-type{
  border-right: 0px;
}
  
  .company-dl,.history-dl {
    flex-direction: column;
  }
  .company-dl dt,.company-dl dd,
  .history-dl dt,.history-dl dd {
    width: 100%;
  }
	.no-news {
	height: 100px;
}


}
/* se用 */
@media screen and (max-width: 400px) {
  .number,
  .mail__address {
    font-size: var(--fz24);
  }
}

