@charset "UTF-8";

:root {
   --color-black: #2D2D2D;
   --color-white: #FFFFFF;
   --color-gray: #807E7B;
   --color-navy: #1D4984;
   --color-pink: #DBB7C3;
   --color-gold: #BD9E85;
}
* {
    box-sizing: border-box;
}
html {
    font-size: 10px;
}
body {
    font-family: "LINE Seed JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 0;
    width: 100%;
    overflow-x: hidden;
}
main {

}
a {
    text-decoration: none;
    color: var();
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
@font-face {
  font-family: 'Neura Display';
  src: url('../fonts//NeuraDisplayVariable[wght].ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
.neura {
    font-family: 'Neura Display', sans-serif;
    font-weight: 600;
    /* 太さを調整 (100-900) */
    text-transform: uppercase;
}
.DNPshuei {
    font-family: dnp-shuei-mincho-pr6n, sans-serif;
}
.gfsdidot {
    font-family: "GFS Didot", serif;
    font-weight: 400;
    font-style: normal;
}
.serif {
    font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}
.sp_br{
    display: none;
}
@media screen and (min-width: 768px) {
    .sp_br{
        display: block;
    }
}

/*============================
コンテンツ幅
============================*/
.wrapper {
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 1200px) {
    .wrapper {
        min-width: 1200px;
    }
}
@media screen and (max-width: 767px) {
    .wrapper {
        min-width: 0;
    }
}

/*============================
共通ボタン
============================*/
.top-more-btn {
  display: flex;
  flex-flow: column;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
}
/* テキストエリア */
.top-more-btn__text-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  margin-bottom: -0.4rem;
  padding-left: 0.4rem;
}
/* テキスト共通 */
.top-more-btn__text {
  position: absolute;
  left: 0.4rem;
  top: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
  white-space: nowrap;
}
/* 初期表示 */
.top-more-btn__text.is-front {
  transform: translateY(0);
  opacity: 1;
}
/* 下で待機 */
.top-more-btn__text.is-back {
  transform: translateY(110%);
  opacity: 0;
}
/* 矢印 */
.top-more-btn__icon {
  width: 11.8rem;
  height: auto;
  transition: transform .3s ease;
}
.disposable-btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 35.6rem;
  min-height: 8rem;
  padding: 1.6rem 6.4rem 1.6rem 9.2rem;
  border-radius: 999px;
  background-color: #16729D;
  box-shadow: 2px 4px 0 #063145;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.disposable-btn span {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
}
/* 左側：デバイス画像 */
.disposable-btn::before {
  content: "";
  position: absolute;
  left: 2.4rem;
  bottom: 0;
  width: 5.8rem;
  height: 12rem;
  background: url("../img/btn-parts-img.webp") center / contain no-repeat;
  z-index: 3;
  transition: transform .25s ease;
}
/* 右側：矢印 */
.disposable-btn::after {
  content: "";
  position: absolute;
  right: 2.8rem;
  top: 50%;
  width: 1.6rem;
  height: 1.6rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform .25s ease;
}
/* ホバー時：ボタン全体を影の分だけ下げる */

@media screen and (min-width: 768px) {
  .top-more-btn:hover .top-more-btn__text.is-front {
    animation: topTextOutUp .35s ease forwards;
  }
  .top-more-btn:hover .top-more-btn__text.is-back {
    animation: topTextInUp .35s ease forwards;
  }
  .top-more-btn:not(:hover) .top-more-btn__text.is-front {
    animation: topTextInUp .35s ease forwards;
  }
  .top-more-btn:not(:hover) .top-more-btn__text.is-back {
    animation: topTextOutUp .35s ease forwards;
  }
  .top-more-btn:hover .top-more-btn__icon {
    transform: translateX(10px);
  }
  .disposable-btn:hover {
	transform: translateY(4px);
	box-shadow: 0 0 0 #063145;
  }
  @keyframes topTextOutUp {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-110%);
      opacity: 0;
    }
  }
  @keyframes topTextInUp {
    from {
      transform: translateY(110%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

@media screen and (max-width: 767px) {
  .top-more-btn__text {
    font-size: 1.8rem;
  }
  .top-more-btn__icon {
    width: 8rem;
  }
  .disposable-btn {
    max-width: 100%;
    min-height: 7.2rem;
    padding: 1.4rem 5.2rem 1.4rem 7.6rem;
    font-size: 1.4rem;
  }
  .disposable-btn::before {
    left: 1.8rem;
    width: 4.8rem;
    height: 10rem;
  }
  .disposable-btn::after {
    right: 2.2rem;
    width: 1.3rem;
    height: 1.3rem;
  }
}
/*============================
header
============================*/
.header {
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: background-color 0.4s ease-out, backdrop-filter 0.4s ease-out;
}

.header_inner {
  width: 100%;
  min-height: 8rem;
  padding-inline: clamp(2rem, 4vw, 8rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}

.site_title {
  position: relative;
  width: 13rem;
  flex-shrink: 0;
  z-index: 9999;
}
.header_menu_content {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* PC menu */
.header_pc__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(3.2rem, 3vw, 4.8rem);
}

.header_pc__item {
  position: relative;
  list-style: none;
}

.header_pc__item > a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1.6rem 0;
  color: var(--color-black);
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s ease;
}

.header_pc__item > a:hover {
  color: var(--color-navy);
}

/* SVG arrow */
.header_pc__arrow {
  display: block;
  width: 1.2rem;
  height: auto;
  margin-left: .4rem;
  flex-shrink: 0;
}

.header_pc__arrow--right {
  width: .8rem;
  margin-left: auto;
}

/* dropdown */
.header_pc__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: block;
  min-width: 18rem;
  padding: 1.2rem 0;
  margin: 0;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.header_pc__dropdown > li {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header_pc__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  width: 100%;
  padding: .8rem 1.4rem;
  color: var(--color-black);
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease;
}

.header_pc__dropdown a:hover {
  background-color: rgba(29, 73, 132, .08);
  color: var(--color-navy);
}

.header_pc__dropdown--child {
  top: 0;
  left: 100%;
  margin-left: .1rem;
}

.header_pc__item--has-dropdown:hover > .header_pc__dropdown,
.header_pc__dropdown-item--has-child:hover > .header_pc__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* cart */
.header_pc__cart {
  display: block;
  width: 2rem;
  height: auto;
  transition: opacity .25s ease;
}

.header_pc__item--cart:hover .header_pc__cart {
  opacity: .7;
}

/* hamburger */
.header_menu_toggle {
  display: none;
}

.header_menu_box {
  display: none;
}

#menu_header {
  display: none;
}

/* 1023px以下 */
@media screen and (max-width: 1023px) {
  .header {
    height: 5.5rem;
  }

  .header_inner {
    min-height: 5.5rem;
    padding-inline: 2rem;
  }

  .site_title {
    width: 10rem;
  }

  .header_menu_content,
  .header_pc {
    display: none;
  }

  .header_menu_toggle {
    position: fixed;
    top: 0;
    right: 1rem;
    z-index: 99;
    display: flex;
    width: 5.5rem;
    height: 5.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    cursor: pointer;
  }

  .header_menu_toggle span {
    display: block;
    height: 2.5px;
    background: var(--color-navy);
    border-radius: 1.5px;
    transition: all .3s ease-in-out;
  }

  .header_menu_toggle span:nth-of-type(1) {
    width: 4.6rem;
  }

  .header_menu_toggle span:nth-of-type(2) {
    width: 3.6rem;
  }

  .header_menu_toggle span:nth-of-type(3) {
    width: 2.6rem;
  }

  .header_menu_toggle.active span {
    width: 4.6rem;
  }

  .header_menu_toggle.active span:nth-of-type(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .header_menu_toggle.active span:nth-of-type(2) {
    opacity: 0;
  }

  .header_menu_toggle.active span:nth-of-type(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  #menu_header {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    padding: 8rem 2rem 12rem;
    border-radius: 0 0 0 4rem;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform .5s ease-in-out;
  }

  #menu_header.active {
    transform: translateX(0);
  }

  .menu_header_content {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .menu_list {
    width: min(100%, 28rem);
    margin: 0;
    padding: 0;
  }

  .menu_list li {
    margin: 0 0 2rem;
    color: var(--color-black);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    list-style: none;
  }

  .menu_list a {
    color: var(--color-black);
    text-decoration: none;
  }

  .menu_list__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-black);
    font-family: "LINE Seed JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
  }

  .menu_list__toggle span {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
  }

  .menu_list__toggle span::before,
  .menu_list__toggle span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: translateY(-50%);
    transition: transform .25s ease;
  }

  .menu_list__toggle span::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .menu_list__item--parent.is-open > .menu_list__toggle span::after {
    transform: translateY(-50%) rotate(0);
  }

  .menu_list__child {
    display: none;
    padding: 1.6rem 0 0 1.6rem;
  }

  .menu_list__child li {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }

  .menu_list__child a,
  .menu_list__child .menu_list__toggle {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .menu_list__item--cart a {
	display: flex;
	align-items: center;
	gap: 0.8rem;
  }
  .menu_list__item--cart img {
	width: 2.4rem;
	height: auto;
  }
}

/*fv*/
#fv {
    background-image: url(../img/fv_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    /*padding: 10vh 0 11vh;*/
}

.fv_content {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.fv_inner {
    max-width: 1100px;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: calc(136/1440*100vw);
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.fv_left {
    width: calc(480/1440*100vw);
    position: relative;
}

.fv_mist {
    width: calc(370/1440*100vw);
    object-fit: cover;
}

.fv_mist img {
    width: 100%;
    object-fit: cover;
}

.fv_logo {
    width: calc(413/1440*100vw);
    margin: 0;
    position: absolute;
    bottom: -100px;
    left: 0px;
}

.fv_logo img {
    width: 100%;
    object-fit: cover;
}

.fv_right {
    width: calc(620/1440*100vw);
}

.fv_right_text {
    margin: 0 auto;
}

.sub_fv_copy {
    color: #1d4984;
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 20px;
}

.fv_copy {
    background: linear-gradient(100deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6.4rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 32px;
    white-space: nowrap;
}

.fv_yellow {
    color: #ceaa35;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 25px;
}

.fv_linefont {
    color: #2d2d2d;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.fv_btn_area {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
}
.fv_btn {
    background-color: #e3d594;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    margin: 18px auto;
    z-index: 1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .4);
}
.fv_btn_img {
    width: 180px;
    height: 180px;
    position: absolute;
    right: 10px;
    z-index: 0;
}
.fv_btn_img img {
    width: 180px;
    object-fit: cover;
    animation: rotate 12s infinite linear;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fv_btn a {
    display: block;
    padding: 43px 0;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}

#fv_sp {
    display: none;
}

#fv_sp {
    background-image: url(../img/fv_sp_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 15vw 0 11vw;
}

.fv_sp_content {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.fv_sp_inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

.fv_up {
    width: 100%;
    position: relative;
}

.fv_up_text {
    margin: 0 auto;
	white-space: nowrap;
}

.sub_fv_sp_copy {
    color: #1d4984;
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 12px;
}

.fv_sp_copy {
    background: linear-gradient(100deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    letter-spacing: 0;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 30px;
}

.fv_sp_yellow {
    color: #ceaa35;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 30px;
}

.fv_sp_linefont {
    color: #2d2d2d;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.fv_down {
    width: 100%;
    position: relative;
}

.fv_down_flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    #fv {
        display: none;
    }
    #fv_sp {
        display: block;
    }
    .fv_mist {
        width: 90%;
        object-fit: cover;
    }
    .fv_mist img {
        width: 100%;
        object-fit: cover;
    }
    .fv_logo {
        width: 50%;
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 0px;
    }
    .fv_logo img {
        width: 100%;
        object-fit: cover;
    }
    .fv_btn_area {
        position: absolute;
        bottom: -50px;
        right: 0;
        width: 150px;
        height: 150px;
    }
    .fv_btn {
        background-color: #e3d594;
        width: 95px;
        height: 95px;
        border-radius: 50%;
        text-align: center;
        position: relative;
        margin: 18px auto;
        z-index: 1;
        box-shadow: 0 5px 5px rgba(0, 0, 0, .4);
    }
    .fv_btn_img {
        width: 130px;
        height: 130px;
        position: absolute;
        right: 10px;
        z-index: 0;
    }
    .fv_btn_img img {
        width: 100%;
        object-fit: cover;
        animation: rotate 12s infinite linear;
    }
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }
    .fv_btn a {
        display: block;
        padding: 25px 0;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5;
    }
}
/*SplitText*/
.page-title_split_left{
    transform: translate(-10px,-10px);
}

/*news*/
#news {
    background-image: url(../img/news_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 70px 0 70px;
}

.news_inner {
    max-width: 1104px;
    width: 100%;
    margin: 0 auto;
	padding: 0 4rem;
    display: flex;
	justify-content: space-between;
}

.news_inner h2 {
    color: #fff;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0;
    line-height: 1.4;
    width: fit-content;
    margin-right: 50px;
    position: relative;
    padding-bottom: 16px;
}

.news_inner h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100/1440*100vw);
    width: 145px;
    height: 2px;
    background: #CEAA35;
}

.news_meta_inner {
    text-align: center;
}
.news_meta_inner a {
    transition: .3s;
}

.news_img {
    width: 100%;
	max-width: 15rem;
    margin: 0 auto 1.4rem;
}

.news_img img {
    width: 100%;
    object-fit: cover;
}

.news_title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

.news_date {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}
.news-btn {
	margin-top: auto;	
}

@media screen and (max-width: 767px) {
    #news {
        background-image: url(../img/news_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
    }

    .news_inner {
        width: 90%;
        margin: 0 auto;
		padding: 0;
        display: flex;
        flex-direction: column;
		justify-content: flex-start;
		gap: 2.4rem;
    }

    .news_inner h2 {
        color: #fff;
        font-size: 4rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        width: 165px;
        margin-right: 50px;
        position: relative;
        padding-bottom: 16px;
    }

    .news_inner h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 60px;
        width: 145px;
        height: 2px;
        background: #CEAA35;
    }

    .news_meta_inner {
        text-align: center;
    }

	.news_img {
		margin: 0 auto .8rem;
	}

    .news_img img {
        width: 150px;
        object-fit: cover;
    }

    .news_title {
        font-size: 1.5rem;
        color: #fff;
        font-weight: 500;
        line-height: 1.5;
    }

    .news_date {
        font-size: 1.5rem;
        color: #fff;
        font-weight: 500;
        line-height: 1.5;
    }
	.news-btn {
		margin-top: 1.6rem;
		margin-left: auto;
	}
}
@media screen and (min-width: 768px) {
	.news_meta_inner a:hover {
    	opacity: .7;
	}
}
/*intro1*/
#intro {
    background: linear-gradient(57deg, rgba(222, 250, 241, 100) 16%, rgba(174, 219, 204, 100) 44%, rgba(85, 204, 203, 100) 79%, rgba(29, 73, 132, 100)100%);
    padding: 96px 0;
}

.intro1_content {
    max-width: 1233px;
    width: 90%;
    margin-left: auto;
}

.intro1_content h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 85px;
    position: relative;
}

.intro1_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(180/1440*100vw);
    width: 180px;
    height: 2px;
    background: #CEAA35;
}

.intro1_inner {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.intro1_left {
    width: 25%;
}

.intro1_left p {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1D4984;
}

.intro1_left p span {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1d4984;
}

.intro1_right {
    width: 60%;
    /*position: absolute;
    right: 0;
    top: -150px;
    */
    margin-top: -100px;
}

.intro1_right img {
    width: 100%;
    object-fit: cover;
}

.intro_more a {
    color: #1d4984;
    border: solid #1d4984 1px;
    padding: 5px 20px;
    width: 80px;
    height: 32px;
}

@media screen and (max-width: 767px) {
    #intro {
        background: linear-gradient(57deg, rgba(222, 250, 241, 100) 16%, rgba(174, 219, 204, 100) 44%, rgba(85, 204, 203, 100) 79%, rgba(29, 73, 132, 100)100%);
        padding: 50px 0;
    }

    .intro1_content {
        width: 90%;
        margin: 0 auto;
    }

    .intro1_content h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 4rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 50px;
        position: relative;
    }

    .intro1_content h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 130px;
        width: 180px;
        height: 2px;
        background: #CEAA35;
    }

    .intro1_inner {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
    }

    .intro1_left {
        width: 100%;
    }

    .intro1_left p {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        margin-bottom: 24px;
        color: #1D4984;
    }

    .intro1_left p span {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.8rem;
        color: #1d4984;
    }

    .intro1_right {
        width: 100%;
        position: static;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .intro1_right img {
        width: 100%;
        object-fit: cover;
    }

    .intro_more {
        text-align: center;
    }

    .intro_more a {
        color: #1d4984;
        border: solid #1d4984 1px;
        padding: 5px 20px;
        width: 80px;
        height: 32px;
        text-align: end;
    }
}

/*intro2*/
.intro2_content {
    max-width: 1112px;
    width: 90%;
    margin-left: auto;
    margin-top: 100px;
    
}

.intro2_content h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
}

.intro2_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100/1440*100vw);
    width: 180px;
    height: 2px;
    background: #CEAA35;
}

.intro2_inner {
    display: flex;
    gap: 40px;
    /**
    position: relative;
    height: 422px;
    **/
}

/**
.intro2_left{
    position: absolute;
    left: calc(50% - 400px);
    width: 420px;
    height: 422px;
    z-index: 1;
}
**/
.intro2_left {
    width: 40%;
}

.intro2_text {
    margin-top: 68px;
    margin-bottom: 40px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #2d2d2d;
}

.intro2_text span {
    color: #1d4984;
}

.intro2_text_2rem {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1d4984;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.intro2_right {
    width: 60%;
    margin-left: auto;
}

.intro2_right img {
    width: 100%;
    max-width: 100%;
    height: 422px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .intro2_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
    }

    .intro2_content h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3.3rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 50px;
        position: relative;
    }

    .intro2_content h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 65px;
        width: 180px;
        height: 2px;
        background: #CEAA35;
    }

    .intro2_inner {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        height: auto;
    }

    .intro2_text {
        margin-top: 30px;
        margin-bottom: 40px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        margin-bottom: 24px;
        color: #2d2d2d;
    }

    .intro2_text span {
        color: #1d4984;
    }

    .intro2_text_2rem {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.8rem;
        color: #1d4984;
        line-height: 1.6;
        letter-spacing: 0.05em;
    }

    .intro2_right {
        width: 100%;
        margin-left: auto;
        position: static;
    }

    .intro2_right img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }
    .intro2_left{
        width: 100%;
        margin: 0 auto;
    }
}

/*color_img*/
.color_img {
    width: 100%;
    object-fit: cover;
}

.color_img img {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .color_img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .color_img img {
        width: 100%;
        object-fit: cover;
    }
}
/*1441px以上の時のintro部分*/
@media screen and (min-width: 1441px) {
    .intro1_content,
    .intro2_content {
        margin-right: calc((100vw - 1440px) / 2);
    }
}

/*feature*/
#feature {
    background-image: url(../img/product1_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 96px 0;
}

.feature_content {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
}

.feature_content h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
}

.feature_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100/1440*100vw);
    width: 180px;
    height: 2px;
    background: #CEAA35;
}

.feature_content_title {
    color: #1D4984;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em;
    padding-top: 16px;
}

.feature_inner1 {
    max-width: 1024px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 63px;
    margin-top: 40px;
}

.feature_inner1 h3 {
    color: #1d4984;
    font-size: calc(32/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 16px;
}

.feature_inner1 p {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.feature_img {
    display: flex;
    gap: 40px;
}
.feature_img_sp{
    display: none;
}
.feature_img .feature_img_left {
    width: 70%;
    object-fit: cover;
}

.feature_img .feature_img_left img {
    width: 100%;
    object-fit: cover;
}

.feature_img .feature_img_right {
    width: 30%;
    object-fit: cover;
}

.feature_img .feature_img_right img {
    width: 100%;
    object-fit: cover;
}

.feature_inner2 {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 53px;
}
.feature_inner2_sp{
    display: none;
}
.feature_inner2 img {
    width: 100%;
    object-fit: cover;
}

.feature_inner3 h3 {
    color: #1d4984;
    font-size: calc(32/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 16px;
}

.feature_inner3 p {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.feature_inner3_img {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.feature_inner3_img_left {
    width: 30%;
    object-fit: cover;
}

.feature_inner3_img_left img {
    width: 100%;
    object-fit: cover;
}

.feature_inner3_img_right {
    width: 68%;
    object-fit: cover;
}

.feature_inner3_img_right img {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    #feature {
        background-image: url(../img/product1_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
    }

    .feature_content {
        width: 90%;
        margin: 0 auto;
    }

    .feature_content h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
    }

    .feature_content h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50px;
        width: 180px;
        height: 2px;
        background: #CEAA35;
    }

    .feature_content_title {
        color: #1D4984;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.7;
        letter-spacing: 0.05em;
        padding-top: 16px;
    }

    .feature_inner1 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .feature_inner1 h3 {
        color: #1d4984;
        font-size: 2.8rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .feature_inner1 p {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
        margin-bottom: 16px;
    }

    .feature_img {
        display: none;
    }
    .feature_img_sp{
        display: block;
    }
    .feature_img_sp1{
        margin-bottom: 20px;
    }

    .feature_inner2 {
        display: none;
    }
    .feature_inner2_sp{
        display: block;
        margin-bottom: 30px;
    }
    .feature_inner3 h3 {
        color: #1d4984;
        font-size: 2.6rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .feature_inner3 p {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
        margin-bottom: 24px;
    }

    .feature_inner3_img {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
    }

    .feature_inner3_img_left {
        width: 100%;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .feature_inner3_img_left img {
        width: 100%;
        object-fit: cover;
    }

    .feature_inner3_img_right {
        width: 100%;
        object-fit: cover;
    }

    .feature_inner3_img_right img {
        width: 100%;
        object-fit: cover;
    }
}

/*flavor*/
#flavor {
    background-image: url(../img/top_flavor_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 92px 0 120px;
}

.flavor_content {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
}

.flavor_content h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
}

.flavor_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100/1440*100vw);
    width: 180px;
    height: 2px;
    background: #CEAA35;
}

.flavor_content_title {
    color: #1D4984;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em;
    padding-top: 16px;
}

.flavor_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 70px;
}

.flavor_inner_box {
    width: 300px;
}

.flavor_inner_box:nth-of-type(1) {
    margin-top: 230px;
}

/**
.flavor_inner_box:nth-of-type(2){
    margin-top: 100px;
}**/
.flavor_inner_box:nth-of-type(3) {
    margin-top: 230px;
}

.flavor_inner_box:nth-of-type(4) {
    margin-top: 167px;
}

.flavor_inner_box:nth-of-type(5) {
    margin-top: -100px;
}

.flavor_inner_box:nth-of-type(6) {
    margin-top: 167px;
}

.flavor_inner_box:nth-of-type(7) {
    margin: 0 auto;
    margin-top: -200px;
}

.cafelatte_title {
    color: #DBA73F;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 1.2;
}

.flavor_img {
    width: 185px;
    object-fit: cover;
    text-align: left;
    margin-bottom: 15px;
}

.flavor_img img {
    width: 100%;
    object-fit: cover;
}

.cafelatte_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.flavor_more a {
    color: #1d4984;
    border: solid #1d4984 1px;
    padding: 5px 20px;
    width: 80px;
    height: 32px;
	transition: .3s;
}

.mint_title {
    color: #06C770;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.mint_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.greentea_title {
    color: #03973F;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.greentea_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.pineapple_title {
    color: #CEAA35;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.pineapple_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.cola_title {
    color: #BE421F;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.cola_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.muscat_title {
    color: #06C770;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.muscat_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.jasmine_title {
    color: #53A693;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.jasmine_text {
    margin-bottom: 27px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}
.top-product-btn {
	margin-left: auto;
}
.top-product-btn span {
	color: var(--color-navy);
}
.more_btn2 {
    display: block;
    width: 120px;
    margin-top: 0px;
    margin-left: auto;
}

.more_btn2 img {
    width: 120px;
    object-fit: cover;
}

.flavor_sp {
    display: none;
}

@media screen and (max-width: 1024px) {
    #flavor {
        background-image: url(../img/top_flavor_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
    }

    .flavor_content {
        width: 90%;
        margin: 0 auto;
    }

    .flavor_content h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: calc(60/1440*100vw);
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
    }

    .flavor_content h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: calc(50/1440*100vw);
        width: 180px;
        height: 2px;
        background: #CEAA35;
    }

    .flavor_content_title {
        color: #1D4984;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.7;
        letter-spacing: 0.05em;
        padding-top: 16px;
    }

    .flavor_inner {
        display: none;
    }

    .flavor_sp {
        display: block;
    }

    .flavor_sp_box {
        width: 100%;
        margin: 0 auto;
    }

    .flavor_img_text {
        display: flex;
    }

    .cafelatte_title {
        color: #DBA73F;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .flavor_img {
        width: 150px;
        object-fit: cover;
        text-align: left;
        margin-bottom: 15px;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .flavor_img img {
        width: 100%;
        object-fit: cover;
    }

    .cafelatte_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .br_pc {
        display: none;
    }

    .br_sp {
        display: block;
    }

    .flavor_more a {
        color: #1d4984;
        border: solid #1d4984 1px;
        padding: 5px 20px;
        width: 80px;
        height: 32px;
        margin-top: auto;
    }

    .mint_title {
        color: #06C770;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .mint_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .greentea_title {
        color: #03973F;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .greentea_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .pineapple_title {
        color: #CEAA35;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .pineapple_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .cola_title {
        color: #BE421F;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .cola_text {
        margin-bottom: 100px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .muscat_title {
        color: #06C770;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .muscat_text {
        margin-bottom: 100px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .jasmine_title {
        color: #53A693;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .jasmine_text {
        margin-bottom: 100px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .more_btn2 {
        display: block;
        width: 120px;
        margin-top: 0px;
        margin-left: auto;
    }

    .more_btn2 img {
        width: 120px;
        object-fit: cover;
    }

}
@media screen and (max-width: 767px) {
    #flavor {
        background-image: url(../img/top_flavor_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
    }

    .flavor_content {
        width: 90%;
        margin: 0 auto;
    }

    .flavor_content h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
    }

    .flavor_content h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50px;
        width: 180px;
        height: 2px;
        background: #CEAA35;
    }

    .flavor_content_title {
        color: #1D4984;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.7;
        letter-spacing: 0.05em;
        padding-top: 16px;
    }

    .flavor_inner {
        display: none;
    }

    .flavor_sp {
        display: block;
    }

    .flavor_sp_box {
        width: 100%;
        margin: 0 auto;
    }

    .flavor_img_text {
        display: flex;
    }

    .cafelatte_title {
        color: #DBA73F;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .flavor_img {
        width: 150px;
        object-fit: cover;
        text-align: left;
        margin-bottom: 15px;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .flavor_img img {
        width: 100%;
        object-fit: cover;
    }

    .cafelatte_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .br_pc {
        display: none;
    }

    .br_sp {
        display: block;
    }

    .flavor_more a {
        color: #1d4984;
        border: solid #1d4984 1px;
        padding: 5px 20px;
        width: 80px;
        height: 32px;
        margin-top: auto;
    }

    .mint_title {
        color: #06C770;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .mint_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .greentea_title {
        color: #03973F;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .greentea_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .pineapple_title {
        color: #CEAA35;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .pineapple_text {
        margin-bottom: 80px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .cola_title {
        color: #BE421F;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .cola_text {
        margin-bottom: 100px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .muscat_title {
        color: #06C770;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .muscat_text {
        margin-bottom: 100px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .jasmine_title {
        color: #53A693;
        font-size: 2.3rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .jasmine_text {
        margin-bottom: 100px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .more_btn2 {
        display: block;
        width: 120px;
        margin-top: 0px;
        margin-left: auto;
    }

    .more_btn2 img {
        width: 120px;
        object-fit: cover;
    }
}
@media screen and (min-width: 768px) {
	.flavor_more a:hover {
		color: var(--color-white);
		background-color: var(--color-navy);
	}
}


/*slider*/
#slider {
    width: 100%;
    background-image: url(../img/slider_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 96px 0 136px;
}

.slider_inner {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.slider_inner h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 80px;
}

.slider_inner h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100/1440*100vw);
    width: 180px;
    height: 2px;
    background: #CEAA35;
}
.top-slider-btn {
	margin-top: 5.6rem;
}
.top-slider-btn span {
	color: var(--color-navy);
}
@media screen and (max-width: 767px) {
    #slider {
        width: 100%;
        background-image: url(../img/slider_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
    }

    .slider_inner {
        width: 90%;
        margin: 0 auto;
    }

    .slider_inner h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3.8rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
        margin-bottom: 80px;
    }

    .slider_inner h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 80px;
        width: 180px;
        height: 2px;
        background: #CEAA35;
    }
}

/*メイン*/
.swiper-wrapper {
    display: flex;
}

.main-swiper {
    max-width: 2000px;
    /*300px×6*/
    margin: 0 auto 50px;
}

.main-swiper .swiper-slide {
    width: 300px !important;
    text-align: center;
}

.main-swiper img {
    width: 100%;
    display: block;
}

.main-swiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.85);
    /*周りは小さく*/
    opacity: 0.6;
}

.main-swiper .swiper-slide-active {
    transform: scale(1);
    /*中央を大きく*/
    opacity: 1;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .main-swiper {
        max-width: 2000px;
        /*300px×6*/
        margin: 0 auto;
    }
}

/*サムネイル*/
.thumb-swiper {
    width: 1024px;
    margin: 0 auto;
    padding: 10px 0;
}

.thumb-swiper .swiper-wrapper {
    width: fit-content;
    margin: 0 auto;
}

.thumb-swiper .swiper-slide {
    width: 30px !important;
    opacity: 0.4;
    cursor: pointer;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumb-swiper img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.product_info {
    /*width: 310px;*/
    width: fit-content;
    margin: 0 auto;
    margin-top: 70px;
    text-align: center;
}

.product_info_title {
    font-size: 3.2rem;
    color: #1d4984;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 10px;
}

.product_info_text {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.product_info_text span{
    display: block;
    width: fit-content;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .thumb-swiper {
        width: 100%;
        margin: 0 auto;
        padding: 10px 0;
    }

    .thumb-swiper .swiper-wrapper {
        width: fit-content;
        margin: 0 auto;
    }

    .thumb-swiper .swiper-slide {
        width: 30px !important;
        opacity: 0.4;
        cursor: pointer;
    }

    .thumb-swiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .thumb-swiper img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    .product_info {
        width: 310px;
        margin: 0 auto;
        margin-top: 30px;
        text-align: center;
    }

    .product_info_title {
        font-size: 2.8rem;
        color: #1d4984;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .product_info_text {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }
}

/*lp*/
#lp {
    background: url(../img/lp_bg.png) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding: 65px 0 167px;
}

.lp_content {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
}

.lp_inner {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    margin-bottom: 40px;
}

.lp_inner1 {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.lp_inner2 {
    display: flex;
    justify-content: space-between;
}

.lp_title {
    color: #1d4984;
    font-size: calc(40/1440*100vw);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.lp_title span {
    color: #1d4984;
    font-size: calc(64/1440*100vw);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.lp_sub_title {
    display: flex;
    margin-bottom: 25px;
}

.lp_sub_title1 {
    background-color: #CEAA35;
    border-radius: 40px;
    padding: 5px 0;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.5;
    width: 113px;
    height: 40px;
    text-align: center;
    margin-right: 5px;
    font-family: "LINE Seed JP", sans-serif;
}

.lp_sub_title2 {
    background-color: #1d4984;
    border-radius: 50px;
    padding: 5px 0;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.5;
    width: 200px;
    height: 40px;
    text-align: center;
    margin-right: 5px;
    font-family: "LINE Seed JP", sans-serif;
}

.lp_inner1_left_text {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.lp_inner1_left_text span {
    color: #1d4984;
    font: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.lp_inner1_right {
    flex: 1;
    margin: 0 auto;
}

.lp_inner1_right img {
    width: 100%;
    object-fit: cover;
}

.lp_inner2_left {
    width: 50%;
}

.lp_inner2_left_text {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #2d2d2d;
}

.lp_inner2_left_text span {
    color: #1d4984;
    font: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.lp_inner2_right {
    width: 50%;
    margin-right: 0;
}

.lp_inner2_right img {
    width: 100%;
    object-fit: cover;
}

.lp_btn_area {
    background-color: #1d4984;
    width: 443px;
    border-radius: 8px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    padding: 30px 65px;
    align-items: baseline;
}

.lp_btn {
    color: #fff;
    margin: 0 auto;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    #lp {
        background: url(../img/lp_bg_sp.png) center top no-repeat;
        background-size: cover;
        width: 100%;
        padding: 65px 0 50px;
    }

    .lp_content {
        width: 90%;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 20px;
        padding: 50px 15px;
        margin-bottom: 40px;
    }

    .lp_inner {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .lp_inner1 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .lp_inner2 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .lp_title {
        color: #1d4984;
        font-size: 2.8rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.4;
    }

    .lp_title span {
        color: #1d4984;
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.4;
    }

    .lp_sub_title {
        display: flex;
        margin: 32px 0;
        width: 100%;
    }

    .lp_sub_title1 {
        background-color: #CEAA35;
        border-radius: 17px;
        padding: 5px;
        color: #fff;
        font-size: 1.4rem;
        letter-spacing: 0;
        line-height: 1.8;
        width: 113px;
        height: 40px;
        text-align: center;
        margin-right: 5px;
    }

    .lp_sub_title2 {
        background-color: #1d4984;
        border-radius: 17px;
        padding: 5px;
        color: #fff;
        font-size: 1.4rem;
        letter-spacing: 0;
        line-height: 1.8;
        width: 200px;
        height: 40px;
        text-align: center;
        margin-right: 5px;
    }

    .lp_inner1_left_text {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
        margin-bottom: 20px;
    }

    .lp_inner1_left_text span {
        color: #1d4984;
        font: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
    }

    .lp_inner1_right {
        width: 100%;
        margin: 0 auto;
    }

    .lp_inner1_right img {
        width: 100%;
        object-fit: cover;
    }

    .lp_inner2_left {
        width: 100%;
        margin-top: 20px;
    }

    .lp_inner2_left_text {
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
        color: #2d2d2d;
    }

    .lp_inner2_left_text span {
        color: #1d4984;
        font: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
    }

    .lp_inner2_right {
        width: 100%;
        margin-right: 0;
    }

    .lp_inner2_right img {
        width: 100%;
        object-fit: cover;
    }
    .lp_btn_area_bg{
        background: url(../img/lp_btn_bg.png) center top no-repeat;
        background-size: cover;
        width: 100%;
        padding: 10px 0;
    }
    .lp_btn_area {
        background-color: #1d4984;
        width: 60%;
        border-radius: 8px;
        height: 50px;
        margin: 0 auto;
        display: flex;
        padding: 20px;
        align-items: baseline;
        align-items: center;
    }

    .lp_btn {
        color: #fff;
        margin: 0 auto;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        line-height: 1.8;
        text-align: center;
    }
}

/*try_btn*/
.try_btn {
    background-image: url(../img/try_btn_bg.png);
    width: 100%;
    padding: 9.6rem 0 8.4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.try_btn_inner {
    width: 355px;
    margin: 0 auto;
}

.try_btn_inner a img {
    width: 355px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .try_btn {
        background-image: url(../img/try_btn_bg.png);
        width: 100%;
        padding: 30px 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .try_btn_inner {
        width: 80%;
        margin: 0 auto;
    }

    .try_btn_inner a img {
        width: 100%;
        object-fit: cover;
    }
}

/**bg**/
.top_bg {
    height: 300px;
    /* 高さを増やす */
    width: 100%;
    background-image: url(../img/top_bg_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

@media screen and (max-width: 767px) {
    .top_bg {
        height: 200px;
        /* 高さを増やす */
        width: 100%;
        background-image: url(../img/top_bg_img.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 55% 30%;
        background-attachment: fixed;
    }
}

/*history*/
#history {
    background-image: url(../img/history.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 110px 0 95px;
}

.history_content {
    max-width: 1024px;
    width: 90%;
    padding: 96px 0;
    margin: 0 auto;
}

.history_inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}

.history_content h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 80px;
}

.history_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100/1440*100vw);
    width: 180px;
    height: 4px;
    background: #1D4984;
}

.history_inner h3 {
    color: #1d4984;
    font-size: 3.2rem;
    margin-bottom: 26px;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.history_inner_left {
    width: 60%;
}

.history_text {
    font-size: 1.6rem;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.history_text span {
    color: #1d4984;
    font-size: 2rem;
    font-weight: 600;
}

.history_inner_right {
    width: 174px;
}

.history_inner_right img {
    width: 174px;
    object-fit: cover;
}
.top-company-btn {
  display: flex;
  flex-flow: column;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
}
/* テキストエリア */
.top-company-btn__text-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  margin-bottom: -0.4rem;
  padding-left: 0.4rem;
}
/* テキスト共通 */
.top-company-btn__text {
  position: absolute;
  left: 0.4rem;
  top: 0;
  color: var(--color-navy);
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
/* 初期表示 */
.top-company-btn__text.is-front {
  transform: translateY(0);
  opacity: 1;
}
/* 下で待機 */
.top-company-btn__text.is-back {
  transform: translateY(110%);
  opacity: 0;
}
/* 矢印 */
.top-company-btn__icon {
  width: 17.4rem;
  height: auto;
  transition: transform .3s ease;
}

@media screen and (min-width: 768px) {
  .top-company-btn:hover .top-company-btn__text.is-front {
    animation: topTextOutUp .35s ease forwards;
  }
  .top-company-btn:hover .top-company-btn__text.is-back {
    animation: topTextInUp .35s ease forwards;
  }
  .top-company-btn:not(:hover) .top-company-btn__text.is-front {
    animation: topTextInUp .35s ease forwards;
  }
  .top-company-btn:not(:hover) .top-company-btn__text.is-back {
    animation: topTextOutUp .35s ease forwards;
  }
  .top-company-btn:hover .top-company-btn__icon {
    transform: translateX(10px);
  }
  @keyframes topTextOutUp {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-110%);
      opacity: 0;
    }
  }
  @keyframes topTextInUp {
    from {
      transform: translateY(110%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
@media screen and (max-width: 767px) {
    #history {
        background-image: url(../img/history.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
    }

    .history_content {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }

    .history_inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .history_content h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3.3rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
        margin-bottom: 80px;
    }

    .history_content h2::after {
        content: "";
        position: absolute;
        left: 0;
        top: 70px;
        width: 180px;
        height: 4px;
        background: #1D4984;
    }

    .history_inner h3 {
        color: #1d4984;
        font-size: 2.8rem;
        margin-bottom: 26px;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.4;
    }

    .history_inner_left {
        width: 100%;
		margin-bottom: 2.4rem;
    }

    .history_text {
        font-size: 1.4rem;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.6;
    }

    .history_text span {
        color: #1d4984;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .history_inner_right {
        width: 50%;
        margin-left: auto;
        margin-top: 20px;
    }

    .history_inner_right img {
        width: 100%;
        object-fit: cover;
    }
	.top-company-btn__text {
	  left: 1.4rem;
	  top: .6rem;
	  font-size: 1.4rem;
	  line-height: 1;
	}
}

/*voice*/
#voice {
    background-image: url(../img/voice_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 96px 0;
    width: 100%;
}

.voice_inner {
    max-width: 1024px;
    margin: 0 auto;
}

.voice_inner h2 {
    background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 80px;
    text-align: center;
}

.voice_inner h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100/1440*100vw);
    width: 180px;
    height: 4px;
    background: #1D4984;
}

.voice_box_blue {
    width: 330px;
    background-color: #F4FEFF;
    padding: 40px 30px;
    border-radius: 4px;
}

.voice_box {
    width: 330px;
    background-color: #FFFCF6;
    padding: 40px 30px;
    border-radius: 4px;
}

.voice_img {
    width: 100%;
    display: flex;
    margin: 0 auto;
    margin-bottom: 15px;
}

.voice_img_left {
    width: 100px;
    margin: 0 auto;
    margin-right: 30px;
}

.voice_img_left img {
    width: 100px;
    object-fit: cover;
}

.voice_img_right {
    width: 100px;
    margin: 0 auto;
}

.voice_img_right img {
    width: 100px;
    object-fit: cover;
}

.voice_title_blue {
    color: #1d4984;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}

.voice_title {
    color: #CEAA35;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}

.border_line {
    width: 100%;
    border-top: 2px dashed #1d4984;
    margin: 15px 0;
}

.voice_text {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    #voice {
        background-image: url(../img/voice_bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 50px 0;
        width: 100%;
    }

    .voice_inner {
        width: 90%;
        margin: 0 auto;
    }

    .voice_inner h2 {
        background: linear-gradient(-30deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3.8rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
        margin-bottom: 80px;
        text-align: center;
    }

    .voice_inner h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 70px;
        width: 180px;
        height: 4px;
        background: #1D4984;
    }

    .voice_box_blue {
        width: 80%;
        background-color: #F4FEFF;
        padding: 40px 30px;
        border-radius: 4px;
        margin: 0 auto;
    }

    .voice_box {
        width: 80%;
        background-color: #FFFCF6;
        padding: 40px 30px;
        border-radius: 4px;
        margin: 0 auto;
    }

    .voice_img {
        width: 100%;
        display: flex;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .voice_img_left {
        width: 100px;
        margin: 0 auto;
        margin-right: 30px;
    }

    .voice_img_left img {
        width: 100%;
        object-fit: cover;
    }

    .voice_img_right {
        width: 100px;
        margin: 0 auto;
    }

    .voice_img_right img {
        width: 100%;
        object-fit: cover;
    }

    .voice_title_blue {
        color: #1d4984;
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .voice_title {
        color: #CEAA35;
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .border_line {
        width: 100%;
        border-top: 2px dashed #1d4984;
        margin: 15px 0;
    }

    .voice_text {
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        line-height: 1.6;
        font-size: 1.4rem;
    }
}

/*last*/
#last {
    background-image: url(../img/mist_last.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    padding: 64px 0;
}

.last_content {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
}

.last_inner h2 {
    background: linear-gradient(-45deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: calc(60/1440*100vw);
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 35px;
}

.last_text {
    font-size: 1.6rem;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.last_text span {
    color: #1d4984;
    font-size: 2rem;
    font-weight: 600;
}
.last_img_sp{
    display: none;
}

@media screen and (max-width: 767px) {
    #last {
        background-image: url(../img/last_bg_sp.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 50px 0;
        height: auto;
    }

    .last_content {
        width: 90%;
        margin: 0 auto;
    }

    .last_inner h2 {
        background: linear-gradient(-45deg, rgba(95, 36, 15, 100)21%, rgba(135, 81, 62, 100)38%, rgba(250, 212, 199, 100)52%, rgba(162, 106, 85, 100)63%, rgba(222, 173, 156, 100)75%, rgba(72, 24, 7, 100)82%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 3.5rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        padding-bottom: 15px;
        position: relative;
        margin-bottom: 35px;
    }

    .last_text {
        font-size: 1.4rem;
        font-family: "LINE Seed JP", sans-serif;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.6;
    }

    .last_text span {
        color: #1d4984;
        font-size: 1.8rem;
        font-weight: 600;
    }
    .last_img_sp{
        display: block;
        width: 100%;
    }
    .last_img_sp img{
        width: 100%;
        object-fit: cover;
    }
}

/*btn*/
#btn {
    width: 100%;
    background-image: url(../img/top_last_bg.png);
    padding: 13.6rem 0 10.4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn_inner {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.btn_left {
    background-color: #1d4984;
	border: 2px solid var(--color-navy);
    width: 350px;
    height: 80px;
    margin: 0 auto;
    align-content: center;
    border-radius: 8px;
    text-align: center;
	transition: .3s;
}

.btn_left span {
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    font-family: "LINE Seed JP", sans-serif;
    letter-spacing: 0.05em;
}
.btn_right {
    width: 355px;
    margin: 0 auto;
}

.btn_right img {
    width: 355px;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
	.btn_left:hover {
		background-color: var(--color-white);
	}
	.btn_left:hover span {
		color: var(--color-navy);
	}
}
@media screen and (max-width: 767px) {
    #btn {
        width: 100%;
        background-image: url(../img/top_last_bg.png);
        padding: 50px 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .btn_inner {
        width: 70%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
		gap: 4rem;
    }

    .btn_left {
        background-color: #1d4984;
        width: 100%;
        height: 80px;
        margin: 0 auto;
        align-content: center;
        border-radius: 8px;
        text-align: center;
    }

    .btn_left a {
        margin: 0 auto;
        color: #fff;
        font-size: 2rem;
        line-height: 1.2;
        font-weight: 700;
        text-align: center;
        font-family: "LINE Seed JP", sans-serif;
        letter-spacing: 0.05em;
    }

    .btn_right {
        width: 100%;
        margin: 0 auto;
        margin-top: 20px;
    }

    .btn_right img {
        width: 100%;
        object-fit: cover;
    }
}

/*footer*/
#footer {
    background-color: #1d4984;
    color: #fff;
    padding: 16px 0 85px;
    width: 100%;
}

.footer_logo {
    width: 95%;
    margin: 0 auto;
    object-fit: cover;
    margin-bottom: 95px;
}

.footer_logo img {
    width: 100%;
    object-fit: cover;
}

.footer_inner {
    width: 90%;
    max-width: 970px;
    margin: 0 auto;
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.footer_left {
    width: 70%;
}

.footer_navi {
    margin-bottom: 40px;
}

.footer_1 {
    display: flex;
    flex-wrap: nowrap;
}

.footer_2 {
    display: flex;
    flex-wrap: wrap;
}

.footer_3 {
    display: flex;
    flex-wrap: wrap;
}

.footer_navi ul li {
    width: 238px;
	list-style: none;
}

.footer_navi ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    display: block;
}

.footer_navi .footer_cart_icon {
    width: 30px;
    height: 30px;
    margin-top: 5px;
}

.footer_navi .footer_cart_icon img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.sub_footer_navi ul {
    display: flex;
    column-gap: 45px;
}

.sub_footer_navi li {
	list-style: none;
}

.sub_footer_navi li a {
    color: #fff;
    text-decoration: none;
}

.footer_right {
    width: 30%;
}

.footer_info {
    margin-bottom: 30px;
}

.footer_info p {
    margin-bottom: 10px;
}

.footer_info address {
    margin-bottom: 5px;
    font-style: normal;
}

.copyright_sns {
    display: flex;
    justify-content: space-between;
}

.copyright {
    margin-right: 20px;
}

.sns_icon {
    display: flex;
}

.sns_icon img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 16px;
}

@media screen and (max-width: 767px) {
    #footer {
        background-color: #1d4984;
        color: #fff;
        padding: 16px 0 85px;
        width: 100%;
    }

    .footer_logo {
        width: 95%;
        margin: 0 auto;
        object-fit: cover;
        margin-bottom: 60px;
    }

    .footer_logo img {
        width: 100%;
        object-fit: cover;
    }

    .footer_inner {
        width: 95%;
        margin: 0 auto;
        align-items: flex-end;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer_1 {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
    }
    .footer_left {
        width: 100%;
    }

    .footer_navi {
        margin-bottom: 40px;
    }

    .footer_navi ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footer_navi ul li {
        width: 100%;
    }

    .footer_navi ul li a {
        text-decoration: none;
        color: #fff;
        padding: 5px 0;
        display: block;
    }

    .footer_navi .footer_cart_icon {
        width: 30px;
        height: 30px;
        margin-top: 5px;
    }

    .footer_navi .footer_cart_icon img {
        width: 30px;
        height: 30px;
        object-fit: cover;
    }

    .sub_footer_navi ul {
        display: flex;
        flex-direction: column;
        gap: .8rem;
		font-size: 1.2rem;
		margin-bottom: 2.4rem;
    }

    .sub_footer_navi li {}

    .sub_footer_navi li a {
        color: #fff;
        text-decoration: none;
    }

    .footer_right {
        width: 100%;
    }

    .footer_info {
        margin-bottom: 30px;
    }

    .footer_info p {
        margin-bottom: 10px;
    }

    .footer_info address {
        margin-bottom: 5px;
        font-style: normal;
    }

    .copyright_sns {
        display: flex;
        justify-content: space-between;
    }

    .copyright {
        margin-right: 20px;
    }

    .sns_icon {
        display: flex;
    }

    .sns_icon img {
        width: 30px;
        height: 30px;
        object-fit: cover;
        margin-right: 16px;
    }
}

/*アニメーション*/
.FadeIn{
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}
.FadeIn.active{
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
  TOP フレーバーサブスク
======================================== */
.top-subscription {
  width: 100%;
  padding: 9.2rem 4rem;
  background-image: url('/img/top-subscription-flavor-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: none; /*公開したら外す*/
}
.top-subscription__inner {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
  padding: 9.2rem 8rem;
  background-color: #FFFCF6;
  border-radius: 16px;
}
.top-subscription__heading {
  width: 100%;
  margin-bottom: 3.6rem;
}
.top-subscription__title {
  width: 100%;
  margin: 0;
  line-height: 1;
}
.top-subscription__title-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.top-subscription__title-image.top-subscription__pc {  
  width: 100%;
  max-width: 56rem;
  margin-bottom: 2.4rem;
}
.top-subscription__subheading-line {
  display: block;
  width: 18rem;
  height: 2px;
  background-color: #CEAA35;
  margin-bottom: 1.6rem;
}
.top-subscription__label {
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.top-subscription__content {
}
.top-subscription__lead {
  margin: 0;
  color: var(--color-navy);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 3.6rem;
}
.top-subscription__description {
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 5.6rem;
}
.top-subscription__product {
  width: 100%;
  margin-bottom: 3.2rem;
}
.top-subscription__product-image {
  display: block;
  width: 76rem;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
.top-subscription__button-wrap {
  display: flex;
  justify-content: center;
}
.top-subscription__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
  min-height: 4.8rem;
  padding: 1rem 0;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-navy);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
}
.top-subscription__button:hover {
  color: var(--color-white);
  opacity: 0.7;
}
.top-subscription__pc {
  display: block;
}
.top-subscription__sp {
  display: none;
}

/* ========================================
  TOP フレーバーサブスク SP
======================================== */
@media screen and (max-width: 767px) {
  .top-subscription {
    padding: 4.8rem 1.6rem 6.4rem;
    background-position: center top;
  }

  .top-subscription__inner {
    max-width: none;
    padding: 7rem 4rem 6.2rem;
    border-radius: 12px;
  }

  .top-subscription__heading {
    margin-bottom: 2.8rem;
  }

  .top-subscription__title-image {
    width: 100%;
  }

  .top-subscription__title-image.top-subscription__sp {
    width: 100%;
    max-width: 34rem;
    margin-bottom: 2.4rem;
  }

  .top-subscription__subheading-line {
    width: 12.2rem;
    height: 2px;
    margin-bottom: 1.2rem;
  }

  .top-subscription__label {
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }

  .top-subscription__lead {
    font-size: clamp(2rem, 5.4vw, 2.6rem);
    line-height: 1.65;
    letter-spacing: 0.05em;
    margin-bottom: 2.4rem;
  }

  .top-subscription__description {
    font-size: clamp(1.5rem, 4.1vw, 1.9rem);
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin-bottom: 3.4rem;
  }

  .top-subscription__product {
    margin-bottom: 3.5rem;
  }

  .top-subscription__product-image {
    width: 100%;
    max-width: 30rem;
  }

  .top-subscription__button {
    width: 11rem;
    min-height: 3.4rem;
    padding: 0.8rem 0;
    font-size: 1.3rem;
  }

  .top-subscription__pc {
    display: none;
  }

  .top-subscription__sp {
    display: block;
  }
}

/* ========================================
  TOP フレーバーサブスク 小さいSP
======================================== */
@media screen and (max-width: 430px) {
  .top-subscription {
    padding-inline: 1.4rem;
  }

  .top-subscription__inner {
    padding: 5.8rem 3rem 5.5rem;
  }

  .top-subscription__title-image.top-subscription__sp {
    max-width: none;
  }

  .top-subscription__lead {
    font-size: 2rem;
  }

  .top-subscription__description {
    font-size: 1.5rem;
  }

  .top-subscription__product-image {
    max-width: none;
  }
}

/* ========================================
  TOP お得な買い切りセット
======================================== */
.top-one-time-purchase {
  width: 100%;
  padding: 9.2rem 4rem;
  background: linear-gradient(
    0deg,
    rgba(217, 241, 244, 1) 13%,
    rgba(217, 241, 244, 0.3) 77%,
    rgba(217, 241, 244, 0) 99%
  );
  display: none; /*公開したら外す*/
}
.top-one-time-purchase__inner {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
}
.top-one-time-purchase__heading {
  width: 100%;
  margin-bottom: 5.6rem;
  padding-left: 8rem;
}
.top-one-time-purchase__title {
  width: 100%;
  margin: 0;
  line-height: 1;
}
.top-one-time-purchase__title-image {
  display: block;
  width: 100%;
  max-width: 62rem;
  height: auto;
  margin-bottom: 1.6rem;
}
.top-one-time-purchase__subheading-line {
  display: block;
  width: 18rem;
  height: 2px;
  margin-bottom: 1.6rem;
  background-color: #CEAA35;
}
.top-one-time-purchase__label {
  margin: 0;
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.top-one-time-purchase__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  width: 100%;
}
.top-one-time-purchase__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: var(--color-white);
}
.top-one-time-purchase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32rem;
  padding: 2rem 3.2rem;
  background-color: #FFFCF6;
  overflow: hidden;
}
.top-one-time-purchase__package-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}
.top-one-time-purchase__package-image--6set {
  width: 100%;
  max-width: 48rem;
}
.top-one-time-purchase__package-image--8set {
  width: auto;
  max-width: 100%;
  max-height: 27rem;
}
.top-one-time-purchase__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1.8rem 2.4rem 3.8rem;
  background-color: var(--color-white);
}
.top-one-time-purchase__brand {
  margin: 0 0 1.8rem;
  color: var(--color-black);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.top-one-time-purchase__item-title {
  margin: 0 0 1.8rem;
  color: var(--color-navy);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.top-one-time-purchase__price {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.8rem;
}
.top-one-time-purchase__price-image {
  display: block;
  width: 100%;
  max-width: 56rem;
  height: auto;
  margin-inline: auto;
}
.top-one-time-purchase__button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}
.top-one-time-purchase__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  min-height: 4.8rem;
  padding: 1rem 0;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-navy);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
}
.top-one-time-purchase__button:hover {
  color: var(--color-white);
  opacity: 0.7;
}
/* ========================================
  TOP お得な買い切りセット SP
======================================== */
@media screen and (max-width: 767px) {
  .top-one-time-purchase {
    padding: 6.4rem 1.6rem;
  }
  .top-one-time-purchase__heading {
    margin-bottom: 4rem;
    padding-left: 2.4rem;
  }
  .top-one-time-purchase__title-image {
    max-width: 34rem;
    margin-bottom: 2rem;
  }
  .top-one-time-purchase__subheading-line {
    width: 12.2rem;
    margin-bottom: 1.2rem;
  }
  .top-one-time-purchase__label {
    font-size: 1.6rem;
  }
  .top-one-time-purchase__list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .top-one-time-purchase__visual {
    min-height: auto;
    padding: 3.2rem 2rem;
  }
  .top-one-time-purchase__package-image {
    max-width: 42rem;
  }
  .top-one-time-purchase__body {
    padding: 2rem 2rem 3.2rem;
  }
  .top-one-time-purchase__brand {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
  .top-one-time-purchase__item-title {
    margin-bottom: 3.2rem;
    font-size: clamp(2.2rem, 6.4vw, 2.8rem);
  }
  .top-one-time-purchase__price {
    margin-bottom: 3.2rem;
  }
  .top-one-time-purchase__price-image {
    max-width: 42rem;
  }
  .top-one-time-purchase__button {
    width: 22rem;
    min-height: 4.4rem;
    font-size: 1.6rem;
  }
}

/* ========================================
  TOP お得な買い切りセット 小さいSP
======================================== */
@media screen and (max-width: 430px) {
  .top-one-time-purchase {
    padding: 5.6rem 1.4rem;
  }
.top-one-time-purchase__heading {
    margin-bottom: 4rem;
    padding-left: 0rem;
  }
  .top-one-time-purchase__title-image {
    max-width: 100%;
  }

  .top-one-time-purchase__visual {
    padding: 2.4rem 1.6rem;
  }

  .top-one-time-purchase__body {
    padding: 1.8rem 1.6rem 2.8rem;
  }

  .top-one-time-purchase__item-title {
    margin-bottom: 2.8rem;
    font-size: 2.2rem;
  }

  .top-one-time-purchase__price {
    margin-bottom: 2.8rem;
  }

  .top-one-time-purchase__button {
    width: 18rem;
    min-height: 4rem;
    font-size: 1.5rem;
  }
}