/************ メインアンカーリンク ****************/
.main_anchor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 60px auto;
    max-width: 1200px;
}
.main_anchor a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--fz18);
    text-align: center;
    padding: 25px 25px;
    background: #77D1D1;
    border-radius: 10px;
    width: calc((100% - 30px) / 4);
    box-sizing: border-box;
	line-height: 1.4;
}
/* 偶数番目 */
.main_anchor a:nth-child(even) {
    background: #7CBEDB;
}
.main_anchor a::after {
    content: '\f078';
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #fff;
    line-height: 1;
	font-size: var(--fz16);
}
/************ ボタン ****************/
.arw_btn {
    max-width: 325px;
    width: 60%;
    margin: 30px auto 80px;
    font-family: "Zen Maru Gothic", serif;
    text-align: center;
}
.arw_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1em;
    color: #4A2212;
    font-size: var(--fz19);
    border-radius: 5px;
    border: 1.5px solid #4A2212;
    transition: all .3s ease;
	box-sizing: border-box;
}
.arw_btn .arw, .btn_link .arw {
    position: absolute;
    top: 50%;
    right: 0.7em;
    display: block;
    width: 1.3em;
    transform: translateY(-50%);
}
.arw_btn.mini-can_btn .arw {
    right: 2.7em;
}
.arw_btn .arw::before, .btn_link .arw::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #4A2212;
}
.arw_btn .arw::after, .btn_link .arw::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 7px;
    height: 7px;
    background: #4A2212;
    border-radius: 50%;
    transform: translateY(-50%);
}
	
.arw_btn.mini-can_btn .arw::before {
    background: #fff;
}
.arw_btn.mini-can_btn .arw::after {
    background: #fff;
}
/************ タブごとの「商品を見る」ボタン色設定 ****************/
/* tab1（～¥1,000）: 青緑系 */
.tab1 .b_btn {
    background-color: #4ABDC2;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.tab1 .b_btn:hover {
    background-color: #3a9fa4;
    opacity: 0.9;
}
/* tab2（¥1,001～¥3,000）: 青系 */
.tab2 .b_btn {
    background-color: #4A9DC2;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.tab2 .b_btn:hover {
    background-color: #3a7fa4;
    opacity: 0.9;
}
/* tab3（¥3,001～）: 紺系 */
.tab3 .b_btn {
    background-color: #4A78C2;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.tab3 .b_btn:hover {
    background-color: #3a5aa4;
    opacity: 0.9;
}
/************ タブ切り替え ****************/
.tabs {
    margin-top: 50px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
}
/*タブのスタイル*/
.tab_item {
    width: calc((100% - 10px) / 3);
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-weight: 500;
    font-size: var(--fz25);
    text-align: center;
    display: block;
    float: left;
    transition: all 0.2s ease;
    height: auto;
    padding: 15px 0 18px;
	box-sizing: border-box;
}
.tab_item:hover {
    opacity: 0.75;
}
.tab_item.tab1 {
    background-color: #4ABDC2;
}
.tab_item.tab2 {
    background-color: #4A9DC2;
}
.tab_item.tab3 {
    background-color: #4A78C2;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    clear: both;
    overflow: hidden;
	background: #fff;
}
/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content, #programming:checked ~ #programming_content, #design:checked ~ #design_content {
    display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background-color: #fff;
    color: #227DBF;
}
/************ タブ切り替え（中身） ****************/	
.tab_content_description p {
    padding: 50px 0 20px;
    font-size: var(--fz18);
    width: 90%;
    margin: 0 auto;
}
.tab_content_description .pic {
    padding: 20px 40px;
    width: auto;
}
.tab_content_description .pic > div {
    padding: 10px;
}
.tab_content_description .p_title {
    border-bottom: none;
    font-size: var(--fz18);
    text-align: left;
}
.tab_content_description .b_price {
    font-size: var(--fz22);
}
.tab_content_description .b_price span {
    font-size: var(--fz14);
    font-weight: normal;
}
.tab_content_description .pic_box a .b_btn {
    color: #fff;
    width: 80%;
}
.tab1 .tab_content_description .pic_box a li.b_btn {
    background-color: #4ABDC1;
}
.tab2 .tab_content_description .pic_box a li.b_btn {
    background-color: #4A9DC2;
}
.tab3 .tab_content_description .pic_box a li.b_btn {
    background-color: #4A78C2;
}
.tab_content_description .btn_more img {
    width: 30%;
    padding: 20px 0 50px;
    display: block;
    margin: 0 auto;
}
.sp_anchor_link {
    display: none;
}
/**************css追加*****************************/
html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/************ PC、SP画像切り替え ****************/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/************ メイン画像 ****************//*残す*/
.summer-gift2026_main img {
    width: 100%;
}
.summer-gift2026_main01 img {
    width: 80%;
    margin: 0 auto;
}
/************ タイトル ****************/
.summer-gift2026_box {
    text-align: center;
}
.m_title {
    font-size: var(--fz37);
    color: #227DBF;
    text-align: center;
    padding: 70px 0 35px;
	line-height: 1;
}
.m_title img{
    width: clamp(70px, 5.2vw, 100px);
}
#rank .m_title {
    padding: 90px 0 25px;
}
.m_title.intro {
    color: #227DBF;
    letter-spacing: 0.05em;
    font-size: var(--fz36);
}
.m_title p {
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.subtitle {
    font-size: var(--fz27);
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
    color: #47B2C4;
    margin: 110px 0 30px;
}
.m_box_3 .subtitle {
    margin: clamp(70px, 4vw, 90px) 0 30px;
}
.subtitle span {
    font-size: var(--fz21);
    letter-spacing: 0.03em;
}
.m_text {
    font-size: var(--fz20);
    text-align: center;
    line-height: 2.5;
    letter-spacing: 0.02em;
}
/************ ランキング ****************/
.m_box_4 {
    padding: 0 5% 0;
    margin: 0 0 60px;
}
.pic_box {
    position: relative;
}
.ranking-icon {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: var(--fz20);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 0.4em; /* 数字の位置微調整 */
    z-index: 10;
}
.rank-1 {
    background: url(https://gigaplus.makeshop.jp/agemochiya/img/figure_ribon1.png) center center/contain no-repeat;
}
.rank-2 {
    background: url(https://gigaplus.makeshop.jp/agemochiya/img/figure_ribon2.png) center center/contain no-repeat;
}
.rank-3 {
    background: url(https://gigaplus.makeshop.jp/agemochiya/img/figure_ribon3.png) center center/contain no-repeat;
}
.rank-4 {
    background: url(https://gigaplus.makeshop.jp/agemochiya/img/figure_ribon4.png) center center/contain no-repeat;
}
/* 3カラム */
.pic {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
    text-align: center;
    justify-content: flex-start;
    gap: 15px;
}
.pic > div {
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    flex: 1 1 calc((100% - 30px) / 3);
	box-sizing: border-box;
}
	
.series_box .pic > div {
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    width: calc((100% - 30px) / 3);
	box-sizing: border-box;
	flex: unset;
}
/************ 限定セット ****************/
.m_box_1 {
    background-color: #FFF2ED;
    padding: 0 6% 7%;
    margin-bottom: 100px;
    border-radius: 10px;
}
.item01_1 > .box02 {
    display: flex;
    gap: clamp(20px, 5vw, 100px);
    align-items: center;
    padding-bottom: clamp(50px, 3.8vw, 80px);
}
.item01_1 > .box02:last-child {
    padding-bottom: 0;
}
.box02 img {
    width: 50%;
    border-radius: 10px;
}
.box02.reverse {
    flex-direction: row-reverse;
}
.summer-gift2026_box p.name1 {
    font-size: var(--fz36);
    line-height: 1.5;
    margin-bottom: clamp(5px, 1.6vw, 10px);
	margin-left:-1rem;
}
.name1 span {
    font-size: var(--fz25);
}
.summer-gift2026_box p.name2 {
    font-size: var(--fz17);
    line-height: 1.8;
    padding: 20px 0 15px;
    letter-spacing: 0.03em;
}
p.price {
    font-size: clamp(2.7rem, 2.14vw, 3.2rem);
    border-bottom: dotted 2px;
    padding-bottom: 15px;
	line-height: 1.25;
	margin: 0;
}
p.price span {
    font-size: var(--fz21);
}
p.price span.small-text {
    font-size: clamp(1.7rem, 1.5vw, 2.3rem);
    padding-left: 5px;
}
span.small-text.price-unit {
    font-size: var(--fz20);
}
.mini-can_box p.price {
    font-size: clamp(2.1rem, 1.9vw, 2.8rem);
    font-family: "Noto Sans JP";
}
.mini-can_box p.price span {
    font-size: var(--fz16);
    padding-left: 5px;
}
.txt {
    text-align: left;
}
p.txt1 {
    font-size: var(--fz18);
    padding-top: 25px;
    line-height: 1.85;
    letter-spacing: 0.04em;
	padding-top: 15px;
}
.btn {
    background-color: #217DBF;
    border-radius: 100px;
    padding: 10px;
    width: 60%;
    margin: 0 auto;
    font-family: "Noto Sans JP";
    font-size: var(--fz14);
    text-align: center;
    margin-top: 40px;
    opacity: 1;
    transition: opacity 0.3s ease;
    color: #fff !important;
}
.mini-can_summer {
	display: flex;
	border-radius: 10px;
    gap: 8%;
	align-items: center;
	}
	.mini-can_summer img{
	width: 50%;
	}
h4.cate_tit{
	font-size: var(--fz36);
	color: #227DBF;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
	}
#series2 .series_box:not(:last-child) {
  margin-bottom: 100px;
}
.series_box p.txt1 {
    font-size: var(--fz23);
    padding-top: 0;
    line-height: 1.85;
    letter-spacing: 0.04em;
}
.series_about {
	display: flex;
	gap: 4%;
	}
.series_about img{
	width: 50%;
	border-radius: 10px;
	}
.about_txt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    flex: 1;
}
/* 左上の波 */
.about_txt::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 40px;
    background: url("https://gigaplus.makeshop.jp/agemochiya/img/2026summer-gift/wave.webp") no-repeat center / contain;
}
/* 右下の波 */
.about_txt::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 40px;
    background: url("https://gigaplus.makeshop.jp/agemochiya/img/2026summer-gift/wave.webp") no-repeat center / contain;
}
.m_box_3 .s_item_pic{
	margin-top: 70px;
	}
.mini-can_cont{
	display: flex;
    max-width: 1120px;
    margin: 6vw auto 0;
    gap: 5%;
    row-gap: 40px;
    justify-content: space-between;
	}
.mini-can{
	margin-bottom: 10%;
	}
/************ 3set ****************/
.item01_2 {
    background-color: #F7E4D9;
    margin: 70px 0;
}
p.item01_2_title {
    font-size: 2.2rem;
    text-align: center;
    padding-top: 40px;
}
/************ 単品 ****************/
.m_box_5 {
    border-radius: 10px;
}
.m_box_3 {
	border-radius: 0 0 10px 10px;
    background-color: #EBF2F1;
    padding: 3% 5% 7%;
}
.m_box_5 {
    margin-top: 130px;
    background-color: #FAF7E3;
    padding: 0 6% 7%;
}
/************ ミニ缶 ****************/
.mini_text {
    font-size: var(--fz21);
    margin: 10px 0 5px;
}
/************ チャーム ****************/
.mini-can {
}
.mini-can_box {
    flex: 1 1 calc((100% - 10%) / 3);
    box-sizing: border-box;
}
.mini-can_box img {
    width: 90%;
    display: block;
	max-width: 280px;
    margin: 0 auto;
}
.summer-gift2026_box p.name {
    text-align: center;
    font-size: var(--fz21);
    line-height: 1.6;
}
.mini-can_box .price {
    border-bottom: none;
    text-align: center;
}
.mini-can_box .btn {
    width: 90%;
    margin-top: 10px;
	max-width: 260px;
	padding: 12px;
	width: 75%;
}
.mini-can_box .btn a {
    color: #fff;
}
.mini-can_btn {
	font-family: "Zen Maru Gothic", serif;
    background-color: #F2B33D;
    border-radius: 5px;
    width: 80%;
    margin: 7% auto 0;
    font-size: var(--fz20);
    text-align: center;
    max-width: 510px;
    letter-spacing: 0.06em;
}
.mini-can_btn a {
    display: block;
    color: #fff !important;
    text-decoration: none;
	border: 0;
}
p.cont {
	text-align: left;
	margin: 65px auto;
	width: 90%;
	}
.mini-can_des{
  max-width: 1020px;
    width: 100%;
    display: flex;
    margin: 0 auto;
}
.mini-can_des_cont{
  display:flex;
  justify-content:space-between;
  gap:10%;
  margin-left: auto;
  width: 95%;
}
.mini-can_item{
  position:relative;
  width:50%;
  padding: 2vw 2vw 2vw 5vw;
  background:#fff;
  border-radius:10px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.mini-can_item img{
  position: absolute;
    left: 0%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    width: clamp(80px, 6.77vw, 130px);
    height: auto;
}
.mini-can_text{
  color:#2b79bd;
  text-align: left;
}
.mini-can_text .ttl{
  margin:0 0 clamp(8px, 1.04vw, 20px);
  font-size:var(--fz28);
  line-height:1.2;
  letter-spacing: 0.02em;
}
.mini-can_text .txt{
  margin:0;
  font-size:var(--fz16);
  line-height:2;
  letter-spacing: 0.04em;
}
.mini-can_main{
  background: #BFE3F8;
  border-radius: 10px;
  padding: 5% 5% 7%;
  box-sizing: border-box;
	}
	
/************ シリーズ ****************/
/* Series */
.series {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  padding:60px clamp(30px, 3.125vw, 60px) 140px;
  position:relative;
  overflow:hidden;
  background:#FAF7E3;
}

.m_box_3 + .series {
  margin-top: 100px;
}
.series-wave{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:70px;
  line-height:0;
}
.series-wave svg{
  display:block;
  width:100%;
  height:100%;
}
.series-wave path{
  fill:#EBF2F1;
}
.series_cont{
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* 左側クッキーグループ */
.cookie01 {
  grid-column: 1;
  grid-row: 1;
}

.cookie02 {
  grid-column: 1;
  grid-row: 2;
}

.cookie03 {
  grid-column: 1;
  grid-row: 3;
}

/* 中央テキスト */
.series_cont {
  grid-column: 2;
  grid-row: 1 / 4;
}

/* 右側クッキーグループ */
.cookie04 {
  grid-column: 3;
  grid-row: 1;
}

.cookie05 {
  grid-column: 3;
  grid-row: 2;
}

.cookie06 {
  grid-column: 3;
  grid-row: 3;
}

.series_label{
  color: #227DBF;
  font-size: var(--fz21);
  letter-spacing: .15em;
}
.series_num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: #227DBF;
  color: #fff;

  font-size: var(--fz29);
  font-weight: 400;
  letter-spacing: .15em;
}
/* title */

.series_tit{
  color: #2b7ec1;
  font-size: var(--fz40);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.series_tit span{
  display: block;
  margin-top: 7px;
  font-size: var(--fz18);
  letter-spacing: .2em;
}
/* text */
.series_txt{
  margin-top: 40px;
  color: #4A2212;
  font-size: var(--fz18);
  line-height: 2.5;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.series_cont {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 30px;
}
/* クッキー共通 */

.series_cookie{
  position: relative;
  z-index: 1;
}
.series_cookie img{
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,.12));
}
/* PC配置（grid使用） */

.cookie01,
.cookie02,
.cookie03,
.cookie04,
.cookie05,
.cookie06 {
    width: clamp(80px, 5.73vw, 110px);
    height: auto;
}
.cookie01 {
    transform: translateX(30px);
}

.cookie02 {
    transform: translateX(-35px);
}

.cookie03 {
    transform: translateX(0);
}
	
.cookie04 {
    transform: translateX(-20px);
}

.cookie05 {
    transform: translateX(25px);
}

.cookie06 {
    transform: translateX(-15px);
}
	
.series02 {
  position: relative;
}
.series02 .series_img {
  position: absolute;
  z-index: 1;
  width: clamp(200px, 16vw, 240px);
}
.series02 .series_img img {
  display: block;
  width: 100%;
  height: auto;
}
.series02 .series_img-left {
  left: 5%;
  top: 45%;
  transform: translateY(-50%);
}
.series02 .series_img-right {
  right: 5%;
  top: 45%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1700px) {
.series02 .series_img-left {
  left: 3%;
  top: 35%;
  transform: translateY(-50%);
}
.series02 .series_img-right {
  right: 3%;
  top: 35%;
  transform: translateY(-50%);
}
}
@media only screen and (max-width: 1140px) {
.series02 .series_img-left {
  left: 2%;
  top: 30%;
}
.series02 .series_img-right {
  right: 2%;
  top: 30%;
}
}
@media only screen and (max-width: 1000px) {
.series02 .series_img {
    width: clamp(150px, 16vw, 240px);
}
}
.series02 .series_cont {
  position: relative;
  z-index: 2;
}
/************ おすすめ ****************/
.pic_box .p_title {
    font-size: var(--fz18);
    font-family: var(--noto);
    text-align: left;
    padding: 10px 0;
    display: inline-block;
    line-height: 3.5rem;
}
.pic_box img {
    width: 80%;
    border-radius: 10px;
}
.pic_box a .b_btn {
    background-color: #217DBF;
    border-radius: 100px;
    padding: 12px 10px;
    color: #fff;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: "Noto Sans JP";
    font-size: var(--fz14);
	max-width: 260px;
	box-sizing: border-box;
}
.pic_box .b_price {
    font-size: var(--fz24);
    font-family: "Noto Sans JP";
    text-align: center;
}
.pic_box .b_price .item {
    white-space: nowrap;
	display: inline-block;
}
.pic_box .b_price span {
    font-size: var(--fz14);
    padding-left: 10px;
}
.pic_box .b_price span.small-text {
    font-size: var(--fz13);
}
p.mini-can_label {
    text-align: center;
    font-size: var(--fz21);
	line-height: 1.5;
}
.mini-can_label{
    position: relative;
    display: inline-block;
    color: #227DBF;
    font-size: var(--fz30);
    line-height: 1.8;
    text-align: center;
}
/* 左線 */
.mini-can_label::before{
    content: "";
    position: absolute;
    left: calc(100% + 12px);
    top: 65%;
    width: 1.5px;
    height: 80%;
    background: #227DBF;
    transform: translateY(-50%) rotate(25deg);
}
/* 右線 */
.mini-can_label::after{
    content: "";
    position: absolute;
    right: calc(100% + 12px);
    top: 65%;
    width: 1.5px;
    height: 80%;
    background: #227DBF;
    transform: translateY(-50%) rotate(-25deg);
}
.gift_wrap {
    margin: 50px 0 0;
    font-family: var(--noto);
    letter-spacing: 0.02em;
	text-align: left;
}
.head_orange {
    font-family: var(--zenmaru);
    letter-spacing: 0;
}
p.gift-txt {
    font-size: var(--fz20);
    line-height: 1.6;
}
p.gift-txt.attention {
    margin: 10px 0 35px;
    font-size: var(--fz15);
    line-height: 2;
}
.gift_block {
    margin: 25px 0 0;
    padding: 30px;
    background-color: #F5F1DC;
	border-radius: 10px;
}
p.gift_block_tit {
    font-size: var(--fz20);
    font-weight: 500;
    padding: 0 0 5px 0 !important;
    border-bottom: dotted 1px #999;
}
.gift_block_txt {
    line-height: 1.8;
    margin-top: 15px;
}
.about_noshi {
    display: flex;
    gap: clamp(30px, 4vw, 40px);
}
.about_noshi_item {
    display: flex;
    gap: clamp(25px, 3vw, 35px);
	margin: 30px 0 0;
	align-items: center;
}
p.about_noshi_tit {
    font-size: var(--fz18);
    font-weight: 500;
}
p.about_noshi_txt {
    font-size: var(--fz14);
    margin: 10px 0 0;
}
.gift_cont {
    width: 95%;
	margin: 0 auto;
}
	
.about_noshi_item img {
    width: 45%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.about_noshi_cont {
    width: 45%;
}
	
.gift_cont .gift_bnr img {
	border-radius: 10px;
	margin: 35px 0 0;
	max-width: 500px;
	width: 100%;
	}
	
.gift_block_li {
    margin: 10px 0 0;
}
/**************css追加*****************************/


/* =====================================================
   レスポンシブ対応 (@media) ｜ ブレークポイント降順
   1200px → 1020px → 800px → 768px → 750px → 400px
   ===================================================== */

/* ---------- max-width: 1200px ---------- */

@media screen and (max-width: 1200px) {
    .pic > div {
        flex: 0 0 calc(50% - 7.5px);
        padding: 20px;
    }
	.pic {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 1200px) {
    .mini-can_cont {
        justify-content: flex-start;
		flex-wrap: wrap;
    }

    .mini-can_box {
        flex: 0 0 calc((100% - 5%) / 2);
    }
.box02 {
    flex-wrap: wrap;
    margin: 0 auto;
}
.box02 img {
    width: 100%;
}
.mini-can_box .price {
    padding-top: 10px;
    line-height: 2.5rem;
}
.mini-can {
    gap: 30px;
	row-gap: 50px;
}
}
	
@media only screen and (max-width: 1430px) {
	.width1430{
		display: none;
	}
}

	
@media only screen and (max-width: 1400px) {
  .cookie01 {
    transform: translateX(30px);
  }

  .cookie02 {
    transform: translateX(-15px);
  }

  .cookie03 {
    transform: translateX(0);
  }
	
  .cookie04 {
    transform: translateX(-20px);
  }	
	
  .cookie05 {
    transform: translateX(15px);
  }	
	
  .cookie06 {
    transform: translateX(-15px);
  }	
}

/* ---------- max-width: 1020px ---------- */
@media only screen and (max-width: 1020px) {
.summer-gift2026_main01 img {
    width: 100%;
}
.item01_1 > .box02 {
    gap: clamp(20px, 4vw, 100px);
    padding-bottom: clamp(50px, 6vw, 80px);
}
.about_noshi_item {
    flex-direction: column;
	gap: 15px;
}
.about_noshi_item img {
    width: 100%;
}
.about_noshi_cont {
    width: 100%;
}
}

/* ---------- max-width: 800px ---------- */
/************ sp ****************/
@media only screen and (max-width: 800px) {
.main_anchor {
    margin: 50px auto 0;
}
.main_anchor a {
    width: calc((100% - 10px) / 2);
    padding: 20px 20px;
    font-size: 1.4rem;
  }
  .main_anchor a::after {
    right: 10px;
  }
.arw_btn {
    margin: 10px auto 60px;
	width: 90%;
}
.sp_anchor_link {
    display: flex;
    justify-content: center;
    gap: 3px;
}
.sp_anchor_link > li > a {
    color: #fff;
    background-color: #EA7EA2;
    text-decoration: none;
    display: inline-block;
    font-family: "Zen Maru Gothic", serif;
    padding: 15px;
    line-height: 2rem;
    font-size: 13px;
}
.sp_anchor_link .dli-chevron-down {
    transform: translateX(40px) rotate(135deg);
}
.anchor_link {
    padding: 0;
    display: block;
}
.anchor_link > li > a {
    padding: 10px 5px;
    font-size: 13px;
    line-height: 1.8rem;
    border-radius: inherit;
    width: 100%;
    height: 65px;
    margin-bottom: 20px;
}
.dli-chevron-down {
    transform: translateY(22px) rotate(135deg);
    display: block;
    right: 45%;
}
.tab_item {
    font-size: var(--fz16);
    padding: 15px 1px 18px;
}
.tab_content_description .pic {
    padding: 20px 20px;
}
}

@media only screen and (max-width: 800px) {
.m_title img {
    width: 70px;
}
.m_text {
    line-height: 2;
    font-size: 1.6rem;
	text-align: left;
}
.m_title p {
    font-size: 2.8rem;
    line-height: 2;
}
.m_title {
    padding: 50px 0 20px;
}
.m_box_2 {
    padding: 0;
}
.m_box_3 {
    margin: 0 0 70px;
}
#series2.m_box_3 {
    margin: 0 0 30px;
	padding-top: 30px;
}
.m_box_4 {
    padding: 0;
	margin: 0 0 30px;
}
.m_box_5 {
    margin-top: 70px;
}
.item01_2 {
    margin-top: 40px;
    margin-bottom: 40px;
}
p.txt1 {
    line-height: 2;
    letter-spacing: 0;
}
.box02 img {
    width: 70%;
}
.item01_1 > .box02 {
    flex-direction: column;
    gap: 30px;
    margin-left: 0;
    margin-right: 0;
}
.item01_1 > .box02 img {
    width: 100%;
}
.item01_2 {
    margin-top: 40px;
    margin-bottom: 40px;
}
p.mini_text {
    font-size: 1.6rem;
}
.mini_text {
    margin: 5px 0 0px;
}
.mini-can_btn {
    width: 100%;
    margin-top: 40px;
}
.btn {
    margin-top: 30px;
}
.subtitle {
    font-size: var(--fz24);
    line-height: 1.8;
    letter-spacing: 0;
    margin: 70px 0 20px;
}
.subtitle span {
    font-size: var(--fz16);
}
.m_box_3 .subtitle {
    margin: clamp(60px, 4vw, 90px) 0 10px;
}
.pic_box img {
    width: 100%;
}
.pic_box a .b_btn {
    padding: 10px 10px;
}
.pic_box .p_title {
    line-height: 2.5rem;
}
.gift_block {
    padding: 20px;
}
}


/* SP */
@media (max-width: 768px){
.arw_btn.mini-can_btn .arw {
    right: 0.5em;
}
.arw_btn.mini-can_btn a {
    padding: 20px 25px;
}
.m_box_3 + .series {
    margin-top: 70px;
}
  .series{
    padding: 40px 0 70px;
  }

  .series-wave{
    height:30px;
  }
	
.series_label {
    font-size: 1.6rem;
}

  .series_tit{
    margin-top: 10px;
    font-size: 2.8rem;
  }
	
.series_tit span {
    font-size: 1.3rem;
}

  .series_txt{
    margin-top: 30px;
    font-size: 1.6rem;
    line-height: 2;
	text-align: left;
  }

  .series_num{
    width: 50px;
    font-size: 2.5rem;
  }

  .cookie01, .cookie02, .cookie03, .cookie04, .cookie05, .cookie06 {
    width: 60px;
  }

  .series02 .series_img{
    width: 20%;
	min-width: 100px;
  }

  .series02 .series_img-left{
    left: 5vw;
	top: 10vw;
    transform: none;
  }

  .series02 .series_img-right{
    right: 5vw;
    top: 10vw;
    transform: none;
  }
    .mini-can {
    padding-top: 30px;
    }
	
h4.cate_tit{
	font-size: 2.4rem;
	margin-bottom: 20px;
	}
	
.mini-can_summer img {
    width: 100%;
}
	
.mini-can_summer {
    flex-direction: column;
	gap: 20px;
}
	
p.cont {
    width: 100%;
	line-height: 2;
    margin: 40px auto;
	width: 100%;
}

  .mini-can_des_cont{
    flex-direction:column;
    gap:15px;
  }

  .mini-can_item{
    width:100%;
    min-height:auto;
    padding: 6vw 5vw 5vw 10vw;
  }

  .mini-can_item img{
    width:60px;
  }
.mini-can_text .ttl {
    font-size: 2rem;
	margin: 0 0 8px;
}
    .mini-can_label::before,
    .mini-can_label::after{
        width: 1px;
		top: 60%;
		height: 80%;
    }

.mini-can_text .txt {
    font-size: 1.5rem;
	line-height: 1.5;
}
	
.mini-can_cont {
    margin: 40px auto 0;
    flex-wrap: wrap;
	gap: 15px;
	row-gap: 40px;
}
.mini-can_box {
    flex: 0 0 calc(50% - 7.5px);
}
	p.mini-can_label {
    font-size: clamp(1.1rem, 0.7rem + 1vw, 1.4rem);
	line-height: 1.8;
	letter-spacing: -0.02rem;
}
	
	
.mini-can_label::before {
    left: calc(100% + 9px);
}

	
	
.mini-can_label::after {
    right: calc(100% + 9px);
}
	
.series_about {
    flex-direction: column;
    gap: 10px;
}
.series_about img {
    width: 100%;
}
	
.m_box_3 .s_item_pic {
    margin-top: 15px;
}
.series_box .pic > div {
    width: calc((100% - 20px) / 2);
	padding: 20px 20px 15px;
}
.pic_box a .b_btn {
    width: 100%;
}
.series_box p.txt1 {
    font-size: var(--fz21);
}
#series2 .series_box:not(:last-child) {
    margin-bottom: 60px;
}

}

/* ---------- max-width: 750px ---------- */
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc {
    display: none !important;
}
.sp {
    display: block !important;
}
}

/* ---------- max-width: 400px ---------- */
@media screen and (max-width: 400px) {
#rank .m_title {
    padding: 80px 0 20px;
}
.pic > div {
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
}
.pic {
    row-gap: 10px;
}
.pic_box .b_price {
    column-gap: 10px;
	font-size: var(--fz18);
}
.pic_box .b_price br {
    display: none;
}
.pic_box a .b_btn {
    max-width: 230px;
    padding: 10px;
	width: 100%;
}
.b_price .item + .item::before {
    content: none;
}
.pic_box .p_title {
        font-size: var(--fz16);
    }
	
.pic_box .b_price span {
    font-size: var(--fz14);
    padding-left: 5px;
}
.m_box_4 {
    padding: 0 0 0;
    margin: 0 0 80px;
}
.btn a {
    padding: 10px;
}
.mini-can_btn a {
    padding: 15px 20px;
}
.gift_wrap {
    margin: 40px 0 0;
}
p.gift-txt {
    font-size: var(--fz17);
    line-height: 1.6;
}
p.gift-txt.attention {
    font-size: var(--fz14);
	line-height: 1.8;
}
.gift_block {
    padding: 20px;
}
p.gift_block_txt {
    line-height: 1.6;
}
.about_noshi {
    gap: 20px;
}
.gift_cont .gift_bnr img {
    margin: 25px 0 0;
}
.gift_block {
    margin: 20px 0 0;
}
.item01_1 > .box02 {
    gap: 25px;
}
.about_noshi_item {
    margin: 20px 0 0;
}
.mini-can {
    gap: 10px;
    row-gap: 40px;
}
}

/* ---------- max-width: 768px (Series セクション スマホ対応) ---------- */
@media screen and (max-width: 768px) {
  .series {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 40px 20px 60px;
    max-width: 100%;
  }

  /* 左側クッキー */
  .cookie01, .cookie02, .cookie03 {
    grid-column: 1;
    width: 70px !important;
  }

  .cookie01 {
    grid-row: 1;
  }

  .cookie02 {
    grid-row: 2;
  }

  .cookie03 {
    grid-row: 3;
  }

  /* 中央テキスト */
  .series_cont {
    grid-column: 2;
    grid-row: 1 / 4;
	width: 100%;
	padding: 0;
  }

  /* 右側クッキー */
  .cookie04, .cookie05, .cookie06 {
    grid-column: 3;
    width: 70px !important;
  }

  .cookie04 {
    grid-row: 1;
  }

  .cookie05 {
    grid-row: 2;
  }

  .cookie06 {
    grid-row: 3;
  }

  .series_cont .series_label {
    font-size: 1.4rem;
  }

  .series_cont .series_num {
    width: 45px;
    aspect-ratio: 1;
    font-size: 2rem;
  }

  .series_cont .series_tit {
    font-size: 2.2rem;
  }

  .series_cont .series_txt {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
	    .series {
        gap: 0;
		padding: 40px 15px 60px;
    }
	    .cookie01, .cookie02, .cookie03 {
        grid-column: 1;
        width: 60px !important;
    }
	  .cookie04, .cookie05, .cookie06 {
    grid-column: 3;
    width: 60px !important;
  }
	.tab_content_description .pic_box a .b_btn {
    width: 100%;
}
}