/*=============================================
 * body
 *=============================================*/
body {
   background: #fff;
   color: #1A1311;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   word-break: break-word;
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
   margin: 0;
   padding: 0 80px 0 0;
}

@media screen and (max-width: 1023px) {
   main {
      padding-right: 0;
   }
}

/* =============================================
 * Custom
*=============================================*/
.h2 {
   font-weight: 500;
   font-size: 20px;
   line-height: 30px;
   letter-spacing: 0.04em;
}

.h2 .sub {
   display: inline-block;
   background: url("../img/common/title-icon.png") no-repeat top 20px right/32px auto;
   font-family: "lato", sans-serif;
   font-weight: 500;
   font-size: 60px;
   letter-spacing: 0.1em;
   line-height: 72px;
   padding-right: 42px;
   padding-bottom: 15px;
}

.h2 .sub:first-letter {
   color: #E60012;
}

.h-18 {
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0.05em;
}

.h-20 {
   font-weight: 500;
   font-size: 20px;
   line-height: 30px;
   letter-spacing: 0.05em;
}

.h-24 {
   font-weight: 500;
   font-size: 24px;
   line-height: 32px;
   letter-spacing: 0.05em;
}

.h-32 {
   font-weight: 500;
   font-size: 32px;
   line-height: 42px;
   letter-spacing: 0.05em;
}

.h-36 {
   font-weight: 500;
   font-size: 36px;
   line-height: 52px;
   letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
   .h2 {
      text-align: center;
      font-size: 20px;
      line-height: 24px;
   }

   .h2 .sub {
      font-size: 36px;
      line-height: 40px;
      padding: 0 25px 20px;
      background-size: 18px auto;
      background-position: bottom 24px right;
   }
}

/* button */
.button-01 {
   position: relative;
}

.button-01 a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 0.05em;
   line-height: 24px;
   padding: 13px 0 13px 66px;
   position: relative;
}

.button-01 a:before {
   content: '';
   width: 50px;
   height: 50px;
   background: url("../img/common/btn-arrow.png") no-repeat center top/cover;
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.3s;
}

.button-01 a:hover {
   opacity: 1;
   color: rgba(35, 24, 21, 0.53);
}

.button-01 a:hover:before {
   background-image: url("../img/common/btn-arrow-on.png");
   transform: translateX(10px);
}

.button-02 {
   position: relative;
}

.button-02 a {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   background-color: #57514F;
   color: #fff;
   width: 250px;
   height: 50px;
   border-radius: 50px;
   text-align: center;
   font-weight: 700;
   font-size: 18px;
   line-height: 26px;
}

.button-02 a:hover {
   opacity: 0.8;
}

.button-inq a {
   display: inline-flex;
   flex-direction: row-reverse;
   justify-content: center;
   align-items: center;
   gap: 5px;
   width: 260px;
   height: 50px;
   background-color: #231815;
   color: #fff;
   font-weight: 500;
   font-size: 19px;
   line-height: 27px;
   position: relative;
   z-index: 1;
}

.button-inq a:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #FB4556;
   -webkit-transform: scaleX(0);
   transform: scaleX(0);
   -webkit-transform-origin: 0 50%;
   transform-origin: 0 50%;
   -webkit-transition-property: transform;
   transition-property: transform;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
   z-index: -1;
}

.button-inq a:after {
   content: '';
   width: 24px;
   height: 15px;
   background: url("../img/common/icon-email.png") no-repeat center top/cover;
}

.button-inq a:hover {
   opacity: 1;
}

.button-inq a:hover:before {
   -webkit-transform: scaleX(1);
   transform: scaleX(1);
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

.txt-c {
   text-align: center;
}

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.cl-blue {
   color: #3D9FCA;
}

.cl-green {
   color: #77D1A0;
}

.cl-red {
   color: #E60012;
}

.cl-yellow {
   color: #795A02;
}

.cl-black {
   color: #4B4B4B;
}

.cl-white {
   color: #fff;
}

.udl01 {
   background-image: linear-gradient(#AE0615, #AE0615);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.udl02 {
   background-image: linear-gradient(#002A7D, #002A7D);
   background-size: 100% 17px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.fw-r {
   font-weight: 400;
}

.fw-m {
   font-weight: 500;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-10 {
   border-radius: 10px;
}

.bdra-20 {
   border-radius: 20px;
}

.bdra-30 {
   border-radius: 30px;
}

.img_shadow {
   box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.img-obj {
   width: 100%;
   max-width: inherit;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width: 767px) {
   .bdra-20 {
      border-radius: 10px;
   }

   .bdra-30 {
      border-radius: 15px;
   }
}

/* -- --*/
.w600 {
   max-width: 600px;
   margin: 0 auto;
}

.w800 {
   max-width: 800px;
   margin: 0 auto;
}

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

/* -- --*/
.section-space {
   padding: 100px 0;
}

.pt30 {
   padding-top: 30px;
}

.pt50 {
   padding-top: 50px;
}

.pt100 {
   padding-top: 100px;
}

.pb30 {
   padding-bottom: 30px;
}

.pb50 {
   padding-bottom: 50px;
}

.pb100 {
   padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
   .section-space {
      padding: 50px 0;
   }

   .pt30 {
      padding-top: 15px;
   }

   .pt50 {
      padding-top: 30px;
   }

   .pt100 {
      padding-top: 50px;
   }

   .pb30 {
      padding-bottom: 15px;
   }

   .pb50 {
      padding-bottom: 30px;
   }

   .pb100 {
      padding-bottom: 50px;
   }
}

/* -- --*/
.bg-cl01 {
   background-color: #77D1A0;
}

.bg-cl02 {
   background-color: #F3F7F8;
}

/* -- -- */
.img-zoom,
.img-zoom figure {
   display: block;
   overflow: hidden;
}

.img-zoom .img,
.img-zoom .img-obj {
   transition: 0.6s ease-in-out;
}

.img-zoom:hover .img,
.img-zoom:hover .img-obj {
   transform: scale(1.07);
}

/* -- --*/
.photo-full img {
   width: 100%;
   max-width: inherit;
}

@media screen and (max-width: 767px) {
   .photo-full {
      width: 100%;
      height: 50vw;
   }

   .photo-full img {
      height: 100%;
      object-fit: cover;
   }
}

/* -- --*/
hr {
   border: 0;
   border-bottom: 2px solid #F5F1E7;
}

/* -- --*/
.tel {
   font-size: 14px;
   line-height: 19px;
}

.tel a {
   display: inline-block;
   font-weight: 700;
   font-size: 28px;
   line-height: 28px;
}

.tel a small {
   font-weight: 500;
   font-size: 12px;
   line-height: 15px;
   position: relative;
   bottom: 2px;
}

/*=============================================
 * <header>
 *=============================================*/
header {
   width: 100%;
   position: relative;
   z-index: 100;
   box-sizing: border-box;
}

header .logo {
   flex: 1 0 0;
}

header .logo a {
   display: inline-block;
}

header .logo img {
   max-width: 162px;
}

header .logo span {
   display: block;
   font-weight: 500;
   font-size: 10px;
   line-height: 15px;
}

.header__wrap {
   display: flex;
   align-items: center;
   height: 86px;
   background: #fff;
   padding: 0 30px;
   position: relative;
   z-index: 1;
   box-shadow: 0 3px 6px rgba(126, 118, 119, 0.16);
}

.header__nav {
   display: flex;
   align-items: center;
   gap: 30px;
}

.header__nav .nav {
   display: flex;
   align-items: center;
   gap: 30px;
   font-weight: 500;
   font-size: 15px;
   line-height: 20px;
   text-align: center;
}

.header__nav .nav a span {
   display: block;
   color: #FB4556;
   font-family: "lato", sans-serif;
   font-weight: 500;
   font-size: 10px;
   line-height: 12px;
}

.header__sidebar {
   display: grid;
   grid-template-rows: 86px 50% 1fr 1fr;
   grid-auto-flow: row;
   background: #fff;
   width: 80px;
   height: 100vh;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 1;
}

.header__sidebar .btn-inq a {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100%;
   background-color: #231815;
   color: #fff;
   font-weight: 700;
   font-size: 18px;
   line-height: 21px;
   position: relative;
}

.header__sidebar .btn-inq a:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #FB4556;
   -webkit-transform: scaleY(0);
   transform: scaleY(0);
   -webkit-transform-origin: 50% 0;
   transform-origin: 50% 0;
   -webkit-transition-property: transform;
   transition-property: transform;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
}

.header__sidebar .btn-inq a span {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 10px;
   width: 18px;
   margin: 0 auto;
   position: relative;
}

.header__sidebar .btn-inq a span:before {
   content: '';
   width: 24px;
   height: 15px;
   background: url("../img/common/icon-email.png") no-repeat center top/100% auto;
   display: block;
}

.header__sidebar .btn-inq a:hover {
   opacity: 1;
}

.header__sidebar .btn-inq a:hover:before {
   -webkit-transform: scaleY(1);
   transform: scaleY(1);
}

.header__sidebar .sns {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 16px;
   padding: 20px 0;
}

.header__sidebar .sns li {
   width: 20px;
}

.header__sidebar .copyright {
   width: 18px;
   font-weight: 700;
   font-size: 15px;
   line-height: 18px;
   text-align: center;
   margin: 0 auto;
   padding-bottom: 20px;
}

.header__sidebar .copyright span {
   letter-spacing: 0;
}

.navbar {
   display: grid;
   background: rgba(255, 255, 255, 0.95);
   width: 335px;
   max-height: 100vh;
   overflow-y: auto;
   box-sizing: border-box;
   position: fixed;
   top: 0;
   right: 80px;
   padding: 180px 50px;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s linear;
   transform: translateX(100%);
}

.navbar .in {
   margin: auto;
}

.navbar .nav {
   display: flex;
   flex-direction: column;
   gap: 20px;
   font-weight: 500;
   font-size: 17px;
   line-height: 17px;
}

.navbar .nav a span {
   display: block;
   color: #FB4556;
   font-family: "lato", sans-serif;
   font-weight: 500;
   font-size: 10px;
}

.navbar .tel {
   padding-top: 40px;
}

.navOpen .navbar {
   opacity: 1;
   visibility: visible;
   transform: translateX(0);
}

@media screen and (min-width: 1023px) and (max-height: 700px) {
   .header__sidebar {
      grid-template-rows: 86px 47% 1fr 1fr;
   }

   .header__sidebar .sns {
      gap: 5px;
      padding: 10px 0;
   }

   .header__sidebar .copyright {
      padding-bottom: 10px;
   }
}

@media screen and (max-width: 1440px) {
   .header__wrap {
      gap: 15px;
      padding: 0 15px;
   }

   .header__nav {
      gap: 15px;
   }

   .header__nav .nav {
      gap: 15px;
   }
}

@media screen and (max-width: 1320px) {
   .header__nav .nav {
	   font-size: 12px;
   }
}

@media screen and (max-width: 1199px) {
   .header__wrap {
      height: 90px;
      padding: 0 0 0 25px;
   }

   .header__nav {
      display: none;
   }

   .header__sidebar {
      display: block;
      height: auto;
      padding: 5px 0;
   }

   .header__sidebar>*:not(.hamburger) {
      display: none;
   }

   .navbar {
      right: 0;
      padding: 180px 20px 95px;
   }

   .navbar .nav,
   .navbar .tel {
      width: 100%;
      margin: 0 auto;
   }

   .navbar .sp {
      display: block;
   }

   .navbar .sns {
      display: grid;
      grid-template-columns: repeat(3, 20px);
      gap: 16px;
      width: 195px;
      margin: 0 auto;
      padding-top: 20px;
   }

   .navbar .button-inq {
      padding-top: 40px;
   }

   .navbar .button-inq a {
      width: 290px;
   }
}

/*=============================================
 * <footer>
 *=============================================*/
footer .wrap {
   display: grid;
   grid-template-columns: auto auto;
   align-items: flex-end;
   gap: 35px 32px;
   padding-top: 50px;
   padding-bottom: 40px;
}

footer .logo a {
   display: inline-block;
}

footer .logo img {
   max-width: 162px;
}

footer .logo figcaption {
   display: block;
   font-weight: 500;
   font-size: 10px;
   line-height: 15px;
}

footer nav {
   display: flex;
   justify-content: flex-end;
   gap: 32px;
   font-size: 18px;
}

footer nav a {
   border-bottom: 1px solid transparent;
}

footer nav a:hover {
   border-bottom-color: #1A1311;
}

footer .sns {
   display: grid;
   grid-template-columns: repeat(3, 20px);
   justify-content: flex-end;
   gap: 16px;
}

footer address {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 40px;
   background-color: #231815;
   color: #fff;
   font-weight: 700;
   font-size: 15px;
   line-height: 20px;
}

@media screen and (max-width: 1200px) {
   footer nav {
      gap: 20px;
      font-size: 16px;
   }
}

@media screen and (max-width: 1023px) {
   footer .wrap {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
   }

   footer nav {
      justify-content: space-between;
      gap: 32px;
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   footer .wrap {
      gap: 36px;
      padding-top: 40px;
      padding-bottom: 40px;
   }

   footer .logo figcaption {
      font-size: 12px;
   }

   footer nav {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 10px;
      font-size: 15px;
      letter-spacing: 0.02em;
      line-height: 21px;
   }
}

/*=============================================
 * <kv>
 *=============================================*/
#kv {
   display: flex;
   align-items: center;
   justify-content: center;
   background: url("../img/common/kv-bg-img.jpg") no-repeat center/cover;
   height: 342px;
   position: relative;
}

#kv .page-title {
   font-weight: 500;
   font-size: 24px;
   letter-spacing: 0;
   line-height: 35px;
}

#kv .page-title .sub {
   display: inline-block;
   font-weight: 500;
   font-size: 60px;
   letter-spacing: 0.06em;
   line-height: 72px;
   padding-bottom: 4px;
   text-transform: capitalize;
}

#kv .page-title .sub:first-letter,
#kv .page-title .sub span {
   color: #FE021A;
}

@media screen and (max-width: 767px) {
   #kv {
      height: 200px;
   }

   #kv .page-title {
      font-size: 16px;
   }

   #kv .page-title .sub {
      font-size: 40px;
      line-height: 52px;
      padding-bottom: 0;
   }
}

/*=============================================
 * breadcrumbs
 *=============================================*/
.breadcrumbs {
   font-weight: 500;
   font-size: 14px;
   line-height: 20px;
   position: relative;
   padding: 40px 0 150px;
}

.breadcrumbs .wrap {
   overflow: auto hidden;
   padding-bottom: 10px;
}

.breadcrumbs ul {
   display: flex;
   width: max-content;
}

.breadcrumbs ul li {
   display: flex;
   align-items: center;
}

.breadcrumbs ul li:not(:last-child):after {
   content: '>';
   margin: 0 8px;
}

.breadcrumbs a {
   color: #E54450;
   text-decoration: underline;
}

.breadcrumbs a:hover {
   text-decoration: none;
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      padding: 20px 0 70px;
   }
}

/* =============================================
 * 404
 *=============================================*/
#content-404 {
   display: grid;
   grid-template-columns: 1fr 53%;
   height: calc(100vh - 373px);
   min-height: 400px;
}

#content-404 .col {
   width: 470px;
   margin: auto;
   padding: 20px;
}

#content-404 h2 {
   font-weight: 500;
   font-size: 100px;
   letter-spacing: 0;
   line-height: 120px;
}

#content-404 h3 {
   font-weight: 700;
   letter-spacing: 0;
   padding-top: 10px;
}

#content-404 .txt {
   letter-spacing: 0;
   padding-top: 20px;
}

#content-404 figure {
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #FD919B;
   height: calc(100vh - 373px);
   min-height: 400px;
}

#content-404 figure img {
   max-height: 100%;
}

#content-404 .button-02 {
   padding-top: 30px;
}

@media screen and (max-width: 1200px) {
   #content-404 {
      grid-template-columns: 510px 1fr;
   }
}

@media screen and (max-width: 767px) {
   #content-404 {
      display: flex;
      flex-direction: column-reverse;
      height: auto;
   }

   #content-404 .col {
      width: 100%;
      padding: 40px 20px 0;
      box-sizing: border-box;
      text-align: center;
   }

   #content-404 h2 {
      font-size: 60px;
      line-height: 70px;
   }

   #content-404 h3 {
      font-size: 17px;
      line-height: 26px;
   }

   #content-404 .txt {
      font-size: 14px;
      line-height: 24px;
   }

   #content-404 figure {
      height: auto;
   }
}

/*=============================================
 * wpcf7
 *=============================================*/
.wpcf7 {
   position: relative;
}

.wpcf7 .select {
   position: relative;
}

.wpcf7 .select {
   display: flex;
   align-items: flex-start;
   width: 100%;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
   position: relative;
}

.wpcf7 .select .wpcf7-form-control-wrap::after {
   content: '';
   width: 11px;
   height: 7px;
   background: url("../img/common/select-arrow.png") no-repeat center top/100% auto;
   position: absolute;
   top: 13px;
   right: 10px;
}

.wpcf7 .select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   box-shadow: none;
   background-color: #fff;
   border: 1px solid #555;
   border-radius: 2px;
   font-weight: 500;
   line-height: 30px;
   padding: 0 40px 0 16px;
   cursor: pointer;
}

.wpcf7 .select select::-ms-expand {
   display: none;
}

.wpcf7 input:not([type="checkbox"], [type="radio"]),
.wpcf7 textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #555;
   border-radius: 2px;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 0px 16px;
   font-weight: 500;
   line-height: 30px;
}

.wpcf7 textarea {
   height: 178px;
   resize: vertical;
   padding: 10px 16px;
}

.wpcf7 input[type="date"] {
   padding-right: 40px;
}

.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator {
   width: 100%;
   height: 100%;
   cursor: pointer;
   background-position: top 22px right 15px;
   background-size: 18px auto;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7 ::-webkit-input-placeholder {
   color: #AAAAAA;
}

.wpcf7 ::-moz-placeholder {
   color: #AAAAAA;
}

.wpcf7 :-ms-input-placeholder {
   color: #AAAAAA;
}

.wpcf7 :-moz-placeholder {
   color: #AAAAAA;
}

.wpcf7-checkbox,
.wpcf7-radio {
   display: flex;
   flex-direction: column;
   gap: 10px;
   line-height: 20px;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
   display: block;
   margin-left: 0;
   cursor: pointer;
}

.wpcf7-checkbox input,
.wpcf7-radio input {
   display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-radio .wpcf7-list-item-label {
   display: inline-grid;
   grid-template-columns: 20px 1fr;
   align-items: flex-start;
   gap: 10px;
   cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:after {
   content: '';
   grid-area: 1/1;
   margin: auto;
   border-radius: 2px;
}

.wpcf7-checkbox .wpcf7-list-item-label:before,
.wpcf7-radio .wpcf7-list-item-label:before {
   width: 20px;
   height: 20px;
   border: 1px solid #555;
   box-sizing: border-box;
   position: relative;
}

.wpcf7-checkbox .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item-label:after {
   width: 14px;
   height: 14px;
   background-color: #555;
   position: relative;
   display: none;
}

.wpcf7-checkbox input:checked+.wpcf7-list-item-label:after,
.wpcf7-radio input:checked+.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7 .wpcf7-not-valid-tip {
   font-size: 12px;
   color: #E50012;
}

.wpcf7 .result-txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
   border: 1px solid #555;
   border-radius: 2px;
   padding: 3px 16px;
}

.wpcf7 .result-txt.textarea {
   height: 170px;
}

/*=============================================
 * section cta
 *=============================================*/
.section__cta .wrap {
   display: flex;
   flex-wrap: wrap;
   max-width: 100%;
}

.section__cta h2 {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50%;
   background-color: #E60012;
   padding: 40px 70px 25px;
   text-align: center;
   box-sizing: border-box;
}

.section__cta h2 span {
   max-width: 580px;
}

.section__cta figure {
   width: 50%;
}

.section__cta dl {
   width: 100%;
   display: grid;
   grid-template-columns: 1fr 380px;
   align-items: center;
   font-weight: 900;
   font-size: 28px;
   letter-spacing: 0.04em;
   line-height: 40px;
}

.section__cta dl dt {
   background-color: #231815;
   color: #fff;
   padding: 20px 0 19px;
}

.section__cta dl dt span {
   font-size: 30px;
}

.section__cta dl dd a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 5px;
   background-color: #FDE413;
   padding: 16px 0;
   position: relative;
   z-index: 1;
}

.section__cta dl dd a:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #FB4556;
   -webkit-transform: scaleX(0);
   transform: scaleX(0);
   -webkit-transform-origin: 0 50%;
   transform-origin: 0 50%;
   -webkit-transition-property: transform;
   transition-property: transform;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
   z-index: -1;
}

.section__cta dl dd a:after {
   content: '';
   width: 48px;
   height: 48px;
   background: url("../img/index/cta-arrow.png") no-repeat center top/cover;
   display: block;
}

.section__cta dl dd a:hover {
   opacity: 1;
}

.section__cta dl dd a:hover:before {
   -webkit-transform: scaleX(1);
   transform: scaleX(1);
}

@media screen and (max-width: 1200px) {
   .section__cta dl {
      grid-template-columns: 1fr 320px;
      font-size: 24px;
   }

   .section__cta dl dt span {
      font-size: 24px;
   }
}

@media screen and (max-width: 1023px) {
   .section__cta .wrap {
      flex-direction: column;
   }

   .section__cta h2 {
      width: 100%;
      padding: 12px 20px;
   }

   .section__cta h2 span {
      max-width: 80%;
   }

   .section__cta figure {
      width: 100%;
   }

   .section__cta dl {
      grid-template-columns: 1fr;
      position: relative;
   }

   .section__cta dl dd {
      width: 320px;
      position: absolute;
      bottom: 100%;
      right: 0;
   }
}

@media screen and (max-width: 767px) {
   .section__cta .wrap {
      padding: 0;
   }

   .section__cta dl {
      font-size: 14px;
      line-height: 20px;
   }

   .section__cta dl dt {
      padding: 10px;
   }

   .section__cta dl dt span {
      font-size: 14px;
   }

   .section__cta dl dd {
      width: auto;
   }

   .section__cta dl dd a {
      display: inline-flex;
      padding: 6px 10px;
   }

   .section__cta dl dd a:after {
      width: 21px;
      height: 21px;
   }
}