@charset "utf-8";

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}


/*===================================================
	1-1. Font (Yahoo UI Library Fonts CSS)
===================================================*/

body {
	font-size: 12px;
	font-size: small;
	font: x-small;
	font-family: "Noto Sans JP", sans-serif;
}

table {
	font-size: inherit;
}

select, 
input, 
textarea {
	font: 99% arial,helvetica,clean,sans-serif;
}

pre, 
code {
	font: 115% monospace;
	font-size: 100%;
}
a {
	text-decoration:none;
}

/*===================================================
					共通CSS
===================================================*/

#ccBOx {
	width: 100%;
/*	background-color: #d0cece;*/
	padding-top: 140px;
	padding-bottom: 5%;
	text-align: center;
	align-items: center;
}

@media screen and (max-width: 980px) {
#ccBOx {
	width: 100%;
	padding-top: 0px;
	padding-bottom: 5%;
}
}

/*@import url("https://p.typekit.net/p.css?s=1&k=izc7peq&ht=tk&f=60838&a=87929704&app=typekit&e=css");

@font-face {
font-family:"century-gothic-std";
src:url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:1,200..500;font-stretch:normal;
}*/

/*===================================================
					オリジナル CSS
===================================================*/

/*要素を全画面に広げる*/
:root {

  --vw: 1vw;

}

/*要素を全画面に広げる*/
.care_contents {

              position:relative;

              width: calc( var(--vw) * 100 );

              left:50%;

              transform: translate(-50%, 0%);

              -webkit-transform: translate(-50%, 0%);

              -ms-transform: translate(-50%, 0%);

              overflow: hidden;

              background-color:#fff;

              color: #1c2743;

              


}

/*スクロール時にフェードイン*/
.scroll-block {
    transform: translateY(100px);
    transition: all 1.5s;
    opacity: 0;
    
}

.blockIn {
    transform: translateY(0px);
    opacity: 1;
}

.main-area {
  width: 100%;
  margin: 10% auto;
              color: #1c2743;
              font-family: "hiragino-kaku-gothic-pron","century-gothic-std",sans-serif;
}

.mainbanner {
  width: 70%;
  margin: 0 auto 5% auto;
}

.mainbanner .titleImg_sp{
  display: none;
}

.mainbanner .titleImg_pc{
    width:100% ;
    margin:0 auto ;
}

.mainbanner .titleImg_pc img {
  width: 100%;
}

.concept-title {
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 3% auto;
}

.concept-title h1 {
  font-size: 170%;
  font-weight: 700;
  letter-spacing: 2px;
}

.concept-span {
  width: 100%;
  display: block;
  text-align: center;
  margin: 5% auto;
}

.concept-span span {
  font-size: 110%;
  font-weight: 300;
  line-height: 180%;
}

.concept-span1 {
  width: 100%;
  display: block;
  text-align: center;
  margin: 3% auto 7% auto;
}

.concept-span1 span {
  font-size: 110%;
  font-weight: 300;
  line-height: 180%;
}

.careflow {
  background-color: #F7F3EA;
  padding: 3% 0;
  margin: 5% auto;
}

.lead b{ font-weight:500; color:var(--ink); }
 
  .flow-label{
    text-align:center;
    font-size:  170%;
    font-weight: 700;
    letter-spacing:2px;
    position:relative;
    margin: 2% auto 3% auto ;
  }
  .flow-label span{
    padding:0 22px;
    position:relative;
    z-index:1;
  }

  .steps{
    width: 70%;
    margin: 0 auto 3% auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:0;
    position:relative;
  }
  .steps::before{
    content:"";
    position:absolute;
    top:26px;
    left:60px;
    right:60px;
    height:0;
    border-top:1px dashed #6B6F7C;
    z-index:0;
  }
  .step{
    padding:0 3%;
    text-align:center;
    position:relative;
    z-index:1;
  }
/* 円本体 */
.step .num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1c2743;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  margin: 0 auto 3% auto;
  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* 中のリンク文字 */
.step .num a,
.step .num a:link,
.step .num a:visited {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 50%;
}

/* ホバーでふわっと浮く */
.step .num:hover {
  transform: translateY(-6px);
  background-color: #1c2743;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

/* クリック時 */
.step .num:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* キーボード操作時 */
.step .num a:focus-visible {
  outline: 3px solid #7aa7ff;
  outline-offset: 4px;
}

.step h3{
    font-weight:600;
    font-size: 150%;
    letter-spacing:2px;
    margin: 0 auto 3% auto;
    line-height: 180%;
  }
  .step p{
    width: 80%;
    text-align: center;
    margin: 0 10%;
    font-size:110%;
    line-height:1.9;
    color:#6B6F7C;
    font-weight:300;
  }

  .background_ct {
    width: 75% ;
    margin: 0 auto 5% auto;
    padding: 3% 0;
    /*background-color: #F7F3EA;*/
    display: block;
    align-items: center;
  }

  /**横長写真１/商品名（タイトル）/テキストの構図**/

.itemBox {
	width: 100%;
}

.itemBox .itemBox-title {
  text-align: center;
	width: 60%;
	margin: 0 20% 2% 20%;
}

.itemBox .itemBox-title h1 {
  font-size: 180%;
  font-weight: 600;
}

.itemBox .itemBox-picture img {
	width: 60%;
	max-width: fit-content;
	display: block;
	margin:0 auto 2% auto ;
}

.itemBox-text {
  text-align: center;
	width: 60%;
	margin: 0 20% 5% 20%;
}
.itemBox-text span {
	font-size: 100%;
}

/**画像横並び３つ/各画像下にテキストの構図**/
.wideList3 {
	width: 100%;
}

.item_container{
	width: 70%;
	max-width: fit-content;
	display: grid;
	grid-template-columns: repeat(3, 1fr);/**画像二つの時は(2,1fr)に修正**/

	column-gap: 5%;
	margin: 0 auto 5% auto;
}

.item_container .container_item02 img {
	width: 100%;
	max-width: fit-content;
	margin-bottom: 5%;
}

.wideList3-text02 {
	display: flex;
	width: 90%;
	margin: 0 auto 5% auto;
}

.wideList3-text02 span {
	font-size: 100% ;
    font-family: "century-gothic-std",sans-serif;
	text-align: left;
}

.reco-item {
  display: flex;
  width: 50%;
  margin: 0 auto;
  justify-content: center;
}

.stepBox {
	width: 100%;
	font-size: 14px;
	margin-bottom: 10%;
}
.step1 {
	background-color: #f5f5f5;
	padding: 10%;
}
.stepTitle {
	text-align: center;
	margin-bottom: 6%;
	font-size: 18px;
	border: 1px solid #636363;
	width: 44%;
	margin-left: 28%;
	padding: 1% 0;
}
video {
	width: 64%;
	margin-left: 18%;
}
.step2 {
	padding: 10%;
}
.step2 .stepTitle {
	text-align: center;
	margin-bottom: 6%;
	font-size: 18px;
}
.step2 .stepImg_pc {
	display: block;
	width: 60%;
	margin-left: 20%;
	margin-bottom: 2%;
}
.step2 .stepImg_sp {
	display: none;
}
.stepTxt {
	width: 60%;
	margin-left: 20%;
	font-size: 16px;
	margin-bottom: 5%;
}
.pointBox {
	width: 60%;
	margin-left: 20%;
}
.pointBox .pointlogo {
	font-size: 16px;
}
.stlist {
	width: 60%;
	margin-left: 20%;
	font-size: 16px;
	margin-bottom: 5%;
}
.stlist li {
	list-style: decimal;
	margin-left: 3%;
}
.stepTxt2 {
	width: 60%;
	margin-left: 20%;
	font-size: 16px;
	margin-bottom: 2%;
}
.stepTxt3 {
	text-align: center;
	font-size: 16px;
	margin-bottom: 5%;
}

.video iframe {
  width: 50%;
  height: 420px!important;
  margin-bottom: 10%;
}
.videoBox {
	text-align: center;
}
.videoBox .titleBox {
	margin-bottom: 3%;
	font-size: 16px;
}
.videoBox .titleBox .videoTitle {
	margin-bottom: 3px;
	font-weight: 600;
}
.videoBox .titleBox .videodetail {
	font-size: 14px;
}

  .blockTT {
    padding:0 3%;
    text-align:center;
    position:relative;
    z-index:1;
    margin: 12% auto 3% auto;
  }

  .blockTT span {
    font-weight:700;
    font-size: 150%;
    letter-spacing:2px;
    line-height: 180%;
}


/*===================================================
				商品一覧挿入時
===================================================*/

.item-card {
  width: 90%;
  margin: 0 5% 5% 5%;
  text-align: center;
  position: relative;
}

/*===================================================
					Footer CSS
===================================================*/
.copy {
	width: 100%;
	background-color: #153e35;
	position: absolute;
}
.copy .c_text {
	color: #ffffff;
	padding: 1%;
	text-align: center;
}
/*===================================================
			戻るボタン　CSS
===================================================*/

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #1c2743;
    color: #1c2743;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 1;               /* 初期状態は非表示 */
    transform: translateY(10px); /* お好みで、少し下から出てくる演出 */
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
}

.pagetop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pagetop:hover {
  background-color: #fff;
  transform: translateY(-5px); /* ホバー時に少し持ち上げる */
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #1c2743;
    border-right: 3px solid #1c2743;
    transform: translateY(20%) rotate(-45deg);
}
/*===================================================
スマホ表示用調整
===================================================*/

@media screen and (max-width: 980px) {

.mainbanner {
  width: 100%;
}

.mainbanner .titleImg_sp{
  display: block;
  width:100% ;
  margin:0 auto ;

}

.mainbanner .titleImg_pc{
  display: none;
}

.mainbanner .titleImg_sp img {
  width: 100%;
}
.concept-title {
  margin-top: 15%;
}
.concept-span1 {
  width: 75%;
  text-align: justify;
  margin-bottom: 15%;
}
  .flow-label{
    margin: 5% auto ;
  }
  .steps{
    width: 90%;
    grid-template-columns:repeat(2, 1fr);
    gap: 5% 0;
    margin-bottom: 15%;
  }
  .steps::before{
    border-top:none;
  }
.step .num {
  margin: 0 auto 3% auto;
}

/* 中のリンク文字 */
.step .num a,
.step .num a:link,
.step .num a:visited {
  font-weight: 500;
}

.step h3{
    font-weight:600;
    font-size: 130%;
  }
  .step p{
    width: 90%;
    text-align: justify;
    margin: 0 5%;
    font-size:110%;
    line-height: normal;
  }

  /**横長写真１/商品名（タイトル）/テキストの構図**/

.itemBox {
	width: 100%;
}
.itemBox .itemBox-title {
	width: 80%;
	margin: 0 10% 2% 10%;
}
.itemBox .itemBox-title h1 {
  font-size: 160%;
  font-weight: 600;
}
.itemBox .itemBox-picture img {
	width: 100%;
}
.itemBox-text {
  text-align: justify;
	width: 90%;
	margin: 5%;
}
.item_container{
	width: 100%;
	max-width: fit-content;
	display: block;
	column-gap: 5%;
}
.item_container .container_item02 img {
	width: 100%;
}
.wideList3-text02 {
	display: flex;
	width: 90%;
}
.wideList3-text02 span {
	text-align: justify;
}
.reco-item {
  display: flex;
  width: 75%;
  margin: 0 auto;
  justify-content: center;
}

.stepTitle {
	margin-bottom:initial;
	font-size: 18px;
	width: 65%;
	margin-left: initial;
  margin: 5% auto;
	padding: 3%;
}
video {
	width: 90%;
	margin-left: initial;
  margin: 2% auto;
  display: flex;
  justify-content: center;
}
.step2 .stepTitle {
	font-size: 15px;
  width: 88%;
    word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;

}
.step1 .stepTitle {
	font-size: 15px;
  width: 88%;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
.blockTT {
    word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}
}