@charset "UTF-8";
/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
:root {
  --font-ZenKaku: "Zen Kaku Gothic New", sans-serif;
  --color-blue: #0055B8;
  --color-dark_blue: #034EA2;
  --color-yellow: #FFE03D;
  --bg-blue: #0055B8;
  --bg-dark_blue: #002E64;
  --bg-yellow: #FFE03D;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.8;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000;
}
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}
/* ========== end △ */
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
/* ========== end △ */

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}
/* ▽ TAB layout ========== */
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  #wrapper {
    min-width: 1199px;
  }
}
/* ========== end △ */

/* ▽ TAB layout ========== */
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  body {
    min-width: 120rem;
  }
  body #cm-header {
    width: 120rem;
  }
  body #wrapper {
    max-width: 120rem;
  }
}
/* ========== end △ */
/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  box-sizing: border-box;
  width: 100%;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .container {
    max-width: 112rem;
    margin: 0 auto;
  }
}
/* ========== end △ */
@media only screen and (max-width: 1366px) {
  .container {
    padding: 0 2rem;
  }
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.2rem;
  }
}
/* ========== end △ */

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.header {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 99;
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  margin-left: 1vw;
}
.header__right {
  width: calc(100% - 45rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 500;
}
.header__right .btn-contact__link {
  width: 14.3rem;
}
.header__right .btn-contact__link .icon {
  width: 2.75rem;
}
.header__right .l-menu_contents .gnav {
  width: 100%;
  gap: 3rem;
}
.header.fixed {
  background: #fff;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 23rem !important;
    margin-left: 0;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .header__inner {
    padding: 2vw;
  }
  .header__logo {
    width: 30rem;
    margin-left: 0;
  }
  .header__right {
    width: calc(100% - 30rem);
    gap: 1rem;
  }
  .header__right .btn-contact__link {
    width: 24rem;
    padding: 2rem 1rem;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 2rem;
    font-weight: 500;
  }
  .header__right .btn-contact__link span {
    width: auto;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 1025px) {
  .header__logo {
    width: 44.5rem;
  }
  .header__right {
    gap: 3rem;
  }
  .header__right .btn-contact__link {
    height: 11rem;
  }
  .header__right .l-menu_contents .gnav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
/* ========== end △ */
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .header__logo {
    width: 37rem;
  }
  .header__right {
    width: calc(100% - 37rem);
  }
}

/*---------- START TEL BLUE ----------*/
.tel__number {
  background: url("../common_img/icon-tel.webp") no-repeat;
  background-size: 1.8rem;
  padding-left: 2.5rem;
  font-size: 2.4rem;
  font-family: var(--font-ZenKaku);
  color: var(--color-blue) !important;
  font-weight: 900;
  line-height: 1;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .tel__number {
    background-position: top 1rem left;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .tel__number {
    background-position: top 2rem left;
    font-size: 3.2rem;
  }
}
/* ========== end △ */

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  width: 4rem;
  height: 4rem;
  border: none;
  z-index: 9999;
}
.trigger-menu span {
  display: block;
  position: absolute;
  width: 40px;
  height: 3px;
  background: #000;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.trigger-menu span:nth-child(1) {
  top: 6px;
  transform-origin: left center;
}
.trigger-menu span:nth-child(2) {
  width: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  transform-origin: left center;
}
.trigger-menu span:nth-child(3) {
  bottom: 6px;
  transform-origin: left center;
}
.trigger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 2px;
  top: 4px;
}
.trigger-menu.active span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 2px;
  bottom: 4px;
}
@media screen and (min-width: 1025px) {
  .trigger-menu {
    display: none;
  }
}

.btn-contact__link {
  position: relative;
  background: var(--bg-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
  text-decoration: none;
  z-index: 2;
}
.btn-contact__link span {
  display: block;
  width: 100%;
}
.btn-contact__link .icon img {
  opacity: 1;
}
.btn-contact__link:after {
  position: absolute;
  content: "";
  background: var(--bg-blue);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(0, 1);
  opacity: 0;
  z-index: -1;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .btn-contact__link {
    gap: 0.5rem;
  }
  .btn-contact__link .icon {
    height: 2rem;
  }
  .btn-contact__link:hover {
    color: #fff;
  }
  .btn-contact__link:hover:after {
    opacity: 1;
    transform: scale(1);
  }
  .btn-contact__link:hover .icon {
    background: url("../common_img/icon-mail_white.webp") no-repeat top center;
    background-size: 2.8rem;
    width: 2.8rem;
    height: 2rem;
  }
  .btn-contact__link:hover .icon img {
    display: none;
  }
}
/* ========== end △ */

/*---------- START GNAV ----------*/
.l-menu_contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.l-menu_contents .gnav {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .l-menu_contents {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    padding: 3rem 5rem 10rem 5rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    overflow: auto;
  }
  .l-menu_contents .header-contact {
    text-align: center;
  }
  .l-menu_contents .header-contact .tel {
    margin-bottom: 2rem;
  }
  .l-menu_contents .gnav {
    display: block;
    width: 100%;
    margin-bottom: 4rem;
  }
  .l-menu_contents .gnav li a {
    position: relative;
    width: 100%;
    padding: 2rem 0 2rem 2rem;
    border-bottom: 1px solid #000;
  }
  .l-menu_contents .gnav li a:before {
    position: absolute;
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    border-radius: 0.2rem;
    transform: rotate(45deg);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-menu_contents.is-visible {
    opacity: 1;
    visibility: visible;
    height: 100vh;
  }
}
/* ========== end △ */

.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  z-index: 2;
}
.nav-link:after {
  position: absolute;
  content: "";
  background: var(--bg-blue);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: opacity 0.35s, transform 0.35s;
  transform: scale(0, 1);
  opacity: 0;
  z-index: -1;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: var(--color-blue);
  }
  .nav-link:hover:after {
    opacity: 1;
    transform: scale(1);
  }
}
/* ========== end △ */

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
#cm-footer .f-main {
  background: url("../common_img/f-bg.webp") repeat-x bottom left;
  background-size: 31%;
}
#cm-footer .f-main__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#cm-footer .f-main__left {
  width: 100%;
}
#cm-footer .f-main__logo {
  width: 23rem;
}
#cm-footer .f-main__address {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  margin: 2rem 0;
}
#cm-footer .f-main__address .btn-map {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--bg-dark_blue);
  text-decoration: none;
  color: var(--bg-dark_blue);
  width: 15.2rem;
  height: 4.5rem;
}
#cm-footer .f-main__address .btn-map span {
  background: url("../common_img/map_pin.webp") no-repeat center left;
  background-size: 1.2rem;
  padding-left: 2rem;
}
#cm-footer .f-main .f-gnav {
  width: 100%;
  display: flex;
}
#cm-footer .f-main .f-gnav .nav-link {
  margin-bottom: 1rem;
}
#cm-footer .copyright {
  background: var(--bg-dark_blue);
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-footer .f-main {
    padding: 4rem 0 6rem !important;
  }
  #cm-footer .f-main__logo {
    margin: auto;
  }
  #cm-footer .f-main__inner {
    justify-content: center;
  }
  #cm-footer .f-main__left {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  #cm-footer .f-main__address {
    justify-content: center;
  }
  #cm-footer .f-main .f-gnav {
    justify-content: space-between;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  #cm-footer .f-main {
    padding: 8rem 0 12rem;
  }
  #cm-footer .f-main__logo {
    width: 44.5rem;
  }
  #cm-footer .f-main__left {
    width: 50%;
  }
  #cm-footer .f-main__address {
    gap: 1rem 4rem;
  }
  #cm-footer .f-main__address .btn-map:hover {
    background: var(--bg-dark_blue);
    color: #fff;
  }
  #cm-footer .f-main__address .btn-map:hover span {
    background: url("../common_img/map_pin_white.webp") no-repeat center left;
    background-size: 1.2rem;
  }
  #cm-footer .f-main .f-gnav {
    width: 50%;
    gap: 0 8rem;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  #cm-footer .f-main {
    padding: 6rem 0 10rem;
  }
  #cm-footer .f-main .f-gnav {
    gap: 0 4rem;
    margin-top: 2rem;
  }
  #cm-footer .f-main__address {
    gap: 1rem 2rem;
    flex-wrap: wrap;
  }
}
/* ========== end △ */

#page-up {
  position: fixed;
  right: 2%;
  bottom: 3rem;
  z-index: 999;
}
#page-up img {
  width: 4rem;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 5rem;
  }
  #page-up img {
    width: 7.4rem;
  }
}
/* ========== end △ */

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
#cm-main {
  margin-top: var(--headerH);
}

.inner-txt p + p {
  margin-top: 2rem;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .inner-txt p + p {
    margin-top: 4rem;
  }
}
/* ========== end △ */

/*=========== START cm-contact =============*/
.cm-contact {
  background: linear-gradient(to left, #0070D3, #0055B8);
}
.cm-contact .container {
  position: relative;
  padding: 3rem 0;
}
.cm-contact__ttl {
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-size: 5.5rem;
  line-height: 1;
}
.cm-contact__infor {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
.cm-contact__main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem 3rem;
}
.cm-contact__main .tel__number {
  background: url("../common_img/icon-tel_white.webp") no-repeat top 2rem left;
  background-size: 1.8rem;
  color: #fff !important;
  font-size: 3rem;
}
.cm-contact__main .btn-contact__link {
  width: 29rem;
  padding: 2rem 1rem;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 2rem;
  font-weight: 500;
}
.cm-contact__main .btn-contact__link span {
  width: auto;
}
.cm-contact__main .btn-contact__link .icon {
  width: 2.75rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm-contact {
    margin-top: 8rem !important;
  }
  .cm-contact .container {
    padding: 3rem 1.2rem !important;
  }
  .cm-contact__ttl {
    top: -5rem !important;
  }
  .cm-contact__infor {
    justify-content: center;
  }
  .cm-contact__main {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .cm-contact {
    margin-top: 16rem;
  }
  .cm-contact .container {
    padding: 6rem 0;
  }
  .cm-contact__ttl {
    font-size: 8rem;
    top: -7.5rem;
  }
  .cm-contact__main .tel__number {
    background-size: 2.4rem;
    background-position: top 2.2rem left;
    padding-left: 3rem;
    font-size: 4rem;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .cm-contact .container {
    padding: 6rem 1.2rem;
  }
  .cm-contact__main {
    margin-top: 2rem;
  }
}
/* ========== end △ */

/*=========== START ICON ZOOM =============*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-image: url("../common_img/lightbox/icon-zoom.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.2rem 2.2rem;
  background-color: rgba(0, 0, 0, 0.5);
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}
/* ========== end △ */

/*=========== START BACKGROUND CLIP =============*/
.bg-blue_clip {
  position: relative;
  z-index: 2;
}
.bg-blue_clip:after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #0070D3, #0055B8);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5.5rem));
  width: 100%;
  height: calc(100% - 3rem);
  top: 4rem;
  left: 0;
  z-index: -1;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .bg-blue_clip:after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 9rem));
    height: calc(100% - 6rem);
    top: 9rem;
  }
}
/* ========== end △ */

/*=========== START TITLE =============*/
.cm-title01 span {
  display: block;
  width: 100%;
  line-height: normal;
}
.cm-title01 .txt-eng {
  font-weight: 900;
  color: var(--color-dark_blue);
}
.cm-title01 .txt-jp {
  font-weight: bold;
}
.cm-title01--white span {
  color: #fff !important;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm-title01 {
    margin-bottom: 1.5rem !important;
  }
  .cm-title01 .txt-eng {
    font-size: 4.2rem !important;
  }
  .cm-title01 .txt-jp {
    font-size: 1.8rem !important;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .cm-title01 {
    margin-bottom: 2rem;
  }
  .cm-title01 .txt-eng {
    font-size: 6rem;
  }
  .cm-title01 .txt-jp {
    font-size: 2rem;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .cm-title01 {
    margin-bottom: 3rem;
  }
  .cm-title01 .txt-eng {
    font-size: 8rem;
  }
  .cm-title01 .txt-jp {
    font-size: 2.2rem;
  }
}
/* ========== end △ */

.cm-sub01 {
  text-align: center;
}
.cm-sub01 span {
  display: inline-block;
  width: auto;
  min-width: 2rem;
  max-width: 100%;
  background: var(--bg-dark_blue);
  clip-path: polygon(2rem 0%, calc(100% - 2rem) 0%, 100% 100%, 0% 100%);
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 3rem;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm-sub01 span {
    font-size: 1.8rem !important;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .cm-sub01 span {
    min-width: 30rem;
    font-size: 2rem;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .cm-sub01 span {
    min-width: 36rem;
    font-size: 2.6rem;
  }
}
/* ========== end △ */

/*=========== START LINE BUTTON =============*/
.cm-line_btn {
  position: relative;
  background: #fff;
  height: 1px;
}
.cm-line_btn:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cm-line_btn--blue {
  background: var(--bg-blue);
}
.cm-line_btn--blue:after {
  background: var(--bg-blue);
}
.cm-line_btn--down {
  transform: rotate(90deg);
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm-line_btn {
    width: 3rem;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .cm-line_btn {
    width: 4rem;
  }
}
/* ========== end △ */

/*=========== START BUTTON =============*/
.list-btn {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  gap: 1rem;
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .list-btn {
    margin-top: 4rem;
  }
}
/* ========== end △ */

.cm-btn {
  position: relative;
  display: inline-block;
  width: auto;
  min-width: 25rem;
  max-width: 100%;
  background: linear-gradient(to left, #0070D3, #0055B8);
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  z-index: 2;
}
.cm-btn .cm-line_btn {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cm-btn--sm {
  font-size: 1.4rem;
  padding: 0.6rem 1rem 0.6rem 4rem !important;
  min-width: 13rem;
}
.cm-btn--sm .cm-line_btn {
  width: 3rem;
}
.cm-btn--white {
  background: #fff;
  color: var(--color-dark_blue);
}
.cm-btn--white .cm-line_btn {
  background: var(--bg-dark_blue);
}
.cm-btn--white .cm-line_btn:after {
  background: var(--bg-dark_blue);
}
.cm-btn--back .cm-line_btn {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm-btn {
    padding: 1.5rem 4rem !important;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .cm-btn {
    font-size: 2rem;
    padding: 2.5rem 6rem;
  }
  .cm-btn--sm {
    font-size: 1.6rem;
  }
  .cm-btn:hover {
    background: linear-gradient(to left, #ffec87, #FFE03D);
  }
}
/* ========== end △ */
@media only screen and (max-width: 1366px) {
  .cm-btn {
    padding: 1.5rem 5rem;
  }
}

/*=========== START TEXT =============*/
.txt-eng {
  font-family: var(--font-ZenKaku);
}

.txt-shap_blue {
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  clip-path: polygon(2rem 0%, 100% 0%, calc(100% - 2rem) 100%, 0% 100%);
  background: var(--bg-dark_blue);
  color: #fff;
  font-weight: bold;
  padding: 0.6rem 3rem 0.8rem;
  margin-bottom: 2rem;
}
.txt-shap_blue strong {
  font-weight: bold;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .txt-shap_blue strong {
    font-size: 1.8rem !important;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .txt-shap_blue strong {
    font-size: 2.6rem;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .txt-shap_blue strong {
    font-size: 2rem;
  }
}
/* ========== end △ */

.txt-bg_line {
  background: linear-gradient(to bottom, transparent calc(100% - 3px), var(--color-yellow) calc(100% - 3px) 100%);
}
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .txt-bg_line {
    background: linear-gradient(to bottom, transparent calc(100% - 5px), var(--color-yellow) calc(100% - 5px) 100%);
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .txt-sm {
    font-size: 1.5rem !important;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .txt-sm {
    font-size: 1.8rem;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .txt-sm {
    font-size: 2rem;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .txt-m {
    font-size: 1.6rem !important;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .txt-m {
    font-size: 2rem;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .txt-m {
    font-size: 2.2rem;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .txt-l {
    font-size: 1.8rem !important;
  }
}
/* ========== end △ */
/* ▽ Tablet layout ========== */
@media only screen and (max-width: 1024px) {
  .txt-l {
    font-size: 2.4rem;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 768px) {
  .txt-l {
    font-size: 3rem;
  }
}
/* ========== end △ */