@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.rotobo {
  font-family: "Roboto Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

:root {
  --font-primary: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-second: "Roboto Condensed", sans-serif;
  --color-primary: #202020;
  --color-blue: #0a1e53;
  --color-blue-second: #0d3091;
  --color-blue-third: #414b70;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-red: #721414;
  --color-red-second: #ae0b0b;
  --color-gray: #e7eaf2;
  --color-gray-second: #e4e8f2;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.05em;
}
body.is-open {
  position: fixed;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 1000px;
  overflow: hidden;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  #wrapper {
    min-width: 320px;
  }
}
.container {
  box-sizing: border-box;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1366px) {
  .container {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.5rem;
  }
}
img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

a {
  color: var(--color-primary);
  text-decoration: underline;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: var(--color-primary);
}

@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.4s;
  }
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    opacity: 0.8;
  }
}
/*====================================================================================
■ CLEAR FLOAT
====================================================================================*/
.clearfix {
  display: inline-block;
}
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*■.FLEX*/
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-jus-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flex-jus-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flex-jus-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-jus-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-jus-around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flex-jus-ini {
  display: flex;
  flex-wrap: wrap;
  justify-content: initial;
}

/*align-items*/
.align-item-start {
  align-items: flex-start;
}

.align-item-end {
  align-items: flex-end;
}

.align-item-stretch {
  align-items: stretch;
}

.align-item-baseline {
  align-items: baseline;
}

.align-item-center {
  align-items: center;
}

.align-item-ini {
  align-items: initial;
}

.flex-container {
  flex-wrap: wrap;
}

/*====================================================================================
■.OTHER
====================================================================================*/
.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

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

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

.text-underline {
  text-decoration: underline;
}

.text-none-underline {
  text-decoration: none;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/*====================================================================================
■.MARGIN
====================================================================================*/
/*---------- TOP ----------*/
.mt10 {
  margin-top: 1rem;
}

.mt15 {
  margin-top: 1.5rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt25 {
  margin-top: 2.5rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt35 {
  margin-top: 3.5rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt45 {
  margin-top: 4.5rem;
}

.mt50 {
  margin-top: 5rem;
}

.mt55 {
  margin-top: 5.5rem;
}

.mt60 {
  margin-top: 6rem;
}

.mt65 {
  margin-top: 6.5rem;
}

/*---------- BOTTOM ----------*/
.mb10 {
  margin-bottom: 1rem;
}

.mb15 {
  margin-bottom: 1.5rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb25 {
  margin-bottom: 2.5rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb35 {
  margin-bottom: 3.5rem;
}

.mb40 {
  margin-top: 4rem;
}

.mb45 {
  margin-top: 4.5rem;
}

.mb50 {
  margin-top: 5rem;
}

.mb55 {
  margin-top: 5.5rem;
}

.mb60 {
  margin-top: 6rem;
}

.mb65 {
  margin-top: 6.5rem;
}

/*---------- RIGHT ----------*/
.mr10 {
  margin-right: 1rem;
}

.mr15 {
  margin-right: 1.5rem;
}

.mr20 {
  margin-right: 2rem;
}

.mr25 {
  margin-right: 2.5rem;
}

.mr30 {
  margin-right: 3rem;
}

.mr35 {
  margin-right: 3.5rem;
}

/*---------- LEFT ----------*/
.ml10 {
  margin-left: 1rem;
}

.ml15 {
  margin-left: 1.5rem;
}

.ml20 {
  margin-left: 2rem;
}

.ml25 {
  margin-left: 2.5rem;
}

.ml30 {
  margin-left: 3rem;
}

.ml35 {
  margin-left: 3.5rem;
}

/*====================================================================================
■.CM CSS
====================================================================================*/
.error {
  color: #f00;
}

/*---------- START BUTTON CONTACT ----------*/
.btn__contact--entry a {
  background-color: var(--color-red);
}
.btn__contact--entry a:hover {
  background-color: var(--color-red-second);
}

.btn__contact--mail a {
  background-color: var(--color-blue);
}
.btn__contact--mail a:hover {
  background-color: var(--color-blue-second);
}

.btn__contact-link {
  text-decoration: none !important;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 5rem;
}
.btn__contact-text {
  position: relative;
  display: inline-block;
  padding-left: 4.5rem;
}
.btn__contact-text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 3rem;
  height: 2.2rem;
  margin-top: -1.1rem;
  background-image: url("../images/common/icon-email.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
}

@media only screen and (max-width: 767px) {
  .btn__contact-link {
    min-height: 5.5rem;
    max-width: 24rem;
  }
}
/*---------- START BUTTON SEARCH ----------*/
.btn__search-link {
  background-color: var(--color-blue);
  border-radius: 10px;
  color: var(--color-white);
  padding: 2rem 4rem 2rem 3.5rem;
  text-align: center;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  width: fit-content;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .btn__search-link {
    padding: 1.5rem 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .btn__search-link:hover {
    background-color: var(--color-blue-second);
  }
}
.btn__search-text {
  font-size: 2.4rem;
  background: url(../images/common/icon-search.png) center left no-repeat;
  background-size: 26px;
  padding-left: 4.6rem;
  margin-right: 1rem;
  font-family: var(--font-second);
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .btn__search-text {
    font-size: 1.6rem;
    background-size: 20px;
  }
}
.btn__pdf a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  padding: 1.5rem 5rem;
}
.btn__pdf a span {
  background: url(../images/common/icon-pdf.png) center left no-repeat;
  display: inline-block;
  padding: 1rem;
  padding-left: 5rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .btn__pdf a:hover {
    background-color: var(--color-gray);
  }
}
@media only screen and (max-width: 767px) {
  .btn__pdf a {
    padding: 1.5rem 2rem;
  }
}
.arrow01 {
  display: inline-block;
  width: 7rem;
  height: 1rem;
  border-bottom: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: skewX(50deg);
}

@media only screen and (max-width: 767px) {
  .arrow01 {
    width: 3.5rem;
    height: 0.7rem;
  }
}
.tt__title01 {
  font-size: 3.117rem;
  color: var(--color-blue);
  position: relative;
  font-family: var(--font-second);
  line-height: 1.5;
  font-weight: 500;
}
.tt__title01 span {
  position: relative;
  display: inline-block;
}
.tt__title01 span:before {
  position: absolute;
  content: "";
  width: 65px;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -80px;
  border-top: 1px solid var(--color-black);
}

.tt__title01--white {
  color: var(--color-white);
}
.tt__title01--white span:before {
  background-color: var(--color-white);
}

@media only screen and (max-width: 767px) {
  .tt__title01 {
    font-size: 2.2rem;
  }
  .tt__title01 span {
    padding-left: 4rem;
  }
  .tt__title01 span:before {
    left: 0;
    width: 30px;
  }
}
/*---------- START TITLE 01 IN ----------*/
@media only screen and (min-width: 768px) {
  .tt__title01--in {
    padding-left: 8rem;
  }
}
.tt__title02 {
  color: var(--color-blue);
  line-height: 1.2;
}

.tt__title02-en {
  font-size: 7.2rem;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--font-second);
}

.tt__title02-jp {
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .tt__title02-en {
    font-size: 5rem;
  }
  .tt__title02-jp {
    font-size: 1.4rem;
  }
}
.tt__title03 {
  color: var(--color-blue);
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 1rem;
}
.tt__title03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--color-blue);
}
.tt__title03 small {
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .tt__title03 {
    padding-left: 1.5rem;
    font-size: 2rem;
  }
  .tt__title03:before {
    width: 4px;
  }
}
@media only screen and (min-width: 768px) {
  .tt__title03 {
    padding-left: 2rem;
  }
  .tt__title03 small {
    font-size: 1.4rem;
  }
}
.tt__title04 {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  color: var(--color-blue);
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .tt__title04 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }
}
.tt__title05 {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.tt__title05--fs18 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .tt__title05 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .tt__title05--fs18 {
    font-size: 1.6rem;
  }
}
.cm-btn__link {
  display: inline-block;
  min-width: 280px;
  max-width: 100%;
  text-decoration: none !important;
  background-color: var(--color-blue);
  border-radius: 10px;
  padding: 2.2rem 5rem 2.2rem 5rem;
  position: relative;
  color: var(--color-white);
  text-align: center;
}
.cm-btn__link:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 0;
  height: 0;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
  .cm-btn__link {
    padding: 1.5rem 2.2rem;
  }
  .cm-btn__link:after {
    right: 15px;
    padding: 3px;
  }
}
@media only screen and (max-width: 480px) {
  .cm-btn__link:after {
    right: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .cm-btn__link:hover {
    background-color: var(--color-blue-second);
  }
}
/*---------- START COMMON BUTTON CONFIRM ----------*/
@media only screen and (min-width: 768px) {
  .cm-btn--confirm::after {
    top: 2.5rem !important;
  }
}
/*---------- START COMMON BUTTON LEFT ----------*/
.cm-btn--left .cm-btn__link::after {
  left: 25px;
  right: auto;
  transform: rotate(135deg);
}

@media only screen and (max-width: 767px) {
  .cm-btn--left .cm-btn__link::after {
    left: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .cm-btn--left .cm-btn__link::after {
    left: 25px;
  }
}
.cm-btn--red .cm-btn__link {
  background-color: var(--color-red);
}

@media only screen and (min-width: 768px) {
  .cm-btn--red .cm-btn__link:hover {
    background-color: var(--color-red-second);
  }
}
.cm-btn--white:after {
  border-color: var(--color-blue);
}
.cm-btn--white .cm-btn__link {
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

@media only screen and (min-width: 768px) {
  .cm-btn--white:hover:after {
    border-color: var(--color-white);
  }
  .cm-btn--white:hover .cm-btn__link {
    background-color: var(--color-blue-second);
    border: 1px solid var(--color-white);
    color: var(--color-white);
  }
}
.clr__blue {
  color: var(--color-blue);
}

.clr__red {
  color: var(--color-red);
}

.clr__black {
  color: var(--color-primary);
}

/*====================================================================================
■.HEADER
====================================================================================*/
#cm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
#cm-header.fixed {
  position: fixed;
  animation: scrolltop 0.8s;
  animation-iteration-count: 1;
}
#cm-header.fixed .cm-header__top {
  display: none;
}

@media only screen and (min-width: 768px) {
  #cm-header.fixed {
    padding: 1rem;
  }
}
/* ========== end △ */
@keyframes scrolltop {
  0% {
    transform: translateY(-80px);
    transform-origin: center;
    opacity: 0;
    transition: ease-in-out;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cm-header__inner {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.cm-header__top {
  margin-bottom: 1.5rem;
}

.cm-header__top-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cm-header__top li:nth-child(1) {
  border-radius: 0 0 0 5px;
  overflow: hidden;
}
.cm-header__top li:nth-child(1) a {
  position: relative;
}
.cm-header__top li:nth-child(1) a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--color-white);
  width: 0;
  height: 0;
  margin: auto;
}
.cm-header__top li:nth-child(2) {
  border-radius: 0 0 5px 0;
  overflow: hidden;
}
.cm-header__top li:nth-child(2) a {
  position: relative;
  padding-left: 4rem;
}
.cm-header__top li:nth-child(2) a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.8rem;
  margin: auto;
  background: url(../images/common/icon-email.png) center center no-repeat;
  background-size: 100%;
  width: 15px;
}
.cm-header__top a {
  display: inline-block;
  text-decoration: none;
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 0.5rem 2rem 0.7rem 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media only screen and (min-width: 768px) {
  .cm-header__top a:hover {
    background-color: var(--color-blue-second);
  }
}
@media only screen and (max-width: 767px) {
  .cm-header__top {
    display: none;
  }
}
.cm-header__body {
  background-color: var(--color-white);
  border-radius: 50px;
  padding: 2rem 3rem 2rem 6rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1100px;
  margin: auto;
}

@media screen and (max-width: 1300px) {
  .cm-header__logo {
    max-width: 220px;
    margin-right: 1rem;
  }
  .cm-header__body {
    padding: 2rem 2rem 2rem 3rem;
  }
  .cm-header__body .btn__entry-link {
    font-size: 1.4rem;
  }
  .cm-header__menu {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 1100px) {
  .cm-header__logo {
    max-width: 180px;
  }
  .cm-header__body .btn__entry-link {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-header__logo {
    max-width: 60%;
  }
  .cm-header__inner {
    padding: 0;
  }
  .cm-header__body {
    min-width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 0;
  }
  .cm-header__body .btn-sp {
    display: flex !important;
    gap: 1rem;
  }
  .cm-header__body .btn-sp .btn__entry {
    width: 45px;
    height: 45px;
  }
  .cm-header__body .btn-sp .btn__entry a {
    border-radius: 5px;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cm-header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 10rem;
    background-color: var(--color-white);
    padding: 1.5rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  .cm-header__menu.opened {
    opacity: 1;
    visibility: visible;
  }
  .cm-header__menu .btn__entry-link {
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
  }
  .cm-header__btns {
    margin-top: 3.5rem;
  }
  .cm-header__btns .btn__contact {
    text-align: center;
    margin-top: 2rem;
  }
  .cm-header__btns .btn__contact:first-child {
    margin-top: 0;
  }
}
.gnav a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 1300px) {
  .gnav a {
    font-size: 1.4rem;
    padding: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .gnav a {
    padding: 1rem 0.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .gnav a:hover {
    color: var(--color-blue-second);
  }
}
@media only screen and (max-width: 767px) {
  .gnav ul {
    display: block;
  }
  .gnav a {
    border-bottom: 1px solid var(--color-gray);
    display: block;
    width: 100%;
    font-size: 1.6rem;
  }
}
.trigger-menu {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 9999;
  background-color: var(--color-blue);
  border-radius: 5px;
}
.trigger-menu span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  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: 14px;
  transform-origin: left center;
}
.trigger-menu span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}
.trigger-menu span:nth-child(3) {
  bottom: 14px;
  transform-origin: left center;
}
.trigger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 8px;
  top: 12px;
}
.trigger-menu.active span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 8px;
  bottom: 14px;
}

@media screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}
/*====================================================================================
■.FOOTER
====================================================================================*/
#cm-footer {
  border-top: 1px solid var(--color-blue);
  margin-top: 8rem;
  padding: 8rem 0 7rem;
}
#cm-footer .container {
  max-width: 1170px;
}

@media only screen and (max-width: 767px) {
  #cm-footer {
    padding: 2rem 0 8rem 0;
    margin-top: 5rem;
  }
}
.cm-footer__inner {
  display: flex;
  justify-content: space-between;
  padding-right: 1rem;
}

@media only screen and (max-width: 767px) {
  .cm-footer__inner {
    flex-wrap: wrap;
    padding: 0;
  }
  .cm-footer__inner .cm-footer__logo {
    display: flex;
    align-items: center;
  }
  .cm-footer__inner .cm-footer__logo p {
    padding-left: 3rem;
  }
  .cm-footer__inner .cm-footer__logo p img {
    max-width: 70px;
  }
}
.cm-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding-right: 1rem;
}
.cm-footer__menu-title {
  font-size: 1.8rem;
  color: var(--color-blue);
  font-weight: 700;
}
.cm-footer__menu li {
  margin-bottom: 1rem;
}
.cm-footer__menu a {
  text-decoration: none;
  display: block;
  font-size: 1.8rem;
}
.cm-footer__menu .arrow {
  font-size: 1.8rem;
  color: var(--color-blue);
  position: relative;
  font-weight: bold;
  padding-right: 2rem;
}
.cm-footer__menu .arrow:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: solid var(--color-blue);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

@media only screen and (min-width: 768px) {
  .cm-footer__menu a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1200px) {
  .cm-footer__menu-title {
    font-size: 1.5rem;
  }
  .cm-footer__menu a,
  .cm-footer__menu .arrow {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-footer__menu {
    width: 100%;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
  }
  .cm-footer__menu-title {
    font-size: 1.4rem;
  }
  .cm-footer__menu a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 414px) {
  .cm-footer__menu a {
    display: inline-block;
  }
}
.cm-footer__button div {
  margin: 0.5rem 0;
}
.cm-footer__button a {
  min-width: 220px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .cm-footer__button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}
.page-up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 999;
}
.page-up a {
  display: block;
}

@media only screen and (max-width: 767px) {
  .page-up {
    width: 15%;
    bottom: 3%;
  }
}
/*---------- START COMMON FIXED ----------*/
.cm-fixed {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
}
.cm-fixed__list {
  display: flex;
}
.cm-fixed__item {
  width: 50%;
}
.cm-fixed__item--email a {
  background-color: var(--color-blue);
}
.cm-fixed__item--entry a {
  background-color: var(--color-red);
}
.cm-fixed__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  text-align: center;
  color: var(--color-white);
  text-decoration: none !important;
}
.cm-fixed__text {
  position: relative;
  display: inline-block;
  padding-left: 3.8rem;
}
.cm-fixed__text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 2.6rem;
  height: 1.8rem;
  margin-top: -0.9rem;
  background-image: url("../images/common/icon-email.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
}

@media only screen and (min-width: 768px) {
  .cm-fixed {
    display: none;
  }
}
/*---------- START COMPONENT INPUT ----------*/
.c-input {
  width: 100%;
  height: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--color-primary);
  font-family: var(--font-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
}

/*---------- START COMPONENT SELECT ----------*/
.c-select {
  position: relative;
  display: inline-block;
  height: 4rem;
  width: 100%;
}
.c-select select {
  cursor: pointer;
  height: 4rem;
  width: 100%;
  color: var(--color-black);
  appearance: none;
  background-image: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.c-select select::-ms-expand {
  display: none;
}
.c-select:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid var(--color-black);
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .c-select:after {
    right: 1rem;
  }
  .c-select select {
    padding-left: 1rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-select select {
    padding-left: 1.5rem;
    padding-right: 3rem;
  }
}
/*---------- START CUSTOM MARGIN TITLE ----------*/
@media only screen and (max-width: 767px) {
  .tt-mg-bottom01 {
    margin-bottom: 2.5rem !important;
  }
  .tt-mg-bottom02 {
    margin-bottom: 2rem !important;
  }
}
@media only screen and (min-width: 768px) {
  .tt-mg-bottom01 {
    margin-bottom: 5rem !important;
  }
  .tt-mg-bottom02 {
    margin-bottom: 4rem !important;
  }
}