@charset "utf-8";


/* ==========================================================================
Web fonts
========================================================================== */
/*Typekit
 *
 *"proxima-nova"
 *Thin = font-weight: 100;
 *Regular = font-weight: 400;
 *Bold = font-weight: 700;
 *
 *"myriad-pro"
 *Light = font-weight: 300;
 *Semibold = font-weight: 600;
*/

.ma3-logo-set {
  font-family: "myriad-pro","Myriad Pro",sans-serif;
  color: #4c4948;
}

/* font-size: 120px */
.ma3-logo120 {
  font-family: "myriad-pro","Myriad Pro",sans-serif;
  color: #f0a818;
  font-size: 120px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* font-size: 40px */
.ma3-logo40 {
  color: #f0a818;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .02em;
}

.ma3-logo40-plus {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: .02em;
  vertical-align: 5px;
}

.ma3-logo40-plus-what {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: .02em;
}

.ma3-logo40-plus-what .slash-adj {
  font-size: 36px;
  vertical-align: 1px;
}
/* /font-size: 40px */


/* ==========================================================================
css keyframes Animations
========================================================================== */
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

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

@-webkit-keyframes fadeUp {
  0% {opacity: 0; -webkit-transform: translateY(10px);}
  100% {opacity: 1; -webkit-transform: translateY(0px);}
}

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

@-webkit-keyframes fadeDown {
  0% {opacity: 0; -webkit-transform: translateY(-10px);}
  100% {opacity: 1; -webkit-transform: translateY(0px);}
}

@keyframes fadeDown {
  0% {opacity: 0; transform: translateY(-10px);}
  100% {opacity: 1; transform: translateY(0px);}
}

@-webkit-keyframes fadeLtoR {
  0% {opacity: 0; -webkit-transform: translateX(-10px);}
  100% {opacity: 1; -webkit-transform: translateX(0px);}
}

@keyframes fadeLtoR {
  0% {opacity: 0; transform: translateX(-10px);}
  100% {opacity: 1; transform: translateX(0px);}
}

@-webkit-keyframes fadeRtoL {
  0% {opacity: 0; -webkit-transform: translateX(10px);}
  100% {opacity: 1; -webkit-transform: translateX(0px);}
}

@keyframes fadeRtoL {
  0% {opacity: 0; transform: translateX(10px);}
  100% {opacity: 1; transform: translateX(0px);}
}

@-webkit-keyframes wipeInLtoR {
  0% {opacity: 0; -webkit-transform: scaleX(0); -webkit-transform-origin-x: left;}
  100% {opacity: 1; -webkit-transform: scaleX(1); -webkit-transform-origin-x: left;}
}

@keyframes wipeInLtoR {
  0% {opacity: 0; transform: scaleX(0); transform-origin-x: left;}
  100% {opacity: 1; transform: scaleX(1); transform-origin-x: left;}
}

@-webkit-keyframes wipeInRtoL {
  0% {opacity: 0; -webkit-transform: scaleX(0); -webkit-transform-origin-x: right;}
  100% {opacity: 1; -webkit-transform: scaleX(1); -webkit-transform-origin-x: right;}
}

@keyframes wipeInRtoL {
  0% {opacity: 0; transform: scaleX(0); transform-origin-x: right;}
  100% {opacity: 1; transform: scaleX(1); transform-origin-x: right;}
}

@-webkit-keyframes slideInLtoR {
  0% {opacity: 0; -webkit-transform: translateX(-1000px);}
  100% {opacity: 1; -webkit-transform: translateX(0px);}
}

@keyframes slideInLtoR {
  0% {opacity: 0; transform: translateX(-1000px);}
  100% {opacity: 1; transform: translateX(0px);}
}

@-webkit-keyframes fadeBounce {
  0% {opacity: 0; -webkit-transform: translateY(0px);}
  33% {-webkit-transform: translateY(10px);}
  100% {opacity: 1; -webkit-transform: translateY(0px);}
}

@keyframes fadeBounce {
  0% {opacity: 0; transform: translateY(0px);}
  33% {transform: translateY(10px);}
  100% {opacity: 1; transform: translateY(0px);}
}

@-webkit-keyframes clockwise {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}
}

@keyframes clockwise {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

@-webkit-keyframes counterclockwise {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(-360deg);}
}

@keyframes counterclockwise {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(-360deg);}
}

@-webkit-keyframes translate-x-repeat {
  0% {-webkit-transform: translate(0, 0);}
  20% {-webkit-transform: translate(5px, 0);}
  40% {-webkit-transform: translate(2px, 0);}
  60% {-webkit-transform: translate(10px, 0);}  
  80% {-webkit-transform: translate(4px, 0);}  
  100% {-webkit-transform: translate(0px, 0);}
}

@keyframes translate-x-repeat {
  0% {transform: translate(0, 0);}
  20% {transform: translate(5px, 0);}
  40% {transform: translate(2px, 0);}
  60% {transform: translate(10px, 0);}  
  80% {transform: translate(4px, 0);}  
  100% {transform: translate(0px, 0);}
}


/* ==========================================================================
Standard Setting
========================================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #f0f0f0;
  color: black;
  font-family: "proxima-nova","Proxima Nova","Lucida Grande","Lucida Sans","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo","MS Pゴシック", "MS P Gothic",Helvetica,Arial,sans-serif;
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

a:link {
  color: black;
  text-decoration: none;
}

a:visited {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #f0a818;
  text-decoration: none;
}

a:active {
  color: #33b086;
  text-decoration: none;
}

a img:hover,
a:hover img {
  filter: alpha(opacity=75);
  opacity: .75;
}

::selection {
  background: #f0a818;
  color: black;
}

::-moz-selection {
  background: #f0a818;
  color: black;
}

ol, ul {
  list-style: none;
}

.list-style-hyphen li::before {
  content: "- ";
}

.list-style-tri {
  padding-left: 6px;
}

.list-style-tri li {
  position: relative;
}

.list-style-tri li::before {
  content: "";
  border: 3px solid transparent;
  border-left-color: #000;
  position: absolute;
  left: -6px;
  top: 50%;
  margin-top: -3px;
}

.list-style-tri-after {
  padding-right: 6px;
}

.list-style-tri-after li {
  position: relative;
}

.list-style-tri-after li::after {
  content: "";
  border: 3px solid transparent;
  border-left-color: #000;
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -3px;
}

.list-style-tri-text-after li::after {
  content: "";
  display: inline-block;
  border: 3px solid transparent;
  border-left-color: #000;
  margin-left: 6px;
  margin-bottom: 0px;
}

.style-tri {
  position: relative;
  padding-left: 6px;
}

.style-tri a::before {
  content: "";
  border: 3px solid transparent;
  border-left-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
}

.style-tri-after {
  position: relative;
  padding-right: 6px;
}

.style-tri-after a::after {
  content: "";
  border: 3px solid transparent;
  border-left-color: black;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
}

hr {
  visibility: hidden;
}

blockquote, q {
  quotes: none;
}

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

address {
  font-style: normal;
}

.break {
  display: block;
}

.break-auto {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

.vanish {
  display: none;
}

.img-change {
  visibility: hidden;
}

.-blockLink {
  position: relative;
}

.-blockLink_anchorSpan {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.-linkStyle-afterTri a {
  color: inherit;
}

.-linkStyle-afterTri a::after {
  content: '';
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: .25em 0 .25em .4em; 
  border-left-color: white;
  position: relative;
  left: 0.5em;
  top: -0.14em;
  display: inline-block;
}

.-linkStyle-afterVideo a::after {
  content: url(/new/img/home/icon_video.svg);
  width: 22px;
  height: 22px;
  position: relative;
  left: 0.5em;
  top: .4em;
  display: inline-block;
}


/* ==========================================================================
Common layout
========================================================================== */
.page-header-bg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 44px;
  z-index: 800;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.95);
}

.page-header {
  position: relative;
  max-width: 1024px;
  height: 44px;
  margin: 0 auto;
  padding: 0 10px;
}

.page-header .site-id {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90px;
  height: 20px;
  z-index: 900;
}

.page-header .site-id-audio{
  position: absolute;
  top: -5px;
  bottom: 0;
  left: 148px;
  right: 0;
  margin: auto;
  width: 40px;
  filter: alpha(opacity=20);
  opacity: .2;
  cursor: pointer;
  z-index: 801;
   -webkit-transition: .5s ;
  transition: .5s;
}

.page-header .site-id-audio:hover {
  opacity: .3;
   -webkit-transition: .5s ;
  transition: .5s;
}

.nav-global {
  font-size: 15px;
  letter-spacing: .04em;
}

.nav-global ul {
  margin-left: 100px;
  line-height: 90px;
  text-align: center;
}

.nav-global li {
  display: inline-block;
  margin-right: 2.1em;
}

.nav-global li:last-child {
  margin-right: 0;
}

.nav-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
}/* styled by nav-btn.css*/

.lang-change {
  position: fixed;
  top: 0;
  right: 10px;
  z-index: 1000;
}

.lang-change a {
  display: block;
  height: 44px;
  line-height: 44px;
  font-size: 11px;
  text-decoration: underline;
}


/* ==========================================================================
Home
========================================================================== */
.l-hero {
  margin-top: 46px;
  text-shadow: 0 0 4px rgba(0,0,0,.6)
}

.l-hero_maDriveOuter {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.l-hero_maDriveOuter::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/new/img/home/bg_madrive@2x.jpg);
  background-size: cover;
  background-position: center center;
  -webkit-transition: .5s;
  transition: .5s;
}

.l-hero_maDriveOuter::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 0;
}

.l-hero_maDriveOuter:hover::before {
  transform: scale(1.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.l-hero_maDriveOuter:hover::after {
  background: rgba(0,0,0,.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.maDrive {
  height: 300px;
  color: white;
  position: relative;
  z-index: 1;
}

.maDrive_logo {
  width: 160px;
  margin: 40px 0 10px;
  background: rgba(0,0,0,.1);
  box-shadow: 0 36px 64px 64px rgba(0,0,0,.1);
  -webkit-transition: .5s;
  transition: .5s;
}

.l-hero_maDriveOuter:hover .maDrive_logo {
  background: rgba(0,0,0,.3);
  box-shadow: 0 36px 64px 64px rgba(0,0,0,.3);
  -webkit-transition: .5s;
  transition: .5s;
}

.maDrive_link {
  margin: 10px 0;
}

.maDrive_link:not(:nth-child(3)) {
  position: relative;
  display: inline;
  z-index: 2;
}

.maDrive_link_anchor:link {
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

.maDrive_link_anchor:visited {
  color: white;
}

.maDrive_link_anchor:hover {
  color: white;
  text-decoration: underline;
}

.maDrive_link_anchor:active {
  color: white;
}

.l-hero_proglessOuter {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.l-hero_proglessOuter::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/new/img/home/bg_progless@2x.jpg);
  background-size: cover;
  background-position: right center;
  transform: scale(1.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.l-hero_proglessOuter::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 0;
}

.l-hero_proglessOuter:hover::before {
  transform: scale(1.4);
  -webkit-transition: .5s;
  transition: .5s;
}

.l-hero_proglessOuter:hover::after {
  background: rgba(0,0,0,.1);
  -webkit-transition: .5s;
  transition: .5s;
}

.progless {
  height: 300px;
  color: white;
  position: relative;
  z-index: 1;
}

.progless_logo {
  width: 150px;
  margin: 40px 0 10px;
}

.-progless_green {
  color: #62c0b4;
}

.progless_link {
  margin: 10px 0;
}

.progless_link:not(:nth-child(3)) {
  position: relative;
  display: inline;
  z-index: 2;
}

.progless_link_anchor:link {
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

.progless_link_anchor:visited {
  color: white;
}

.progless_link_anchor:hover {
  color: white;
  text-decoration: underline;
}

.progless_link_anchor:active {
  color: white;
}

.l-sec_kanekoOuter {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.l-sec_kanekoOuter::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/new/img/home/bg_kaneko@2x.jpg);
  background-size: 150%;
  background-position: right 35%;
/*  background-size: 110%;
  background-position: center 40%;
*/  -webkit-transition: .5s;
  transition: .5s;
}

.l-sec_kanekoOuter::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  background-size: 3px 3px;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 0;
}

.l-sec_kanekoOuter:hover::before {
  transform: scale(1.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.l-sec_kanekoOuter:hover::after {
  background: rgba(0,0,0,.2);
  background-size: 3px 3px;
  -webkit-transition: .5s;
  transition: .5s;
}

.kaneko {
  height: 200px;
  color: white;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 0 4px rgba(0,0,0,.6);
}

.kaneko::after {
  content: "";
  position: absolute;
  background: url(/new/img/home/masakidolphin-trans.svg) no-repeat center 40%;
  background-size: 200px;
  opacity: .5;
  width: 200px;
  height: 200px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.kaneko_ttl {
  font-size: 1.2rem;
  font-family: serif;
font-weight: bold; text-shadow: 0px 0px 8px #fb8b00;
  margin: 30px 0 10px;
  padding-top: 10px;
}

.kaneko_link {
  margin: 10px 0;
}

.kaneko_link_anchor_renewal {
  font-size: 0.7rem;
  color: orange;
  letter-spacing: 0;
}

.kaneko_link:not(:nth-child(2)) {
  position: relative;
  display: inline;
  z-index: 2;
}

.kaneko_link_anchor:link {
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

.kaneko_link_anchor:visited {
  color: white;
}

.kaneko_link_anchor:hover {
  color: white;
  text-decoration: underline;
}

.kaneko_link_anchor:active {
  color: white;
}

.l-sec_stasmaOuter {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.l-sec_stasmaOuter::before {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/new/img/home/bg_stasma@2x.jpg);
  background-size: cover;
  background-position: 70% center;
  -webkit-transition: .5s;
  transition: .5s;
}

.l-sec_stasmaOuter::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 0;
}

.l-sec_stasmaOuter:hover::before {
  transform: scale(1.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.l-sec_stasmaOuter:hover::after {
  background: rgba(0,0,0,.2);
  -webkit-transition: .5s;
  transition: .5s;
}

.stasma {
  height: 200px;
  color: white;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 0 4px rgba(0,0,0,.6);
}

.stasma_ttl {
  font-size: 21px;
  margin: 40px 0 10px;
  font-weight: 300;
  text-shadow: 0 0 4px rgba(22, 178, 225, 1)
}

.stasma_link {
  margin: 10px 0;
}

.stasma_link:not(:nth-child(3)) {
  position: relative;
  display: inline;
  z-index: 2;
}

.stasma_link_anchor:link {
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
}

.stasma_link_anchor:visited {
  color: white;
}

.stasma_link_anchor:hover {
  color: white;
  text-decoration: underline;
}

.stasma_link_anchor:active {
  color: white;
}

.foodpass {
  position: relative;
  z-index: 1;
  text-align: center;
}

.foodpass_logo {
  width: 120px;
  margin: 40px auto 10px;
}

.foodpass_link {
  margin: 10px 0;
}

.foodpass_link_anchor:hover {
  color: black;
  text-decoration: underline;
}

.foodpass_link_anchor:active {
  color: black;
}

.foodpass .-linkStyle-afterTri a::after {
  border-left-color: black;
}

.foodpass_appImage_item {
  display: inline-block;
  width: 120px;
  margin: 10px 5px;
}

.first-view-content {
  position: relative;
  margin: 90px auto;
  max-width: 1024px;
  padding: 0;
  color: #4c4948;
}

.first-view-content h1 {
  text-align: center;
  width: 260px;
  height: 20px;
  margin: 0 auto;
  -webkit-animation-name: fadeUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0;
  -webkit-animation-fill-mode: both;
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-delay: 0;
  animation-fill-mode: both;
}

/* adjustment for English */
.en-top-msg {
  font-size: 15px;
  font-weight: 100;
  letter-spacing: .02em;
}
/* /adjustment for English */

.img-trinity-head {
  position: absolute;
  background: url(/new/img/home/trinity_head.svg) no-repeat;
  width: 70px;
  height: 70px;
  top: 105px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 60;
  -webkit-animation-name: fadeUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: .7s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-delay: .7s;
  animation-fill-mode: both;
  -webkit-transition: .5s ;
  transition: .5s;
}

.no-svg .img-trinity-head {
  background: url(/new/img/home/trinity_head.png) no-repeat;
}

.img-trinity-heart {
  position: absolute;
  background: url(/new/img/home/trinity_heart.svg) no-repeat;
  width: 86px;
  height: 72px;
  top: 182px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 50;
  -webkit-animation-name: fadeUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: both;
  -webkit-transition: .5s ;
  transition: .5s;
}

.no-svg .img-trinity-heart {
  background: url(/new/img/home/trinity_heart.png) no-repeat;
}

.img-trinity-body {
  position: absolute;
  background: url(/new/img/home/trinity_body.svg) no-repeat;
  width: 214px;
  height: 186px;
  top: 177px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 40;
  -webkit-animation-name: fadeUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: .9s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-delay: .9s;
  animation-fill-mode: both;
  -webkit-transition: .5s ;
  transition: .5s;
}

.no-svg .img-trinity-body {
  background: url(/new/img/home/trinity_body.png) no-repeat;
}

.trinity-head-wrap,
.trinity-heart-wrap,
.trinity-body-wrap {
  display: none;
}

.trinity-head-wrap:hover {
  color: #333;
}

.trinity-text-head-add-sp,
.trinity-text-heart-add-sp,
.trinity-text-body-add-sp {
  text-align: left;
}

.trinity-text-head-add-sp h2,
.trinity-text-heart-add-sp h2,
.trinity-text-body-add-sp h2 {
  font-size: 25px;
  color: white;
}

.trinity-text-head-add-sp h2 + p,
.trinity-text-heart-add-sp h2 + p,
.trinity-text-body-add-sp h2 + p {
  color: #999;
  font-weight: bold;
  margin-bottom: 10px;
}

.trinity-text-head {
  position: relative;
  width: 100%;
  margin: 60px auto 0;
  padding: 10px 30px;
  z-index: 90;
  background-color: rgba(82, 204, 155, 0.2);
  height: 100px;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1.2s;
  animation-fill-mode: both;
}

.trinity-text-head h2 {
  font-size: 21px;
  line-height: 1.5;
  font-weight: normal;
  color: #52cc9b;
  margin-right: 22px;
  -webkit-animation-name: fadeRtoL;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.4s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeRtoL;
  animation-duration: 1s;
  animation-delay: 1.4s;
  animation-fill-mode: both;
}

.trinity-head-wrap:hover > .trinity-text-head h2 {
  text-shadow: 0px 0px 2px #52cc9b;
}

.trinity-text-head .line-head {
  visibility: visible;
  content: '';
  background-color: transparent;
  position: absolute;
  top: 35px;
  left: 0;
  width: 210px;
  height: 1px;
  -webkit-animation-name: wipeInRtoL;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-name: wipeInRtoL;
  animation-duration: 1s;
  animation-delay: 1.3s;
  animation-fill-mode: both;
}

.trinity-text-head p {
  -webkit-animation-name: fadeRtoL;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.6s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeRtoL;
  animation-duration: 1s;
  animation-delay: 1.6s;
  animation-fill-mode: both;
}

.trinity-text-head-add {
  visibility: hidden;
  opacity: 0;
  font-size: 12px;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  background-color: #47b288;
  background-color: rgba(71, 178, 136, .95);
  box-shadow: 0px 0px 4px #47b288;
  border-radius: 3px;
  padding: 10px;
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 100;
}

.trinity-text-head-add ul li:last-child::before,
.trinity-text-head-add-sp ul li:last-child::before {
  content: "";
}

.trinity-head-wrap:hover > .trinity-text-head-add {
  visibility: visible;
  -webkit-animation-name: fadeBounce;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeBounce;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.trinity-head-wrap:hover > .img-trinity-head {
  margin-top: 3px;
  -webkit-transition: .3s;
  transition: .3s;
}

.trinity-heart-wrap:hover {
  color: #333;
}

.trinity-text-heart {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 10px 30px;
  z-index: 90;
  background-color: rgba(242, 97, 158, 0.2);
  height: 100px;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.7s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1.7s;
  animation-fill-mode: both;
}

.trinity-text-heart h2 {
  font-size: 21px;
  line-height: 1.5;
  font-weight: normal;
  color: #f2619e;
  -webkit-animation-name: fadeLtoR;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.9s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeLtoR;
  animation-duration: 1s;
  animation-delay: 1.9s;
  animation-fill-mode: both;
}

.trinity-heart-wrap:hover > .trinity-text-heart h2 {
  text-shadow: 0px 0px 2px #f2619e;
}

.trinity-text-heart .line-heart {
  content: '';
  background-color: transparent;
  position: absolute;
  top: 35px;
  right: 0;
  width: 202px;
  height: 1px;
  -webkit-animation-name: wipeInLtoR;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.8s;
  -webkit-animation-fill-mode: both;
  animation-name: wipeInLtoR;
  animation-duration: 1s;
  animation-delay: 1.8s;
  animation-fill-mode: both;
}

.trinity-text-heart p {
  -webkit-animation-name: fadeLtoR;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.1s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeLtoR;
  animation-duration: 1s;
  animation-delay: 2.1s;
  animation-fill-mode: both;
}

.trinity-text-heart-add {
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 220px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  background-color: #d9578d;
  background-color: rgba(217, 87, 141, 0.95);
  box-shadow: 0px 0px 4px #d9578d;
  border-radius: 3px;
  padding: 10px;
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 100;
}

.trinity-heart-wrap:hover > .trinity-text-heart-add {
  visibility: visible;
  -webkit-animation-name: fadeBounce;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeBounce;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.trinity-heart-wrap:hover > .img-trinity-heart {
  margin-top: 3px;
  -webkit-transition: .3s ;
  transition: .3s;
}

.trinity-body-wrap:hover {
  color: #333;
}

.trinity-text-body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 10px 30px;
  z-index: 90;
  background-color: rgba(92, 201, 230, 0.2);
  height: 100px;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.2s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 2.2s;
  animation-fill-mode: both;
}

.trinity-text-body h2 {
  font-size: 21px;
  line-height: 1.5;
  font-weight: normal;
  color: #5cc9e6;
  margin-right: 74px;
  -webkit-animation-name: fadeRtoL;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.4s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeRtoL;
  animation-duration: 1s;
  animation-delay: 2.4s;
  animation-fill-mode: both;
}

.trinity-body-wrap:hover > .trinity-text-body h2 {
  text-shadow: 0px 0px 2px #5cc9e6;
}

.trinity-text-body .line-body {
  content: '';
  background-color: transparent;
  position: absolute;
  top: 35px;
  left: 0;
  width: 160px;
  height: 1px;
  -webkit-animation-name: wipeInRtoL;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.3s;
  -webkit-animation-fill-mode: both;
  animation-name: wipeInRtoL;
  animation-duration: 1s;
  animation-delay: 2.3s;
  animation-fill-mode: both;
}

.trinity-text-body p {
  -webkit-animation-name: fadeRtoL;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.6s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeRtoL;
  animation-duration: 1s;
  animation-delay: 2.6s;
  animation-fill-mode: both;
}

.trinity-text-body-add {
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 320px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  background-color: #52b1cc;
  background-color: rgba(82, 177, 204, .95);
  box-shadow: 0px 0px 4px #52b1cc;
  border-radius: 3px;
  padding: 10px;
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 100;
}

.trinity-text-body-add ul li:last-child::before,
.trinity-text-body-add-sp ul li:last-child::before {
  content: "";
}

.trinity-body-wrap:hover > .trinity-text-body-add {
  visibility: visible;
  -webkit-animation-name: fadeBounce;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-name: fadeBounce;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.trinity-body-wrap:hover > .img-trinity-body {
  margin-top: 3px;
  -webkit-transition: .3s ;
  transition: .3s;
}

.section-100per-bg {
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  height: 700px; /* 60px for banner-top-1 */
  background-size: cover;
  background:
    -webkit-linear-gradient(225deg, hsla(95, 97%, 100%, 1) 0%, hsla(95, 97%, 100%, 0) 70%),
    -webkit-linear-gradient(315deg, hsla(247, 100%, 100%, 1) 10%, hsla(247, 100%, 100%, 0) 80%),
    -webkit-linear-gradient(0deg, hsla(71, 100%, 100%, 1) 10%, hsla(71, 100%, 100%, 0) 80%),
    -webkit-linear-gradient(135deg, hsla(351, 31%, 84%, 1) 100%, hsla(351, 100%, 100%, 0) 70%);
  background:
    linear-gradient(45deg, hsla(95, 97%, 100%, 1) 0%, hsla(95, 97%, 100%, 0) 70%),
    linear-gradient(135deg, hsla(247, 100%, 100%, 1) 10%, hsla(247, 100%, 100%, 0) 80%),
    linear-gradient(180deg, hsla(71, 100%, 100%, 1) 10%, hsla(71, 100%, 100%, 0) 80%),
    linear-gradient(315deg, hsla(351, 31%, 84%, 1) 100%, hsla(351, 100%, 100%, 0) 70%);
}

/* under adjusting for responsive */
.banner-top-1 {
  display: block;
  position: absolute;
  right: 0;
  bottom: 140px;
  width: 100%;
  height: 66px;
  overflow: hidden;
  font-size: 11px;
   -webkit-transition: .5s ;
  transition: .5s;
  z-index: 100;
}

.banner-top-1 a {
  color: #52b1cc;
}  

.banner-top-1 a img {
  float: right;
  width: 44px;
  height: 44px;
  margin: 12px 45px 0 0;
  -webkit-animation-name: translate-x-repeat;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-name: translate-x-repeat;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.banner-top-1:hover {
  -webkit-transform: translate(80px,0);
  transform: translate(80px,0);
  -webkit-transition: .5s ;
  transition: .5s;
}

.banner-top-1 a p {
  padding-top: 15px;
  height: 66px;
  text-align: center;
  background-color: white;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(240, 240, 240, 0)));/*old structure*/
  background: -webkit-linear-gradient(right, #fff, rgba(240, 240, 240, 0));/*old structure without "to"*/
  background: linear-gradient(to left, #fff, rgba(240, 240, 240, 0));
   -webkit-transition: .5s ;
  transition: .5s;

}

.banner-top-1 a p span {
  text-decoration: underline;
  font-size: 13px;
  font-weight: bold;
}

.banner-top-1 a:after {
  border-right: 1px solid #52b8cc;
  border-top: 1px solid #52b8cc;
  content: "";
  height: 14px;
  width: 14px;
  right: 14px;
  position: absolute;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto 0;  
}
/* under adjusting for responsive */

.banner-top-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background-color: white;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(240, 240, 240, 0)));/*old structure*/
  background: -webkit-linear-gradient(right, #fff, rgba(240, 240, 240, 0));/*old structure without "to"*/
  background: linear-gradient(to left, #fff, rgba(240, 240, 240, 0));
}

.banner-top-2 a {
  color: #52b8cc;
  font-weight: bold;
  position: absolute;
  width: auto;
  text-align: center;
  top: 14px;
  right: 0;
  left: 0;
  margin: auto;
}

.banner-top-2 a:hover {
  color: #f0a818;
}

.banner-top-2 a:active {
  color: #33b086;
}

.banner-top-2 a span {
  font-size: 13px;
  font-weight: normal;
}

.banner-top-2 a:after {
  border-right: 1px solid #52b8cc;
  border-top: 1px solid #52b8cc;
  content: "";
  height: 14px;
  width: 14px;
  right: 14px;
  position: absolute;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto 0;  
}

.banner-top-2 .img-omm-bg {
  height: 220px;
  top: 60px;
  left: -100px;
}

.rectangle-leftbottom {
  content: "";
  display: block;
  width: 50%;
  height: 40px;
  padding-right: 80px; 
  background-color: white;
  position: absolute;
  bottom: 0;
  left: -40px;
  z-index: 100;
}

.triangle-leftbottom:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 40px solid white;
  border-right: 40px solid transparent;
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: 100;
}

.radius-triangle-leftbottom:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 40px solid white;
  border-right: 40px solid transparent;
  border-radius: 0px 50px;
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: 100;
}

.radius-triangle-rightbottom:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 40px solid white;
  border-left: 40px solid transparent;
  border-radius: 50px 0px;
  position: absolute;
  bottom:0;
  left: 50%;
  z-index: 100;
}

.triangle-rightbottom:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 40px solid white;
  border-left: 40px solid transparent;
  position: absolute;
  bottom:0;
  left: 50%;
  z-index: 100;
}

.rectangle-rightbottom {
  content: "";
  display: block;
  width: 50%;
  height: 40px;
  padding-right: 80px; 
  background-color: white;
  position: absolute;
  bottom: 0;
  right: -40px;
  z-index: 100;
}

.adj-first-view-bottom {
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f0f0));/*old structure*/
  background: -webkit-linear-gradient(top, #fff, #f0f0f0);/*old structure without "to"*/
  background: linear-gradient(to bottom, #fff, #f0f0f0);
  height: 60px;
}

.contents-wrap section,
.page-footer {
  position: relative;
  margin: 0 auto;
  max-width: 1024px;
  padding: 0 10px;
  text-align: center;
}

.ma3-tagline {
  display: block;
  color: #4c4948;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: .02em;
  line-height: 10px;
  margin-top: -40px;
  margin-bottom: 30px;
}

.ma3-tagline:before,
.ma3-tagline:after {
  content: "- ";
}

.home-ma3 p {
  margin-bottom: 20px;
}

.home-ma3 a h2 + p {
  color: black;
}

a:hover .block-link {
  text-decoration: underline;
}

.block-link {
  position: relative;
  padding-right: 6px;
}

.block-link::after {
  content: "";
  border: 3px solid transparent;
  border-left-color: black;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  margin-left: 3px;
}

.home-ma3-head-bg {
  margin-top: 30px;
  padding: 60px 0;
  background-color: #d0e9df;
}

.home-ma3-head i {
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  position: relative;
}

.home-ma3-head i:after {
  border-bottom: white solid 3px;
  content: "";
  width: 20px;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home-ma3-head h2 {
  margin-top: 20px;
  color: #6e6e6e;
  font-size: 25px;
}

.home-ma3-head ul li {
  display: inline-block;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px rgba(255, 255, 255, .5);
  padding-top: 79px;
  vertical-align: top;
  position: relative;
}

.home-ma3-head ul li:before {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home-ma3-head ul li:nth-child(1):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_o2o.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(1):before {
  background: url(/new/img/share/icons/icon_head_o2o.png) no-repeat;
}

.home-ma3-head ul li:nth-child(2):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_segment.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(2):before {
  background: url(/new/img/share/icons/icon_head_segment.png) no-repeat;
}

.home-ma3-head ul li:nth-child(3):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_crossmedia.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(3):before {
  background: url(/new/img/share/icons/icon_head_crossmedia.png) no-repeat;
}

.home-ma3-head ul li:nth-child(4):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_process.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(4):before {
  background: url(/new/img/share/icons/icon_head_process.png) no-repeat;
}

.home-ma3-head ul li:nth-child(5):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_coupon.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(5):before {
  background: url(/new/img/share/icons/icon_head_coupon.png) no-repeat;
}

.home-ma3-head ul li:nth-child(6):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_reserve.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(6):before {
  background: url(/new/img/share/icons/icon_head_reserve.png) no-repeat;
}

.home-ma3-head ul li:nth-child(7):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_survey.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(7):before {
  background: url(/new/img/share/icons/icon_head_survey.png) no-repeat;
}

.home-ma3-head ul li:nth-child(8):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_scenario.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(8):before {
  background: url(/new/img/share/icons/icon_head_scenario.png) no-repeat;
}

.home-ma3-head ul li:nth-child(9):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_dmp.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(9):before {
  background: url(/new/img/share/icons/icon_head_dmp.png) no-repeat;
}

.home-ma3-head ul li:nth-child(10):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_dsp.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(10):before {
  background: url(/new/img/share/icons/icon_head_dsp.png) no-repeat;
}

.home-ma3-head ul li:nth-child(11):before {
  content: "";
  background: url(/new/img/share/icons/icon_head_integration.svg) no-repeat;
}

.no-svg .home-ma3-head ul li:nth-child(11):before {
  background: url(/new/img/share/icons/icon_head_integration.png) no-repeat;
}

.home-ma3-head ul li h3 {
  color: #666;
  margin-bottom: 10px;
  letter-spacing: .04em;
}

.adj-small-9 {
  font-size: 9px;
  font-weight: normal;
}

.img-ma3-body-bg {
  display: none;
}

.home-ma3-heart-bg {
  padding: 60px 0;
  background-color: #f0d3e0;
}

.contents-wrap .home-ma3-heart {
  max-width: 100%;
  padding: 0;
}

.home-ma3-heart i {
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  position: relative;
}

.home-ma3-heart i:after {
  border-bottom: white solid 3px;
  content: "";
  width: 20px;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home-ma3-heart h2 {
  margin-top: 20px;
  color: #6e6e6e;
  font-size: 25px;
}

.home-ma3-heart p {
  margin-top: 20px;
  color: #666;
  font-size: 15px;
}

.home-ma3-heart ul {
  background-color: white;
  color: #666;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, .2);
  padding: 60px 0 10px;
  margin-top: 20px;
}

.home-ma3-heart ul + p {
  font-size: 21px;
  color: white;
  letter-spacing: .04em;
}

.home-ma3-body-bg {
  padding: 60px 0 0;
  margin-bottom: 60px;
  background-color: #d2e8ee;
}

.home-ma3-body i {
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  position: relative;
}

.home-ma3-body i:after {
  border-bottom: white solid 3px;
  content: "";
  width: 20px;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home-ma3-body h2 {
  margin-top: 20px;
  color: #6e6e6e;
  font-size: 25px;
}

.home-ma3-body ul {
  margin-top: 30px;
  position: relative;
}

.home-ma3-body ul li {
  display: inline-block;
  border: 1px solid #f8f8f8;
  padding: 20px 10px;
  vertical-align: top;
  position: relative;
}

.home-ma3-body ul li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #f8f8f8;
  position: absolute;
  top: -5px;
  left: -5px;
}

.home-ma3-body ul li:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #f8f8f8;
  position: absolute;
  top: -5px;
  right: -5px;
}

.home-ma3-body ul li h3 {
  color: #666;
  margin-bottom: 10px;
  letter-spacing: .04em;
}

.home-ma-series > a {
  display: inline-block;
  vertical-align: top;
  padding-bottom: 10px;
}

.home-ma-series h3 {
  margin-top: 20px;
}

.home-ma-series p {
  margin-bottom: 20px;
}

.home-ma-series a h3 + p {
  color: black;
}

.home-ma-series > div {
  border-top: 1px solid #ddd;
  box-shadow: inset 0 1px white;
  padding-top: 30px;
}

.home-ma-series > div a {
  display: block;
  margin-top: -10px;
  height: 44px;
  background-color: white;
  line-height: 44px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  border-bottom: none;
}

.home-ma-series > div a:before {
  content: "";
  border: 3px solid transparent;
  border-top-color: black;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -3px;
  margin-left: 3px;
}

.home-ma-series > div a:after {
  content: "";
  border: 3px solid transparent;
  border-top-color: black;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  margin-right: 3px;
}

.home-content-omm-bg {
  padding: 20px 0;
  background: #52b8cc;
  background: -webkit-gradient(linear, right top, left bottom, from(#52b8cc), to(#4c8c99));/*old structure*/
  background: -webkit-linear-gradient(right top, #52b8cc, #4c8c99);/*old structure without "to"*/
  background: linear-gradient(to left bottom, #52b8cc, #4c8c99), ;
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.2), inset 0 -5px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.img-omm-bg {
  background: url(/new/img/share/omm_bg.svg) no-repeat;
  filter: alpha(opacity=10);
  opacity: .1;
  -webkit-transform: skewX(-23.4deg) scale(.8);
  transform: skewX(-23.4deg) scale(.8);
  position: absolute;
  width: 960px;
  height: 560px;
  top: 0;
  bottom: 0;
  right: -300px;
  margin: auto;
}

.no-svg .img-omm-bg {
  background: url(/new/img/share/omm_bg.png) no-repeat;
}

.home-content-omm {
  color: white;
  overflow: hidden;
}

.home-content-omm h2 {
  font-size: 21px;
}

.home-content-omm a:link {
  line-height: 44px;
  color: white;
  text-decoration: none;
}

.home-content-omm a:visited {
  color: white;
  text-decoration: none;
}

.home-content-omm a:hover {
  color: #f0a818;
  text-decoration: underline;
}

.home-content-omm a:active {
  color: #33b086;
  text-decoration: underline;
}

.home-content-omm .block-link::after {
  border-left-color: white;
}

.home-content-book h2 {
  margin: 20px 0 10px;
  font-weight: normal;  
}

.home-content-book cite {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
}

.home-content-book cite:before {
  content: "『";
}

.home-content-book cite:after {
  content: "』";
}

.home-content-book cite + p span {
  margin: 0 2em;
  font-size: 11px;
}

.home-content-book cite + p + p {
  margin: 20px 0;
}

.home-content-book a {
  display: block;
}

.home-content-book a:hover {
  color: black;
}

a:link .block-link {
  color: black;
  text-decoration: none;
}

a:visited .block-link {
  color: blac;
  text-decoration: none;
}

a:hover .block-link {
  color: #f0a818;
  text-decoration: underline;
}

a:active .block-link {
  color: #33b086;
  text-decoration: underline;
}

.home-content-cdb-bg {
  margin-top: 60px;
  padding: 50px 0;
  background: #52ccb8;
  background: -webkit-gradient(linear, right top, left bottom, from(#52ccb8), to(#4c998c));/*old structure*/
  background: -webkit-linear-gradient(right top, #52ccb8, #4c998c);/*old structure without "to"*/
  background: linear-gradient(to left bottom, #52ccb8, #4c998c), ;
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.2), inset 0 -5px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.img-cdb-bg {
  background: url(/new/img/share/cdb_bg.svg) no-repeat;
  filter: alpha(opacity=20);
  opacity: .2;
  -webkit-transform: skewX(-23.4deg) scale(1);
  transform: skewX(-23.4deg) scale(1);
  position: absolute;  
  width: 710px;
  height: 350px;
  top: 0;
  bottom: 0;
  right: -60px;
  margin: auto;
}

.no-svg .img-cdb-bg {
  background: url(/new/img/share/cdb_bg.png) no-repeat;
}

.home-content-cdb a {
  color: white;
  display: block;
}

.home-content-cdb h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.home-content-cdb h2 span {
  font-weight: normal;
}

.home-content-cdb h2 .uppercase {
  font-weight: 700;
}

.home-content-cdb h2 + p {
  margin-bottom: 40px;
}

.home-content-cdb a:link .block-link {
  color: white;
  text-decoration: none;
}

.home-content-cdb a:visited .block-link {
  color: white;
  text-decoration: none;
}

.home-content-cdb a:hover .block-link {
  color: #f0a818;
  text-decoration: underline;
}

.home-content-cdb a:active .block-link {
  color: #33b086;
  text-decoration: underline;
}

.home-content-cdb .block-link::after {
  border-left-color: white;
}

.home-content-video-bg {
  margin-top: 20px;
  padding: 50px 0;
  background: #be7acc;
  background: -webkit-gradient(linear, right top, left bottom, from(#be7acc), to(#8c4c99));/*old structure*/
  background: -webkit-linear-gradient(right top, #be7acc, #8c4c99);/*old structure without "to"*/
  background: linear-gradient(to left bottom, #be7acc, #8c4c99), ;
  box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.2), inset 0 -5px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.img-video-bg {
  background: url(/new/img/share/video_bg.svg) no-repeat;
  filter: alpha(opacity=10);
  opacity: .1;
  -webkit-transform: skewX(-23.4deg) scale(1);
  transform: skewX(-23.4deg) scale(1);
  position: absolute;  
  width: 240px;
  height: 240px;
  top: 0;
  bottom: 0;
  right: 160px;
  margin: auto;
}

.no-svg .img-video-bg {
  background: url(/new/img/share/video_bg.png) no-repeat;
}

.home-content-video a {
  color: white;
  display: block;
}

.home-content-video h2 {
  font-size: 21px;
  margin-bottom: 10px;
}

.home-content-video h2 + p {
  margin-bottom: 40px;
  font-size: 11px;
}

.home-content-video a:link .block-link {
  color: white;
  text-decoration: none;
}

.home-content-video a:visited .block-link {
  color: white;
  text-decoration: none;
}

.home-content-video a:hover .block-link {
  color: #f0a818;
  text-decoration: underline;
}

.home-content-video a:active .block-link {
  color: #33b086;
  text-decoration: underline;
}

.home-content-video .block-link::after {
  border-left-color: white;
}

.contact-form h2 {
  margin-top: 30px;
  font-size: 21px;
  color: #cfcfcf;
  text-shadow: 1px 1px rgba(255, 255, 255, 1), -1px -1px rgba(0, 0, 0, .1);  
}

.contact-form .required {
  color: red;
  font-size: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.contact-form .required span {
  font-size: 11px;
}

.contact-form form p label {
  font-size: 15px;
  color: #888;
  display: block;
  margin-top: 20px;
  text-align: left;
}

.contact-form form p input,
.contact-form form p select,
.contact-form form p textarea {
  font-size: 16px;
  width: 100%;
  height: 44px;
  border: none;
  box-shadow: 1px 1px rgba(255, 255, 255, .9), inset 1px 1px rgba(0, 0, 0, .1);
  padding-left: 10px;
  border-radius: 2px;
}

.contact-form form p textarea {
  height: 180px;
}

.contact-form form .opt-in {
  font-size: 11px;
  margin-top: 20px;
}

.contact-form form .opt-in .privacy {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 5px;
  font-size: 11px;
  margin: 10px 0;
}

.contact-form form input[type=checkbox] {
  display: none;
}

.contact-form form .agreement {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin: 20px 20px 20px 0;
  padding: 12px 12px 12px 42px;
  vertical-align: middle;
  cursor: pointer;
}

.contact-form form .agreement:hover:after {
  border-color: #f0a818;
}

.contact-form form .agreement:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 4px;
  content: '';
}

.contact-form form .agreement:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #f0a818;
  border-bottom: 3px solid #f0a818;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact-form form input[type=checkbox]:checked + .agreement:before {
  opacity: 1;
}

.contact-form form div {
  font-size: 16px;
}

.contact-form form .submit {
  width: 100%;
  height: 44px;
  border: none;
  box-shadow: 0 1px rgba(0, 0, 0, .1), inset 0 1px rgba(255, 255, 255, .9);
  padding-left: 10px;
  background: #f0a818;
  border-radius: 4px;
  color: white;
}

.contact-form form > .submit:hover {
  background: rgba(240, 168, 24, .75);
}

.contact-form form .submit-note {
  text-align: center;
  font-size: 90%;
  color: #575757;
  margin-top: 5px;
}

.home-content-kaneko-bg {
  background-color: white;
  padding-top: 40px;
  margin-top: 40px;
  text-align: center;
}

.contents-wrap .home-content-kaneko {
  padding: 0;
}

.home-content-kaneko a {
  display: block;
}

.home-content-kaneko h2 {
  font-size: 21px;
  padding: 0 10px;
  color: #cfcfcf;
  text-shadow: 1px 1px rgba(255, 255, 255, 1), -1px -1px rgba(0, 0, 0, .1);
}

.home-content-kaneko .block-link {
  margin: 10px 0;
}

.home-content-kaneko .img-kaneko {
  max-width: 768px;
  height: 130px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.home-content-kaneko img {
  position: absolute;
  top: -40px;
  left: 0;
}

.page-footer {
  border-top: 1px solid #ddd;
  box-shadow: inset 0 1px white;
  margin-top: 30px;
}

.page-footer aside {
  margin: 30px 0;
  font-size: 11px;
  text-align: left;
}

.page-footer aside h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #666;
}

.page-footer aside .list-style-tri li::before {
  top: 9px;
}

.page-footer aside li {
  margin-bottom: 10px;
}

.page-footer .page-footer-update li .update-date {
  display: block;
  font-size: 9px;
}

.page-footer address {
  text-decoration: underline;
}

.page-footer .others p {
  text-align: left;
  margin-bottom: 10px;
}

.page-footer .footer-small {
  font-size: 11px;
  line-height: 40px;
  border-top: 1px solid #ddd;
  box-shadow: inset 0 1px white;
}

.goto-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 80px;
  height: 100px;
  z-index: 2000;
}

.goto-top a {
  border-radius: 4px;
  width: 0px;
  height: 0px;
  border: 40px solid transparent;
  border-bottom: 60px solid #bbb;
  border-bottom: 60px solid rgba(0, 0, 0, .2);
  display: block;
  position: relative;
  line-height: 80px;
  font-style: normal;
  color: white;
  font-weight: bold;
  text-indent: -.8em;
}

/* adjustment for English */
.en-ma3-tagline {
  letter-spacing: .24em;
}
/* /adjustment for English */


/* ==========================================================================
css decorations
========================================================================== */
a,
a:hover,
a img,
a img:hover,
button,
button:hover,
a .block-link,
a:hover .block-link,
input,
input:hover {
  -webkit-transition: .5s;
  transition: .5s;
}

a:active,
button:active,
a:active .block-link,
input:active {
  -webkit-transition: 0;
  transition: 0;
}

/* top shadow */
body:before {
  content: "";
  position: fixed;
  top: -10px;
  left: -10px;
  width: 110%;
  height: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .8);
  z-index: 1000;
}

/* example */
.text-shadow {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, .5), -1px -1px 1px rgba(0, 0, 0, .5);  
}

.box-shadow {
  box-shadow: 0 0 1px rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, .5);
}

.border-radius {
  border-radius: 3px; 
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.transition {
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.opacity {
  filter: alpha(opacity=25);
  opacity: .25;
}

.background-color {
  background-color: #fff;
  background-color: rgba(255, 255, 255, .8);
}

.linear-gradient {
  background: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#000));/*old structure*/
  background: -webkit-linear-gradient(top, #fff, #000);/*old structure without "to"*/
  background: linear-gradient(to bottom, #fff, #000);
}


/* ==========================================================================
Responsive structure
========================================================================== */
/*mobile first
 *
 *For Smartphone: 320px - 480px 
 *For Tablet: 481 - 768px
 *For PC: 769px~
 */

/* For Smartphone: 320px - 480px */
.nav-global,
.res-clear-br {
  display: none;
}
/* /For Smartphone */

/* For Tablet: 481 - 768px */ 
@media all and (min-width: 481px) {
  .first-view-content {
    margin: 100px auto;
  }
  
  .first-view-content h1 {
    width: 440px;
    height: 30px;
  }
  
  .img-trinity-head {
    top: 65px;
  }
  
  .img-trinity-heart {
    top: 142px;
  }
  
  .img-trinity-body {
    top: 137px;
  }

  .trinity-head-wrap-sp,
  .trinity-heart-wrap-sp,
  .trinity-body-wrap-sp {
    display: none;
  }
  
  .trinity-head-wrap,
  .trinity-heart-wrap,
  .trinity-body-wrap {
    cursor: default;
    display: block;
  }
  
  .trinity-text-head {
    position: absolute;
    top: 60px;
    width: 220px;
    left: -220px;
    right: 0;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
  }
  
  .trinity-text-head h2 {
    font-size: 25px;
  }
  
  .trinity-text-head .line-head {
    background-color: #999;
  }
  
  .trinity-text-head p {
    font-size: 12px;
    margin-top: 5px;
  }
  
  .trinity-text-head-add {
    top: 145px;
    left: -160px;
    width: 290px;
  }
  
  .trinity-text-heart {
    background-color: transparent;
    padding: 0 10px;
    position: absolute;
    top: 130px;
    width: 240px;
    left: 0px;
    right: -224px;
  }
  
  .trinity-text-heart h2 {
    font-size: 25px;
    margin-left: 43px;
  }
  
  .trinity-text-heart .line-heart {
    background-color: #999;
  }
  
  .trinity-text-heart p {
    font-size: 12px;
    margin-top: 5px;
    margin-left: 30px;
  }
  
  .trinity-text-heart-add {
    top: 215px;
    right: -186px;
    width: 290px;
  }
  
  .trinity-text-body {
    padding: 0;
    background-color: transparent;
    position: absolute;
    top: 220px;
    width: 214px;
    left: -214px;
    right: 0;
  }
  
  .trinity-text-body h2 {
    font-size: 25px;
  }
  
  .trinity-text-body .line-body {
    background-color: #999;
  }
  
  .trinity-text-body p {
    font-size: 12px;
    margin-top: 5px;
  }
  
  .trinity-text-body-add {
    top: 100px;
    left: -150px;
    width: 290px;
  }
  
  .section-100per-bg {
    height: 640px; /* 80px for banner-top-1*/
  }
  
  .home-content-kaneko .img-kaneko {
    height: 180px;
  }
  
  .home-content-kaneko img {
    top: -80px;
  }
}

@media all and (min-width: 681px) {
  body {
    font-size: 13px;
  }
  
  .res-clear-br {
    display: inherit;
  }

  .nav-btn {
    display: none;
  }

  .page-header-bg {
    height: 90px;
  }

  .page-header {
    height: 90px;
  }

  .page-header .site-id {
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: auto;
    margin: auto;
    width: 140px;
    height: 30px;
  }

  .page-header .site-id-audio{
    top: 10px;
    left: 158px;
    margin: 0;
  }

  .nav-global {
    display: block;
  }

  .lang-change a {
    font-size: 13px;
  }

  .l-hero {
    margin-top: 90px;
    display: -webkit-flex;
    display: flex;
  }
  
  .l-subHero {
    display: -webkit-flex;
    display: flex;
  }
  
  .l-hero a,
  .kaneko a,
  .stasma a,
  .foodpass a {
    font-size: 15px;
  }
  
  .maDrive,
  .progless {
    height: 400px;
    padding-top: 90px;
  }
    
  .stasma {
    padding-top: 5px;
  }
  
  .foodpass {
    margin-top: 40px;
    text-align: left;
    display: -webkit-flex;
    display: flex;
  }
  
  .foodpass_txtUnit {
    width: 50%;
    padding: 20px;
  }

  .foodpass_logo {
    width: 200px;
    margin: 0 0 20px;
  }
  
  .foodpass_appImage {
    position: absolute;
    width: 40%;
    right: 0;
  }

  .first-view-content {
    margin: 160px auto;
  }
  
  .first-view-content h1 {
    width: 560px;
    height: 38px;
  }
  
  /* adjustment for English */
  .en-top-msg {
    font-size: 25px;
    line-height: 33px;
  }
  /* /adjustment for English */
  
  .img-trinity-head {
    width: 98px;
    height: 98px;
    top: 70px;
  }
  
  .img-trinity-heart {
    width: 120px;
    height: 102px;
    top: 180px;
  }
  
  .img-trinity-body {
    width: 300px;
    height: 260px;
    top: 172px;
  }
  
  .trinity-text-head {
    width: 310px;
    left: -310px;
  }
  
  .trinity-text-head .line-head {
    width: 288px;
  }
  
  .trinity-text-head-add {
    left: -330px;
  }
  
  .trinity-text-heart {
    top: 170px;
    width: 324px;
    right: -324px;
  }
  
  .trinity-text-heart h2 {
    margin-left: 22px;
    padding-left: 88px;
  }
  
  .trinity-text-heart .line-heart {
    width: 282px;
  }
  
  .trinity-text-heart p {
    margin-left: 22px;
    padding-left: 88px;
  }
  
  .trinity-text-heart-add {
    top: 255px;
    right: -355px;
    width: 290px;
  }
  
  .trinity-text-body {
    top: 300px;
    width: 294px;
    left: -294px;
  }
  
  .trinity-text-body .line-body {
    width: 220px;
  }
  
  .trinity-text-body-add {
    top: 175px;
    left: -300px;
  }
  
  .section-100per-bg {
    height: 700px;
  }

  .banner-top-1 {
    display: block;
    position: absolute;
    right: 0;
    bottom: 120px;
    width: 340px;
    height: 66px;
    overflow: hidden;
    padding: 11px;
    font-size: 11px;
     -webkit-transition: .5s ;
    transition: .5s;
    z-index: 100;
  }

  .banner-top-1 a {
    color: #52b1cc;
  }  
 
  .banner-top-1 a img {
    float: right;
    width: 44px;
    height: 44px;
    margin: 7px 5px 0 0;
    -webkit-animation-name: translate-x-repeat;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: translate-x-repeat;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .banner-top-1:hover {
    -webkit-transform: translate(80px,0);
    transform: translate(80px,0);
    -webkit-transition: .5s ;
    transition: .5s;
  }

  .banner-top-1 a p {
    opacity: 0;
    padding-top: 7px;
    height: 66px;
    background-color: white;
    background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(240, 240, 240, 0)));/*old structure*/
    background: -webkit-linear-gradient(right, #fff, rgba(240, 240, 240, 0));/*old structure without "to"*/
    background: linear-gradient(to left, #fff, rgba(240, 240, 240, 0));
     -webkit-transition: .5s ;
    transition: .5s;
  
 }

  .banner-top-1:hover a p {
    opacity: 1;
    -webkit-transition: .5s ;
    transition: .5s;
  }

  .banner-top-1 a p span {
    text-decoration: underline;
    font-size: 13px;
    font-weight: bold;
  }

  .banner-top-2 a {
    font-size: 15px;
    text-align: right;
  }
  
  .banner-top-2 a div {
    position: absolute;
    right: 30px;
    width: 300px;
    text-align: left;
  }
  
  .banner-top-2 a:after {
    top: 54px;
  }
  
  .banner-top-2 .img-omm-bg {
    left: auto;
    right: -320px;
  }

  .block-link {
    font-size: 15px;
  }

  .home-ma3-head ul li {
    width: 300px;
    margin: 30px 15px 0;
  }

  .home-ma3-head ul li p {
    font-size: 11px;
  }

  .home-ma3-body ul li {
    width: 300px;
    height: 160px;
  }
  
  /* adjustment for English */
  .en-home-ma3-body ul li {
    height: 200px;
  }
  /* /adjustment for English */
  
  .home-ma3-body ul li p {
    font-size: 11px;
  }
  
  .img-ma3-body-bg {
    display: block;
    position: absolute;
    width: 560px;
    height: 360px;
    background: url(/new/img/share/ma3_body_bg.svg) no-repeat;
    bottom: 0;
    right: 0;
  }
  
  .img-ma3-body-bg-wheel-s {
    display: block;
    position: absolute;
    width: 47px;
    height: 47px;
    background: url(/new/img/share/ma3_body_bg_wheel_s.svg) no-repeat;
    bottom: 168px;
    right: 111px;
    -webkit-animation-name: clockwise;
    -webkit-animation-duration: 8s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: clockwise;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .img-ma3-body-bg-wheel-m {
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    background: url(/new/img/share/ma3_body_bg_wheel_m.svg) no-repeat;
    bottom: 126px;
    right: 156px;
    -webkit-animation-name: counterclockwise;
    -webkit-animation-duration: 8s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: counterclockwise;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .img-ma3-body-bg-wheel-l {
    display: block;
    position: absolute;
    width: 130px;
    height: 130px;
    background: url(/new/img/share/ma3_body_bg_wheel_l.svg) no-repeat;
    bottom: 40px;
    right: 36px;
    -webkit-animation-name: clockwise;
    -webkit-animation-duration: 8s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: clockwise;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .home-ma-series > a {
    width: 45.385779123%; /* 300/((681-20))*100 */
    text-align: left;
    vertical-align: top;
  }
  
  .home-ma-series > a:first-child {
    margin-right: 56px;
  }

  .home-ma-series > div a {
    margin: 0 auto;
    font-size: 21px;
    height: 55px;
    line-height: 55px;
  }
  
  .home-content-omm h2,
  .home-content-omm p {
    text-align: left;
  }

  .home-content-omm h2 {
    font-size: 31px;
  }

  .home-content-omm h2 + p {
    font-size: 13px;
  }
  
  .home-content-omm p:nth-child(n+4) {
    float: left;
    top: 0;
    width: 224px;
    font-size: 15px;
  }
  
  .home-content-book a {
    text-align: left;
    margin-left: 150px;
  }
  
  .home-content-book a img {
    position: absolute;
    width: 120px;
    top: 20px;
    left: 10px;
  }

  .home-content-book h2 {
    padding-top: 20px;
    margin-bottom: 0;
  }  
  
  .home-content-book a cite {
    font-size: 29px;
    margin-left: -0.5em;
  }  

  .home-content-book cite + p + p {
    margin: 10px 0;
  }
  
  .home-content-cdb a {
    text-align: left;
  }

  .home-content-cdb h2 {
    font-size: 37px;
  }

  .home-content-cdb h2 + p {
    font-size: 13px;
  }

  .home-content-video a {
    text-align: left;
  }

  .home-content-video a h2 {
    font-size: 31px;
  }

  .home-content-video h2 + p {
    font-size: 13px;
  }

  .contact-form h2,
  .contact-form form {
    text-align: left;
  }
  
  .contact-form h2 {
    font-size: 31px;
  }
  
  .contact-form form p:nth-child(-n+4) {
    display: inline-block;
    width: 48.2%; /* 318/((681-20)/2)*100 */
  }
  
  .contact-form form p:nth-child(1),
  .contact-form form p:nth-child(3) {
    margin-right: 20px;
  }

  .contact-form form .opt-in p {
    display: block;
    text-align: left;
    width: 100%;
  }

  .contact-form form .agreement-wrap {
    text-align: center;
  }

  .contact-form form .submit {
    font-size: 16px;
  }
  
  .home-content-kaneko h2 {
    font-size: 27px;
  }
  
  .page-footer aside {
    display: inline-block;
    vertical-align: top;
    width: 48%; /* 318/((681-20)/2)*100 */
    margin-bottom: 10px;
  }
  
  .page-footer aside:nth-child(1),
  .page-footer aside:nth-child(4) {
    margin-right: 20px;
  }

  .page-footer aside:nth-child(3),
  .page-footer aside:nth-child(6) {
    width: 100%;
  }
}
/* /For Tablet */ 

/* For PC: 769px~ */

/*
 *all: 1024px
 */
@media all and (min-width: 769px) {
  .nav-global ul {
    margin-left: 0;
  }

  .trinity-text-heart {
    width: 374px;
    right: -374px;
  }
  
  .trinity-text-heart h2 {
    margin-left: 32px;
    padding-left: 128px;
  }
  
  .trinity-text-heart .line-heart {
    width: 332px;
  }
  
  .trinity-text-heart p {
    margin-left: 32px;
    padding-left: 128px;
  }
  
  .trinity-text-heart-add {
    right: -460px;
  }
  
  .trinity-text-body {
    width: 374px;
    left: -374px;
  }
  
  .trinity-text-body .line-body {
    width: 300px;
  }
  
  .trinity-text-body-add {
    left: -460px;
  }
  
  .home-ma3-head ul li {
    margin: 30px 35px 0;
  }

  .home-ma3-body ul li {
    height: 140px;
  }

  /* adjustment for English */
  .en-home-ma3-body ul li {
    height: 200px;
  }
  /* /adjustment for English */
  
  .home-content-kaneko .img-kaneko {
    height: 200px;
  }
  
  .home-content-kaneko img {
    top: -120px;
  }
}

@media all and (min-width: 961px) {
  .l-sec_kanekoOuter::before {
    background-size: 140%;
    background-position: right 40%;
/*    background-size: 100%;
    background-position: center 40%;
*/  }

  .kaneko {
    padding-top: 10px;
  }

  .stasma {
    padding-top: 0;
  }
  
  .foodpass {
    overflow: hidden;
    margin-bottom: -30px;
  }

  .foodpass_txtUnit {
    width: 350px;
  }
  
  .foodpass_appImage {
    width: 540px;
  }

  .foodpass_appImage_item {
    width: 170px;
    margin: 0 10px;
  }  
  
  .home-ma3-head ul {
    text-align: left;
  }

  .home-ma3-head ul li {
    text-align: center;
    width: 29.65767383575439%; /*/(961px-20px-52px-52px)/3/961*100*/
    margin: 15px 52px 0 0;
  }

  .home-ma3-head ul li:nth-child(3n) {
    margin: 15px 0 0 0;
  }

  .home-ma3-body ul {
    text-align: left;
  }

  .home-ma3-body ul li {
    text-align: center;
    width: 33.3333333333333%;
  }
}
/* /For PC */