@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border-left: 0;
  border-right: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style-image: none;
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

img {
  max-width: 100%;
}

table {
  width: 100%;
}

a {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* =====
 * 共通レイアウト
============================================================================= */
body {
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-position: center top;
  -webkit-background-size: cover;
          background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

img {
  vertical-align: bottom;
  margin-top: 0px;
  border-style: none;
}

.center {
  text-align: center;
}

.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.mgb10 {
  margin-bottom: 10px;
}

.mgb20 {
  margin-bottom: 20px;
}

.mgb30 {
  margin-bottom: 30px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgr10 {
  margin-right: 10px;
}

.mgr20 {
  margin-right: 20px;
}

.mgr30 {
  margin-right: 30px;
}

.mgr40 {
  margin-right: 40px;
}

.mgl10 {
  margin-left: 10px;
}

.mgl20 {
  margin-left: 20px;
}

.mgl30 {
  margin-left: 30px;
}

.mgl40 {
  margin-left: 40px;
}

.mgt10 {
  margin-top: 10px;
}

.mgt20 {
  margin-top: 20px;
}

.mgt30 {
  margin-top: 30px;
}

.mgt40 {
  margin-top: 40px;
}

.js-ofi img {
  object-fit: cover;
  font-family: 'object-fit: cover';
}

.row-fluid [class*="span"] {
  min-height: 0;
}

/** header **/
#header {
  position: fixed;
  z-index: 10;
  width: 100%;
}

/*menu  */
#navToggle {
  position: absolute;
  /*bodyに対しての絶対位置指定です*/
  right: 0;
  top: 0;
  width: 50px;
  height: 45px;
  cursor: pointer;
  padding: 10px;
  background-color: #004263;
  display: none;
  /*spanの絶対位置指定の親にします*/
}

#navToggle div {
  position: relative;
}

#navToggle span {
  display: block;
  position: absolute;
  /*#navToggle div に対して*/
  width: 100%;
  border-bottom: solid 3px #fff;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#navToggle span:nth-child(1) {
  top: 0;
}

#navToggle span:nth-child(2) {
  top: 11px;
  color: undefined;
}

#navToggle span:nth-child(3) {
  top: 22px;
  color: undefined;
}

/*header menu*/
header nav {
  background-color: #e3f5ff;
  padding: 0;
  -webkit-transition: .5s ease-in-out;
  /*transitionで動きを*/
  transition: .5s ease-in-out;
  text-align: left;
  font-size: 16px;
  z-index: 31;
  width: 100%;
  overflow-x: hidden;
  display: block;
}

header ul {
  margin: 0;
  display: block;
}

header ul li {
  margin: 0;
  color: #004263;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 70%;
  padding-top: 10px;
  padding-bottom: 20px;
  vertical-align: middle;
}

header ul li a {
  display: block;
  color: #004263;
  text-decoration: none;
  margin-bottom: 5px;
}

header ul li a:hover {
  color: #009cea;
}

#wrap header ul li img {
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle;
}

header ul li:after {
  content: '';
}

/** いい街ロゴ **/
header ul li.ii-tokyu-logo {
  padding-bottom: 10px;
}

header ul li.ii-tokyu-logo a {
  margin-bottom: 0;
}

.ii-tokyu-logo img {
  width: 95px;
  height: auto;
}

header ul li:last-child {
  border-bottom: none;
  vertical-align: middle;
}

/* Toggle(Button) */
#navToggle {
  display: none;
  z-index: 32;
}

.openNav #navToggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.openNav #navToggle span:nth-child(2),
.openNav #navToggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.openNav nav {
  -webkit-transform: translateY(681px);
  transform: translateY(681px);
}

#wrap .btn_socho {
  display: none;
}

/** footer **/
.footer {
  padding-top: 30px;
  clear: both;
  font-size: 80%;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}

.footer .footer_com {
  display: block;
  position: absolute;
}

#page-top {
  width: 54px;
  height: 69px;
  display: none;
  position: fixed;
  bottom: 0px;
  right: 20px;
  z-index: 100;
}

#page-top p {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #3b3b3b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page-top p:hover {
  background: #8b8b8b;
}

h1 {
  margin-bottom: 10px;
}

.cont {
  margin-bottom: 60px;
  padding-bottom: 0px;
}

.btnlink {
  overflow: hidden;
  margin-bottom: 40px;
}

.fl_left {
  float: left;
}

.fl_right {
  float: right;
}

/* sns menu  */
.sns_blk {
  margin-bottom: 50px;
  text-align: center;
}

.sns_blk img {
  width: 50px;
  margin-left: 20px;
  margin-right: 20px;
}

/* --------------------------------------------------------------------------
 * グッチョイクーポン
-------------------------------------------------------------------------- */
/** main hero **/
.main-hero {
  position: relative;
  text-align: center;
}

.main-hero .logo {
  float: left;
  margin: 20px;
  position: relative;
  z-index: 1;
}

.main-hero .image {
  height: 100vh;
}

.main-hero .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-hero .goodd {
  display: none;
}

.main-hero .link {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 12%;
  margin: auto;
  width: 430px;
  height: 90px;
  z-index: 1;
}

.youtube-movie.socho-title {
  top: 80px;
}

  .logo-area {
  z-index: 9;
  position: relative;
  text-align: center;
  }

  .logo-area .logo {
    float: left;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

.part {
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
  clear: both;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.part .blk {
  width: 1000px;
  float: none !important;
  margin: auto !important;
  text-align: center;
  background-color: #FFFFFF;
  padding: 50px 0 50px;
}

.part .blk h2 {
  margin-bottom: 30px;
}

.part .blk .lead {
  font-size: 18px;
  letter-spacing: 5px;
  color: #333333;
  font-weight: normal;
  display: block;
  margin-top: 10px;
  margin-bottom: 40px;
}

.part .blk .lead span {
  color: #e01a69;
  font-weight: bold;
}

.part .blk .lead_part {
  margin-bottom: 40px;
  display: block;
  overflow: hidden;
}

.part .blk .app_anker {
  border-top: 1px solid #82b4cc;
  padding-top: 40px;
  margin-bottom: 60px;
}

.lead_part li {
  float: left;
  margin-right: 50px;
  display: block;
  position: relative;
  height: 344px;
  width: 300px;
}

.lead_part li:last-of-type {
  margin-right: 0px;
}

.lead_part li .spot02a {
  position: absolute;
  top: 0px;
  left: 0px;
}

.lead_part li .spot02b {
  position: absolute;
  bottom: 56px;
  text-align: center;
  width: 300px;
}

/** クーポン一覧 **/
.blk2 {
  width: 100%;
  text-align: center;
  background-color: #addef8;
  padding-top: 130px;
  padding-bottom: 65px;
}

.coupon_blk {
  width: 1075px;
  margin: 20px auto 0;
  padding-bottom: 0;
}

.coupon_blk .title {
  position: relative;
  z-index: 2;
}

.coupon_blk .coupon-list {
  max-width: 990px;
  margin: -18px auto 0;
  position: relative;
}

.coupon_blk .coupon-list:before {
  content: "";
  display: block;
  width: calc(100% + 23px);
  height: calc(100% + 10px);
  position: absolute;
  left: -12px;
  top: -7px;
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/coupon-bottom-bg.png) no-repeat center bottom;
}

.coupon_blk .coupon-list li {
  display: block;
  float: left;
  width: 25%;
  height: 266px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.coupon_blk .coupon-list li:before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -6px;
  z-index: -1;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/coupon-bg.png) no-repeat center top;
}

.coupon_blk .coupon-list li a {
  display: block;
  padding: 12px;
}

.coupon_blk .coupon-list li a img {
  width: auto;
  max-height: 100%;
}

/** ストライプBG **/
.blk3 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/blue_bg.jpg) repeat 0 0;
  padding-top: 140px;
  padding-bottom: 40px;
}

.blk3 .swiper-container .sliders {
  width: 1000px;
  height: 600px;
}

.swiper-container .sliders {
  margin: 40px auto 20px;
}

.swiper-container .swiper-button-prev {
  background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/prev.png);
}

.swiper-container .swiper-button-next {
  background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/next.png);
}

/** 下部テキストエリア **/
.blk .blk_square2 {
  margin-bottom: 100px;
  padding: 15px;
  text-align: center;
}

.blk .blk_square2 h3 {
  color: #026DB8;
  font-weight: bold;
  padding-top: 0px;
  font-size: 120%;
}

.blk .blk_square2 .sanka {
  text-align: left;
}

.app_link {
  text-align: left;
  font-size: 90%;
}

.btm_box {
  text-align: center;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  clear: both;
  padding-top: 20px;
}

.app_link_box {
  width: 350px;
  float: left;
  margin-left: 32px;
  margin-bottom: 10px;
}

.app_link_box img {
  vertical-align: middle;
}

.blk .app_anker .anker_inner {
  text-align: left;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  width: 860px;
  overflow: hidden;
}

.blk_square2 dl dt {
  display: block;
  float: left;
  margin-right: 0px;
  width: 1.3em;
}

.blk_square2 dl dd {
  margin-left: 1.3em;
  display: block;
  margin-bottom: 0.5em;
  text-align: left;
}

.blk_square2 .app_link .dl_app_icon {
  float: left;
  margin-right: 10px;
}

.blk_square2 img {
  margin: 2px;
}

/** アプリダウンロード方法 **/
.app_anker .anker_inner .anker_app_icon {
  float: left;
  margin-right: 20px;
  display: block;
  width: 330px;
}

.app_anker .anker_inner .anker_txt {
  float: left;
  margin-top: 5px;
  white-space: nowrap;
  width: 510px;
}

.app_txt2 {
  clear: both;
  text-align: left;
}

.app_txt3 {
  padding-top: 20px;
}

.sanka_img img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.special {
  background-color: #f0f238;
  margin-bottom: 3em;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  color: #004263;
  line-height: 180%;
  font-weight: bold;
}

#sub01 .special p {
  font-weight: bold;
}

#sub01 .special h2 {
  font-size: 140%;
  font-weight: bold;
}

.special h2 sapn {
  color: #e01a69;
}

.special a {
  color: #004263;
  font-size: 100%;
  font-weight: bold;
}

.special a:hover {
  color: #007fbe;
  font-size: 100%;
}

.special p.news-title {
  font-weight: bold;
  line-height: 1.25;
  font-size: 24px;
}

.bc-modal p {
  margin: 1em 0;
}

.bc-modal p:last-child {
  margin-bottom: 0;
}

.bc-modal .inner-head .title {
  width: 100%;
  margin: 0;
}

.part.alpha .blk #sub01 {
  margin-top: -100px;
  padding-top: 100px;
}

.part.alpha #sub05 {
  padding: 100px 0 150px;
}

.part.alpha #sub05 #sub06 {
  margin-top: -100px;
  padding-top: 100px;
}

/* --------------------------------------------------------------------------
 * 朝のグッチョイクーポン
-------------------------------------------------------------------------- */
.socho-main-hero {
  z-index: 9;
  position: relative;
  height: 350px;
  text-align: center;
}

.socho-main-hero .logo {
  float: left;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.socho-main-hero .socho-title {
  width: 894px;
  margin-left: auto;
  margin-right: auto;
  right: 0px;
  left: 0px;
  position: absolute;
  height: 228px;
  bottom: 0px;
}

.socho-main-hero.top-movie {
  height: 620px;
}

.socho-main-hero.top-movie .socho-title {
  width: 1200px;
  height: 540px;
  max-width: 100%;
}

.socho .blk {
  color: #004263;
  overflow: hidden;
}

.socho .swiper-container .sliders {
  width: 1200px;
  height: 330px;
}

.socho .sc_left {
  width: 400px;
  float: left;
  text-align: left;
}

.socho .sc_right {
  width: 600px;
  text-align: left;
  float: left;
  padding-top: 30px;
}

.socho .mov_set {
  margin-bottom: 80px;
}

.socho .movie_title {
  margin-top: 5px;
  margin-bottom: 10px;
}

.socho .page-back {
  margin-top: 95px;
}

/* --------------------------------------------------------------------------
 * FAQ
-------------------------------------------------------------------------- */
.header-container-wrapper .header-faq {
  width: 1000px;
  margin: auto !important;
  float: none;
}

.header-container-wrapper .header-faq .logo {
  float: left;
  margin: 10px;
}

.header-container-wrapper .header-faq .logo-ii-tokyu {
  float: right;
  width: 100px;
}

#wrap.faq {
  width: 1000px;
  margin: 0 auto 100px !important;
  float: none;
}

#wrap.faq .h_top {
  text-align: right;
  margin-top: 10px;
}

#wrap.faq .h_top img {
  width: 144px;
}

#wrap.faq .main {
  margin: 40px auto;
  text-align: center;
}

#wrap.faq .blk h2 {
  padding: 12px 18px;
  margin-bottom: 50px;
  background-color: #12ABDC;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.2;
}

#wrap.faq .partition {
  display: table;
}

#wrap.faq .partition > * {
  margin: 0;
  display: table-cell;
  vertical-align: top;
}

#wrap.faq table td {
  font-size: 80%;
  background-color: #FFFFFF;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
}

#wrap.faq table .td1 {
  background-color: #ADD0D8;
  white-space: nowrap;
}

#wrap.faq table .td2 {
  background-color: #D8EAEE;
  white-space: nowrap;
}

#wrap.faq table .td3 {
  white-space: nowrap;
}

#wrap.faq .page-back {
  text-align: center;
}

.faq-container {
  margin-bottom: 100px;
}

.faq_blk {
  max-width: 900px;
  margin: 0 auto 30px;
}

.accordion dt {
  cursor: pointer;
  position: relative;
  background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/faq/triger_open.png);
  background-repeat: no-repeat;
  background-position: 840px center;
  border: 1px solid #F19D00;
  padding: 15px 60px 15px 2.4em;
  text-align: left;
  font-weight: bold;
  color: #F19D00;
  font-size: 110%;
}

.accordion dt * {
  font-weight: inherit;
}

.accordion dt .label {
  display: block;
  position: absolute;
  left: 15px;
}

.accordion dt.active {
  background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/faq/triger_close.png);
}

.accordion dt.over {
  background-color: #FFF6B5;
}

.accordion dd {
  margin: 0;
  padding: 15px;
  display: none;
}

.answer {
  display: block;
  text-align: left;
  background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/blue_bg.jpg);
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 20px;
  clear: both;
  line-height: 160%;
}

.answer p {
  margin: 1em 0;
}

.answer p:first-child {
  margin-top: 0;
}

.answer p:last-child {
  margin-bottom: 0;
}

.answer ul li {
  list-style-position: outside;
  list-style-type: disc;
  margin-left: 1em;
}

.coupon-modal {
  background-color: #fff;
  background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/modal-bg-top.png), url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/modal-bg-bottom.png), url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/modal-bg-left.png), url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/modal-bg-right.png);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, left bottom, left top, right top;
}

.coupon-content {
  padding: 30px;
  font-size: 14px;
  font-size: 0.875rem;
}

.coupon-content a {
  color: inherit;
}

.coupon-content .inner-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.coupon-content .inner-head:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/moda-inner-line.png) no-repeat center center;
}

.coupon-content .inner-head .heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-right: 1em;
}

.coupon-content .inner-head .category {
  display: inline-block;
  margin: 0 0 14px;
  background: #0074bb;
  color: #fff;
  padding: 0.6em 0.8em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.coupon-content .inner-head .title {
  color: #eb0d35;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.coupon-content .inner-head .point {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 40%;
  margin-left: auto;
}

.coupon-content .coupon-lead-text {
  margin-bottom: 20px;
}

.coupon-content .coupon-lead-text * {
  font-weight: bold;
}

.coupon-content .coupon-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}

.coupon-content .coupon-detail .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 55%;
  margin-right: 5%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.coupon-content .coupon-detail table th, .coupon-content .coupon-detail table td {
  padding: 0.25em 0;
}

.coupon-content .coupon-detail table th {
  width: 1%;
  white-space: nowrap;
  text-align: right;
  padding-right: 2em;
  font-weight: 500;
  color: #ee0d35;
}

.coupon-content .coupon-detail .freearea {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: 40%;
  margin-left: auto;
  text-align: right;
}

.coupon-content .inner-bottom {
  line-height: 1.66;
  font-size: 12px;
  font-size: 0.75rem;
}

.coupon-content .inner-bottom:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  margin-bottom: 20px;
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/moda-inner-line.png) no-repeat center center;
}

.year-end {
  text-indent: -10em;
  padding-left: 10em;
}

.contact-center {
  text-indent: -6em;
  padding-left: 6em;
  display: inline-block;
}

.coupon-powerup-frame {
  background: #f48697;
  margin: 0 -200%;
  padding: 60px 200%;
}

.coupon-powerup-frame .coupon-powerup-box {
  background: #fff;
  -webkit-border-radius: 60px;
          border-radius: 60px;
  -webkit-border-radius: 40px;
          border-radius: 40px;
  padding: 40px;
  margin-bottom: 30px;
}

.coupon-powerup-frame .coupon-powerup-box h2 {
  margin-top: -120px;
  padding-top: 120px;
}

.coupon-powerup-frame .title-pwerup {
  width: 100%;
  margin: 0 auto 40px;
}

.coupon-powerup-frame .img-block {
  width: 80%;
  margin: 0 auto;
}

.coupon-powerup-frame .coupon-powerup {
  position: relative;
}

.coupon-powerup-frame .coupon-powerup h3 {
  text-align: left;
  font-size: 40px;
  font-weight: bold;
  color: #f48697;
}

.coupon-powerup-frame .coupon-powerup .coupon_blk {
  max-width: 1000px;
  width: 100%;
  padding: 20px 40px 30px;
}

.coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list {
  margin: 25px auto 0;
}

.coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list li {
  height: 240px;
}

.coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list li a {
  padding: 2px;
}

.coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list li:before {
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/coupon-bg-spring.png) no-repeat center top;
  -webkit-background-size: 100% 100%;
          background-size: 100%;
  width: 105%;
  height: 100%;
}

.coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list:before {
  background: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/coupon-bottom-bg-spring.png) no-repeat center top;
  -webkit-background-size: 100% 100%;
          background-size: 100%;
  width: 100%;
  height: 100%;
  left: 1px;
}

.news-modal .store-name {
  font-weight: bold;
  font-size: 18px;
  margin: 10px auto;
}

.news-modal .use-tag {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
    display: inline-block;
  padding: 0 3px;
}

.news-modal .use-tag.-red {
  background-color: #eb0d35;
}

.news-modal .use-tag.-yellow {
  background-color: #f0f238;
}

.news-modal .news-content {
  margin-bottom: 40px;
}

.news-modal .coupon-content .coupon-detail {
  margin-bottom: 0px;
}

.news-modal .coupon-content .coupon-detail table th {
  width: 1%;
  white-space: nowrap;
  text-align: right;
  padding-right: 0;
  font-weight: 500;
  color: #000000;
}

.coupon-news {
  background-color: #f0f238;
  padding: 10px;
}

.coupon-news .store-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
}

.coupon-news .store-place dt, .coupon-news .store-place dd {
  display: table-cell;
}

.coupon-news dl {
  margin-bottom: 15px;
}

.coupon-news .store-place dt {
  width: 100px;
  line-height: 1.2;
}

.coupon-news .store-place dd {
  line-height: 1.2;
}

.movie_wrap .sc_left img {
  width: 350px;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .forsp {
    display: none;
  }
  /** header **/
  #header {
    top: -90px;
    left: 0;
    height: 90px;
    overflow-x: hidden;
  }
  .centered {
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .centered ul {
    position: relative;
    left: 50%;
    display: table;
  }
  .centered ul li {
    position: relative;
    left: -50%;
    display: table-cell;
    line-height: 140%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .forpc {
    display: none;
  }
  body {
    background-color: #ffffff;
  }
  img {
    width: 100%;
    vertical-align: bottom;
    margin-top: 0;
    border-style: none;
  }
  /** header **/
  #header {
    height: auto;
    z-index: 30;
    top: auto;
  }
  #header .sns {
    width: 25%;
    float: right;
  }
  #header .sns img {
    width: 50%;
  }
  /*menu  */
  #navToggle span {
    display: block;
    position: absolute;
    /*#navToggle div に対して*/
    width: 100%;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #navToggle span:nth-child(1) {
    top: 0;
  }
  #navToggle span:nth-child(2) {
    top: 11px;
    color: undefined;
  }
  #navToggle span:nth-child(3) {
    top: 22px;
    color: undefined;
  }
  /*header menu*/
  header nav {
    position: absolute;
    /*bodyに対しての絶対位置*/
    right: 0;
    bottom: 100%;
    width: auto;
    background-color: #004263;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    font-size: 12px;
    z-index: 32;
  }
  header ul {
    margin: 0;
    padding-bottom: 20px;
    overflow: auto;
    max-height: 100vh;
  }
  header ul li {
    display: block;
    border-bottom: solid 1px #addef8;
    line-height: 3;
    color: #ddf3ff;
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 30px;
    font-size: 100%;
  }
  header ul li:last-child {
    border-bottom: none;
  }
  header ul li a {
    color: #edf9ff;
    margin: 0;
  }
  ul .spgd img {
    display: none;
  }
  ul .spgd2 {
    display: none;
  }
  header ul li.ii-tokyu-logo {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .ii-tokyu-logo img {
    width: auto;
  }
  /* Toggle(Button) */
  #navToggle {
    display: block;
    z-index: 33;
  }
  .openNav #navToggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .openNav #navToggle span:nth-child(2),
  .openNav #navToggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .openNav nav {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  nav ul .dwmenu {
    padding-top: 50px;
    font-size: 130%;
  }
  /** footer **/
  .footer {
    padding: 0 0 120px;
    font-size: 80%;
    width: 100%;
  }
  .footer .footer_com {
    position: static;
  }
  #page-top {
    display: none;
    position: fixed;
    bottom: 0px;
    z-index: 1000;
  }
  #page-top p {
    margin: 0;
    padding: 0;
    text-align: right;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .pgtop img {
    width: 15%;
    height: auto;
    margin-bottom: 10px;
  }
  .sp_app_link {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 10;
  }
  .button {
    background-color: #e64770;
    color: #ffffff;
    font-size: 5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    -webkit-border-radius: 1vw;
            border-radius: 1vw;
    text-decoration: none;
    text-align: center;
    outline: none;
    display: block;
    margin-top: 2vw;
    margin-right: 2vw;
    margin-bottom: 2vw;
    margin-left: 2vw;
    background-repeat: no-repeat;
    width: auto;
  }
  .button:before,
  .button:after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
  }
  .button,
  .button:before,
  .button:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .button img {
    width: 15%;
    vertical-align: middle;
    margin-right: 5px;
  }
  h1 {
    margin-bottom: 10px;
  }
  /* --------------------------------------------------------------------------
   * グッチョイクーポン
  -------------------------------------------------------------------------- */
  /** main hero **/
  .main-hero .logo {
    position: absolute;
    top: 3%;
    left: 3%;
    width: 30%;
    margin: 0;
  }
  .main-hero .logo img {
    width: 100%;
  }
  .main-hero .image {
    height: auto;
  }
  .main-hero .image img {
    position: static;
    height: auto;
  }
  .main-hero .goodd {
    width: 25%;
    position: absolute;
    right: 51px;
    top: 0;
    display: block;
  }
  .main-hero .link {
    bottom: auto;
    top: 100vw;
    width: 100%;
    height: auto;
    z-index: 5;
    padding: 0 15vw;
  }
  .main-hero .link.spring-button {
    top: 117vw;
  }
  
  .logo-area {
    margin-bottom: 10vw;
  }

  .logo-area .logo {
    width: 30%;
    height: auto;
    margin: 3%;
  }
  
  .part .blk {
    width: 100%;
    padding: 0;
    margin-bottom: 100px !important;
  }
  .part .blk .lead {
    text-align: center;
    font-size: 3.2vw;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .part .blk .app_anker {
    margin-bottom: 40px;
  }
  .lead_part li {
    float: none;
    height: auto;
    width: 96%;
    margin: 0 auto 1em;
  }
  .lead_part li:last-of-type {
    margin-right: auto;
  }
  .sns_blk {
    padding-top: 2em;
  }
  .sns_blk img {
    width: 13%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .special {
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  #sub01 .special p {
    font-weight: bold;
  }
  #sub01 .special h2 {
    font-size: 140%;
    font-weight: bold;
  }
  .part .blk .app_anker {
    margin-bottom: 40px;
  }
  .blk .app_anker .anker_inner {
    width: 90%;
    font-size: 1em;
    line-height: 160%;
  }
  .app_anker .anker_inner .anker_app_icon {
    float: none;
    width: 100%;
    margin-right: 1em;
    margin-bottom: 1em;
    text-align: center;
  }
  .app_anker .anker_inner .anker_txt {
    float: none;
    width: 100%;
    white-space: normal;
  }
  .blk .btnlink {
    margin-bottom: 10px;
  }
  .blk .btnlink > * {
    float: none;
    width: 100%;
  }
  .blk .btnlink > *:not(:first-child) {
    margin-top: 20px;
  }
  /** クーポン一覧 **/
  .blk2 {
    padding: 0 0 10vw;
  }
  .blk2 h2 {
    background: #fff;
  }
  .coupon_blk {
    width: 100%;
    margin: 20px auto 0;
    padding-top: 2.5vw;
    padding-bottom: 8.5vw;
    overflow: hidden;
  }
  .coupon_blk .coupon-list {
    margin: -3.25% auto 0;
    width: 98.8%;
  }
  .coupon_blk .coupon-list:before {
    width: 101.2%;
    height: 100.3%;
    left: -0.5%;
    top: 0;
    background-image: url(https://cdn2.hubspot.net/hubfs/6202132/IIT_2019_Theme/GCMorning/images/coupon/coupon-bottom-bg-sp.png);
    -webkit-background-size: contain;
            background-size: contain;
  }
  .coupon_blk .coupon-list li {
    width: 50%;
    height: auto;
  }
  .coupon_blk .coupon-list li:after {
    content: "";
    display: block;
    padding-top: 105%;
  }
  .coupon_blk .coupon-list li:before {
    top: 50%;
    left: 50%;
    width: 106%;
    height: 105%;
    -webkit-background-size: contain;
            background-size: contain;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .coupon_blk .coupon-list li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /** ストライプBG **/
  .blk3 {
    padding: 0;
    margin-bottom: 100px;
    /** 利用方法 **/
  }
  .blk3 .swiper-container .sliders {
    width: 80%;
    height: auto;
    margin: 20px auto;
    padding-bottom: 50px;
  }
  /** 下部テキストエリア **/
  .blk .blk_square2 {
    margin-bottom: 0;
    padding: 0 15px;
  }
  .blk .blk_square2 h3 {
    color: #026DB8;
    font-weight: bold;
    padding-top: 0px;
    font-size: 120%;
  }
  .blk .blk_square2 img {
    margin: 2px;
  }
  .blk .blk_square2 .sanka {
    text-align: left;
  }
  .btm_box {
    width: 100%;
    margin: 10vw 0 0;
    padding-top: 0;
  }
  .app_link_box {
    float: none;
    width: 80%;
    margin: 10px auto 2em;
    vertical-align: bottom;
  }
  .blk_square2 dl dt {
    font-size: 0.9em;
  }
  .blk_square2 dl dd {
    font-size: 0.9em;
  }
  .blk_square2 .app_link .dl_app_icon {
    float: none;
    margin-right: 10px;
  }
  .app_link .btm_box.clearfix .app_txt2 {
    clear: both;
  }
  .app_txt3 {
    padding-top: 0;
  }
  .apple a img {
    width: 92%;
  }
  /** 参加条件 **/
  .part.alpha #sub05 {
    margin-bottom: 30px !important;
    padding: 0;
  }
  #sub05 .blk_square2 .sanka {
    font-size: 0.9em;
    line-height: 160%;
  }
  .app_link {
    margin-bottom: 30px;
    font-size: 3.6vw;
    text-align: left;
  }
  .faq-link {
    margin-top: 100px;
  }
  .faq-link .mgb40 {
    margin-bottom: 0;
  }
  .part.alpha #sub05 #sub06 {
    margin-top: 0;
    padding-top: 0;
  }
  .coupon-modal {
    -webkit-background-size: 100% auto, 100% auto, 8px auto, 8px auto;
            background-size: 100% auto, 100% auto, 8px auto, 8px auto;
  }
  .coupon-content {
    padding: 4%;
  }
  .coupon-content .inner-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .coupon-content .inner-head .heading {
    width: 100%;
    margin: 0 0 10px;
  }
  .coupon-content .inner-head .category {
    margin-bottom: 10px;
  }
  .coupon-content .inner-head .title {
    font-size: 1.286rem;
  }
  .coupon-content .inner-head .point {
    max-width: 50%;
  }
  .coupon-content .coupon-lead-text {
    margin-bottom: 10px;
  }
  .coupon-content .coupon-detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .coupon-content .coupon-detail .text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .coupon-content .coupon-detail table th, .coupon-content .coupon-detail table td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .coupon-content .coupon-detail table th {
    padding-top: 0.7em;
    text-align: left;
    white-space: normal;
  }
  .coupon-content .coupon-detail .freearea {
    max-width: 100%;
    margin: auto;
    text-align: center;
  }
  .coupon-content .inner-bottom:before {
    margin-bottom: 14px;
  }
  /* --------------------------------------------------------------------------
   * 朝のグッチョイクーポン
  -------------------------------------------------------------------------- */
  .socho-main-hero {
    height: auto;
    margin-bottom: 10vw;
  }
  .socho-main-hero .logo {
    width: 30%;
    height: auto;
    margin: 3%;
  }
  .socho-main-hero .socho-title {
    position: static;
    width: 100%;
    height: auto;
    padding: 10vw 3vw 0 3vw;
  }
  .socho-main-hero .socho-title img {
    margin-top: 1em;
  }
  .socho-main-hero.top-movie {
    height: 60vw;
  }
  .socho-main-hero.top-movie .socho-title {
    width: 100%;
    height: 200px;
  }
  .socho .blk {
    margin-bottom: 5em;
  }
  .socho .swiper-container {
    margin-bottom: 45px;
  }
  .socho .swiper-container .sliders {
    width: 100%;
    height: auto;
    margin: auto;
  }
  .socho .sc_left {
    width: 100%;
    float: none;
    margin-bottom: 2em;
  }
  .socho .sc_right {
    width: 90%;
    float: none;
    margin: auto;
    padding-top: 0;
    font-size: 3.4vw;
    line-height: 2em;
  }
  .socho .mov_set {
    margin-bottom: 10vw;
  }
  .socho .mov_set .image {
    margin-bottom: 0.6em;
  }
  .socho .movie_title {
    margin: 0;
    font-size: 5vw;
  }
  .socho .page-back {
    margin-top: 2em;
  }
  /* --------------------------------------------------------------------------
   * FAQ
  -------------------------------------------------------------------------- */
  .header-container-wrapper .header-faq {
    width: 100%;
  }
  .header-container-wrapper .header-faq .logo {
    width: 40%;
    margin: 5px !important;
  }
  .header-container-wrapper .header-faq .logo img {
    height: auto;
  }
  .header-container-wrapper .header-faq .logo-ii-tokyu {
    float: right;
    max-width: 30%;
  }
  #wrap.faq {
    width: 100%;
    margin: 0 auto 30px !important;
  }
  #wrap.faq .h_top img {
    width: 30%;
  }
  #wrap.faq .main {
    margin: 10px auto;
  }
  #wrap.faq .blk {
    padding: 0 5px;
  }
  #wrap.faq .blk h2 {
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
  }
  #wrap.faq .partition {
    display: block;
  }
  #wrap.faq .partition > * {
    display: block;
  }
  #wrap.faq table .td1 {
    white-space: normal;
  }
  #wrap.faq table .td2 {
    white-space: normal;
  }
  #wrap.faq table .td3 {
    white-space: normal;
  }
  .faq-container {
    margin-bottom: 20px;
  }
  .faq_blk {
    margin-bottom: 1em;
  }
  .accordion dt {
    background-position: right 5px center;
    padding: 15px 42px 15px 2.8em;
    font-size: 3vw;
    line-height: 1.5;
  }
  .accordion dt .label {
    left: 1.2em;
  }
  .accordion dd {
    font-size: 3vw;
  }
  .answer {
    padding: 15px;
    margin-top: 20px;
  }
  .faq .footer {
    padding: 0 0 30px;
  }
  .coupon-powerup-frame {
    padding: 10px;
    max-width: 100%;
    margin: 0;
  }
  .coupon-powerup-frame .coupon-powerup-frame .title-pwerup {
    margin: 0 auto 20px;
  }
  .coupon-powerup-frame .coupon-powerup-box {
    padding: 20px;
  }
  .coupon-powerup-frame .coupon-powerup-box h2 {
    margin-top: -60px;
    padding-top: 60px;
  }
  .coupon-powerup-frame .coupon-powerup h3 {
    font-size: 24px;
  }
  .coupon-powerup-frame .coupon-powerup:before {
    height: 6px;
  }
  .coupon-powerup-frame .coupon-powerup:after {
    height: 6px;
  }
  .coupon-powerup-frame .coupon-powerup .coupon_blk {
    padding: 20px;
    margin-top: 0;
    padding-top: 0;
  }
  .coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list {
    margin: 10px auto 0;
  }
  .coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list li {
    height: auto;
  }
  .coupon-powerup-frame .coupon-powerup .coupon_blk .coupon-list li:before {
    -webkit-background-size: 100% 100%;
            background-size: 100%;
    width: calc(100% + 5px);
    height: calc(100% + 8px);
  }
  .coupon-powerup-box {
    padding: 20px;
  }
  
.youtube-movie {
  margin: 0 auto;
  width: 100%;
  max-width: 640px; /* 最大の横幅 */
}
  
.youtube-movie.socho-title {
  padding: 20vw 3vw 0 3vw;
}
 
.youtube-movie-content {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
 
.youtube-movie-content iframe {
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .movie_wrap img {
    width: 350px;
  }
}
