@charset "UTF-8";
/*======================================================================
 * サイト全体共通レイアウト
======================================================================*/
.body-suzu {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.body-suzu.-moving {
  width: auto;
  height: auto;
  overflow: visible;
}
.body-suzu.-moving .g-header {
  padding-top: 110px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.body-suzu.-moving .g-header.-js-h-scroll {
  padding-top: 0;
}
.body-suzu.-moving .g-header.-js-h-scroll .site-header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .body-suzu.-moving .g-header {
    padding-top: 73px;
  }
}

/*------------------------------------------------------------
 * main
------------------------------------------------------------*/
.g-main {
  color: #231815;
}

/*------------------------------------------------------------
 * header
------------------------------------------------------------*/
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transform: translateY(-110px);
          transform: translateY(-110px);
  -webkit-transition: padding-top 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: padding-top 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, padding-top 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, padding-top 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.g-header.-js-scroll .suzu-header {
  background: #16b5cb;
}
.g-header.-js-scroll .suzu-header .logo {
  opacity: 1;
}
.g-header.-js-scroll .header-menu li a span {
  text-shadow: 0 0 8px #016372, 0 0 8px #1a7278;
}
@media screen and (max-width: 768px) {
  .g-header {
    -webkit-transform: translateY(-73px);
            transform: translateY(-73px);
  }
}

.suzu-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  padding: 12px 100px 12px 23px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.suzu-header .logo {
  width: 194px;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .suzu-header {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .suzu-header {
    padding-right: 23px;
  }
  .suzu-header .logo {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .suzu-header {
    height: 52px;
    padding: 0 23px 0 14px;
  }
  .suzu-header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 127px;
  }
  .suzu-header .toggle-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .suzu-header .toggle-button span {
    position: relative;
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .suzu-header .toggle-button span::before, .suzu-header .toggle-button span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    margin: auto 0;
    background: #fff;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .suzu-header .toggle-button span::before {
    top: -10px;
  }
  .suzu-header .toggle-button span::after {
    top: 10px;
  }
  .suzu-header .toggle-button.-js-open span {
    background: transparent;
  }
  .suzu-header .toggle-button.-js-open span::before {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .suzu-header .toggle-button.-js-open span::after {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .main-menu {
    position: absolute;
    top: 52px;
    left: 100vw;
    width: 100vw;
    height: calc(100vh - 52px);
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
  }
  .main-menu.-js-open {
    left: 0;
  }
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
}
.header-menu li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-left: 45px;
}
.header-menu li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.header-menu li a span {
  text-shadow: 0 0 8px #003c45, 0 0 8px #016372, 0 0 8px #1a7278;
}
.header-menu li.-current {
  border-bottom: 2px solid;
}
@media screen and (max-width: 1000px) {
  .header-menu li {
    margin-left: 15px;
  }
  .header-menu li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .header-menu {
    display: block;
    background: linear-gradient(-140deg, #00a3b7, #f4e09a);
  }
  .header-menu li {
    text-align: center;
    margin: 0;
    border-bottom: 1px solid #fff;
  }
  .header-menu li a {
    padding: 1.9em 0;
    font-size: 1.7rem;
  }
  .header-menu li a span {
    text-shadow: 0px 0px 25px rgba(0, 178, 203, 0.69), 0px 0px 12px rgba(0, 178, 203, 0.69), 0 0 5px #1a7278;
  }
}

/*------------------------------------------------------------
 * footer
------------------------------------------------------------*/
.suzu-footer-wrap {
  position: relative;
  background: #fff;
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  padding-right: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: #fff;
  z-index: 1000;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.pagetop.-js-show {
  opacity: 1;
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #00afc9;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .pagetop:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 50px;
    height: 55px;
  }
  .pagetop::after {
    width: 15px;
    height: 15px;
  }
}

/* ------------------------------------------------------------
  * 共通クラス
------------------------------------------------------------ */
.ff-mincho {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

.lead-text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.17;
}
.lead-text p {
  margin: 2em 0;
}
.lead-text p:first-child {
  margin-top: 0;
}
.lead-text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .lead-text {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.sec-title.-white {
  color: #fff;
  text-shadow: 0 0 65px #14b6cd, 0px 0px 40px #14b6cd, 0px 0px 40px #14b6cd;
}

h2.sec-title {
  margin-bottom: 70px;
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
h2.sec-title.-bg {
  position: relative;
  padding-top: 100px;
  z-index: 0;
}
h2.sec-title.-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12.29vw;
  min-height: 172px;
  background: url("/brand/suzu-kirishima/assets/images/bg-title.png") 50% 0/100% auto no-repeat;
  z-index: -1;
}
h2.sec-title.-bgw {
  position: relative;
  padding-top: 100px;
  z-index: 0;
}
h2.sec-title.-bgw::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12.29vw;
  min-height: 172px;
  background: url("/brand/suzu-kirishima/assets/images/bg-title-w.png") 50% 0/100% auto no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  h2.sec-title {
    margin-bottom: 30px;
    font-size: 2.7rem;
  }
  h2.sec-title.-white {
    text-shadow: 0 0 32px #14b6cd, 0px 0px 20px #14b6cd, 0px 0px 20px #14b6cd;
  }
  h2.sec-title.-bg {
    padding-top: 50px;
  }
  h2.sec-title.-bg::before {
    height: 22.93vw;
    min-height: 66px;
    background-image: url("/brand/suzu-kirishima/assets/images/bg-title-sp.png");
  }
  h2.sec-title.-bgw {
    padding-top: 50px;
  }
  h2.sec-title.-bgw::before {
    height: 22.93vw;
    min-height: 66px;
    background-image: url("/brand/suzu-kirishima/assets/images/bg-title-w-sp.png");
  }
}

h3.sec-title {
  font-size: 3.4rem;
  line-height: 1.35;
  text-align: center;
}
h3.sec-title.-white {
  color: #fff;
}
@media screen and (max-width: 768px) {
  h3.sec-title {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}

h4.sec-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
}
h4.sec-title.-white {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 32px #14b6cd, 0px 0px 20px #14b6cd, 0px 0px 20px #14b6cd;
}
@media screen and (max-width: 768px) {
  h4.sec-title {
    font-size: 1.7rem;
    line-height: 1.15;
  }
}

.column2-block,
.column3-block,
.column4-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .column2-block,
.column3-block,
.column4-block {
    display: block;
  }
}

.overlay {
  position: fixed;
  top: 0;
  height: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
}
.overlay .overlay-filter {
  width: 100%;
  height: 100%;
  background: #16b5cb;
}
.overlay .copy-wrap {
  position: absolute;
  top: calc(50vh - 102px);
  left: 0;
  right: 0;
  width: 423px;
  height: 203px;
  margin: 0 auto;
  z-index: 1002;
}
.overlay .copy-wrap ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.overlay .copy-wrap ul li {
  display: block;
  width: 50px;
  text-align: center;
  opacity: 0;
}
.overlay .copy-wrap ul.copy-01 {
  margin-bottom: 12px;
}
.overlay .copy-wrap ul.copy-01 li:nth-child(1) {
  margin-top: 6px;
}
.overlay .copy-wrap ul.copy-01 li:nth-child(2) {
  margin-top: 4px;
}
.overlay .copy-wrap ul.copy-01 li:nth-child(3) {
  margin-top: 3px;
}
.overlay .copy-wrap ul.copy-01 li:nth-child(4) {
  margin-top: 4px;
}
.overlay .copy-wrap ul.copy-01 li:nth-child(5) {
  margin-top: 6px;
}
.overlay .copy-wrap ul.copy-02 {
  margin-left: 68px;
  margin-bottom: 8px;
}
.overlay .copy-wrap ul.copy-02 li:nth-child(3) {
  margin-top: 5px;
}
.overlay .copy-wrap ul.copy-02 li:nth-child(4) {
  margin-top: 11px;
}
.overlay .copy-wrap ul.copy-02 li:nth-child(5) {
  margin-top: 15px;
}
.overlay .copy-wrap ul.copy-03 {
  margin-left: 31px;
}
.overlay .copy-wrap ul.copy-03 li:nth-child(1) {
  margin-top: 4px;
}
.overlay .copy-wrap ul.copy-03 li:nth-child(4) {
  margin-top: 4px;
}
.overlay .copy-wrap ul.copy-03 li:nth-child(5) {
  margin-top: 4px;
}
.overlay .copy-wrap ul.copy-03 li:nth-child(6) {
  margin-top: 12px;
}
.overlay .copy-wrap ul.copy-03 li:nth-child(7) {
  margin-top: 8px;
}
.overlay .copy-wrap ul.copy-03 li:nth-child(8) {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .overlay .copy-wrap {
    top: calc(50vh - 54px);
    width: 260px;
    height: 115px;
  }
  .overlay .copy-wrap ul li {
    width: 30px;
  }
  .overlay .copy-wrap ul.copy-01 {
    margin-bottom: 0;
  }
  .overlay .copy-wrap ul.copy-01 li:nth-child(1) {
    margin-top: 4px;
  }
  .overlay .copy-wrap ul.copy-01 li:nth-child(2) {
    margin-top: 3px;
  }
  .overlay .copy-wrap ul.copy-01 li:nth-child(3) {
    margin-top: 4px;
  }
  .overlay .copy-wrap ul.copy-01 li:nth-child(4) {
    margin-top: 4px;
  }
  .overlay .copy-wrap ul.copy-01 li:nth-child(5) {
    margin-top: 4px;
  }
  .overlay .copy-wrap ul.copy-02 {
    margin-left: 34px;
    margin-bottom: 0;
  }
  .overlay .copy-wrap ul.copy-02 li:nth-child(4) {
    margin-top: 6px;
  }
  .overlay .copy-wrap ul.copy-02 li:nth-child(5) {
    margin-top: 15px;
  }
  .overlay .copy-wrap ul.copy-03 {
    margin-left: 20px;
  }
  .overlay .copy-wrap ul.copy-03 li:nth-child(1) {
    margin-top: 3px;
  }
  .overlay .copy-wrap ul.copy-03 li:nth-child(4) {
    margin-top: 3px;
  }
  .overlay .copy-wrap ul.copy-03 li:nth-child(5) {
    margin-top: 3px;
  }
  .overlay .copy-wrap ul.copy-03 li:nth-child(6) {
    margin-top: 6px;
  }
  .overlay .copy-wrap ul.copy-03 li:nth-child(7) {
    margin-top: 5px;
  }
  .overlay .copy-wrap ul.copy-03 li:nth-child(8) {
    margin-top: 3px;
  }
}

.cloud-01,
.cloud-02 {
  position: absolute;
  bottom: 0;
  width: 1334px;
  height: 686px;
  background: url("/brand/suzu-kirishima/assets/images/cloud.png") 0 0/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .cloud-01,
.cloud-02 {
    width: 120vw;
    height: 61.24vw;
  }
}

/* ------------------------------------------------------------
  * MV
------------------------------------------------------------ */
.mv {
  position: relative;
  width: 100%;
  height: 1000px;
  background: url("/brand/suzu-kirishima/assets/images/bg-mv.jpg") 50% 100%/cover;
  overflow: hidden;
  z-index: 10;
}
.mv .bottle {
  position: absolute;
  bottom: -110px;
  left: 0;
  right: 0;
  width: 170px;
  margin: auto;
  opacity: 0;
}
.mv .bottle-m {
  -webkit-animation: bottle 10s linear infinite alternate;
          animation: bottle 10s linear infinite alternate;
}
.mv .bottle-r {
  -webkit-animation: bottle-r 10s linear infinite alternate;
          animation: bottle-r 10s linear infinite alternate;
}
.mv .glass {
  position: absolute;
  bottom: -30px;
  left: 430px;
  right: 0;
  width: 199px;
  margin: auto;
  opacity: 0;
}
.mv .glass-m {
  -webkit-animation: glass 10s linear infinite alternate;
          animation: glass 10s linear infinite alternate;
}
.mv .glass-r {
  -webkit-animation: glass-r 10s linear infinite alternate;
          animation: glass-r 10s linear infinite alternate;
}
.mv .mv-logo {
  position: absolute;
  top: 130px;
  left: 100px;
  opacity: 0;
}
.mv .label {
  position: absolute;
  bottom: 207px;
  left: -260px;
  right: 0;
  width: 47px;
  margin: auto;
  opacity: 0;
}
.mv .logo {
  position: absolute;
  bottom: 59px;
  left: 100px;
  width: 417px;
  margin: auto;
  opacity: 0;
}
.mv .cloud-01 {
  bottom: -20%;
  left: 20%;
}
.mv .cloud-01 {
  bottom: -20%;
  right: 20%;
}
@media screen and (max-width: 1200px) {
  .mv .mv-logo {
    top: calc(9.3vw + 110px);
    left: 7.1vw;
    width: 32.33vw;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 610px;
    background-image: url("/brand/suzu-kirishima/assets/images/bg-mv-sp.jpg");
  }
  .mv .bottle {
    bottom: -104px;
    left: -7px;
    right: 0;
    width: 92px;
  }
  .mv .bottle-m {
    -webkit-animation: bottle-sp 10s linear infinite alternate;
            animation: bottle-sp 10s linear infinite alternate;
  }
  .mv .bottle-r {
    -webkit-animation: bottle-sp-r 10s linear infinite alternate;
            animation: bottle-sp-r 10s linear infinite alternate;
  }
  .mv .glass {
    bottom: -58px;
    left: 208px;
    width: 110px;
  }
  .mv .glass-m {
    -webkit-animation: glass-sp 10s linear infinite alternate;
            animation: glass-sp 10s linear infinite alternate;
  }
  .mv .glass-r {
    -webkit-animation: glass-sp-r 10s linear infinite alternate;
            animation: glass-sp-r 10s linear infinite alternate;
  }
  .mv .label {
    bottom: 76px;
    left: -164px;
    width: 31px;
  }
  .mv .mv-logo {
    top: 120px;
    left: 0;
    right: 0;
    width: 309px;
    margin: 0 auto;
  }
  .mv .cloud-01 {
    bottom: -10%;
    left: 10%;
  }
  .mv .cloud-02 {
    bottom: -10%;
    right: 10%;
  }
}

/* ------------------------------------------------------------
  * main背景
------------------------------------------------------------ */
.main-bg {
  position: relative;
  background: url("/brand/suzu-kirishima/assets/images/bg-main.jpg") 50% 0/100% 100vh no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.main-bg .sec-inner {
  position: relative;
  z-index: 10;
}
.main-bg .cloud-01,
.main-bg .cloud-02 {
  position: fixed;
  left: 0;
  top: 0;
  width: 1334px;
  height: 686px;
}
.main-bg .cloud-01 {
  background-position: 0 100%;
  -webkit-animation: cloud01 80s cubic-bezier(0.39, 0.28, 0.69, 0.35) infinite;
          animation: cloud01 80s cubic-bezier(0.39, 0.28, 0.69, 0.35) infinite;
}
.main-bg .cloud-02 {
  background-position: 100% 100%;
  -webkit-animation: cloud02 80s cubic-bezier(0.39, 0.28, 0.69, 0.35) infinite;
          animation: cloud02 80s cubic-bezier(0.39, 0.28, 0.69, 0.35) infinite;
}
@media screen and (max-width: 768px) {
  .main-bg {
    background-image: url("/brand/suzu-kirishima/assets/images/bg-main-sp.jpg");
  }
}

/* ------------------------------------------------------------
  * CM
------------------------------------------------------------ */
.cm-block {
  padding: 80px 0 120px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 178, 207, 0.5)), to(rgba(109, 226, 239, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 178, 207, 0.5), rgba(109, 226, 239, 0.5));
}
.cm-block .lead-text {
  margin-bottom: 40px;
}
.cm-block .sec-title {
  margin: 90px 0 45px;
  text-align: center;
}
.cm-block .movie {
  position: relative;
  width: 560px;
  padding-top: 315px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 37px 6px rgba(255, 255, 255, 0.64);
          box-shadow: 0px 0px 37px 6px rgba(255, 255, 255, 0.64);
}
.cm-block .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cm-block .movie-title {
  margin-top: 25px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
  text-shadow: 0 0 30px #14b6cd, 0px 0px 15px #14b6cd, 0px 0px 15px #14b6cd;
}
@media screen and (max-width: 768px) {
  .cm-block {
    padding: 44px 6vw 50px;
  }
  .cm-block .lead-text {
    margin-bottom: 0;
  }
  .cm-block .sec-title {
    margin-top: 45px;
  }
  .cm-block .movie {
    width: 100%;
    padding-top: 56.36%;
  }
  .cm-block .movie-title {
    margin-top: 15px;
    font-size: 1.5rem;
    line-height: 1.15;
  }
}

/* ------------------------------------------------------------
  * SUZUKIRISHIMAの特徴
------------------------------------------------------------ */
.feature-block {
  padding: 0 0 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(109, 226, 239, 0.5)), to(rgba(0, 178, 207, 0.5)));
  background: linear-gradient(to bottom, rgba(109, 226, 239, 0.5), rgba(0, 178, 207, 0.5));
}
.feature-block .lead-text {
  margin-bottom: 70px;
}
.feature-block h4.sec-title {
  margin-bottom: 30px;
}
.feature-block .column3-block .item {
  width: calc(100% / 3 - 4px / 3);
}
.feature-block .column3-block .image {
  margin-bottom: 5px;
  border-radius: 10px;
  overflow: hidden;
}
.feature-block .column3-block .title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 2.17;
  text-align: center;
}
.feature-block .column3-block .text {
  padding: 0 1.14em;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.feature-block .column3-block .text .note {
  font-size: 1.2rem;
  line-height: 1.75;
}
.feature-block .note {
  margin-top: 25px;
  font-size: 1.2rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-block {
    padding: 0 0 55px;
  }
  .feature-block h2.sec-title {
    margin-bottom: 25px;
  }
  .feature-block .lead-text {
    margin-bottom: 40px;
  }
  .feature-block .column3-block {
    width: auto;
    margin: 0 6vw;
  }
  .feature-block .column3-block .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .feature-block .column3-block .item:not(:last-child) {
    margin-bottom: 20px;
  }
  .feature-block .column3-block .image-box {
    width: 39.39%;
  }
  .feature-block .column3-block .image {
    border-radius: 5px;
  }
  .feature-block .column3-block .title {
    font-size: 1.4rem;
    line-height: 1.39;
  }
  .feature-block .column3-block .text {
    width: 56.06%;
    margin-top: -0.25em;
    padding: 0;
    font-size: 1.2rem;
    letter-spacing: 0.025em;
  }
  .feature-block .note {
    margin: 20px 6vw 0;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

/* ------------------------------------------------------------
  * 味わいマップ
------------------------------------------------------------ */
.taste-map-block {
  padding: 0 0 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 178, 207, 0.5)), to(rgba(220, 246, 249, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 178, 207, 0.5), rgba(220, 246, 249, 0.5));
}
.taste-map-block .sec-title {
  margin-bottom: 50px;
  text-align: center;
}
.taste-map-block .lead-text {
  margin-bottom: 125px;
}
.taste-map-block .taste-map {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.taste-map-block .taste-map .map-image {
  -webkit-box-shadow: 0px 34px 73px 0px rgba(104, 122, 128, 0.29);
          box-shadow: 0px 34px 73px 0px rgba(104, 122, 128, 0.29);
}
.taste-map-block .taste-map p {
  margin: 15px 0 0;
  font-size: 1.2rem;
  text-align: right;
}
.taste-map-block .taste-map .text {
  position: absolute;
  top: -55px;
  left: -100px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .taste-map-block {
    padding: 0 0 25px;
  }
  .taste-map-block .sec-title {
    margin-bottom: 30px;
    padding: 0 6vw;
  }
  .taste-map-block .lead-text {
    margin-bottom: 45px;
    padding: 0 6vw;
  }
  .taste-map-block .taste-map {
    padding: 0 6vw;
  }
  .taste-map-block .taste-map .map-image {
    -webkit-box-shadow: 0px 17px 36px 0px rgba(104, 122, 128, 0.29);
            box-shadow: 0px 17px 36px 0px rgba(104, 122, 128, 0.29);
  }
  .taste-map-block .taste-map p {
    margin: 20px 0 0;
    font-size: 1.1rem;
    text-align: left;
  }
  .taste-map-block .taste-map .text {
    top: -35px;
    left: 0;
    width: 40.8vw;
    margin: 0;
  }
}

/* ------------------------------------------------------------
  * 楽しみ方
------------------------------------------------------------ */
.joy-block {
  padding: 70px 0 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(220, 246, 249, 0.5)), to(rgba(220, 246, 249, 0)));
  background: linear-gradient(to bottom, rgba(220, 246, 249, 0.5), rgba(220, 246, 249, 0));
}
.joy-block h2.sec-title {
  margin-bottom: 50px;
  text-align: center;
}
.joy-block .joy-item {
  max-width: 1000px;
  margin: 0 auto;
}
.joy-block .joy-item .text {
  position: relative;
  background: #f9f5e7;
}
.joy-block .joy-item .text .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 144px;
  height: 144px;
  font-size: 2.1rem;
  line-height: 1.3;
  text-align: center;
  border-radius: 50%;
}
.joy-block .joy-item .text .circle p {
  margin: 0;
  white-space: nowrap;
}
.joy-block .joy-item .text .circle .obj {
  position: absolute;
}
.joy-block .joy-item .text .title {
  font-weight: bold;
}
.joy-block .joy-item.-carbonated {
  margin-bottom: 137px;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .image {
  width: 700px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 500px;
  margin: 80px -200px 0 0;
  padding: 40px 50px 55px;
  text-align: center;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .text .circle {
  top: -63px;
  left: 0;
  color: #fff;
  background: #c4b153;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .text .circle .obj {
  top: -72px;
  left: 0;
  width: 48px;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .text .logo {
  width: 107px;
  margin: 0 auto 15px;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .text .title {
  margin-bottom: 20px;
  font-size: 3.4rem;
  line-height: 1.35;
  letter-spacing: normal;
}
.joy-block .joy-item.-carbonated .column2-block.-recommend .text > p {
  font-size: 1.4rem;
  line-height: 1.5;
}
.joy-block .joy-item.-carbonated .point {
  position: relative;
  max-width: 870px;
  margin: 55px auto 0;
  padding: 40px;
  border: 3px solid #c4b153;
}
.joy-block .joy-item.-carbonated .point .pic-title {
  position: absolute;
  top: -75px;
  left: -60px;
  width: 244px;
}
.joy-block .joy-item.-carbonated .point .title {
  margin: 0 0 20px;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
.joy-block .joy-item.-carbonated .point .column2-block ol {
  padding: 0;
  list-style: none;
  counter-reset: item;
  margin: 0 40px 0 0;
}
.joy-block .joy-item.-carbonated .point .column2-block ol li {
  position: relative;
  padding-left: 50px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.joy-block .joy-item.-carbonated .point .column2-block ol li:not(:last-child) {
  margin-bottom: 18px;
}
.joy-block .joy-item.-carbonated .point .column2-block ol li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  background: #c4b153;
}
.joy-block .joy-item.-arrange {
  margin-bottom: 150px;
}
.joy-block .joy-item.-arrange .column2-block {
  margin-bottom: 40px;
}
.joy-block .joy-item.-arrange .image {
  width: 700px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.joy-block .joy-item.-arrange .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 500px;
  margin: 80px 0 0 -200px;
  padding: 90px 50px 55px;
}
.joy-block .joy-item.-arrange .text .circle {
  top: -65px;
  right: 0;
  color: #fff;
  background: #61bd93;
}
.joy-block .joy-item.-arrange .text .circle .obj {
  top: -67px;
  right: 0;
  width: 66px;
}
.joy-block .joy-item.-arrange .text .title {
  margin: 0 -10px 30px;
  font-size: 3.4rem;
  line-height: 1.35;
  letter-spacing: normal;
  text-align: center;
}
.joy-block .joy-item.-arrange .text ol {
  padding: 0;
  list-style: none;
  counter-reset: item;
  margin: 0 40px 0 0;
}
.joy-block .joy-item.-arrange .text ol li {
  position: relative;
  padding-left: 50px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.joy-block .joy-item.-arrange .text ol li:not(:last-child) {
  margin-bottom: 18px;
}
.joy-block .joy-item.-arrange .text ol li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  margin-right: 14px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  background: #61bd93;
}
.joy-block .joy-item.-arrange .material {
  position: relative;
  margin-bottom: 20px;
  padding: 20px 0 12px;
  background: url("/brand/suzu-kirishima/assets/images/bg-border-green.png") 0 0 repeat-x, url("/brand/suzu-kirishima/assets/images/bg-border-green.png") 0 100% repeat-x;
}
.joy-block .joy-item.-arrange .material .title {
  position: absolute;
  top: -12px;
  left: 0;
  width: 14em;
  color: #61bd93;
  font-size: 1.8rem;
  text-align: left;
  background: #f9f5e7;
}
.joy-block .joy-item.-arrange .material table {
  width: 100%;
  font-size: 1.4rem;
}
.joy-block .joy-item.-arrange .material table td {
  width: 50%;
}
.joy-block .joy-item.-arrange .caution {
  max-width: 870px;
  margin: 0 auto;
  padding: 30px 35px 35px;
  background: #fff5b3;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.75;
  -webkit-box-shadow: 0px 0px 15px 5px #fff5b3;
          box-shadow: 0px 0px 15px 5px #fff5b3;
}
.joy-block .joy-item.-arrange .caution .title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.17;
  text-align: center;
}
.joy-block .joy-item.-arrange .caution .detail {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.joy-block .joy-item.-arrange .caution .detail a {
  color: #000;
}
.joy-block .joy-item.-pairing .rec-text {
  position: relative;
  width: 860px;
  padding: 60px 50px 70px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  background: transparent;
  z-index: 0;
}
.joy-block .joy-item.-pairing .rec-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 205px);
  background: #f9f5e7;
  z-index: -1;
}
.joy-block .joy-item.-pairing .rec-text .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -83px;
  left: 0;
  color: #fff;
  font-size: 2.1rem;
  width: 144px;
  height: 144px;
  text-align: center;
  background: #ff8368;
  border-radius: 50%;
}
.joy-block .joy-item.-pairing .rec-text .circle p {
  margin: 0;
  white-space: nowrap;
}
.joy-block .joy-item.-pairing .rec-text .circle .obj {
  position: absolute;
  top: -15px;
  left: 0;
  width: 116px;
}
.joy-block .joy-item.-pairing .rec-text .title {
  margin: 0 0 20px;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: normal;
}
.joy-block .joy-item.-pairing .column2-block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 50px;
}
.joy-block .joy-item.-pairing .column2-block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 440px;
  -webkit-box-shadow: 0px 34px 73px 0px rgba(104, 122, 128, 0.29);
          box-shadow: 0px 34px 73px 0px rgba(104, 122, 128, 0.29);
}
.joy-block .joy-item.-pairing .column2-block .item:first-child {
  background: #eedccf;
}
.joy-block .joy-item.-pairing .column2-block .item:nth-child(2) {
  background: #f2e7ce;
  margin-left: 70px;
}
.joy-block .joy-item.-pairing .column2-block .item:nth-child(3) {
  background: #d8eeb6;
}
.joy-block .joy-item.-pairing .column2-block .item:nth-child(n+3) {
  margin-top: 76px;
}
.joy-block .joy-item.-pairing .column2-block .item .pic-title {
  position: absolute;
  top: -70px;
  left: -60px;
  width: 250px;
}
.joy-block .joy-item.-pairing .column2-block .item .text {
  height: 100%;
  padding: 35px 40px;
  font-size: 1.8rem;
  line-height: 1.5;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .joy-block {
    padding: 0 0 50px;
  }
  .joy-block h2.sec-title {
    margin-bottom: 35px;
  }
  .joy-block .joy-item {
    padding: 0 6vw;
  }
  .joy-block .joy-item .text .circle {
    width: 90px;
    height: 90px;
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .joy-block .joy-item.-carbonated {
    margin-bottom: 50px;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .image {
    width: 90.9%;
    margin-left: auto;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .image img {
    width: 100%;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .text {
    width: 87.88%;
    margin: -10.27vw auto 0 0;
    padding: 20px 20px 25px;
    text-align: left;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .text .circle {
    top: -45px;
    left: 0;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .text .circle .obj {
    top: -45px;
    left: 0;
    width: 30px;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .text .logo {
    width: 65px;
    margin: 0 auto 15px;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .text .title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    line-height: 1.4;
    text-align: center;
  }
  .joy-block .joy-item.-carbonated .column2-block.-recommend .text > p {
    font-size: 1.2rem;
  }
  .joy-block .joy-item.-carbonated .point {
    margin: 35px auto 0;
    padding: 25px;
  }
  .joy-block .joy-item.-carbonated .point .pic-title {
    top: -28px;
    left: -6vw;
    width: 102px;
  }
  .joy-block .joy-item.-carbonated .point .title {
    margin: 0 0 25px;
    font-size: 1.7rem;
  }
  .joy-block .joy-item.-carbonated .point .column2-block ol {
    margin: 0 0 20px;
  }
  .joy-block .joy-item.-carbonated .point .column2-block ol li {
    padding-left: 37px;
    font-size: 1.4rem;
    line-height: 1.78;
  }
  .joy-block .joy-item.-carbonated .point .column2-block ol li:not(:last-child) {
    margin-bottom: 10px;
  }
  .joy-block .joy-item.-carbonated .point .column2-block ol li::before {
    width: 25px;
    height: 25px;
    margin-right: 14px;
    font-size: 1.6rem;
  }
  .joy-block .joy-item.-arrange {
    margin-bottom: 108px;
  }
  .joy-block .joy-item.-arrange .column2-block {
    margin-bottom: 20px;
  }
  .joy-block .joy-item.-arrange .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 90.9%;
    margin-right: auto;
  }
  .joy-block .joy-item.-arrange .text {
    width: 87.88%;
    margin: -30px 0 0 auto;
    padding: 50px 20px 25px;
  }
  .joy-block .joy-item.-arrange .text .circle {
    top: -45px;
  }
  .joy-block .joy-item.-arrange .text .circle .obj {
    top: -41px;
    width: 43px;
  }
  .joy-block .joy-item.-arrange .text .title {
    margin: 0 -10px 20px;
    font-size: 2.2rem;
  }
  .joy-block .joy-item.-arrange .text ol {
    margin: 0;
    padding-left: 0;
    line-height: 1.78;
  }
  .joy-block .joy-item.-arrange .text ol li {
    padding-left: 36px;
    font-size: 1.4rem;
  }
  .joy-block .joy-item.-arrange .text ol li:not(:last-child) {
    margin-bottom: 10px;
  }
  .joy-block .joy-item.-arrange .text ol li::before {
    width: 25px;
    height: 25px;
    margin-right: 14px;
    font-size: 1.6rem;
  }
  .joy-block .joy-item.-arrange .material {
    margin-bottom: 15px;
    padding: 12px 0;
  }
  .joy-block .joy-item.-arrange .material .title {
    top: -7px;
    font-size: 1.2rem;
  }
  .joy-block .joy-item.-arrange .material table {
    display: block;
    font-size: 1.2rem;
  }
  .joy-block .joy-item.-arrange .material table tr {
    display: block;
  }
  .joy-block .joy-item.-arrange .material table td {
    display: block;
    width: 100%;
  }
  .joy-block .joy-item.-arrange .caution {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.5;
    -webkit-box-shadow: 0px 0px 6px 5px #fff5b3;
            box-shadow: 0px 0px 6px 5px #fff5b3;
  }
  .joy-block .joy-item.-arrange .caution .title {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .joy-block .joy-item.-arrange .caution .detail {
    margin-top: 10px;
    font-size: 1.1rem;
  }
  .joy-block .joy-item.-pairing .rec-text {
    width: 87.88%;
    margin-right: auto;
    padding: 55px 20px 30px;
    font-size: 1.2rem;
    text-align: left;
  }
  .joy-block .joy-item.-pairing .rec-text::before {
    height: calc(100% + 18.67vw);
  }
  .joy-block .joy-item.-pairing .rec-text .circle {
    top: -45px;
    left: 0;
    font-size: 1.3rem;
    width: 90px;
    height: 90px;
  }
  .joy-block .joy-item.-pairing .rec-text .circle .obj {
    top: -12px;
    width: 74px;
  }
  .joy-block .joy-item.-pairing .rec-text .title {
    margin: 0 0 15px;
    font-size: 2.2rem;
    text-align: center;
  }
  .joy-block .joy-item.-pairing .column2-block {
    width: 90.9%;
    margin: 0 0 0 auto;
  }
  .joy-block .joy-item.-pairing .column2-block .item {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .joy-block .joy-item.-pairing .column2-block .item:nth-child(2) {
    margin-left: 0;
  }
  .joy-block .joy-item.-pairing .column2-block .item:nth-child(n+3) {
    margin-top: 0;
  }
  .joy-block .joy-item.-pairing .column2-block .item:not(:last-child) {
    margin-bottom: 40px;
  }
  .joy-block .joy-item.-pairing .column2-block .item .pic-title {
    top: -30px;
    left: -36px;
    width: 115px;
  }
  .joy-block .joy-item.-pairing .column2-block .item .text {
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.39;
  }
}

/* ------------------------------------------------------------
  * ラベルに込めた想い
------------------------------------------------------------ */
.thought-block {
  padding: 0 0 100px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(2, 139, 158, 0.65098)), color-stop(80%, rgba(2, 139, 158, 0.42)), color-stop(92%, rgba(61, 150, 166, 0.33)), color-stop(96%, rgba(80, 154, 169, 0.17)), to(rgba(157, 169, 179, 0)));
  background: linear-gradient(to top, rgba(2, 139, 158, 0.65098) 50%, rgba(2, 139, 158, 0.42) 80%, rgba(61, 150, 166, 0.33) 92%, rgba(80, 154, 169, 0.17) 96%, rgba(157, 169, 179, 0) 100%);
}
.thought-block .sec-title {
  margin-bottom: 80px;
  text-align: center;
}
.thought-block .column2-block.-label {
  margin-bottom: 100px;
}
.thought-block .column2-block.-label .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 392px;
  margin-right: 67px;
}
.thought-block .column2-block.-label .text {
  width: 670px;
  margin-top: -0.5em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.17;
}
.thought-block .column2-block.-label .text p {
  margin: 2em 0;
}
.thought-block .column2-block.-label .text p:first-child {
  margin-top: 0;
}
.thought-block .column2-block.-label .text p:last-child {
  margin-bottom: 0;
}
.thought-block .column2-block.-detail {
  max-width: 850px;
  margin: 0 auto 50px;
  padding: 50px 90px 50px 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.thought-block .column2-block.-detail .image {
  width: 45.34%;
  text-align: center;
}
.thought-block .column2-block.-detail .image img {
  width: 209px;
}
.thought-block .column2-block.-detail .text {
  width: 54.66%;
  font-size: 1.8rem;
  line-height: 1.5;
}
.thought-block .column2-block.-detail .text p {
  margin: 0;
}
.thought-block .column2-block.-detail .text .title {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: normal;
}
.thought-block .column2-block.-detail .text .caution {
  margin: 20px 0 0;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.thought-block .column2-block.-detail .text sup {
  top: 0;
  font-size: 43.75%;
}
.thought-block .column2-block.-detail .text ol {
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.thought-block .column2-block.-detail .text ol li {
  padding-left: 30px;
  text-indent: -30px;
}
.thought-block .column2-block.-detail .text ol li::before {
  counter-increment: item;
  content: "※" counter(item);
  margin-right: 1em;
}
.thought-block .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.thought-block .button a {
  display: block;
  width: 500px;
  padding: 20px 40px;
  color: #231815;
  font-size: 1.8rem;
  line-height: 1.17;
  background: url("/brand/suzu-kirishima/assets/images/icon-blank.png") right 15px top 50%/18px auto #dbc65e no-repeat;
  border-radius: 5px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .thought-block {
    padding: 0 0 60px;
  }
  .thought-block .sec-title {
    margin-bottom: 30px;
    padding: 0 6vw;
  }
  .thought-block .column2-block {
    margin-bottom: 40px;
    padding: 0 6vw;
  }
  .thought-block .column2-block.-label {
    margin-bottom: 60px;
  }
  .thought-block .column2-block.-label .image {
    width: 224px;
    margin: 0 auto 30px;
  }
  .thought-block .column2-block.-label .text {
    width: 100%;
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 2;
    text-align: center;
  }
  .thought-block .column2-block.-detail {
    width: auto;
    margin: 0 6vw 30px;
    padding: 20px 15px 15px;
    border-radius: 5px;
  }
  .thought-block .column2-block.-detail .item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 15px 15px;
  }
  .thought-block .column2-block.-detail .image {
    width: 100%;
    margin-bottom: 10px;
  }
  .thought-block .column2-block.-detail .image img {
    width: 121px;
  }
  .thought-block .column2-block.-detail .text {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.39;
  }
  .thought-block .column2-block.-detail .text .title {
    margin-bottom: 10px;
    font-size: 2.1rem;
    line-height: 1.5;
    text-align: center;
  }
  .thought-block .column2-block.-detail .text .caution {
    margin: 1em 0 0;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .thought-block .column2-block.-detail .text ol li::before {
    margin-right: 12px;
  }
  .thought-block .button {
    padding: 0 6vw;
  }
  .thought-block .button a {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.4rem;
    background-size: 18px auto;
  }
}

.zero-block {
  position: relative;
  padding-top: 200px;
  z-index: 0;
}
.zero-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12.29vw;
  min-height: 172px;
  background: url("/brand/suzu-kirishima/assets/images/bg-title-w.png") 50% 0/100% auto no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .zero-block {
    padding-top: 100px;
  }
  .zero-block::before {
    height: 22.93vw;
    min-height: 66px;
    background-image: url("/brand/suzu-kirishima/assets/images/bg-title-w-sp.png");
  }
}

/* ------------------------------------------------------------
  * 100％へのこだわり
------------------------------------------------------------ */
.commitment-block {
  padding: 100px 0 0;
}
.commitment-block .column2-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
.commitment-block .column2-block .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 380px;
  margin-right: 54px;
}
.commitment-block .column2-block .text {
  width: 100%;
  font-size: 1.8rem;
}
.commitment-block .column2-block .text ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.commitment-block .column2-block .text ul li::before {
  content: "■";
}
.commitment-block .column4-block .item {
  width: calc(25% - 3px);
}
@media screen and (max-width: 768px) {
  .commitment-block {
    padding: 45px 0 0;
  }
  .commitment-block .column2-block {
    margin-bottom: 25px;
    padding: 0 6vw;
  }
  .commitment-block .column2-block .image {
    width: 270px;
    margin: 0 auto 20px;
  }
  .commitment-block .column2-block .text {
    width: 100%;
    font-size: 1.4rem;
  }
  .commitment-block .column4-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 6vw;
  }
  .commitment-block .column4-block .item {
    width: calc(50% - 1px);
  }
  .commitment-block .column4-block .item:nth-child(n+3) {
    margin-top: 2px;
  }
}

/* ------------------------------------------------------------
  * 商品詳細
------------------------------------------------------------ */
.product-block {
  position: relative;
  padding: 90px 0 55px;
  background: #fff;
  z-index: 10;
}
.product-block .sec-title {
  margin-bottom: 70px;
}
.product-block .column2-block {
  max-width: 1200px;
  margin: 0 auto 50px;
}
.product-block .column2-block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}
.product-block .column2-block .item.-bottle {
  padding-left: 100px;
  border-right: 1px solid #e0e0e0;
}
.product-block .column2-block .item.-bottle .image {
  width: 76px;
}
.product-block .column2-block .item.-pack {
  padding: 0 100px 0 60px;
}
.product-block .column2-block .item.-pack .image {
  width: 94px;
}
.product-block .column2-block .image {
  margin-right: 40px;
}
.product-block .column2-block .text {
  font-size: 1.8rem;
}
.product-block .column2-block .text .title {
  margin: 0;
  color: #c4b153;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
}
.product-block .column2-block .text .size {
  margin-top: 0;
}
.product-block .caution {
  margin: 40px 0;
  font-size: 1.8rem;
  text-align: center;
}
.product-block .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.product-block .button a {
  display: block;
  position: relative;
  width: 500px;
  padding: 20px 40px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.17;
  background: url("/brand/suzu-kirishima/assets/images/icon-blank.png") right 59px top 50%/18px auto #c4b153 no-repeat;
  border-radius: 30px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .product-block {
    padding: 50px 6vw 60px;
  }
  .product-block .sec-title {
    text-align: center;
  }
  .product-block .column2-block {
    margin: 0;
  }
  .product-block .column2-block .item {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
  .product-block .column2-block .item.-bottle {
    margin-bottom: 23px;
    padding: 0 0 24px 26px;
    border-right: none;
  }
  .product-block .column2-block .item.-bottle .image {
    width: 40px;
    margin-right: 50px;
  }
  .product-block .column2-block .item.-pack {
    padding: 23px 0 43px 21px;
  }
  .product-block .column2-block .item.-pack .image {
    width: 51px;
    margin-right: 43px;
  }
  .product-block .column2-block .text {
    font-size: 1.4rem;
    line-height: 1.39;
  }
  .product-block .column2-block .text .title {
    font-size: 1.8rem;
  }
  .product-block .caution {
    margin: 30px 0;
    font-size: 1.4rem;
  }
  .product-block .button a {
    width: 228px;
    padding: 27px 40px;
    font-size: 1.4rem;
    border-radius: 40px;
    background-size: 18px auto;
    background-position: right 19px top 50%;
  }
}

.button-wrap {
  margin: 0 0 50px;
  text-align: center;
}
.button-wrap a {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 1.6em;
  text-align: center;
  background-color: #dbc65e;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  text-decoration: none;
}
.button-wrap a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 15px;
  height: 15px;
  margin: auto 0;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .button-wrap a {
    padding: 1em;
  }
}

@-webkit-keyframes bottle {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-10px, -10px);
            transform: translate(-10px, -10px);
  }
}

@keyframes bottle {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-10px, -10px);
            transform: translate(-10px, -10px);
  }
}
@-webkit-keyframes bottle-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-10px, 5px);
            transform: translate(-10px, 5px);
  }
}
@keyframes bottle-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-10px, 5px);
            transform: translate(-10px, 5px);
  }
}
@-webkit-keyframes bottle-sp {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
}
@keyframes bottle-sp {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
}
@-webkit-keyframes bottle-sp-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(5px, -2.5px);
            transform: translate(5px, -2.5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-5px, 2.5px);
            transform: translate(-5px, 2.5px);
  }
}
@keyframes bottle-sp-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(5px, -2.5px);
            transform: translate(5px, -2.5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(-5px, 2.5px);
            transform: translate(-5px, 2.5px);
  }
}
@-webkit-keyframes glass {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-10px, -10px);
            transform: translate(-10px, -10px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}
@keyframes glass {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-10px, -10px);
            transform: translate(-10px, -10px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}
@-webkit-keyframes glass-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-10px, 5px);
            transform: translate(-10px, 5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
}
@keyframes glass-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-10px, 5px);
            transform: translate(-10px, 5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
}
@-webkit-keyframes glass-sp {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
}
@keyframes glass-sp {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
}
@-webkit-keyframes glass-sp-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-5px, -2.5px);
            transform: translate(-5px, -2.5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(5px, 2.5px);
            transform: translate(5px, 2.5px);
  }
}
@keyframes glass-sp-r {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  33% {
    -webkit-transform: translate(-5px, -2.5px);
            transform: translate(-5px, -2.5px);
  }
  66% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(5px, 2.5px);
            transform: translate(5px, 2.5px);
  }
}
@-webkit-keyframes cloud01 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(30%, 30%);
            transform: translate(30%, 30%);
  }
  50% {
    -webkit-transform: translate(50%, -20%);
            transform: translate(50%, -20%);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes cloud01 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(30%, 30%);
            transform: translate(30%, 30%);
  }
  50% {
    -webkit-transform: translate(50%, -20%);
            transform: translate(50%, -20%);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes cloud02 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(-30%, -30%);
            transform: translate(-30%, -30%);
  }
  50% {
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes cloud02 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(-30%, -30%);
            transform: translate(-30%, -30%);
  }
  50% {
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}