/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --red: #b14640;
  --blue: #01a8c6;
  --light_blue: #edf1f6;
  --dark_blue: #2f3e4f;
  --metallic_blue: #365A84;
  --white: #fff;
  --gray: #adadad;
  --dark_gray: #f3f4f6;
  --orange: #ca7223;
  --font-NotoSerifJP: "Noto Serif JP", serif;
  --font-Jost: "Jost", sans-serif;
}

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

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

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

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  color: #000;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body #cm-header {
    width: 120rem;
  }
  body #wrapper {
    max-width: 120rem;
  }
}
.w-brall {
  word-break: break-all;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #280305;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #280305;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  -webkit-transition: All 0.3s ease;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: var(--font-yu-gothic);
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 120rem;
    padding: 0 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
}

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

#cm-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
}
#cm-header a {
  text-decoration: none !important;
}
#cm-header .header-inner {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 1rem;
}
#cm-header .header-inner__logo {
  position: relative;
  width: 50%;
  z-index: 99;
}
#cm-header .header-inner__logo img {
  width: auto;
  height: auto;
}
#cm-header .header-inner__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  #cm-header .header-inner__right .c-search {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #cm-header .header-inner {
    height: 11rem;
    padding: 0 0 0 2rem;
  }
  #cm-header .header-inner__logo {
    width: 30rem;
  }
  #cm-header .header-inner__right {
    width: calc(100% - 30rem);
  }
  #cm-header .header-inner__right .list-lang {
    padding-right: 6rem;
  }
}

.c-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6rem;
  height: 6rem;
  border-left: 1px solid #eee;
  z-index: 999;
}
.c-search .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: center;
}
.c-search .search-box button {
  border: none;
}
.c-search .search-box .search-text {
  width: 100%;
  font-weight: 500;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .c-search {
    width: 11rem;
    height: 11rem;
  }
}

/*---------- START list-lang ----------*/
.list-lang {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
}
.list-lang a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.4rem;
}
.list-lang a:after {
  position: absolute;
  content: "";
  background: #000;
  width: 1px;
  height: 1.5rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 0;
  bottom: 0;
  right: -1.5rem;
  margin: auto;
}
.list-lang a:before {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.list-lang a.active {
  color: var(--blue);
}
.list-lang a.active:before {
  opacity: 1;
}
.list-lang li {
  padding: 0 1.5rem;
}
.list-lang li:last-child a:after {
  display: none;
}
@media only screen and (min-width: 768px) {
  .list-lang a {
    font-size: 1.8rem;
  }
  .list-lang a:hover {
    color: var(--blue);
  }
  .list-lang a:hover:before {
    opacity: 1;
  }
}

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  background: #eee;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 6rem;
  height: 6rem;
  padding: 0.5rem 0 0 0;
  gap: 0.5rem;
  border: none;
  z-index: 9999;
}
.trigger-menu .icon, .trigger-menu .txt {
  position: relative;
  display: block;
}
.trigger-menu .icon {
  width: 3.2rem;
  height: 2rem;
}
.trigger-menu .icon span {
  display: block;
  position: absolute;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--dark_blue);
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  font-weight: 500;
}
.trigger-menu .icon span:nth-child(1) {
  top: 0;
  left: auto;
}
.trigger-menu .icon span:nth-child(2) {
  top: 0;
  bottom: 0;
  right: auto;
}
.trigger-menu .icon span:nth-child(3) {
  bottom: 0;
  left: auto;
}
.trigger-menu .txt {
  font-size: 1.2rem;
  font-weight: 500;
}
.trigger-menu.active .icon span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: -0.3rem;
  top: 0.9rem;
}
.trigger-menu.active .icon span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active .icon span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: -0.3rem;
  top: 0.1rem;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    padding: 0;
    width: 11rem;
    height: 11rem;
  }
  .trigger-menu .icon {
    width: 3.2rem;
    height: 2rem;
  }
  .trigger-menu .icon span {
    width: 2.3rem;
    height: 0.4rem;
  }
  .trigger-menu.active .icon span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    left: 0;
    top: 0.8rem;
  }
  .trigger-menu.active .icon span:nth-child(2) {
    opacity: 0;
  }
  .trigger-menu.active .icon span:nth-child(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    left: 0;
    top: 0;
  }
}

/*---------- START GNAV ----------*/
.l-menu_contents {
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  background: var(--dark_blue);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  border: none;
  padding: 5rem 3rem 10rem;
  overflow: auto;
  z-index: 9999;
}
.l-menu_contents__main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-menu_contents__main .gnav {
  width: 100%;
  color: #fff;
}
.l-menu_contents__main .gnav a {
  color: #fff;
}
.l-menu_contents__main .btn-infor {
  position: relative;
  bottom: 0;
  right: 0;
}
.l-menu_contents.is-visible {
  opacity: 1;
  visibility: visible;
  height: 100vh;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .l-menu_contents__main .gnav ul {
    width: 100%;
  }
  .l-menu_contents__main .btn-infor {
    display: block;
    width: 20rem;
    margin: 2rem auto 0;
  }
  .l-menu_contents__main .btn-infor__item {
    width: 100%;
  }
  .l-menu_contents__main .btn-infor__item:after {
    width: 100%;
    height: 1px;
    bottom: 0;
    top: auto;
  }
  .l-menu_contents__main .btn-infor a {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-menu_contents {
    width: 55%;
    min-width: 90rem;
    right: -55%;
  }
  .l-menu_contents__main {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.gnav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.gnav__item {
  margin-bottom: 1.5rem;
}
.gnav__item .sub-menu__ttl {
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
.gnav__item .sub-menu__ttl:after, .gnav__item .sub-menu__ttl:before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 2px;
  background: #fff;
  top: 0.8rem;
  left: -2.5rem;
}
.gnav__item .sub-menu__ttl:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.gnav__item .sub-menu__ttl.opened:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.gnav__item .sub-menu__main {
  position: relative;
  display: none;
}
.gnav__item .sub-menu__link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 0.7rem;
}
.gnav__link {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
}
.gnav__link:before {
  position: absolute;
  content: "";
  background: var(--bg-yellow);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .gnav__col {
    width: 50%;
  }
  .gnav__item {
    margin-bottom: 3rem;
  }
  .gnav__item .sub-menu__main {
    display: block;
  }
  .gnav__item .sub-menu__ttl:after, .gnav__item .sub-menu__ttl:before {
    top: 1.4rem;
    display: none;
  }
  .gnav__item .sub-menu__link {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .gnav__link {
    font-size: 1.6rem;
  }
}

/*---------- START infor-contact ----------*/
.btn-infor {
  position: absolute;
  background: var(--red);
  border: 0.5rem solid var(--red);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 99;
}
.btn-infor__item {
  position: relative;
  width: 50%;
}
.btn-infor__item:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}
.btn-infor__item:last-child:after {
  display: none;
}
.btn-infor a {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 0.5rem;
  padding-left: 3.5rem;
  background-size: 2rem !important;
  background-position: center left 0.7rem !important;
  font-size: 1.23rem;
}
.btn-infor a:after {
  position: absolute;
  content: "";
  background: var(--white);
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.btn-infor a.icon-tel {
  background: url("../common_img/icon-phone.webp") no-repeat;
}
.btn-infor a.icon-mail {
  background: url("../common_img/mail.webp") no-repeat;
}
@media only screen and (max-width: 767px) {
  .btn-infor {
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .btn-infor {
    bottom: 5rem;
    right: 4rem;
    max-width: 50rem;
    border-width: 1rem;
  }
  .btn-infor a {
    padding: 1rem;
    padding-left: 6rem;
    background-size: 3rem !important;
    background-position: center left 2rem !important;
    font-size: 1.6rem;
  }
  .btn-infor a:hover {
    color: var(--red);
  }
  .btn-infor a:hover:after {
    width: 100%;
  }
  .btn-infor a.icon-tel {
    pointer-events: visible;
    cursor: pointer;
  }
  .btn-infor a.icon-tel:hover {
    background: url("../common_img/icon-phone_red.webp") no-repeat center left 2rem;
    background-size: 3rem;
  }
  .btn-infor a.icon-mail:hover {
    background: url("../common_img/mail_red.webp") no-repeat center left 2rem;
    background-size: 3rem;
  }
}

/*---------- START infor-contact ----------*/
.nav-link {
  position: relative;
  text-decoration: none !important;
  z-index: 3;
}
.nav-link:after {
  position: absolute;
  content: "";
  background: var(--red);
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: var(--red) !important;
  }
  .nav-link:hover:after {
    width: 100%;
  }
}

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
#cm-footer {
  padding: 4rem 0;
}
#cm-footer .f-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid var(--dark_blue);
  padding-bottom: 5rem;
}
#cm-footer .f-main__left {
  width: 100%;
}
#cm-footer .f-main__left .list-lang {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 3rem;
}
#cm-footer .f-main__right {
  width: 100%;
}
#cm-footer .f-main__right .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#cm-footer .f-main__right .gnav__link {
  font-weight: bold;
}
#cm-footer .f-main__right .gnav__item .sub-menu {
  margin-bottom: 1.5rem;
}
#cm-footer .f-main__right .gnav__item .sub-menu__main {
  display: block;
}
#cm-footer .f-main__right .gnav__item .sub-menu__ttl {
  font-weight: bold;
  cursor: auto;
}
#cm-footer .f-infor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 4rem;
  font-weight: 500;
}
#cm-footer .f-infor .f-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
#cm-footer .f-infor .f-link a {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #cm-footer .f-main {
    gap: 4rem;
  }
  #cm-footer .f-main__right .gnav {
    letter-spacing: 0.02rem;
  }
  #cm-footer .f-infor {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
    letter-spacing: 0.02rem;
  }
  #cm-footer .f-infor__left, #cm-footer .f-infor__right {
    width: 100%;
  }
  #cm-footer .f-infor .f-link {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  #cm-footer {
    padding: 8rem 0;
  }
  #cm-footer .f-main {
    padding-bottom: 6rem;
  }
  #cm-footer .f-main__left {
    width: 25%;
  }
  #cm-footer .f-main__left .list-lang {
    margin-top: 6rem;
  }
  #cm-footer .f-main__right {
    width: 70%;
  }
  #cm-footer .f-main__right .gnav__item {
    margin-bottom: 1rem;
  }
  #cm-footer .f-main__right .gnav__item.sub-menu {
    margin-bottom: 3rem;
  }
  #cm-footer .f-infor {
    padding-top: 8rem;
  }
  #cm-footer .f-infor .f-link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 6rem;
  }
}

.copyright {
  color: #5a6674;
  margin-top: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .copyright {
    margin-top: 3rem;
  }
}

#page-up {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 1rem;
  z-index: 99;
}
#page-up a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--red);
  background: var(--red);
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
}
#page-up a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
#page-up a .cm-arr {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media only screen and (max-width: 767px) {
  #page-up .cm-arr {
    width: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 5rem;
  }
  #page-up a {
    width: 6rem;
    height: 6rem;
  }
  #page-up a:hover:before {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #page-up a:hover .cm-arr {
    background: var(--red);
  }
  #page-up a:hover .cm-arr:before {
    border-color: var(--red);
  }
}

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

.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.inner-txt p + p {
  margin-top: 2rem;
}
.inner-txt--m p + p {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .inner-txt p + p {
    margin-top: 4rem;
  }
  .inner-txt--m p + p {
    margin-top: 3rem;
  }
}

/*---------- 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;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.6rem 1.6rem;
  background-color: var(--bg-yellow);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .icon-zoom:hover img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}

/*---------- START PADDING SECTION ----------*/
.sec-cont {
  padding: 3.5rem 0;
}
.sec-cont--lg {
  padding: 4.5rem 0;
}
@media only screen and (min-width: 768px) {
  .sec-cont {
    padding: 7rem 0;
  }
  .sec-cont--lg {
    padding: 9rem 0;
  }
}

/*---------- START ARROW   ----------*/
.cm-arr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 1.8rem;
  height: 2px;
}
.cm-arr:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 0.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cm-arr--back {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cm-arr--up {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.cm-arr--down {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.cm-arr--black {
  background: var(--dark_blue);
}
.cm-arr--black:before {
  border-color: var(--dark_blue);
}

/*---------- START BUTTON  ----------*/
.cm-btn__link {
  position: relative;
  display: inline-block;
  background: var(--dark_blue);
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  padding: 1.5rem 4rem 1.5rem 2rem;
  min-width: 22rem;
  margin-top: 3rem;
}
.cm-btn__link.btn-blue {
  background: var(--blue);
}
.cm-btn__link .cm-arr {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cm-btn--no-arr .cm-btn__link {
  padding: 1.5rem;
}
.cm-btn--back .cm-btn__link {
  padding: 1.5rem 2rem 1.5rem 4rem;
}
.cm-btn--back .cm-btn__link .cm-arr {
  right: auto;
  left: 2rem;
}
@media only screen and (min-width: 768px) {
  .cm-btn__link {
    min-width: 42rem;
    padding: 2.5rem 6rem 2.5rem 3rem;
    margin-top: 6rem;
  }
  .cm-btn__link .cm-arr {
    right: 2rem;
  }
  .cm-btn--back .cm-btn__link {
    padding: 2.5rem 3rem 2.5rem 6rem;
  }
  .cm-btn--no-arr .cm-btn__link {
    padding: 2.5rem;
  }
}

.cm-txt_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .cm-txt_link:hover {
    color: var(--red);
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  .cm-txt_link:hover .cm-arr {
    background: var(--red);
  }
  .cm-txt_link:hover .cm-arr:before {
    border-color: var(--red);
  }
}

.btn-hover {
  position: relative;
  z-index: 2;
}
.btn-hover:after {
  position: absolute;
  content: "";
  background: var(--red);
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.btn-hover--dark_blue:after {
  background: var(--dark_blue);
}
@media only screen and (min-width: 768px) {
  .btn-hover:hover:after {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .txt-link-center_sp {
    margin: auto;
  }
}
/*---------- START TITLE  ----------*/
.c-title01 {
  font-weight: bold;
  color: var(--dark_blue);
  letter-spacing: 0.2rem;
  margin-bottom: 3rem;
}
.c-title01 span {
  display: block;
  width: 100%;
}
.c-title01 span + span {
  margin-top: 0.7rem;
}
.c-title01 .txt-eng {
  font-size: 1.2rem;
}
.c-title01 .txt-eng--lg {
  font-size: 4rem;
}
.c-title01 .txt-eng--sm {
  color: var(--gray);
}
.c-title01 .txt-jp {
  font-size: 1.5rem;
}
.c-title01--sm .txt-eng {
  font-size: 2.4rem;
}
.c-title01--sm .txt-jp {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-title01 {
    margin-bottom: 6rem;
  }
  .c-title01 span + span {
    margin-top: 1.5rem;
  }
  .c-title01 .txt-eng {
    font-size: 1.4rem;
  }
  .c-title01 .txt-eng--lg {
    font-size: 8rem;
  }
  .c-title01 .txt-jp {
    font-size: 1.8rem;
  }
  .c-title01--sm .txt-eng {
    font-size: 5rem;
  }
  .c-title01--sm .txt-jp {
    font-size: 1.6rem;
  }
}

.c-title02 {
  position: relative;
  border-bottom: 2px solid var(--gray);
  margin-bottom: 2rem;
}
.c-title02 span {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark_blue);
  padding-bottom: 1rem;
}
.c-title02 span:after {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -2px;
}
.c-title02--sm {
  margin-bottom: 1.5rem;
}
.c-title02--sm span {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .c-title02 {
    margin-bottom: 4rem;
  }
  .c-title02 span {
    font-size: 3rem;
    padding-bottom: 2rem;
  }
  .c-title02--sm {
    margin-bottom: 2rem;
  }
  .c-title02--sm span {
    font-size: 2.4rem;
  }
}

.c-title03 {
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--dark_blue);
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.c-title03:after, .c-title03:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 40%;
  left: 0;
}
.c-title03:after {
  background: var(--blue);
  top: 10%;
}
.c-title03:before {
  background: var(--gray);
  bottom: 10%;
}
@media only screen and (min-width: 768px) {
  .c-title03 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.c-title04 {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark_blue);
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.c-title04:after {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 5rem;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .c-title04 {
    font-size: 3rem;
    padding-bottom: 1rem;
    margin-bottom: 4rem;
  }
}

.c-sub_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid var(--gray);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.c-sub_line .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9rem;
  min-width: 9rem;
  background: var(--dark_blue);
  font-weight: 500;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem;
}
.c-sub_line .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 1.6rem;
  padding-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-sub_line {
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  .c-sub_line .number {
    font-size: 1.8rem;
  }
  .c-sub_line .text {
    font-size: 2rem;
    padding-left: 2rem;
  }
}

.c-sub_line2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.c-sub_line2 span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--dark_blue);
  padding: 0 2rem;
}
.c-sub_line2 span:after, .c-sub_line2 span:before {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 1rem;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-sub_line2 span:after {
  left: 0;
}
.c-sub_line2 span:before {
  right: 0;
}
@media only screen and (min-width: 768px) {
  .c-sub_line2 span {
    font-size: 2.4rem;
  }
}

.c-sub_dark_blue {
  margin-top: 1.5rem;
  margin: 0.5rem;
}
.c-sub_dark_blue span {
  display: inline-block;
  background: var(--dark_blue);
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-sub_dark_blue {
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
  .c-sub_dark_blue span {
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
  }
}

/*---------- START TEXT  ----------*/
.c-txt--s {
  font-size: 1.2rem;
}
.c-txt--sm {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.c-txt--m {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.c-txt--l {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.c-txt--sl {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.c-txt--xl {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-txt--s {
    font-size: 1.4rem;
  }
  .c-txt--sm {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
  .c-txt--m {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .c-txt--l {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .c-txt--sl {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  .c-txt--xl {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

/*---------- START sec-news  ----------*/
.list-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.list-tag li {
  background: #212c2a;
  width: 10rem;
  color: var(--white);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.list-tag li.metallic_blue {
  background: var(--metallic_blue);
}
.list-tag li.orange {
  background: var(--orange);
}
.list-tag li.red {
  background: var(--red);
}
.list-tag li.blue {
  background: var(--blue);
}

/*---------- START cont-news ----------*/
.cont-news {
  position: relative;
  z-index: 3;
}
.cont-news__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  padding: 1.5rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 0.5rem 2rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gray);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cont-news__date {
  width: 8rem;
  min-width: 8rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.cont-news__txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 767px) {
  .cont-news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cont-news__txt {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .cont-news__link {
    padding: 2.5rem 0.5rem;
  }
  .cont-news__link:hover {
    color: var(--white);
  }
}

/*---------- START c-contact ----------*/
.c-contact {
  background: url("../common_img/contact-bg.webp") no-repeat center/cover;
  padding: 3rem 0 4rem;
}
.c-contact__main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  color: var(--white);
}
.c-contact__ttl {
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1rem 0;
  margin-bottom: 0.2rem;
}
.c-contact__ttl.icon-tel {
  background: url("../common_img/icon-phone.webp") no-repeat center left;
}
.c-contact__ttl.icon-mail {
  background: url("../common_img/mail.webp") no-repeat center left;
}
.c-contact__tel a {
  color: var(--white);
  font-weight: bold;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.5rem;
}
.c-contact__mail a {
  display: inline-block;
  width: 25rem;
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--red);
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
  padding: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .c-contact__ttl {
    background-size: 2rem !important;
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-contact {
    padding: 6rem 0 8rem;
  }
  .c-contact__main {
    gap: 12rem;
  }
  .c-contact__ttl {
    font-size: 1.8rem;
    padding-left: 5rem;
    margin-bottom: 1rem;
  }
  .c-contact__tel a {
    font-size: 6rem;
  }
  .c-contact__mail a {
    width: 40rem;
    font-size: 1.8rem;
    padding: 2.5rem;
  }
  .c-contact__mail a:hover {
    color: var(--white);
  }
}

/*====================================================================================
START link2 SECTION.
====================================================================================*/
.sec-link2 {
  background: var(--dark_blue);
  padding: 3rem 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .sec-link2 {
    padding: 6rem 0;
  }
}

.list-link2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-link2__item {
  width: 100%;
  text-align: center;
}
.list-link2__item a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 1rem;
}
.list-link2__item a span {
  display: block;
  width: 100%;
  text-align: center;
}
.list-link2__item a .icon {
  margin: 1rem 0;
}
.list-link2__item:last-child a {
  border: none;
}
@media only screen and (max-width: 767px) {
  .list-link2__item {
    max-width: 30rem;
  }
  .list-link2__item a {
    border-bottom: 1px solid var(--white);
    padding: 1rem 1rem 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .list-link2 {
    padding: 6rem 0;
  }
  .list-link2__item {
    width: 33.3333333333%;
  }
  .list-link2__item a {
    gap: 3rem;
    font-size: 2.4rem;
    border-right: 1px solid var(--white);
  }
  .list-link2__item a .icon {
    margin: 2rem 0 2.5rem;
    min-height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .list-link2__item a:hover {
    background: #fff;
    color: var(--dark_blue);
  }
  .list-link2__item a:hover .icon {
    -webkit-filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(180deg) saturate(200%) brightness(0.5);
            filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(180deg) saturate(200%) brightness(0.5);
  }
}