@charset "utf-8";

/* ==========================================================================
   Image
========================================================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.ttl_img {
  font-size: 1em;
  line-height: 1;
}
.ttl_img img {
  display: block;
}

.radius {
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .radius {
    border-radius: 20px;
  }
}

/* ==========================================================================
   Link
========================================================================== */
a {
  color: currentColor;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.btn {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  font-size: .923em;
  font-weight: 700;
  line-height: 1.25;
  padding: 1.25em 1.5em;
  border-radius: 3em;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  transition: .2s ease-in-out;
}
.icon-btn {
  display: inline-block;
  width: 3.75em;
  height: 3.75em;
  font-size: .923em;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 3em;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.arrow:before,
.arrow2:before,
.arrow-b:before,
.arrow2-b:before {
  content: '';
  display: block;
  width: .75em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 1.75em;
  transform: translateY(-50%);
}
.arrow:before {
  background: url(../img/icon-arrow.svg) no-repeat center center / contain;
}
.arrow2:before {
  background: url(../img/icon-arrow2.svg) no-repeat center center / contain;
}
.arrow-b:before {
  background: url(../img/icon-arrow-b.svg) no-repeat center center / contain;
}
.arrow2-b:before {
  background: url(../img/icon-arrow2-b.svg) no-repeat center center / contain;
}
.icon-btn.arrow:before,
.icon-btn.arrow2:before,
.icon-btn.arrow-b:before,
.icon-btn.arrow2-b:before {
  top: 50%;
  right: 50%;
  transform: translate(50%,-50%);
}

.btn.btn-white {
  background: #FFF;
  color: #222;
}

.buttons.row {
  margin-right: -5px !important;
  margin-left: -5px !important;
}
.buttons.row > * {
  padding-right: 5px !important;
  padding-left: 5px !important;
  margin-bottom: 20px;
}

.btn:hover {
  box-shadow: 0 8px 16px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

@media only screen and (min-width: 576px) {
  .btn {
    width: 300px;
  }
  .btn_S {
    width: 240px;
  }
}
@media only screen and (min-width: 992px) {
  .btn {
    font-size: .875em;
    padding: 1.5em 2.5em;
  }
  .buttons.row {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }
  .buttons.row > * {
    padding-right: 10px !important;
    padding-left: 10px !important;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   Color
========================================================================== */
.grad-orange {
  background: rgb(240,141,52);
  background: linear-gradient(135deg, rgba(240,141,52,1) 0%, rgba(239,133,177,1) 100%);
}
.grad-pink {
  background: rgb(239,133,177);
  background: linear-gradient(135deg, rgba(239,133,177,1) 0%, rgba(237,97,65,1) 100%);
}
.grad-pink2 {
  background: rgb(239,133,177);
  background: linear-gradient(135deg, rgba(239,133,177,1) 0%, rgba(165,124,214,1) 100%);
}
.grad-violet {
  background: rgb(165,124,214);
  background: linear-gradient(135deg, rgba(165,124,214,1) 0%, rgba(83,156,231,1) 100%);
}
.grad-blue {
  background: rgb(83,156,231);
  background: linear-gradient(135deg, rgba(83,156,231,1) 0%, rgba(115,199,211,1) 100%);
}
.grad-d-blue {
  background: rgb(60,126,213);
  background: linear-gradient(135deg, rgba(60,126,213,1) 0%, rgba(97,113,196,1) 100%);
}
.grad-l-blue {
  background: rgb(115,199,211);
  background: linear-gradient(135deg, rgba(115,199,211,1) 0%, rgba(134,193,84,1) 100%);
}
.grad-yellow {
  background: rgb(252,235,79);
  background: linear-gradient(135deg, rgba(252,235,79,1) 0%, rgba(240,141,52,1) 100%);
}


.grad-yellow-v {
  background: rgb(250,219,74);
  background: linear-gradient(180deg, rgba(250,219,74,1) 0%, rgba(133,194,84,1) 50%, rgba(115,199,212,1) 100%);
}
.grad-d-blue-v {
  background: rgb(60,126,213);
  background: linear-gradient(180deg, rgba(60,126,213,1) 0%, rgba(97,113,196,1) 50%, rgba(125,104,184,1) 100%);
}
.grad-pink-v {
  background: rgb(239,133,177);
  background: linear-gradient(180deg, rgba(239,133,177,1) 0%, rgba(237,97,65,1) 100%);
}


.blue   { color: #237DDC; }
.l-blue { color: #53C9D6; }
.green  { color: #70C63F; }
.yellow { color: #FFDC00; }
.red    { color: #FF5532; }
.pink   { color: #FF7DB2; }
.violet { color: #8264BE; }
.gray   { color: #CCC; }
.l-gray { color: #F2F2F2; }
.white  { color: #FFF; }

.bg-blue   { background-color: #237DDC; }
.bg-l-blue { background-color: #53C9D6; }
.bg-green  { background-color: #70C63F; }
.bg-yellow { background-color: #FFDC00; }
.bg-red    { background-color: #FF5532; }
.bg-pink   { background-color: #FF7DB2; }
.bg-violet { background-color: #8264BE; }
.bg-gray   { background-color: #CCC; }
.bg-l-gray { background-color: #F2F2F2; }
.bg-white  { background-color: #FFF; }

/* ==========================================================================
   Typography
========================================================================== */
.font1,
.en_ttl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
  display: block;
  font-weight: 700;
  letter-spacing: .04em;
}

h1,.h1 {
  font-size: 2.462em;
  line-height: 1.6;
}
h2,.h2 {
  font-size: 1.8em;
  line-height: 1.6;
}
h3,.h3 {
  font-size: 1.5em;
  line-height: 1.6;
}
h4,.h4 {
  font-size: 1.385em;
  line-height: 1.6;
}
h5,.h5 {
  font-size: 1.231em;
}
h6,.h6 {
  font-size: 1.077em;
}
small, .small {
  font-size: .846em;
}

p {
  margin-top: 1.8em;
}
p:not(:last-of-type) {
  margin-bottom: 1.8em;
}

em {
  font-style: normal;
}


.text-justify { text-align: justify; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-justify { text-align: justify !important; }
  .text-sm-left { text-align: left !important; }
  .text-sm-right { text-align: right !important; }
  .text-sm-center { text-align: center !important; }
}
@media (min-width: 768px) {
  .text-md-justify { text-align: justify !important; }
  .text-md-left { text-align: left !important; }
  .text-md-right { text-align: right !important; }
  .text-md-center { text-align: center !important; }
}
@media (min-width: 992px) {
  h1, .h1 { font-size: 3.126em; }
  h2, .h2 { font-size: 2.5em; }
  h3, .h3 { font-size: 1.875em; }
  h4, .h4 { font-size: 1.625em; }
  h5, .h5 { font-size: 1.25em; }
  h6, .h6 { font-size: 1.125em; }
  small, .small { font-size: .8em; }
  .fs-small { font-size: .813em; }
  .text-lg-justify { text-align: justify !important; }
  .text-lg-left { text-align: left !important; }
  .text-lg-right { text-align: right !important; }
  .text-lg-center { text-align: center !important; }
}
@media (min-width: 1200px) {
  .text-xl-justify { text-align: justify !important; }
  .text-xl-left { text-align: left !important; }
  .text-xl-right { text-align: right !important; }
  .text-xl-center { text-align: center !important; }
}

/* ==========================================================================
   List
========================================================================== */
ul,ol {
  list-style: none;
} 

/* ==========================================================================
   Badge
========================================================================== */
.badge {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: .4em .5em;
  color: #FFF;
}
.badge.bg-white {
  color: #222;
}
/* ==========================================================================
   Title
========================================================================== */
.en_ttl + .ttl {
  margin-top: .25em;
}

.i-sq_ttl {
  font-size: 1.385em;
  line-height: 1.5;
  padding-left: 2.25em;
  position: relative;
}
.i-sq_ttl .ttl {
  font-size: 1em;
}
.i-sq_ttl:before {
  content: '';
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/icon-square.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 992px) {
  .i-sq_ttl {
    font-size: 1.125em;
  }
}

.cont__header {
  position: relative;
  z-index: 1;
}
.cont__header .en_ttl {
  position: relative;
  z-index: -1;
  font-size: 1.385em;
  margin-bottom: .25em;
  color: #F2F2F2;
}


@media only screen and (min-width: 576px) {
  .cont__header .en_ttl {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .cont__header .en_ttl {
    font-size: 2em;
  }
}
@media only screen and (min-width: 992px) {
  .cont__header .en_ttl {
    font-size: 2.75em;
  }
}
@media only screen and (min-width: 1200px) {
  .cont__header .en_ttl {
    font-size: 3.75em;
  }
}

.page__title {
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.page__title .ttl {
  font-size: 1.077em;
  letter-spacing: .04em;
}
.page__title .ttl_img {
  margin-bottom: 1em;
}
.page__title .ttl_img img {
  height: 36px;
}
.page__title .ttl_img img.out {
  height: 44px;
}
.page__title .ttl_obj {
  display: block;
  position: absolute;
}
.page__title .ttl_obj img {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .page__title .ttl {
    font-size: 1.125em;
  }
  .page__title .ttl_img img {
    height: 54px;
  }
  .page__title .ttl_img img.out {
    height: 68px;
  }
}

/* ==========================================================================
   Hero
========================================================================== */
.hero {
  margin-bottom: 12vw;
  position: relative;
}
.hero .hero-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero .page__title {
  margin-top: -18px;
}
.hero .ttl_obj {
  display: block;
  width: 89vw;
  position: absolute;
  top: calc(62vw + 34px);
  right: -8%;
}
.hero .ttl_obj img {
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .hero .hero-image.sp {
    padding-top: 62%;
  }
  .hero .hero-image.pc {
    display: none;
  }
}
@media only screen and (min-width: 576px) {
  .hero {
    margin-bottom: 9vw;
  }
  .hero .hero-image.pc {
    padding-top: 36%;
  }
  .hero .hero-image.sp {
    display: none;
  }
  .hero .ttl_obj {
    width: 46%;
    top: 33vw;
    right: -1%;
  }
}
@media only screen and (min-width: 768px) {
  .hero .ttl_obj {
    width: 54%;
    top: 32.5vw;
  }
}
@media only screen and (min-width: 992px) {
  .hero {
    margin-bottom: 100px;
  }
  .hero .page__title {
    margin-top: -27px;
  }
  .hero .ttl_obj {
    bottom: 11.5vw;
  }
}
@media only screen and (min-width: 1200px) {
  .hero {
    margin-bottom: 120px;
  }
}


/* ==========================================================================
   Card
========================================================================== */
.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #CCC;
  color: #FFF;
  height: 180px ;
  padding: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.25;
  text-align: left;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.card:before,
.card:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.3);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.3) 100%);
}
.card:after {
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.3) 100%);
  opacity: 0;
  transition: .2s ease-in-out;
}
.card:hover:after {
  opacity: 1;
}
.card .txtBox {
  position: relative;
  z-index: 2;
}
.card .txtBox:before {
  content: '';
  display: block;
  width: 2.5em;
  height: 2.5em;
  border-radius: 3em;
  background: #FFF;
  position: absolute;
  right: 0;
  bottom: 0;
}
.card .txtBox:after {
  content: '';
  display: block;
  width: 2.5em;
  height: 2.5em;
  background: url(../img/icon-arrow-b.svg) no-repeat center center / 20%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.card span {
  display: block;
}
.card span.en_ttl {
  font-size: .778em;
  letter-spacing: .08em;
  margin-bottom: .5em;
}


.cards.no-gutters .card {
  border-radius: 0;
  padding: 25px;
  font-size: 1.231em;
}
.container .cards.no-gutters .card {
  border-radius: 10px;
}

@media only screen and (max-width: 575px) {
  .cards.no-gutters .card {
    padding: 25px;
  }
  .container .cards.no-gutters .card {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) {
  .container .cards.no-gutters > .col-sm-6:nth-of-type(odd) .card {
    border-radius: 10px 0 0 10px;
  }
  .container .cards.no-gutters > .col-sm-6:nth-of-type(even) .card {
    border-radius: 0 10px 10px 0;
  }
}
@media only screen and (min-width: 768px) {
  .container .cards.no-gutters > .col-md-6:nth-of-type(odd) .card {
    border-radius: 10px 0 0 10px;
  }
  .container .cards.no-gutters > .col-md-6:nth-of-type(even) .card {
    border-radius: 0 10px 10px 0;
  }
}
@media only screen and (min-width: 992px) {
  .card {
    font-size: 1.5em;
    height: 280px;
    padding: 30px;
    border-radius: 20px;
  }
  .cards.no-gutters .card {
    padding: 50px;
    font-size: 1.5em;
  }
  .container .cards.no-gutters > *:nth-of-type(odd) .card {
    border-radius: 20px 0 0 20px;
  }
  .container .cards.no-gutters > *:nth-of-type(even) .card {
    border-radius: 0 20px 20px 0;
  }
}

@media only screen and (min-width: 1200px) {
  .card {
    height: 340px;
  }
}

/* ==========================================================================
   Other
========================================================================== */
#other .cards.no-gutters .card {
  height: 48vw;
}
@media only screen and (min-width: 576px) {
  #other .cards.no-gutters .card {
    height: 24vw;
  }
}

/* ==========================================================================
   Loop Slider
========================================================================== */
.loopSlider li {
  padding: 1.5vw;
}
.loopSlider li .imgBox {
  background: #F7F7F7;
  position: relative;
}
.loopSlider li .imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.loopSliderWrap_H {
  margin-top: 2em;
  margin-bottom: 2.5em;
}
.loopSliderWrap_H .loopSlider {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.loopSliderWrap_H .loopSliderInner {
  margin-right: -25px;
  margin-left: -25px;
}
.loopSliderWrap_H .loopSlider li .imgBox {
  width: 53vw;
  max-width: 320px;
  padding-top: 72.5%;
}
@media only screen and (min-width: 992px) {
  .loopSliderWrap_H .loopSlider li .imgBox {
    max-width: 420px;
  }
}


.loopSliderWrap_V {
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-left: -10px;
  transform: translateX(10px);
}
.loopSliderWrap_V .loopSlider {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.loopSliderWrap_V .loopSliderInner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
}
.loopSliderWrap_V .infiniteslide_wrap {
  height: 100%!important;
}
.loopSliderWrap_V .loopSlider li {
  padding: .75vw;
  width: 100%;
}
.loopSliderWrap_V .loopSlider li .imgBox {
  width: 100%;
  padding-top: 150%;
}

/* ==========================================================================
   Image shadow
========================================================================== */
.img-shadowBox {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.img-shadowBox .img-shadow,
.img-shadowBox .img-shadow-r {
  position: absolute;
  top: 25px;
  left: -25px;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
}
.img-shadowBox .img + .img {
  margin-top: 20px;
}

.separator .img img {
  width: 100%;
  height: 53vw;
  max-height: 420px;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .separator {
    margin-right: calc(((100vw - 100%)/2)*-1);
    margin-left: calc(((100vw - 100%)/2)*-1);
  }
  .separator .radius {
    border-radius: 0;
  }
  .separator .img-shadowBox .img-shadow,
  .separator .img-shadowBox .img-shadow-r {
    display: none;
  }
}


@media only screen and (min-width: 768px) {
  .img-shadowBox .img-shadow-r {
    top: 25px;
    right: -25px;
    left: auto;
  }
  .separator .img img {
    height: 420px;
  }
}
@media only screen and (min-width: 992px) {
  .img-shadowBox .img-shadow {
    top: 30px;
    left: -30px;
  }
  .img-shadowBox .img-shadow-r {
    top: 30px;
    right: -30px;
  }
}


/* ==========================================================================
   Box1
========================================================================== */
.box1 {
  display: block;
  padding-top: 56px;
}
.box1 .container {
  height: 48vw;
  position: relative;
}

.box1 .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  right: calc(((100vw - 100%)/2)*-1);
  bottom: 0;
  background: #CCC;
  border-radius: 30px 0 0 0;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  overflow: hidden;
}
.box1 .imgBox:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.3);
  background: linear-gradient(90deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 100%);
}

.box1 .txtBox {
  color: #FFF;
  transform: translateY(-16px);
  position: relative;
  z-index: 2;
}
.box1 .en_ttl {
  line-height: 1.25;
}
.box1 .ttl {
  font-size: 1.077em;
}

.box1 .row .buttons {
  margin-top: 14vw;
}


@media only screen and (max-width: 424px) {
  .box1 .buttons .btn_S {
    padding: 1.25em 2.5em 1.25em 1em;
  }
  .box1 .buttons .btn_S:before {
    right: 1em;
  }
}
@media only screen and (min-width: 576px) {
  .box1 .container {
    height: 24vw;
  }
  .box1 .row .buttons {
    margin-top: 5vw;
  }
}
@media only screen and (min-width: 768px) {
  .box1 .imgBox {
    top: 0;
    left: 12.5%;
  }
  .box1 .txtBox {
    padding-top: 9.6vw;
    transform: translateY(0);
  }
  .box1 .row .buttons {
    margin-top: 0;
    margin-left: auto !important;
  }
  .box1 .buttons.row > * {
    margin-bottom: 0;
  }
  .box1 .buttons .btn_S {
    width: 180px;
  }
}

@media only screen and (min-width: 992px) {
  .box1 {
    padding-top: 60px;
  }
  .box1 .imgBox {
    border-radius: 50px 0 0 0;
  }
  .box1 .txtBox {
    
  }
  .box1 .ttl {
    font-size: 1.125em;
  }
  .box1 .buttons .btn_S {
    width: 240px;
  }
}

/* ==========================================================================
   Box2
========================================================================== */
.box2 {
  position: relative;
  z-index: 1;
}
.box2 .imgBox {
  padding-top: 88vw;
  margin-right: calc(((100vw - 100%)/2)*-1);
  margin-left: 20px;
  margin-bottom: 60px;
  background-color: #F2F2F2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 30px 0 0 0;
  position: relative;
}
.box2 .ttlBox {
  position: absolute;
  left: -20px;
  bottom: -1.2em;
}
.box2 .ttlBox .ttl_img {
  font-size: 1em;
  line-height: 1;
  margin-bottom: 1em;
}
.box2 .ttlBox .ttl span {
  display: inline-block;
  font-feature-settings: "palt";
  background: #FFF;
  margin-top: .25em;
  padding: .1em .5em;
}

@media only screen and (max-width: 991px) {
  .box2 .ttlBox .ttl_img {
    transform: scale(0.7);
    transform-origin: left bottom;
  }
}

@media only screen and (min-width: 576px) {
  .box2 .imgBox {
    padding-top: 60%;
  }
}

@media only screen and (min-width: 768px) {
  .box2 .imgBox {
    padding-top: 50%;
    border-radius: 30px 0 0 30px;
  }
}

@media only screen and (min-width: 992px) {
  .box2 .imgBox {
    padding-top: 45.6%;
    min-height: 440px;
    margin-left: 100px;
    margin-bottom: 80px;
    border-radius: 50px 0 0 50px;
  }
  .box2 .ttlBox {
    top: 50%;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
  }
}

/* ==========================================================================
   Box3
========================================================================== */
.box3 {
  display: block;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
/* bg */
.box3 .bg {
  color: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(((100vw - 100%)/2)*-1);
  z-index: -1;
}
.box3 .bg .en_ttl {
  display: inline-block;
  font-size: .846em;
  line-height: 1;
  letter-spacing: .5em;
  transform: rotate(90deg);
  transform-origin: left bottom;
  margin-top: calc(40px - 1em);
  margin-left: 3vw;
}
/* img */
.box3 .imgBox {
  padding-top: 60vw;
  background-color: #F2F2F2;
  border-radius: 30px 0 0 0;
  margin-right: calc(((100vw - 100%)/2)*-1);
  position: relative;
}
.box3 .bg + .imgBox,
.box3 .bg + .row > .imgBox {
  margin-left: 20px;
}
.box3 .imgBox .cover-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 30px 0 0 0;
  overflow: hidden;
}
.box3 .imgBox .cover-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box3.linkBox .imgBox .cover-img img {
  transition: transform .6s ease-in-out;
}
.box3.linkBox:hover .imgBox .cover-img img {
  transform: scale(1.1);
}

/* headline */
.box3 .ttlBox {
  position: relative;
  z-index: 2;
}
.box3 .ttlBox .headline {
  position: absolute;
  right: -25px;
  left: -25px;
  transform: translateY(-85%);
}
.box3 .ttlBox .badge {
  font-size: .769em;
}
.box3 .ttlBox .ttl span {
  display: inline-block;
  font-feature-settings: "palt";
  white-space: nowrap;
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding: .1em .5em;
}

/* text */
.box3 .txtBox {
  margin-top: 40px;
  padding: 25px;
  background: #FFF;
  margin-right: calc(((100vw - 100%)/2)*-1);
}
.box3.linkBox .txtBox {
  margin-bottom: 0;
}

/* cv */
.box3 .cvBox {
  width: 100vw;
  padding-top: 2.75em;
  margin-left: calc(((100vw - 100%)/2)*-1);
  margin-bottom: 5em;
  background: #FFF;
}

@media only screen and (max-width: 991px) {
  .box3 .ttlBox h2.ttl {
    font-size: 1.385em;
  }
}
@media only screen and (max-width: 767px) {
  .box3 .imgBox {
    width: calc(100% + (100vw - 100%)/2);
  }
  .box3 .bg + .imgBox,
  .box3 .bg + .row > .imgBox {
    width: calc(100% + ((100vw - 100%)/2) - 20px);
  }
  .box3 .txtBox {
    margin-left: -25px;
    width: calc(100% + ((100vw - 100%)/2) + 25px);
    border-radius: 20px 0 0 0;
  }
}


@media only screen and (min-width: 576px) {
  .box3 .imgBox {
    padding-top: 52%;
  }
}
@media only screen and (min-width: 768px) {
  .box3 .txtBox {
    margin-top: 0;
    margin-left: 20px;
  }
  .box3 .imgBox {
    padding-top: 50%;
  }
  .box3 .ttlBox {
    bottom: 30px;
  }
  .box3 .ttlBox .badge {
    font-size: .923em;
  }
  .box3 .ttlBox h2.ttl {
    font-size: 1.692em;
  }
  .box3 .imgBox .headline {
    bottom: 50px;
    transform: translateY(0);
  }

  
  .box3.linkBox .ttlBox {
    position: absolute;
  }
  .box3.linkBox .cvBox {
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
    padding: 1.5em 25px 0;
    color: #FFF;
    background: transparent;
  }
}

@media only screen and (min-width: 992px) {
  .box3 {
    padding-top: 70px;
  }
  .box3 .bg .en_ttl {
    font-size: .75em;
    margin-top: calc(70px - 1em);
  }
  .box3 .imgBox {
    border-radius: 50px 0 0 0;
  }
  .box3 .bg + .imgBox,
  .box3 .bg + .row > .imgBox {
    margin-left: 50px;
  }
  .box3 .imgBox .cover-img {
    border-radius: 50px 0 0 0;
  }
  .box3 .ttlBox {
    bottom: 50px;
  }
  .box3 .ttlBox .badge {
    font-size: 1.063em;
  }
  .box3 .ttlBox h2.ttl {
    font-size: 2.376em;
  }
  .box3 .ttlBox .ttl span {
    /*margin-top: .5rem;
    margin-bottom: .5rem;*/
  }
  .box3 .txtBox {
    margin-left: 50px;
    padding: 50px;
  }

  .box3.linkBox .cvBox {
    padding: 1.5em 45px 0;
  }
}

@media only screen and (min-width: 1200px) {
  .box3 .imgBox .headline {
    bottom: 70px;
  }
  .box3 .txtBox {
    padding: 70px 80px;
  }
}


.box3.reverse .bg {
  left: 0;
  right: calc(((100vw - 100%)/2)*-1);
}
.box3.reverse .imgBox {
  margin-right: 20px;
  margin-left: calc(((100vw - 100%)/2)*-1) !important;
}
.box3.reverse .imgBox {
  border-radius: 0 30px 0 0;
}
.box3.reverse .imgBox .cover-img {
  border-radius: 0 30px 0 0;
}
.box3.reverse .ttlBox .headline {
  text-align: right;
}
@media only screen and (min-width: 992px) {
  .box3.reverse .imgBox {
    margin-right: 50px;
  }
}



