/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New&display=swap");
:root {
  --font-Noto_jp: "Noto Sans JP", sans-serif;
  --co-orange: #edb333;
  --co-white: #ffffff;
  --co-brown_md: #a69983;
  --co-brown_light: #857255;
  --bg-orange: #edb333;
  --bg-pink_md: #828282;
  --bg-pink_light: rgba(255, 163, 173, 0.5);
  --bg-white: #ffffff;
  --bg-brown_md: #a69983;
  --bg-brown_light: #f7f5f2;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}
html.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.75vw;
  }
}

: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.875;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.025em;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
body.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 350px) {
  body {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

:where(body) {
  margin: 0;
}

#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: #000;
  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: #000;
}
@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: 0.1rem 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;
}

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

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: -ms-grid;
  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 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.2rem;
  }
}

/*---------- START page-up ----------*/
#page-up {
  display: none;
  position: fixed;
  z-index: 9;
}
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 2rem;
    right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-up {
    bottom: 5rem;
    right: 0;
  }
}
#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;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--bg-orange);
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  border: 0.1rem solid var(--bg-orange);
}
@media only screen and (min-width: 768px) {
  #page-up a {
    width: 8rem;
    height: 8rem;
  }
  #page-up a:hover:after {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #page-up a:hover:before {
    border-color: #fff;
  }
  #page-up a:hover .txt {
    color: #0f174f;
  }
  #page-up a:hover span.cm-arr {
    border: solid #0f174f;
    border-width: 0 0.2rem 0.2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  #page-up a {
    width: 4.5rem;
    height: 4.5rem;
  }
}
#page-up a span.cm-arr {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.3rem;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
}
#page-up a span.txt {
  display: block;
  width: 100%;
  text-align: center;
}
#page-up a:after {
  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;
}

/*====================================================================================
1. START listbtn
====================================================================================*/
.fix_listbtn {
  position: fixed;
  right: 0;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .fix_listbtn {
    width: 14.5rem;
    top: 20rem;
  }
}
@media only screen and (max-width: 767px) {
  .fix_listbtn {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 5rem;
  }
}
.fix_listbtn a {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .fix_listbtn a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 1rem 0 0 1rem;
    font-size: 1.6rem;
    height: 13.6rem;
    margin-bottom: 0.5rem;
  }
  .fix_listbtn a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .fix_listbtn a {
    margin-bottom: 0.3rem;
    border-radius: 0.5rem 0 0 0.5rem;
    height: 5rem;
    font-size: 0;
    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;
  }
}
.fix_listbtn a:last-child {
  margin-bottom: 0;
}
.fix_listbtn a img {
  display: block;
  margin: auto;
}
.fix_listbtn a:nth-child(1) {
  background: #cf7500;
}
@media only screen and (min-width: 768px) {
  .fix_listbtn a:nth-child(1) {
    padding-top: 3.4rem;
  }
  .fix_listbtn a:nth-child(1) img {
    margin-bottom: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .fix_listbtn a:nth-child(1) img {
    width: 2.5rem;
  }
}
.fix_listbtn a:nth-child(2) {
  background: #00509b;
}
@media only screen and (min-width: 768px) {
  .fix_listbtn a:nth-child(2) {
    padding-top: 3.3rem;
  }
  .fix_listbtn a:nth-child(2) img {
    margin-bottom: 1.2rem;
    width: 2.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .fix_listbtn a:nth-child(2) img {
    width: 2.5rem;
  }
}

/*====================================================================================
1. START COMMON HEADER
====================================================================================*/
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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;
  z-index: 9999;
}
.header-logo {
  margin: 0;
  padding: 4.3rem 0 0 5rem;
  width: 35rem;
}
@media only screen and (max-width: 767px) {
  .header-logo {
    width: 20rem;
    padding: 0;
    margin: 1.7rem 0 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .header_right {
    padding-top: 2rem;
    padding-right: 3.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .header_tell {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .header_tell {
    text-align: center;
    margin-top: 3rem;
  }
}
.header_tell a {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  color: #00509b;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .header_tell a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .header_tell a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header_tell p {
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  color: #000000;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .header_tell p {
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  .header_tell p {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .header_menu {
    margin-top: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu {
    position: fixed;
    top: 6.5rem;
    width: 100%;
    left: 0;
    height: calc(100% - 6.7rem);
    background: #fff;
    padding: 3rem;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .header_menu.visible {
    opacity: 1;
    visibility: visible;
  }
}
.header_menu_nav {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .header_menu_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.7rem;
  }
}
@media only screen and (max-width: 1300px) {
  .header_menu_nav {
    gap: 4rem;
  }
}
.header_menu_nav a {
  font-weight: 500;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .header_menu_nav a {
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu_nav a {
    font-size: 1.6rem;
    padding: 1rem 0;
    display: block;
  }
}
.header_menu_nav li {
  list-style-type: none;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header_menu_nav li {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header_menu_nav li:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header_menu_nav li:hover > a {
    color: #cf7500;
  }
  .header_menu_nav li:hover > a:after {
    border: solid #cf7500;
    border-width: 0 0.2rem 0.2rem 0;
  }
  .header_menu_nav li:hover .header_menu_sub a {
    color: #cf7500;
  }
  .header_menu_nav li:hover .header_menu_sub .icon:after {
    border: solid #cf7500;
    border-width: 0 0.2rem 0.2rem 0;
  }
  .header_menu_nav li:hover ul {
    display: block;
  }
  .header_menu_nav li > a {
    padding-bottom: 2.2rem;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu_nav li {
    border-bottom: 0.1rem solid #cf7500;
  }
  .header_menu_nav li.open .submenu {
    display: block;
  }
  .header_menu_nav li.open .header_menu_sub .icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
            transform: translate(-50%, -50%) rotate(-135deg);
  }
}
.header_menu_nav li .submenu {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header_menu_nav li .submenu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 25rem;
    background: #fff;
    padding: 0 3rem;
  }
  .header_menu_nav li .submenu li {
    padding: 0;
  }
  .header_menu_nav li .submenu li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 0.1rem solid #cf7500;
  }
  .header_menu_nav li .submenu li:last-child a {
    border-bottom: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu_nav li .submenu {
    padding: 0;
    border-top: 0.1rem solid #cf7500;
  }
  .header_menu_nav li .submenu a {
    padding: 1rem 2rem 1rem 3rem;
    position: relative;
  }
  .header_menu_nav li .submenu a:before {
    content: "";
    border: solid #cf7500;
    border-width: 0 0.2rem 0.2rem 0;
    display: inline-block;
    padding: 0.3rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    left: 1rem;
    top: 1.8rem;
  }
  .header_menu_nav li .submenu li:last-child {
    border-bottom: none;
  }
}
.header_menu_sub {
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .header_menu_sub {
    padding-right: 10px;
  }
  .header_menu_sub > a {
    padding-bottom: 2.2rem;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu_sub a {
    width: calc(100% - 4.7rem);
  }
}
.header_menu_sub .icon {
  position: relative;
}
.header_menu_sub .icon:after {
  content: "";
  display: inline-block;
  padding: 0.3rem;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .header_menu_sub .icon:after {
    border: solid black;
    border-width: 0 0.2rem 0.2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu_sub .icon:after {
    border: solid #cf7500;
    border-width: 0 0.2rem 0.2rem 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media only screen and (min-width: 768px) {
  .header_menu_sub .icon {
    right: -0.1rem;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media only screen and (max-width: 767px) {
  .header_menu_sub .icon {
    width: 4.7rem;
  }
}

/*====================================================================================
3. START HAMBURGER
====================================================================================*/
.trigger-menu {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .trigger-menu {
    height: 6.5rem;
    width: 6.5rem;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .trigger-menu span.line {
    width: 3.5rem;
    height: 0.3rem;
    margin: auto auto 0.7rem;
    background: #cf7500;
    display: block;
  }
}
.trigger-menu span.txt {
  color: #cf7500;
  display: block;
}
@media only screen and (max-width: 767px) {
  .trigger-menu span.txt {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin: -0.6rem 0 0;
  }
}
.trigger-menu.active span.line {
  width: 3.5rem;
  height: 0.3rem;
  background: #cf7500;
  display: block;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 2rem;
}
.trigger-menu.active span.line:nth-child(2) {
  display: none;
}
.trigger-menu.active span.line:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.trigger-menu.active span.line:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.trigger-menu.active span.txt {
  margin-top: 2.5rem;
}

/*====================================================================================
3. START FADE-UP
====================================================================================*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.fadein.fadein_on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*====================================================================================
4. START TITLE
====================================================================================*/
.cm-title01 {
  color: var(--co-orange);
  margin: 0;
  letter-spacing: 0.075em;
}
@media only screen and (min-width: 768px) {
  .cm-title01 {
    font-size: 4rem;
    font-weight: 500;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title01 {
    font-size: 2.6rem;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: 700;
  }
}
.cm-title__left {
  text-align: left;
}
.cm-title02 .txt_orange {
  font-weight: 700;
  color: var(--co-orange);
  letter-spacing: 0.05em;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .cm-title02 .txt_orange {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title02 .txt_orange {
    font-size: 2.6rem;
    text-align: center;
  }
}
.cm-title02 .txt_black {
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .cm-title02 .txt_black {
    font-size: 2.4rem;
    margin: 2.8rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title02 .txt_black {
    font-size: 1.8rem;
    margin: 1.1rem 0 0;
    text-align: left;
  }
}
.cm-title03 {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--co-orange);
}
@media only screen and (min-width: 768px) {
  .cm-title03 {
    font-size: 4rem;
    margin: 0 0 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title03 {
    font-size: 2.2rem;
    margin: 0 0 1rem;
  }
}

/*====================================================================================
5. START LIST NOTICE
====================================================================================*/
.cm-notice__listItem {
  border-bottom: 0.1rem solid #adb3b9;
}
.cm-notice__listItem:last-child {
  border-bottom: none;
}
.cm-notice__listItemInner {
  text-decoration: none;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .cm-notice__listItemInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 3.1rem 0;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .cm-notice__listItemInner:hover {
    color: var(--co-orange);
  }
}
@media only screen and (max-width: 767px) {
  .cm-notice__listItemInner {
    padding: 1rem 0;
    display: block;
  }
}
.cm-notice__listItemDate {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .cm-notice__listItemDate {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    width: 12.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-notice__listItemDate {
    font-size: 1.4rem;
  }
}
.cm-notice__listItemTitle {
  font-weight: 400;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .cm-notice__listItemTitle {
    font-size: 1.6rem;
    width: calc(100% - 12.5rem);
    line-height: 1.875;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 767px) {
  .cm-notice__listItemTitle {
    font-size: 1.4rem;
  }
}

/*====================================================================================
6. START BUTTOM
====================================================================================*/
.cm-btn01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 1.1rem;
}
.cm-btn01 .arrow {
  border-radius: 50%;
  background: var(--bg-orange);
  position: relative;
  border: 0.1rem solid var(--bg-orange);
}
@media only screen and (min-width: 768px) {
  .cm-btn01 .arrow {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn01 .arrow {
    width: 3rem;
    height: 3rem;
  }
}
.cm-btn01 .arrow i {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.cm-btn01 .arrow i:after {
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.2rem;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
}
@media only screen and (min-width: 768px) {
  .cm-btn01 .arrow i:after {
    margin: -0.3rem 0 0 0.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn01 .arrow i:after {
    margin: -0.3rem 0 0 0.3rem;
  }
}
.cm-btn01 .arrow i:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
}
.cm-btn01 .arrow:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .cm-btn01:hover {
    color: var(--co-orange);
  }
  .cm-btn01:hover .arrow i:before {
    background: var(--co-orange);
  }
  .cm-btn01:hover .arrow i:after {
    border: solid var(--co-orange);
    border-width: 0 0.2rem 0.2rem 0;
  }
  .cm-btn01:hover .arrow:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.cm-btn__prev .arrow i:after {
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  -webkit-transform: rotate(135deg) translate(-50%, -50%);
          transform: rotate(135deg) translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .cm-btn__prev .arrow i:after {
    margin: -0.3rem 0 0 -0.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn__prev .arrow i:after {
    margin: -0.3rem 0 0 -0.9rem;
  }
}
.cm-btn__prev .arrow:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .cm-btn__prev:hover {
    color: var(--co-orange);
  }
  .cm-btn__prev:hover .arrow i:before {
    background: var(--co-orange);
  }
  .cm-btn__prev:hover .arrow i:after {
    border: solid var(--co-orange);
    border-width: 0 0.2rem 0.2rem 0;
  }
  .cm-btn__prev:hover .arrow:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.cm-btn02 {
  width: 100%;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--bg-orange);
  color: #fff;
  letter-spacing: 0.15em;
  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;
  background: var(--bg-orange);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-right: 1rem;
}
@media only screen and (min-width: 768px) {
  .cm-btn02 {
    max-width: 38rem;
    height: 8rem;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn02 {
    max-width: 25rem;
    height: 5rem;
    font-size: 1.6rem;
    margin: auto;
  }
}
.cm-btn02:after {
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.3rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 2.4rem;
}
.cm-btn02:before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  right: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .cm-btn02:hover {
    background: var(--bg-white);
    color: var(--co-orange);
  }
  .cm-btn02:hover:before {
    background: var(--co-orange);
  }
  .cm-btn02:hover:after {
    border: solid var(--co-orange);
    border-width: 0 0.2rem 0.2rem 0;
  }
}
.cm-btn02__back:after {
  right: auto;
  left: 2.4rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.cm-btn02__back:before {
  left: 2.4rem;
  right: auto;
}

.cm-btn_contact {
  border-radius: 0.5rem;
  color: #cf7500;
  font-weight: 700;
  text-decoration: none;
  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;
  letter-spacing: 0.1em;
  position: relative;
}
.cm-btn_contact:after {
  border: solid #cf7500;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.3rem;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .cm-btn_contact {
    height: 10rem;
    background: #fff url(../images/common_img/ico_mail_o.webp) no-repeat left 4.8rem center;
    font-size: 1.8rem;
    padding-left: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-width: 42.3rem;
  }
  .cm-btn_contact:hover {
    background: var(--bg-orange) url(../images/common_img/ico_mail.webp) no-repeat left 4.8rem center;
    color: #fff;
  }
  .cm-btn_contact:after {
    right: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn_contact {
    height: 6rem;
    background: #fff url(../images/common_img/ico_mail_o.webp) no-repeat left 2rem center;
    font-size: 1.6rem;
    padding-left: 1rem;
    max-width: 28rem;
    margin: auto;
  }
  .cm-btn_contact:after {
    right: 2rem;
  }
}

/*====================================================================================
7. START CONTACT
====================================================================================*/
.cm-contact {
  background: #cf7500;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cm-contact {
    padding: 8.1rem 0 8.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact {
    padding: 2rem 0 3rem;
  }
}
.cm-contact_title {
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .cm-contact_title {
    font-size: 4rem;
    margin: 0 0 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact_title {
    font-size: 2.4rem;
    margin: 0 0 0.5rem;
    text-align: center;
  }
}
.cm-contact_ttl {
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .cm-contact_ttl {
    font-size: 2.4rem;
    margin: 0 0 2.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact_ttl {
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .cm-contact_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .cm-contact_right {
    width: 44.2rem;
    padding-top: 4.6rem;
  }
}
.cm-contact_right p {
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .cm-contact_right p {
    font-size: 1.8rem;
    margin: 0.1rem 0 5rem;
  }
}
.cm-contact_right p span {
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .cm-contact_left {
    width: calc(100% - 44.2rem);
  }
}
.cm-contact_left p {
  letter-spacing: 0.05em;
  margin: 0;
}
.cm-contact_tel {
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .cm-contact_tel {
    font-size: 5.6rem;
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact_tel {
    font-size: 4rem;
    gap: 0.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1rem;
  }
}
.cm-contact_tel img {
  position: relative;
  top: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .cm-contact_tel img {
    width: 4rem;
  }
}

/*====================================================================================
8. START LIST PROFESSIONAL
====================================================================================*/
.cm-professional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .cm-professional {
    gap: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-professional {
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cm-professional__listItem {
  background: #fff;
  border-radius: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .cm-professional__listItem {
    width: calc(33.3333333333% - 3rem);
    padding: 3rem 3rem 5.2rem;
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-professional__listItem {
    width: 100%;
    padding: 2rem;
  }
}
.cm-professional__listItemInner {
  text-decoration: none;
}
.cm-professional__listItemImg {
  border-radius: 0.5rem;
  overflow: hidden;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .cm-professional__listItemImg {
    height: 20rem;
  }
  .cm-professional__listItemImg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    display: block;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}
@media only screen and (max-width: 767px) {
  .cm-professional__listItemImg img {
    width: 100%;
  }
}
.cm-professional__listItemDate {
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .cm-professional__listItemDate {
    margin: 2rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .cm-professional__listItemDate {
    margin: 1rem 0 0;
  }
}
.cm-professional__listItemTitle {
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .cm-professional__listItemTitle {
    margin: 1rem 0 0;
    line-height: 1.2;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 767px) {
  .cm-professional__listItemTitle {
    margin: 0.5rem 0 0;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .cm-professional__listItem:hover .cm-professional__listItemImg img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .cm-professional__listItem:hover .cm-professional__listItemTitle,
  .cm-professional__listItem:hover .cm-professional__listItemDate {
    color: var(--co-orange);
  }
}

/*====================================================================================
9. START COMMON FOOTER
====================================================================================*/
@media only screen and (min-width: 768px) {
  .footer {
    padding-top: 8.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .footer_left {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .footer_left {
    text-align: center;
  }
  .footer_left .logo_footer {
    width: 20.6rem;
  }
}
.footer_left p {
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .footer_left p {
    margin: 2rem 0 0.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer_left p {
    margin: 1rem 0 0.4rem;
  }
}
.footer_left a {
  text-decoration: none;
  font-weight: 500;
}
.footer_left .list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .footer_left .list_link {
    gap: 1.9rem;
    margin-top: 2.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer_left .list_link {
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
  }
  .footer_left .list_link img {
    height: 3rem;
  }
}
.footer_left .list_link a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer_left .list_link a:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .footer_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .footer_menu {
    margin-top: -0.7rem;
    gap: 6.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .footer_menu.footer_menu_sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer_menu {
    margin-top: 3rem;
  }
  .footer_menu_it {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer_menu.footer_menu_pc {
    display: none;
  }
}
.footer_menu a {
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
@media only screen and (min-width: 768px) {
  .footer_menu a {
    font-size: 1.6rem;
  }
  .footer_menu a:hover {
    color: #cf7500;
  }
}
@media only screen and (max-width: 767px) {
  .footer_menu a {
    width: 50%;
  }
}

/*====================================================================================
10. START COPPYRIGHT
====================================================================================*/
.copyright {
  color: #b3b3b3;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .copyright {
    font-size: 1.6rem;
    margin: 12.2rem 0 3.1rem;
  }
}
@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 1.3rem;
    margin: 6rem 0 2rem;
  }
}

/*====================================================================================
11. START FIX BUTTOM
====================================================================================*/
@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}