@charset "UTF-8";
/*------------------------------------------------------------
                       Custom Property
------------------------------------------------------------*/
:root {
  --primary-font-family: "Noto Sans JP", sans-serif;
  --sub-font-family: "Josefin Sans", serif;
  --sub-font-family2: "Noto Serif JP", serif;
  --primary-font-color: #333333;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;
  --base-bgcolor: #FFFFFF;
  --sub-base-bgcolor: #F4F8FA;
  --theme-blue: #395297;
  --theme-blue-light: #6BB0DC;
  --theme-blue-light2: #5FCBD9;
  --hover-transition: 0.2s;
  --hover-opacity: 0.7;
  --contents-maxWidth: 1100px;
  --contents-Width: 88%;
  --contents-Width2: 73%;
  --contents-Width3: 62%;
  --contents-Width4: 92%;
  --contents-mobileWidth: 89%;
  --input-bgColor: #F4F8FA;
  --input-borderColor: #E5EEF3;
  --input-placeholderFontColor: #92B2C6;
  --input-focusBorderColor: #395297;
  --header-heightPC: 100px;
  --header-heightSP: 60px;
  --header-bgColorPC: #FFFFFF;
  --header-bgColorSP: #FFFFFF;
  --hamburger-bgColor: #FFFFFF;
}

/*------------------------------------------------------------
                        Foundation
------------------------------------------------------------*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
 /* scrollbar-width: none; */
}

body.coade {
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
  background-color: var(--base-bgcolor);
  margin: 0;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  position: relative;
  padding-top: var(--header-heightPC);
}
body.coade::-webkit-scrollbar {
 /* display: none;
  appearance: none;
  -webkit-appearance: none;
	*/
}
@media screen and (max-width: 950px) {
  body.coade {
    padding-top: clamp(var(--header-heightSP), 16vw, var(--header-heightSP) * 2);
  }
}
body.coade a {
  text-decoration: none;
  color: var(--primary-font-color);
  transition: var(--hover-transition);
}
body.coade a:hover {
  opacity: var(--hover-opacity);
}
body.coade h1, body.coade h2, body.coade h3, body.coade h4, body.coade h5, body.coade h6, body.coade p, body.coade dl, body.coade dd {
  margin: 0;
}
body.coade ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.coade button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: middle;
}
body.coade img {
  vertical-align: middle;
  width: 100%;
}
body.coade input, body.coade textarea, body.coade select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 0;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid var(--input-borderColor);
  background-color: var(--input-bgColor);
  font-family: var(--primary-font-family);
  color: var(--primary-font-color);
}
body.coade input::-moz-placeholder, body.coade textarea::-moz-placeholder, body.coade select::-moz-placeholder {
  color: var(--input-placeholderFontColor);
}
body.coade input::placeholder, body.coade textarea::placeholder, body.coade select::placeholder {
  color: var(--input-placeholderFontColor);
}
body.coade input:focus, body.coade textarea:focus, body.coade select:focus {
  outline: none;
  border: 1px solid var(--input-focusBorderColor);
}

/*------------------------------------------------------------
                          Layout
------------------------------------------------------------*/
body.coade .l-sec {
  width: 100%;
  padding: 120px 0;
}
@media screen and (max-width: 950px) {
  body.coade .l-sec {
    padding: clamp(60px, 16vw, 120px) 0;
  }
}
body.coade .l-sec.--bg {
  background-color: var(--sub-base-bgcolor);
}
body.coade .l-sec.--post {
  padding-top: 40px;
}
@media screen and (max-width: 950px) {
  body.coade .l-sec.--post {
    padding-top: clamp(20px, 5.3vw, 40px);
  }
}
body.coade .l-sec.--pt0 {
  padding-top: 0;
}
body.coade .l-sec .l-secInr {
  max-width: var(--contents-maxWidth);
  margin: 0 auto;
  width: var(--contents-Width);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1190px) {
  body.coade .l-sec .l-secInr {
    width: var(--contents-mobileWidth);
  }
}
body.coade .l-sec .l-secInr.--l {
  width: var(--contents-Width4);
}
@media screen and (max-width: 1190px) {
  body.coade .l-sec .l-secInr.--l {
    width: var(--contents-mobileWidth);
  }
}
body.coade .l-sec .l-secInr.--m {
  width: var(--contents-Width2);
}
@media screen and (max-width: 1190px) {
  body.coade .l-sec .l-secInr.--m {
    width: var(--contents-mobileWidth);
  }
}
body.coade .l-sec .l-secInr.--s {
  width: var(--contents-Width3);
}
@media screen and (max-width: 1190px) {
  body.coade .l-sec .l-secInr.--s {
    width: var(--contents-mobileWidth);
  }
}
body.coade .l-sec .l-secInr.--full {
  width: 100%;
}
@media screen and (max-width: 1190px) {
  body.coade .l-sec .l-secInr.--full {
    width: var(--contents-mobileWidth);
  }
}

/*------------------------------------------------------------
                           Header
------------------------------------------------------------*/
body.coade .l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  background-color: var(--header-bgColorPC);
  width: 100%;
  height: var(--header-heightPC);
  padding-left: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade .l-header {
    padding-left: calc((100% - var(--contents-mobileWidth)) / 2);
    height: clamp(var(--header-heightSP), 16vw, var(--header-heightSP) * 2);
  }
}
body.coade .l-header .logo {
  display: flex;
  align-items: center;
  width: clamp(100px, 15vw, 200px);
  z-index: 20;
}
@media screen and (max-width: 950px) {
  body.coade .l-header .logo {
    width: 28%;
  }
}
body.coade .l-header .logo h1 a {
  display: flex;
  align-items: center;
}
body.coade .l-header .logo h1 a img {
  width: 100%;
}
body.coade .l-header #gNav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    padding: 0 calc((100% - var(--contents-mobileWidth)) / 2);
    padding-top: clamp(138px, 37vw, 276px);
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.7);
  }
  body.coade .l-header #gNav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    --webkit-backdrop-filter: blur(15px);
  }
  body.coade .l-header #gNav.scroll {
    overflow: auto;
    padding-bottom: 100px;
  }
  body.coade .l-header #gNav.fade {
    visibility: visible;
    opacity: 1;
  }
}
body.coade .l-header #gNav > ul {
  display: flex;
  align-items: center;
  gap: 0 clamp(10px, 3vw, 40px);
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav > ul {
    flex-direction: column;
    width: 90%;
    gap: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav > ul > li {
    width: 100%;
    border-bottom: 2px solid var(--theme-blue);
    margin-bottom: clamp(20px, 3vw, 40px);
    padding: 0 0 clamp(20px, 3vw, 40px) clamp(13.5px, 2vw, 27px);
    box-sizing: border-box;
  }
  body.coade .l-header #gNav > ul > li:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 480px) {
  body.coade .l-header #gNav > ul > li {
    border-bottom: 1px solid var(--theme-blue);
  }
}
body.coade .l-header #gNav > ul > li > a {
  display: block;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: var(--bold);
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav > ul > li > a {
    text-align: left;
    font-size: clamp(17px, 4.5vw, 34px);
    line-height: 3;
    position: relative;
  }
  body.coade .l-header #gNav > ul > li > a::after {
    content: "";
    position: absolute;
    width: clamp(35px, 9.3vw, 70px);
    height: clamp(35px, 9.3vw, 70px);
    background: no-repeat center/contain;
    background-image: url(../images/circle-arrow-blue.svg);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  body.coade .l-header #gNav > ul > li > a {
    line-height: 2;
  }
}
body.coade .l-header #gNav > ul > li > a > span {
  display: block;
  font-family: var(--sub-font-family);
  color: var(--theme-blue);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: var(--bold);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav > ul > li > a > span {
    display: inline-block;
    margin-top: 0;
    margin-left: clamp(10px, 2.7vw, 20px);
    font-size: clamp(11px, 3vw, 22px);
  }
}
body.coade .l-header #gNav > div {
  display: flex;
  margin-left: clamp(10px, 3vw, 40px);
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav > div {
    position: fixed;
    left: 0;
    bottom: 0;
    height: clamp(55px, 15vw, 110px);
    width: 101%;
    margin: 0;
  }
}
body.coade .l-header #gNav > div > a:nth-child(1) {
  background-color: var(--theme-blue-light2);
}
body.coade .l-header #gNav > div > a:nth-child(2) {
  background-color: var(--theme-blue-light);
}
body.coade .l-header #gNav > div > a:nth-child(3) {
  background-color: var(--theme-blue);
}
@media screen and (max-width: 950px) {
  body.coade .l-header #gNav > div > a {
    width: 33.3%;
    position: relative;
    overflow: hidden;
  }
  body.coade .l-header #gNav > div > a > img {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 155%;
  }
  body.coade .l-header #gNav > div > a:first-child > img {
    height: 125%;
    top: 60%;
  }
}
body.coade .l-header #bar {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade .l-header #bar {
    position: absolute;
    display: block;
    width: clamp(var(--header-heightSP), 16vw, var(--header-heightSP) * 2);
    height: clamp(var(--header-heightSP), 16vw, var(--header-heightSP) * 2);
    right: 0;
    z-index: 20;
    box-sizing: border-box;
    background-color: var(--theme-blue);
  }
}
body.coade .l-header #bar > div {
  display: inline-block;
  position: absolute;
  background-color: var(--hamburger-bgColor);
  left: 0;
  height: clamp(3px, 0.8vw, 6px);
  width: 50%;
  border-radius: 10px;
  box-sizing: border-box;
}
body.coade .l-header #bar > div.top {
  top: calc(50% - clamp(5.5px, 1.5vw, 11px));
  left: 50%;
  transform: translate(-50%, -50%);
}
body.coade .l-header #bar > div.bottom {
  width: 25%;
  bottom: calc(50% - clamp(5.5px, 1.5vw, 11px));
  left: 75%;
  transform: translate(-100%, 50%);
}
body.coade .l-header #bar.close > div.top {
  transform: translate(-50%, calc(-50% + clamp(5.5px, 1.5vw, 11px))) rotate(45deg);
  transition: transform var(--hover-transition);
}
body.coade .l-header #bar.close > div.bottom {
  width: 50%;
  transform: translate(-100%, calc(50% - clamp(5.5px, 1.5vw, 11px))) rotate(-45deg);
  transition: transform var(--hover-transition);
}
body.coade.noscroll {
  overflow: hidden;
}

/*------------------------------------------------------------
                           Footer
------------------------------------------------------------*/
body.coade .l-footer.l-sec {
  padding: 0;
  padding-top: 5px;
  overflow-x:hidden;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer.l-sec {
    padding-top: clamp(5px, 1.3vw, 10px);
  }
}
body.coade .l-footer .footer-sns {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
  padding: 40px 0;
  background-color: var(--sub-base-bgcolor);
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-sns {
    gap: 0 clamp(20px, 5.3vw, 40px);
    padding: clamp(20px, 5.3vw, 40px) 0;
  }
}
body.coade .l-footer .footer-sns li a {
  display: block;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-sns li a {
    width: clamp(40px, 10.7vw, 80px);
    height: clamp(40px, 10.7vw, 80px);
  }
}
body.coade .l-footer .footer-banner {
  padding: 40px 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-banner {
    flex-direction: column;
    padding: clamp(30px, 8vw, 60px) 0;
    gap: clamp(10px, 2.7vw, 20px) 0;
  }
}
body.coade .l-footer .footer-banner li {
  max-width: 360px;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-banner li {
    max-width: none;
    width: 75%;
  }
}
body.coade .l-footer .footer-banner li a {
  display: block;
}
body.coade .l-footer .footer-navi {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  box-sizing: border-box;
  background-color: #3B4050;
  padding-top: 80px;
  padding-bottom: 30px;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi {
    padding-top: clamp(40px, 10.7vw, 80px);
    padding-bottom: clamp(20px, 5.3vw, 40px);
  }
}
body.coade .l-footer .footer-navi a {
  color: inherit;
  letter-spacing: 0.05em;
}
body.coade .l-footer .footer-navi > ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}
body.coade .l-footer .footer-navi > small {
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.4166666667;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi > small {
    font-size: clamp(11px, 2.9vw, 22px);
  }
}
body.coade .l-footer .footer-navi__main {
  gap: 20px 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi__main {
    gap: clamp(10px, 2.7vw, 20px) 0;
    margin-bottom: clamp(20px, 5.3vw, 40px);
    padding-bottom: clamp(20px, 5.3vw, 40px);
  }
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi__main li {
    width: 50%;
  }
}
body.coade .l-footer .footer-navi__main li a {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi__main li a {
    font-size: clamp(15px, 4vw, 30px);
    text-align: center;
    display: block;
  }
}
body.coade .l-footer .footer-navi__sub {
  gap: 20px 30px;
  margin-bottom: 55px;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi__sub {
    gap: clamp(10px, 2.7vw, 20px) clamp(15px, 4vw, 30px);
    margin-bottom: clamp(60px, 16vw, 120px);
  }
}
body.coade .l-footer .footer-navi__sub li a {
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 1.4285714286;
}
@media screen and (max-width: 950px) {
  body.coade .l-footer .footer-navi__sub li a {
    font-size: clamp(13px, 3.5vw, 26px);
  }
}

body.coade.home .l-footer .footer-banner {
  display: flex;
}

/*------------------------------------------------------------
                        Component
------------------------------------------------------------*/
@media screen and (max-width: 950px) {
  body.coade br.--pc {
    display: none;
  }
}
body.coade br.--tabv {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade br.--tabv {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  body.coade br.--tabv {
    display: none;
  }
}
body.coade br.--sp {
  display: none;
}
@media screen and (max-width: 480px) {
  body.coade br.--sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  body.coade br.--nonsp {
    display: none;
  }
}
body.coade br.--mobile {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade br.--mobile {
    display: block;
  }
}
body.coade .c-slider {
  visibility: hidden;
}
body.coade .c-slider.c-slider.slick-initialized {
  visibility: visible;
}
body.coade .c-slider .slick-track {
  display: flex;
}
body.coade .c-slider .slick-slide {
  height: auto !important;
}
body.coade .c-slider .slick-slide > a {
  display: block;
  height: 100%;
}
body.coade .c-slider .slick-slide > a > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.coade .c-custom-navi {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 950px) {
  body.coade .c-custom-navi {
    margin-top: clamp(45px, 12vw, 90px);
    margin-bottom: clamp(55px, 14.7vw, 110px);
  }
}
body.coade .c-custom-navi .c-custom-navi-box {
  position: relative;
  display: inline-block;
  padding: 0 80px;
}
@media screen and (max-width: 950px) {
  body.coade .c-custom-navi .c-custom-navi-box {
    padding: 0 clamp(55px, 14.7vw, 110px);
  }
}
body.coade .c-custom-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.coade .c-custom-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--theme-blue-light);
  margin-right: 20px;
  cursor: pointer;
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade .c-custom-dots li {
    width: clamp(10px, 2.7vw, 20px);
    height: clamp(10px, 2.7vw, 20px);
    margin-right: clamp(17px, 4.5vw, 34px);
  }
}
body.coade .c-custom-dots li.slick-active {
  background-color: var(--theme-blue);
}
body.coade .c-custom-dots li:hover {
  opacity: var(--hover-opacity);
}
body.coade .c-custom-dots li:last-child {
  margin-right: 0;
}
body.coade .c-custom-dots li button {
  display: none;
}
body.coade .c-custom-arrow {
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 950px) {
  body.coade .c-custom-arrow {
    width: clamp(35px, 9.3vw, 70px);
    height: clamp(35px, 9.3vw, 70px);
  }
}
body.coade .c-custom-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: no-repeat center/contain;
  background-image: url(../images/circle-arrow-white.svg);
}
body.coade .c-custom-arrow:hover {
  opacity: var(--hover-opacity);
}
body.coade .c-custom-arrow.--arrow-prev {
  left: 0;
}
body.coade .c-custom-arrow.--arrow-prev::before {
  transform: translate(-50%, -50%) rotate(0);
}
body.coade .c-custom-arrow.--arrow-next {
  right: 0;
}
body.coade .c-custom-arrow.--arrow-next::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
body.coade .c-secHead {
  font-family: var(--sub-font-family);
  text-align: center;
  font-size: 40px;
  font-weight: var(--bold);
  line-height: 1.2;
  letter-spacing: 0.048em;
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  body.coade .c-secHead {
    font-size: clamp(22px, 5.9vw, 44px);
    margin-bottom: clamp(40px, 10.5vw, 80px);
  }
}
body.coade .c-secHead span:nth-child(odd) {
  color: var(--theme-blue);
}
body.coade .c-secHeadSmall {
  text-align: center;
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.4583333333;
  letter-spacing: 0.1em;
  color: var(--theme-blue);
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-secHeadSmall {
    font-size: clamp(18px, 4.8vw, 36px);
    padding-bottom: clamp(20px, 5.3vw, 40px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade .c-secHeadSmall::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--theme-blue);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  body.coade .c-secHeadSmall::after {
    width: clamp(40px, 10.7vw, 80px);
  }
}
body.coade .c-button {
  background-color: var(--theme-blue);
  font-family: var(--sub-font-family);
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.1875;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  width: 360px;
  display: block;
  text-align: center;
  padding: 35px 0 29px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-button {
    max-width: 600px;
    width: 80%;
    padding: clamp(28px, 7.5vw, 56px) 0 clamp(24px, 6.4vw, 48px);
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade .c-button.--jp {
  font-family: var(--primary-font-family);
  padding: 30px 0;
}
@media screen and (max-width: 950px) {
  body.coade .c-button.--jp {
    padding: clamp(22px, 5.9vw, 44px) 0;
  }
}
body.coade .c-button.--small {
  width: auto;
  font-size: 14px;
  text-align: left;
  padding: 15px 20px;
  margin: 0;
}
@media screen and (max-width: 950px) {
  body.coade .c-button.--small {
    font-size: clamp(15px, 4vw, 30px);
    padding: clamp(15px, 4vw, 30px) clamp(20px, 5.3vw, 40px);
  }
}
body.coade .c-button.--small span {
  right: 15px;
}
@media screen and (max-width: 950px) {
  body.coade .c-button.--small span {
    right: clamp(15px, 4vw, 30px);
  }
}
body.coade .c-button.--icon {
  width: 420px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-button.--icon {
    width: 90%;
    font-size: clamp(14px, 3.7vw, 28px);
  }
}
body.coade .c-button.--icon::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background: no-repeat center/contain;
  background-image: url(../images/icon_email.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}
@media screen and (max-width: 950px) {
  body.coade .c-button.--icon::before {
    width: clamp(33px, 8.8vw, 66px);
    height: clamp(33px, 8.8vw, 66px);
    left: clamp(12px, 3.3vw, 25px);
  }
}
body.coade .c-button.--blank {
  width: 360px;
}
@media screen and (max-width: 950px) {
  body.coade .c-button.--blank {
    max-width: 600px;
    width: 94%;
  }
}
body.coade .c-button.--blank::before {
  background-image: url(../images/icon_window-white.svg);
}
body.coade .c-button span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background-color: #FFFFFF;
  width: 32px;
  height: 2px;
}
@media screen and (max-width: 950px) {
  body.coade .c-button span {
    right: clamp(25px, 6.7vw, 50px);
    width: clamp(27px, 7.2vw, 54px);
  }
}
@media screen and (max-width: 480px) {
  body.coade .c-button span {
    height: 1px;
  }
}
body.coade .c-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #FFFFFF;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 950px) {
  body.coade .c-button span::before {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 480px) {
  body.coade .c-button span::before {
    width: 4px;
    height: 4px;
  }
}
body.coade .c-date {
  padding-left: 27px;
  font-family: var(--sub-font-family);
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-date {
    padding-left: clamp(22px, 5.9vw, 44px);
    font-size: clamp(13px, 3.5vw, 26px);
    margin-bottom: clamp(6px, 1.6vw, 12px);
  }
}
body.coade .c-date::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: no-repeat center/contain;
  background-image: url(../images/icon-clock.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade .c-date::before {
    width: clamp(18px, 4.8vw, 36px);
    height: clamp(18px, 4.8vw, 36px);
  }
}
body.coade .c-cat {
  margin-left: 15px;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 5px 10px;
}
@media screen and (max-width: 950px) {
  body.coade .c-cat {
    margin-left: 0;
    gap: clamp(2px, 0.7vw, 5px) clamp(5px, 1.3vw, 10px);
    margin-bottom: clamp(10px, 2.7vw, 20px);
  }
  body.coade .c-cat.horizontal {
    margin-left: clamp(12px, 3.2vw, 24px);
  }
}
body.coade .c-cat li {
  background-color: var(--theme-blue);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  padding: 3px 10px;
}
@media screen and (max-width: 950px) {
  body.coade .c-cat li {
    font-size: clamp(11px, 2.9vw, 22px);
  }
}
body.coade .c-tel {
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  body.coade .c-tel {
    pointer-events: auto;
    color: var(--theme-blue);
    text-decoration: underline;
  }
  body.coade .c-tel:hover {
    text-decoration: none;
  }
}
body.coade .c-pageHead {
  position: relative;
  height: 46vh;
  max-height: 350px;
}
@media screen and (max-width: 950px) {
  body.coade .c-pageHead {
    height: 29vh;
  }
}
body.coade .c-pageHead > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
body.coade .c-pageHead > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: var(--bold);
  letter-spacing: 0.1em;
  text-align: center;
}
body.coade .c-pageHead > div::before, body.coade .c-pageHead > div::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background-color: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  body.coade .c-pageHead > div::before, body.coade .c-pageHead > div::after {
    width: clamp(35px, 9.3vw, 70px);
  }
}
body.coade .c-pageHead > div::before {
  top: -45px;
}
@media screen and (max-width: 950px) {
  body.coade .c-pageHead > div::before {
    top: calc(clamp(22px, 6vw, 45px) * -1);
  }
}
body.coade .c-pageHead > div::after {
  bottom: -45px;
}
@media screen and (max-width: 950px) {
  body.coade .c-pageHead > div::after {
    bottom: calc(clamp(22px, 6vw, 45px) * -1);
  }
}
body.coade .c-pageHead > div > h2 {
  font-family: var(--sub-font-family);
  font-size: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 950px) {
  body.coade .c-pageHead > div > h2 {
    font-size: clamp(22px, 5.9vw, 44px);
  }
}
body.coade .c-pageHead > div > h3 {
  font-size: 20px;
  line-height: 1.45;
}
@media screen and (max-width: 950px) {
  body.coade .c-pageHead > div > h3 {
    font-size: clamp(16px, 4.3vw, 32px);
  }
}
body.coade .c-pages {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
}
@media screen and (max-width: 950px) {
  body.coade .c-pages {
    margin-top: clamp(40px, 10.7vw, 80px);
    gap: 0 clamp(5px, 1.3vw, 10px);
  }
}
body.coade .c-pages li span, body.coade .c-pages li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--sub-base-bgcolor);
  font-size: 18px;
  font-weight: var(--medium);
  color: var(--theme-blue);
  line-height: 1.7777777778;
}
@media screen and (max-width: 950px) {
  body.coade .c-pages li span, body.coade .c-pages li a {
    width: clamp(40px, 10.7vw, 80px);
    height: clamp(40px, 10.7vw, 80px);
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
body.coade .c-pages li span.current, body.coade .c-pages li a.current {
  background-color: var(--theme-blue);
  color: #FFFFFF;
}
body.coade .c-post-navi {
  border-top: 1px solid var(--theme-blue);
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-post-navi {
    padding-top: clamp(40px, 10.7vw, 80px);
    gap: 0 clamp(7px, 1.9vw, 14px);
    padding-bottom: clamp(90px, 24vw, 180px);
  }
}
body.coade .c-post-navi li {
  width: 24%;
}
@media screen and (max-width: 950px) {
  body.coade .c-post-navi li {
    width: 50%;
  }
}
body.coade .c-post-navi li a {
  display: block;
  text-align: center;
  padding: 28px 0;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--theme-blue);
  background-color: var(--sub-base-bgcolor);
}
@media screen and (max-width: 950px) {
  body.coade .c-post-navi li a {
    padding: clamp(22px, 5.9vw, 44px);
    font-size: clamp(15px, 4vw, 30px);
  }
}
@media screen and (max-width: 950px) {
  body.coade .c-post-navi li:nth-child(2) {
    position: absolute;
    bottom: 0;
    width: 90%;
  }
}
body.coade .c-post-navi li:nth-child(2) a {
  background-color: var(--theme-blue);
  color: #FFFFFF;
}
body.coade .c-post-navi li:nth-child(1) a, body.coade .c-post-navi li:nth-child(3) a {
  position: relative;
}
body.coade .c-post-navi li:nth-child(1) a::after, body.coade .c-post-navi li:nth-child(3) a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: solid 2px var(--theme-blue);
  border-bottom: solid 2px var(--theme-blue);
  top: 50%;
  left: 10%;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 950px) {
  body.coade .c-post-navi li:nth-child(1) a::after, body.coade .c-post-navi li:nth-child(3) a::after {
    width: clamp(10px, 2.7vw, 20px);
    height: clamp(10px, 2.7vw, 20px);
  }
}
body.coade .c-post-navi li:nth-child(3) a::after {
  left: auto;
  right: 10%;
  transform: translateY(-50%) rotate(-45deg);
}
body.coade .c-alternate-list {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list {
    gap: clamp(60px, 16vw, 120px) 0;
  }
}
body.coade .c-alternate-list li {
  padding-left: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li {
    padding-left: 0;
    flex-direction: column;
  }
}
body.coade .c-alternate-list li > a, body.coade .c-alternate-list li .c-alternate-list-item {
  width: 44%;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > a, body.coade .c-alternate-list li .c-alternate-list-item {
    width: 100%;
    pointer-events: none;
  }
}
body.coade .c-alternate-list li > a h3, body.coade .c-alternate-list li .c-alternate-list-item h3 {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.4583333333;
  letter-spacing: 0.1em;
  padding-right: 70px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > a h3, body.coade .c-alternate-list li .c-alternate-list-item h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    padding-right: 0;
    padding-bottom: clamp(20px, 5.3vw, 40px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
  body.coade .c-alternate-list li > a h3::before, body.coade .c-alternate-list li .c-alternate-list-item h3::before {
    content: "";
    position: absolute;
    width: clamp(40px, 10.7vw, 80px);
    height: 1px;
    background-color: var(--theme-blue);
    bottom: 0;
    left: 0;
  }
}
body.coade .c-alternate-list li > a h3::after, body.coade .c-alternate-list li .c-alternate-list-item h3::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: no-repeat center/contain;
  background-image: url(../images/circle-arrow-blue.svg);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > a h3::after, body.coade .c-alternate-list li .c-alternate-list-item h3::after {
    display: none;
  }
}
body.coade .c-alternate-list li > a img, body.coade .c-alternate-list li .c-alternate-list-item img {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > a img, body.coade .c-alternate-list li .c-alternate-list-item img {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-bottom: clamp(20px, 5.3vw, 40px);
  }
}
body.coade .c-alternate-list li > a p, body.coade .c-alternate-list li .c-alternate-list-item p {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: 40px;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > a p, body.coade .c-alternate-list li .c-alternate-list-item p {
    font-size: clamp(15px, 4vw, 30px);
    padding-top: 0;
    margin-top: 0;
  }
}
body.coade .c-alternate-list li > a p::before, body.coade .c-alternate-list li .c-alternate-list-item p::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--theme-blue);
  top: 0;
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > a p::before, body.coade .c-alternate-list li .c-alternate-list-item p::before {
    display: none;
  }
}
body.coade .c-alternate-list li > img {
  width: 51%;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li > img {
    display: none;
  }
}
body.coade .c-alternate-list li:nth-child(even) {
  padding-left: 0;
  padding-right: 6%;
  flex-direction: row-reverse;
}
@media screen and (max-width: 950px) {
  body.coade .c-alternate-list li:nth-child(even) {
    padding-right: 0;
    flex-direction: column;
  }
}
body.coade .c-alternate-list.--nolink li .c-alternate-list-item h3 {
  padding-right: 0;
}
body.coade .c-alternate-list.--nolink li .c-alternate-list-item h3::after {
  display: none;
}
body.coade .c-sp-more {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade .c-sp-more {
    width: 100%;
    margin-top: clamp(30px, 8vw, 60px);
    display: flex;
    justify-content: flex-end;
  }
  body.coade .c-sp-more a {
    font-size: clamp(15px, 4vw, 30px);
    font-weight: var(--bold);
    line-height: 1.2333333333;
    letter-spacing: 0.05em;
    font-family: var(--sub-font-family);
    color: var(--theme-blue);
    padding-left: clamp(8px, 2.1vw, 16px);
    padding-right: clamp(50px, 13.3vw, 100px);
    padding-top: clamp(10px, 2.7vw, 20px);
    padding-bottom: clamp(18px, 4.8vw, 36px);
    border-bottom: 1px solid var(--theme-blue);
    position: relative;
  }
  body.coade .c-sp-more a::after {
    content: "";
    position: absolute;
    width: clamp(35px, 9.3vw, 70px);
    height: clamp(35px, 9.3vw, 70px);
    background: no-repeat center/contain;
    background-image: url(../images/circle-arrow-blue.svg);
    top: 0;
    right: 0;
  }
}
body.coade .c-access-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info {
    flex-direction: column;
  }
}
body.coade .c-access-info > div {
  width: 47.5%;
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div {
    width: 100%;
  }
}
body.coade .c-access-info > div > h3 {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.4583333333;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div > h3 {
    font-size: clamp(17px, 4.5vw, 34px);
    margin-bottom: clamp(15px, 4vw, 30px);
  }
}
body.coade .c-access-info > div > dl {
  display: flex;
  justify-content: space-between;
  padding: 20px 5px;
  border-bottom: 1px solid var(--theme-blue-light);
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div > dl {
    flex-direction: column;
    padding: clamp(15px, 4vw, 30px) 0;
  }
}
body.coade .c-access-info > div > dl:first-of-type {
  border-top: 1px solid var(--theme-blue-light);
}
body.coade .c-access-info > div > dl > dt, body.coade .c-access-info > div > dl > dd {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div > dl > dt, body.coade .c-access-info > div > dl > dd {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade .c-access-info > div > dl > dt {
  width: 20%;
  font-weight: var(--bold);
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div > dl > dt {
    width: 100%;
  }
}
body.coade .c-access-info > div > dl > dd {
  width: 76%;
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div > dl > dd {
    width: 100%;
  }
}
body.coade .c-access-info > div > iframe {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 950px) {
  body.coade .c-access-info > div > iframe {
    width: 90%;
    margin: 0 auto;
    margin-top: clamp(40px, 10.7vw, 80px);
    display: block;
  }
}

/*------------------------------------------------------------
                    　    Top Page
------------------------------------------------------------*/
body.coade.home .fv {
  padding: 0;
}
body.coade.home .fv .c-slider#fv-slider .slick-slide {
  margin: 0 0.5vw;
}
@media screen and (max-width: 950px) {
  body.coade.home .fv .c-slider#fv-slider .slick-slide {
    margin: 0;
  }
}
body.coade.home .fv .c-slider#fv-slider .slick-slide > a > img {
  aspect-ratio: 217/114;
}
body.coade.home .fv .c-custom-dots {
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  body.coade.home .fv .c-custom-dots {
    margin-top: clamp(20px, 5.3vw, 40px);
  }
}
body.coade.home .pickup .c-slider#pickup-slider .slick-slide {
  margin: 0 1.5vw;
}
@media screen and (max-width: 950px) {
  body.coade.home .pickup .c-slider#pickup-slider .slick-slide {
    margin: 0 2.5vw;
  }
}
body.coade.home .pickup .c-slider#pickup-slider .slick-slide > a > img {
  aspect-ratio: 400/270;
}
body.coade.home .news .news-list {
}
@media screen and (max-width: 950px) {
  body.coade.home .news .news-list {
    margin-bottom: clamp(35px, 9.3vw, 70px);
  }
}
body.coade.home .news .news-list li {
  border-bottom: 1px solid var(--theme-blue-light);
}
body.coade.home .news .news-list li:first-child {
  border-top: 1px solid var(--theme-blue-light);
}
body.coade.home .news .news-list li a {
  display: flex;
  align-items: center;
  gap: 0 60px;
  box-sizing: border-box;
  padding: 30px 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.home .news .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: clamp(15px, 4vw, 30px) clamp(7px, 2vw, 15px);
  }
}
body.coade.home .news .news-list li a p {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
}
@media screen and (max-width: 950px) {
  body.coade.home .news .news-list li a p {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.home .topics .topics-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  body.coade.home .topics .topics-list {
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 8vw, 60px) clamp(20px, vw, 40px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.home .topics .topics-list li a > div {
  background-color: #FFFFFF;
  padding: 20px 15px;
}
@media screen and (max-width: 950px) {
  body.coade.home .topics .topics-list li a > div {
    padding: clamp(15px, 4vw, 30px) clamp(10px, 2.7vw, 20px);
  }
}
body.coade.home .topics .topics-list li a > div > div {
  margin-bottom: 7px;
}
@media screen and (max-width: 950px) {
  body.coade.home .topics .topics-list li a > div > div {
    margin-bottom: clamp(5px, 1.3vw, 10px);
  }
}
body.coade.home .topics .topics-list li a > div > div .c-cat {
  margin-left: 0;
  margin-bottom: 7px;
}
@media screen and (max-width: 950px) {
  body.coade.home .topics .topics-list li a > div > div .c-cat {
    margin-bottom: clamp(5px, 1.3vw, 10px);
  }
}
body.coade.home .topics .topics-list li a > div > h3 {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.home .topics .topics-list li a > div > h3 {
    font-size: clamp(13px, 3.5vw, 26px);
  }
}

/*------------------------------------------------------------
                    　  News & Blog
------------------------------------------------------------*/
body.coade.category .blog-index .blog-cat,
body.coade.tax-blog_cat .blog-index .blog-cat {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-cat,
  body.coade.tax-blog_cat .blog-index .blog-cat {
    margin-bottom: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.category .blog-index .blog-cat > h3,
body.coade.tax-blog_cat .blog-index .blog-cat > h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  font-family: var(--sub-font-family);
  font-size: 20px;
  font-weight: var(--bold);
  color: var(--theme-blue);
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-cat > h3,
  body.coade.tax-blog_cat .blog-index .blog-cat > h3 {
    font-size: clamp(17px, 4.5vw, 34px);
  }
}
body.coade.category .blog-index .blog-cat > ul,
body.coade.tax-blog_cat .blog-index .blog-cat > ul {
  background-color: #E6EEF2;
  border-radius: 10px;
  padding: 35px 30px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  box-sizing: border-box;
  gap: 9px 9px;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-cat > ul,
  body.coade.tax-blog_cat .blog-index .blog-cat > ul {
    padding: clamp(30px, 8vw, 60px) clamp(20px, 5.3vw, 40px) clamp(21px, 5.6vw, 42px);
    gap: clamp(10px, 2.7vw, 20px);
  }
}
body.coade.category .blog-index .blog-cat > ul li,
body.coade.tax-blog_cat .blog-index .blog-cat > ul li {
  width: 19.3%;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-cat > ul li,
  body.coade.tax-blog_cat .blog-index .blog-cat > ul li {
    width: 48%;
  }
}
body.coade.category .blog-index .blog-cat > ul li a,
body.coade.tax-blog_cat .blog-index .blog-cat > ul li a {
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--theme-blue);
  color: var(--theme-blue);
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  background-color: #FFFFFF;
  text-align: center;
  padding: 15px 0;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-cat > ul li a,
  body.coade.tax-blog_cat .blog-index .blog-cat > ul li a {
    font-size: clamp(12px, 3.2vw, 24px);
    padding: clamp(7px, 1.9vw, 14px) 0;
  }
}
body.coade.category .blog-index .blog-cat > ul li a:hover,
body.coade.tax-blog_cat .blog-index .blog-cat > ul li a:hover {
  color: #FFFFFF;
  background-color: var(--theme-blue);
  opacity: 1;
}
body.coade.category .blog-index .blog-cat > ul li a.current,
body.coade.tax-blog_cat .blog-index .blog-cat > ul li a.current {
  color: #FFFFFF;
  background-color: var(--theme-blue);
}
body.coade.category .blog-index .blog-list > li,
body.coade.tax-blog_cat .blog-index .blog-list > li {
  border-bottom: 1px solid var(--theme-blue-light);
}
body.coade.category .blog-index .blog-list > li:first-child,
body.coade.tax-blog_cat .blog-index .blog-list > li:first-child {
  border-top: 1px solid var(--theme-blue-light);
}
body.coade.category .blog-index .blog-list > li > a,
body.coade.tax-blog_cat .blog-index .blog-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 14px;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-list > li > a,
  body.coade.tax-blog_cat .blog-index .blog-list > li > a {
    align-items: flex-start;
    padding: clamp(15px, 4vw, 30px) clamp(5px, 1.3vw, 10px);
  }
}
body.coade.category .blog-index .blog-list > li > a > img,
body.coade.tax-blog_cat .blog-index .blog-list > li > a > img {
  width: 18.5%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-list > li > a > img,
  body.coade.tax-blog_cat .blog-index .blog-list > li > a > img {
    width: 31%;
  }
}
body.coade.category .blog-index .blog-list > li > a > div,
body.coade.tax-blog_cat .blog-index .blog-list > li > a > div {
  width: 75.5%;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-list > li > a > div,
  body.coade.tax-blog_cat .blog-index .blog-list > li > a > div {
    width: 66%;
  }
}
body.coade.category .blog-index .blog-list > li > a > div > div,
body.coade.tax-blog_cat .blog-index .blog-list > li > a > div > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-list > li > a > div > div,
  body.coade.tax-blog_cat .blog-index .blog-list > li > a > div > div {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
body.coade.category .blog-index .blog-list > li > a > div h3,
body.coade.tax-blog_cat .blog-index .blog-list > li > a > div h3 {
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-list > li > a > div h3,
  body.coade.tax-blog_cat .blog-index .blog-list > li > a > div h3 {
    font-size: clamp(15px, 4vw, 30px);
    margin-top: clamp(5px, 1.3vw, 10px);
    margin-bottom: 0;
  }
}
body.coade.category .blog-index .blog-list > li > a > div p,
body.coade.tax-blog_cat .blog-index .blog-list > li > a > div p {
  font-size: 14px;
  font-weight: var(--medium);
  color: #A5A5A5;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.category .blog-index .blog-list > li > a > div p,
  body.coade.tax-blog_cat .blog-index .blog-list > li > a > div p {
    display: none;
  }
}

body.coade.single-post .l-sec.--post .l-secInr.--m {
  width: 700px;
}
@media screen and (max-width: 950px) {
  body.coade.single-post .l-sec.--post .l-secInr.--m {
    width: var(--contents-mobileWidth);
  }
}
body.coade.single-post .blog-postHead {
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.single-post .blog-postHead {
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.single-post .blog-postHead h2 {
  font-size: 26px;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--theme-blue);
}
@media screen and (max-width: 950px) {
  body.coade.single-post .blog-postHead h2 {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(10px, 2.7vw, 20px);
    padding-bottom: clamp(10px, 2.7vw, 20px);
  }
}
body.coade.single-post .blog-postHead > div {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.single-post .blog-postHead > div {
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.single-post .blog-postHead > img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
body.coade.single-post .blog-postBody p {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.single-post .blog-postBody p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.single-post .blog-postBody img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.single-post .blog-postBody img {
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}

/*------------------------------------------------------------
                    　  Special
------------------------------------------------------------*/
body.coade.post-type-archive-special .special-index {
  position: relative;
}
body.coade.post-type-archive-special .special-index::before {
  content: "";
  position: absolute;
  max-width: 110px;
  width: 8vw;
  height: 100%;
  background: no-repeat top/contain;
  background-image: url(../images/special-bg-letter.svg);
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-special .special-index::before {
    max-width: 200px;
    width: 27vw;
  }
}
body.coade.post-type-archive-special .special-index ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-special .special-index ul {
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 8vw, 60px) clamp(20px, 5.3vw, 40px);
  }
}
body.coade.post-type-archive-special .special-index ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
body.coade.post-type-archive-special .special-index ul li a img {
  display: block;
  aspect-ratio: 373/252;
  -o-object-fit: cover;
     object-fit: cover;
}
body.coade.post-type-archive-special .special-index ul li a > div {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  padding: 25px 15px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-special .special-index ul li a > div {
    padding: clamp(12px, 3.2vw, 24px) clamp(10px, 2.7vw, 20px) clamp(16px, 4.3vw, 32px);
  }
}
body.coade.post-type-archive-special .special-index ul li a > div h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-special .special-index ul li a > div h3 {
    margin-top: clamp(7px, 1.9vw, 14px);
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-special .special-index ul li.sp-none {
    display: none;
  }
}

body.coade.single-special .special-postBody img {
  margin-bottom: 120px;
}
@media screen and (max-width: 950px) {
  body.coade.single-special .special-postBody img {
    margin-bottom: clamp(60px, 16vw, 120px);
  }
}

/*------------------------------------------------------------
                          Products
------------------------------------------------------------*/
body.coade.post-type-archive-products .products-index ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-products .products-index ul {
    grid-template-columns: 1fr;
    gap: clamp(60px, 16vw, 120px) 0;
  }
}
body.coade.post-type-archive-products .products-index ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
}
body.coade.post-type-archive-products .products-index ul li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}
body.coade.post-type-archive-products .products-index ul li > a img {
  display: block;
  aspect-ratio: 470/317;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-products .products-index ul li > a img {
    width: 90%;
    margin: 0 auto;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.post-type-archive-products .products-index ul li > a > div {
  width: 100%;
  height: auto;
}
body.coade.post-type-archive-products .products-index ul li > a > div h3 {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-right: 50px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-products .products-index ul li > a > div h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    padding-right: 0;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.post-type-archive-products .products-index ul li > a > div h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: no-repeat center/contain;
  background-image: url(../images/circle-arrow-blue.svg);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-products .products-index ul li > a > div h3::after {
    display: none;
  }
}
body.coade.post-type-archive-products .products-index ul li > a > div p {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.post-type-archive-products .products-index ul li > a > div p {
    font-size: clamp(15px, 4vw, 30px);
  }
}

body.coade.tax-products_cat .products-cat-head img {
  margin-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-head img {
    margin-top: 0;
    width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: clamp(60px, 16vw, 120px);
  }
}
body.coade.tax-products_cat .products-cat-head p {
  width: 88%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-head p {
    width: 100%;
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.tax-products_cat .products-cat-body .sp-touch {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .sp-touch {
    display: block;
    font-size: clamp(13px, 3.5vw, 26px);
    font-weight: var(--medium);
    line-height: 2.3076923077;
    letter-spacing: 0.05em;
    padding-left: clamp(27px, 7.2vw, 54px);
    margin-bottom: clamp(15px, 4vw, 30px);
    position: relative;
  }
  body.coade.tax-products_cat .products-cat-body .sp-touch::before {
    content: "";
    position: absolute;
    width: clamp(22px, 5.9vw, 44px);
    height: clamp(33px, 8.8vw, 66px);
    background: no-repeat center/contain;
    background-image: url(../images/icon_touch.svg);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-index {
  padding: 0 12%;
  display: flex;
  align-items: flex-end;
  gap: 0 10px;
  border-bottom: 2px solid var(--theme-blue-light);
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-index {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 2.7vw, 20px);
    border-bottom: 0;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-index.--sponly {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-index.--sponly {
    display: grid;
    padding-bottom: clamp(40px, 10.7vw, 80px);
    margin-bottom: clamp(40px, 10.7vw, 80px);
    border-bottom: 1px solid var(--theme-blue-light);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-index > li {
  background-color: #E5EEF3;
  border-radius: 5px 5px 0 0;
  text-align: center;
  padding: 15px 3px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: #92B2C6;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-index > li {
    border-radius: clamp(5px, 1.3vw, 10px);
    padding: clamp(9px, 2.4vw, 18px) 0;
    font-size: clamp(13px, 3.5vw, 26px);
    margin-top: 0;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-index > li:hover {
  opacity: var(--hover-opacity);
}
body.coade.tax-products_cat .products-cat-body .tab-index > li.active {
  background-color: var(--theme-blue-light);
  color: #FFFFFF;
  padding: 19px 0;
  margin-top: 0;
  pointer-events: none;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-index > li.active {
    padding: clamp(9px, 2.4vw, 18px) 0;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content {
  width: 83%;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content {
    width: 100%;
    margin-bottom: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content > li {
  display: none;
}
body.coade.tax-products_cat .products-cat-body .tab-content > li.show {
  display: block;
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0;
  border-bottom: 1px solid var(--theme-blue-light);
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li {
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 10.7vw, 80px) 0;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > img {
  width: 30%;
  cursor: pointer;
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > img {
    width: 90%;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div.pcontent {
  width: 64%;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div.pcontent,
	body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li .pimage {
    width: 100%;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div > h3 {
  color: var(--theme-blue);
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div > h3 {
    font-size: clamp(13px, 4.8vw, 36px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div > p {
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div > p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .toggle {
  display: none;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .toggle {
    display: flex;
    justify-content: center;
  }
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .toggle img {
    width: clamp(60px, 16vw, 120px);
  }
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .toggle.--minus {
    margin-top: clamp(30px, 8vw, 60px);
  }
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-detail {
    display: none;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data {
  width: 100%;
  margin-bottom: 35px;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data {
    margin-top: clamp(30px, 8vw, 60px);
    margin-bottom: clamp(30px, 8vw, 60px);
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data th, body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data td {
  border-top: 1px solid #E5EEF3;
  border-bottom: 1px solid #E5EEF3;
  padding: 15px 5px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data th, body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data td {
    padding: clamp(15px, 4vw, 30px) 5px;
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data th {
  width: 17%;
  background-color: var(--sub-base-bgcolor);
  padding-left: 15px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data th {
    width: 30%;
    padding-left: clamp(12px, 3.2vw, 24px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data td {
  padding-left: 30px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-data td {
    padding-left: clamp(12px, 3.2vw, 24px);
  }
}
body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-link {
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .products-cat-body .tab-content .products-list > li > div .products-link {
    width: 90%;
    grid-template-columns: 1fr;
    gap: clamp(10px, 2.7vw, 20px) 0;
  }
}

body.coade.tax-products_cat .modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
body.coade.tax-products_cat .modal-wrapper.fade {
  visibility: visible;
  opacity: 1;
}
body.coade.tax-products_cat .modal-layer {
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgba(57, 82, 151, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  --webkit-backdrop-filter: blur(15px);
}
body.coade.tax-products_cat .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44vw;
  height: auto;
  max-height: 470px;
  background: #FFFFFF;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .modal-container {
    width: 90vw;
    height: auto;
    max-height: 520px;
  }
}
body.coade.tax-products_cat .modal-close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 38px;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .modal-close {
    top: calc(clamp(25px, 6.7vw, 50px) * -1);
    font-size: clamp(13px, 3.5vw, 26px);
    padding-left: clamp(24px, 6.4vw, 48px);
  }
}
body.coade.tax-products_cat .modal-close:hover {
  opacity: var(--hover-opacity);
}
body.coade.tax-products_cat .modal-close::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: no-repeat center/contain;
  background-image: url(../images/icon_close.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade.tax-products_cat .modal-close::before {
    width: clamp(16px, 4.3vw, 32px);
  }
}
body.coade.tax-products_cat .modal-inner {
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
body.coade.tax-products_cat .modal-content {
  height: 100%;
}
body.coade.tax-products_cat .product-image {
  height: 100%;
}
body.coade.tax-products_cat .product-image > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------------------------
                        OEM
------------------------------------------------------------*/
body.coade.page-oem .oem-works-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0;
  border-bottom: 1px solid var(--theme-blue-light);
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-list li {
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 10.7vw, 80px) 0;
  }
}
body.coade.page-oem .oem-works-list li:first-child {
  padding-top: 0;
}
body.coade.page-oem .oem-works-list li > img {
  width: 30%;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-list li > img {
    width: 100%;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-oem .oem-works-list li > div {
  width: 64%;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-list li > div {
    width: 100%;
  }
}
body.coade.page-oem .oem-works-list li > div h3 {
  font-size: 20px;
  font-weight: var(--bold);
  color: var(--theme-blue);
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-list li > div h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-oem .oem-works-list li > div p {
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-list li > div p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-oem .oem-works-list li > div > div {
  width: 34%;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-list li > div > div {
    width: 90%;
    margin: 0 auto;
  }
}
body.coade.page-oem .oem-works-msg {
  margin-top: 80px;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .oem-works-msg {
    margin-top: clamp(60px, 16vw, 120px);
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-oem .oem-works-msg span {
  position: relative;
}
body.coade.page-oem .oem-works-msg span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #F0C938;
  bottom: 0;
  left: 0;
  z-index: -1;
}
body.coade.page-oem .flow-chart {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart {
    gap: clamp(20px, 5.3vw, 40px) 0;
    margin-bottom: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.page-oem .flow-chart li {
  background-color: #FFFFFF;
  padding: 50px 40px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li {
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 4vw, 30px) 0;
    padding: clamp(30px, 6vw, 60px) clamp(20px, 5.3vw, 40px) clamp(20px, 5.3vw, 40px);
  }
}
body.coade.page-oem .flow-chart li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 30px;
  background-color: var(--theme-blue);
  bottom: -30px;
  left: 63px;
  z-index: -1;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li::before {
    width: clamp(3px, 0.8vw, 6px);
    height: clamp(20px, 5.3vw, 40px);
    bottom: calc(clamp(20px, 5.3vw, 40px) * -1);
    left: 50%;
    transform: translateX(-50%);
  }
}
body.coade.page-oem .flow-chart li:last-child::before {
  display: none;
}
body.coade.page-oem .flow-chart li > p {
  width: 48px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li > p {
    width: clamp(31px, 8.3vw, 62px);
  }
}
body.coade.page-oem .flow-chart li > p span {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sub-font-family);
  font-size: 24px;
  font-weight: var(--semibold);
  letter-spacing: 0.05em;
  color: var(--theme-blue-light);
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li > p span {
    font-size: clamp(16px, 4.3vw, 32px);
    top: calc(clamp(15px, 4vw, 30px) * -1);
  }
}
body.coade.page-oem .flow-chart li > div {
  display: flex;
  flex-direction: column;
  width: calc(100% - 78px);
  gap: 20px 0;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li > div {
    width: 100%;
    gap: clamp(20px, 5.3vw, 40px) 0;
  }
}
body.coade.page-oem .flow-chart li > div h3 {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--theme-blue);
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li > div h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    text-align: center;
  }
}
body.coade.page-oem .flow-chart li > div p {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li > div p {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-oem .flow-chart li > div p span {
  font-size: 14px;
}
@media screen and (max-width: 950px) {
  body.coade.page-oem .flow-chart li > div p span {
    font-size: clamp(13px, 3.5vw, 26px);
  }
}

body.coade.parent-pageid-24869 .oem-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: -60px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .oem-index {
    grid-template-columns: 1fr;
    margin-top: calc(clamp(40px, 10.7vw, 80px) * -1);
  }
}
body.coade.parent-pageid-24869 .oem-index .modal-trigger {
  cursor: pointer;
  padding: 60px 7%;
  border-bottom: 1px solid var(--theme-blue-light);
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .oem-index .modal-trigger {
    padding: clamp(40px, 10.7vw, 80px) 0;
  }
}
body.coade.parent-pageid-24869 .oem-index .modal-trigger:hover {
  opacity: var(--hover-opacity);
}
body.coade.parent-pageid-24869 .oem-index .modal-trigger img {
  margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .oem-index .modal-trigger img {
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.parent-pageid-24869 .oem-index .modal-trigger h3 {
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .oem-index .modal-trigger h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.parent-pageid-24869 .oem-index .modal-trigger p {
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .oem-index .modal-trigger p {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.parent-pageid-24869 .oem-navi {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .oem-navi {
    margin-top: clamp(40px, 10.7vw, 80px);
    gap: clamp(10px, 2.7vw, 20px) 0;
  }
}
body.coade.parent-pageid-24869 .oem-navi a:first-child {
  background-color: var(--theme-blue-light);
}
body.coade.parent-pageid-24869 .oem-navi a:first-child::before {
  display: none;
}
body.coade.parent-pageid-24869 .modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
body.coade.parent-pageid-24869 .modal-wrapper.fade {
  visibility: visible;
  opacity: 1;
}
body.coade.parent-pageid-24869 .modal-layer {
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgba(57, 82, 151, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  --webkit-backdrop-filter: blur(15px);
}
body.coade.parent-pageid-24869 .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88vw;
  height: 80vh;
  background: #FFFFFF;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-container {
    width: 90vw;
    height: 85vh;
  }
}
body.coade.parent-pageid-24869 .modal-close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 38px;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-close {
    top: calc(clamp(25px, 6.7vw, 50px) * -1);
    font-size: clamp(13px, 3.5vw, 26px);
    padding-left: clamp(24px, 6.4vw, 48px);
  }
}
body.coade.parent-pageid-24869 .modal-close:hover {
  opacity: var(--hover-opacity);
}
body.coade.parent-pageid-24869 .modal-close::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: no-repeat center/contain;
  background-image: url(../images/icon_close.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-close::before {
    width: clamp(16px, 4.3vw, 32px);
  }
}
body.coade.parent-pageid-24869 .modal-inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  box-sizing: border-box;
}
body.coade.parent-pageid-24869 .modal-content .oem-detail {
  padding: 80px 50px 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail {
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 10.7vw, 80px) clamp(20px, 5.3vw, 40px) clamp(60px, 16vw, 120px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > img {
  width: 36%;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > img {
    width: 91%;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div {
  width: 58%;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div {
    width: 100%;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > h3 {
  font-size: 20px;
  font-weight: var(--bold);
  color: var(--theme-blue);
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > p {
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table {
  width: 100%;
  margin-bottom: 50px;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table {
    margin-bottom: clamp(30px, 8vw, 60px);
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table th, body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table td {
  border-top: 1px solid #E5EEF3;
  border-bottom: 1px solid #E5EEF3;
  padding: 15px 5px;
  text-align: left;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table th, body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table td {
    padding: clamp(15px, 4vw, 30px) 5px;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table th {
  width: 20%;
  background-color: var(--sub-base-bgcolor);
  padding-left: 15px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table th {
    width: 30%;
    padding-left: clamp(12px, 3.2vw, 24px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table td {
  padding-left: 30px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > table td {
    padding-left: clamp(12px, 3.2vw, 24px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > div > p {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > div > p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(10px, 2.7vw, 20px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > div > ul {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > div > ul {
    gap: 0 clamp(5px, 1.3vw, 10px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-detail > div > div > ul li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-detail > div > div > ul li {
    width: clamp(30px, 8vw, 60px);
    height: clamp(30px, 8vw, 60px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image {
  padding: 120px 50px;
  background-color: var(--sub-base-bgcolor);
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image {
    padding: clamp(60px, 16vw, 120px) clamp(20px, 5.3vw, 40px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul {
  display: flex;
  flex-direction: column;
  gap: 120px 0;
  width: 100%;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul {
    gap: clamp(60px, 16vw, 120px) 0;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li {
    flex-direction: column;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > p {
  width: 25%;
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.45;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > p {
    width: 100%;
    font-size: clamp(18px, 4.8vw, 36px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > p span {
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > p span {
    padding-bottom: clamp(19px, 5.1vw, 38px);
    margin-bottom: clamp(30px, 8vw, 60px);
    display: block;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > p span::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--theme-blue);
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > p span::after {
    width: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul {
  width: 73%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul {
    width: 100%;
    grid-template-columns: 1fr;
    gap: clamp(20px, 5.3vw, 40px) 0;
  }
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li {
    display: flex;
    justify-content: space-between;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > img {
    margin-bottom: 0;
    width: 41%;
  }
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > dl {
    width: 53%;
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > dl dt {
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > dl dt {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(15px, 4vw, 30px);
  }
}
body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > dl dd {
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.parent-pageid-24869 .modal-content .oem-image > ul > li > ul > li > dl dd {
    font-size: clamp(13px, 3.5vw, 26px);
  }
}

/*------------------------------------------------------------
                          Contact
------------------------------------------------------------*/
body.coade.page-contact .contact p,
body.coade.page-oem-contact .contact p,
body.coade.page-thanks .contact p,
body.coade.page-oem-thanks .contact p {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .contact p,
  body.coade.page-oem-contact .contact p,
  body.coade.page-thanks .contact p,
  body.coade.page-oem-thanks .contact p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-contact .contact p.note,
body.coade.page-oem-contact .contact p.note,
body.coade.page-thanks .contact p.note,
body.coade.page-oem-thanks .contact p.note {
  font-size: 14px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .contact p.note,
  body.coade.page-oem-contact .contact p.note,
  body.coade.page-thanks .contact p.note,
  body.coade.page-oem-thanks .contact p.note {
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.page-contact .contact a,
body.coade.page-oem-contact .contact a,
body.coade.page-thanks .contact a,
body.coade.page-oem-thanks .contact a {
  color: var(--theme-blue-light);
  text-decoration: underline;
}
body.coade.page-contact .contact a:hover,
body.coade.page-oem-contact .contact a:hover,
body.coade.page-thanks .contact a:hover,
body.coade.page-oem-thanks .contact a:hover {
  text-decoration: none;
}
body.coade.page-contact .contact.thanks,
body.coade.page-oem-contact .contact.thanks,
body.coade.page-thanks .contact.thanks,
body.coade.page-oem-thanks .contact.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.coade.page-contact .contact.thanks p,
body.coade.page-oem-contact .contact.thanks p,
body.coade.page-thanks .contact.thanks p,
body.coade.page-oem-thanks .contact.thanks p {
  text-align: center;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .contact.thanks p,
  body.coade.page-oem-contact .contact.thanks p,
  body.coade.page-thanks .contact.thanks p,
  body.coade.page-oem-thanks .contact.thanks p {
    text-align: left;
  }
}
body.coade.page-contact .contact.thanks p.note,
body.coade.page-oem-contact .contact.thanks p.note,
body.coade.page-thanks .contact.thanks p.note,
body.coade.page-oem-thanks .contact.thanks p.note {
  text-align: left;
}
body.coade.page-contact .caution,
body.coade.page-oem-contact .caution,
body.coade.page-thanks .caution,
body.coade.page-oem-thanks .caution {
  background-color: #FFF2F2;
  padding: 40px 0;
  padding-left: 40px;
  padding-right: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .caution,
  body.coade.page-oem-contact .caution,
  body.coade.page-thanks .caution,
  body.coade.page-oem-thanks .caution {
    padding: clamp(30px, 8vw, 60px) clamp(20px, 5.3vw, 40px);
  }
}
body.coade.page-contact .caution dt,
body.coade.page-oem-contact .caution dt,
body.coade.page-thanks .caution dt,
body.coade.page-oem-thanks .caution dt {
  color: #CE2020;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .caution dt,
  body.coade.page-oem-contact .caution dt,
  body.coade.page-thanks .caution dt,
  body.coade.page-oem-thanks .caution dt {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(20px, 5.3vw, 40px);
    padding-left: clamp(35px, 9.3vw, 70px);
  }
}
body.coade.page-contact .caution dt::before,
body.coade.page-oem-contact .caution dt::before,
body.coade.page-thanks .caution dt::before,
body.coade.page-oem-thanks .caution dt::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 38px;
  background: no-repeat center/contain;
  background-image: url(../images/icon_sphone.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .caution dt::before,
  body.coade.page-oem-contact .caution dt::before,
  body.coade.page-thanks .caution dt::before,
  body.coade.page-oem-thanks .caution dt::before {
    width: clamp(22px, 5.9vw, 44px);
    height: clamp(42px, 11.2vw, 84px);
  }
}
body.coade.page-contact .caution dd,
body.coade.page-oem-contact .caution dd,
body.coade.page-thanks .caution dd,
body.coade.page-oem-thanks .caution dd {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .caution dd,
  body.coade.page-oem-contact .caution dd,
  body.coade.page-thanks .caution dd,
  body.coade.page-oem-thanks .caution dd {
    font-size: clamp(13px, 3.5vw, 26px);
    padding-left: 0;
  }
}
body.coade.page-contact .form,
body.coade.page-oem-contact .form,
body.coade.page-thanks .form,
body.coade.page-oem-thanks .form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.coade.page-contact .form .row,
body.coade.page-oem-contact .form .row,
body.coade.page-thanks .form .row,
body.coade.page-oem-thanks .form .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row,
  body.coade.page-oem-contact .form .row,
  body.coade.page-thanks .form .row,
  body.coade.page-oem-thanks .form .row {
    flex-direction: column;
  }
}
body.coade.page-contact .form .row + .row,
body.coade.page-oem-contact .form .row + .row,
body.coade.page-thanks .form .row + .row,
body.coade.page-oem-thanks .form .row + .row {
  margin-top: 20px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row + .row,
  body.coade.page-oem-contact .form .row + .row,
  body.coade.page-thanks .form .row + .row,
  body.coade.page-oem-thanks .form .row + .row {
    margin-top: clamp(25px, 6.7vw, 50px);
  }
}
body.coade.page-contact .form .row.--txtarea,
body.coade.page-oem-contact .form .row.--txtarea,
body.coade.page-thanks .form .row.--txtarea,
body.coade.page-oem-thanks .form .row.--txtarea {
  align-items: flex-start;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row.--txtarea,
  body.coade.page-oem-contact .form .row.--txtarea,
  body.coade.page-thanks .form .row.--txtarea,
  body.coade.page-oem-thanks .form .row.--txtarea {
    align-items: center;
  }
}
body.coade.page-contact .form .row.--txtarea > label,
body.coade.page-oem-contact .form .row.--txtarea > label,
body.coade.page-thanks .form .row.--txtarea > label,
body.coade.page-oem-thanks .form .row.--txtarea > label {
  margin-top: 15px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row.--txtarea > label,
  body.coade.page-oem-contact .form .row.--txtarea > label,
  body.coade.page-thanks .form .row.--txtarea > label,
  body.coade.page-oem-thanks .form .row.--txtarea > label {
    margin-top: 0;
  }
}
body.coade.page-contact .form .row > label,
body.coade.page-oem-contact .form .row > label,
body.coade.page-thanks .form .row > label,
body.coade.page-oem-thanks .form .row > label {
  width: 27%;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row > label,
  body.coade.page-oem-contact .form .row > label,
  body.coade.page-thanks .form .row > label,
  body.coade.page-oem-thanks .form .row > label {
    width: 100%;
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.page-contact .form .row > label strong,
body.coade.page-oem-contact .form .row > label strong,
body.coade.page-thanks .form .row > label strong,
body.coade.page-oem-thanks .form .row > label strong {
  background-color: #CE2020;
  border-radius: 5px;
  color: #FFFFFF;
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  padding: 2px 14px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row > label strong,
  body.coade.page-oem-contact .form .row > label strong,
  body.coade.page-thanks .form .row > label strong,
  body.coade.page-oem-thanks .form .row > label strong {
    border-radius: clamp(5px, 1.3vw, 10px);
    padding: 2px clamp(10px, 2.7vw, 20px);
  }
}
body.coade.page-contact .form .row .inputWrap,
body.coade.page-oem-contact .form .row .inputWrap,
body.coade.page-thanks .form .row .inputWrap,
body.coade.page-oem-thanks .form .row .inputWrap {
  width: 71%;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row .inputWrap,
  body.coade.page-oem-contact .form .row .inputWrap,
  body.coade.page-thanks .form .row .inputWrap,
  body.coade.page-oem-thanks .form .row .inputWrap {
    width: 100%;
  }
}
body.coade.page-contact .form .row .inputWrap input, body.coade.page-contact .form .row .inputWrap textarea,
body.coade.page-oem-contact .form .row .inputWrap input,
body.coade.page-oem-contact .form .row .inputWrap textarea,
body.coade.page-thanks .form .row .inputWrap input,
body.coade.page-thanks .form .row .inputWrap textarea,
body.coade.page-oem-thanks .form .row .inputWrap input,
body.coade.page-oem-thanks .form .row .inputWrap textarea {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 16px 20px;
  width: 100%;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row .inputWrap input, body.coade.page-contact .form .row .inputWrap textarea,
  body.coade.page-oem-contact .form .row .inputWrap input,
  body.coade.page-oem-contact .form .row .inputWrap textarea,
  body.coade.page-thanks .form .row .inputWrap input,
  body.coade.page-thanks .form .row .inputWrap textarea,
  body.coade.page-oem-thanks .form .row .inputWrap input,
  body.coade.page-oem-thanks .form .row .inputWrap textarea {
    font-size: clamp(15px, 4vw, 30px);
    padding: clamp(10px, 2.7vw, 20px);
  }
}
body.coade.page-contact .form .row .inputWrap textarea,
body.coade.page-oem-contact .form .row .inputWrap textarea,
body.coade.page-thanks .form .row .inputWrap textarea,
body.coade.page-oem-thanks .form .row .inputWrap textarea {
  resize: vertical;
  min-height: 205px;
  height: 1px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row .inputWrap textarea,
  body.coade.page-oem-contact .form .row .inputWrap textarea,
  body.coade.page-thanks .form .row .inputWrap textarea,
  body.coade.page-oem-thanks .form .row .inputWrap textarea {
    min-width: clamp(200px, 53.3vw, 400px);
  }
}
body.coade.page-contact .form .row .selectWrap,
body.coade.page-oem-contact .form .row .selectWrap,
body.coade.page-thanks .form .row .selectWrap,
body.coade.page-oem-thanks .form .row .selectWrap {
  width: 71%;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row .selectWrap,
  body.coade.page-oem-contact .form .row .selectWrap,
  body.coade.page-thanks .form .row .selectWrap,
  body.coade.page-oem-thanks .form .row .selectWrap {
    width: 100%;
  }
}
body.coade.page-contact .form .row .selectWrap::after,
body.coade.page-oem-contact .form .row .selectWrap::after,
body.coade.page-thanks .form .row .selectWrap::after,
body.coade.page-oem-thanks .form .row .selectWrap::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-right: solid 3px var(--theme-blue);
  border-bottom: solid 3px var(--theme-blue);
  top: 24px;
  top: 40%;
  transform: translateY(-50%);
  right: 20px;
  transform: rotate(45deg);
}
body.coade.page-contact .form .row .selectWrap select,
body.coade.page-oem-contact .form .row .selectWrap select,
body.coade.page-thanks .form .row .selectWrap select,
body.coade.page-oem-thanks .form .row .selectWrap select {
  width: 100%;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 16px 20px;
  padding-right: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .row .selectWrap select,
  body.coade.page-oem-contact .form .row .selectWrap select,
  body.coade.page-thanks .form .row .selectWrap select,
  body.coade.page-oem-thanks .form .row .selectWrap select {
    font-size: clamp(15px, 4vw, 30px);
    padding: clamp(10px, 2.7vw, 20px);
    padding-right: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.page-contact .form .row .selectWrap select.placeHolder,
body.coade.page-oem-contact .form .row .selectWrap select.placeHolder,
body.coade.page-thanks .form .row .selectWrap select.placeHolder,
body.coade.page-oem-thanks .form .row .selectWrap select.placeHolder {
  color: var(--input-placeholderFontColor);
}
body.coade.page-contact .form .confirmation,
body.coade.page-oem-contact .form .confirmation,
body.coade.page-thanks .form .confirmation,
body.coade.page-oem-thanks .form .confirmation {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .confirmation,
  body.coade.page-oem-contact .form .confirmation,
  body.coade.page-thanks .form .confirmation,
  body.coade.page-oem-thanks .form .confirmation {
    margin-top: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.page-contact .form .confirmation label,
body.coade.page-oem-contact .form .confirmation label,
body.coade.page-thanks .form .confirmation label,
body.coade.page-oem-thanks .form .confirmation label {
  display: flex;
  align-items: center;
}
body.coade.page-contact .form .confirmation label input[type=checkbox],
body.coade.page-oem-contact .form .confirmation label input[type=checkbox],
body.coade.page-thanks .form .confirmation label input[type=checkbox],
body.coade.page-oem-thanks .form .confirmation label input[type=checkbox] {
  margin: 0;
  position: relative;
  border-radius: 0;
  border: 1px solid #000000;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  margin-right: 15px;
  cursor: pointer;
  background-color: #FFFFFF;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .confirmation label input[type=checkbox],
  body.coade.page-oem-contact .form .confirmation label input[type=checkbox],
  body.coade.page-thanks .form .confirmation label input[type=checkbox],
  body.coade.page-oem-thanks .form .confirmation label input[type=checkbox] {
    width: clamp(17px, 4.5vw, 34px);
    height: clamp(17px, 4.5vw, 34px);
    margin-right: clamp(8px, 2.1vw, 16px);
  }
}
body.coade.page-contact .form .confirmation label input[type=checkbox]::after,
body.coade.page-oem-contact .form .confirmation label input[type=checkbox]::after,
body.coade.page-thanks .form .confirmation label input[type=checkbox]::after,
body.coade.page-oem-thanks .form .confirmation label input[type=checkbox]::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 20px;
  background: no-repeat center/contain;
  background-image: url(../images/icon-check.svg);
  top: calc(50% - 5px);
  transform: translateY(-50%);
  right: -8px;
  opacity: 0;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .confirmation label input[type=checkbox]::after,
  body.coade.page-oem-contact .form .confirmation label input[type=checkbox]::after,
  body.coade.page-thanks .form .confirmation label input[type=checkbox]::after,
  body.coade.page-oem-thanks .form .confirmation label input[type=checkbox]::after {
    width: clamp(16px, 4.3vw, 32px);
    height: clamp(12px, 3.2vw, 24px);
    top: 35%;
    right: -25%;
  }
}
body.coade.page-contact .form .confirmation label input[type=checkbox]:checked::after,
body.coade.page-oem-contact .form .confirmation label input[type=checkbox]:checked::after,
body.coade.page-thanks .form .confirmation label input[type=checkbox]:checked::after,
body.coade.page-oem-thanks .form .confirmation label input[type=checkbox]:checked::after {
  opacity: 1;
}
body.coade.page-contact .form .confirmation label span,
body.coade.page-oem-contact .form .confirmation label span,
body.coade.page-thanks .form .confirmation label span,
body.coade.page-oem-thanks .form .confirmation label span {
  cursor: pointer;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .confirmation label span,
  body.coade.page-oem-contact .form .confirmation label span,
  body.coade.page-thanks .form .confirmation label span,
  body.coade.page-oem-thanks .form .confirmation label span {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-contact .form .confirmation label span a,
body.coade.page-oem-contact .form .confirmation label span a,
body.coade.page-thanks .form .confirmation label span a,
body.coade.page-oem-thanks .form .confirmation label span a {
  text-decoration: underline;
  color: var(--theme-blue-light);
}
body.coade.page-contact .form .confirmation label span a:hover,
body.coade.page-oem-contact .form .confirmation label span a:hover,
body.coade.page-thanks .form .confirmation label span a:hover,
body.coade.page-oem-thanks .form .confirmation label span a:hover {
  text-decoration: none;
}
body.coade.page-contact .form .submit,
body.coade.page-oem-contact .form .submit,
body.coade.page-thanks .form .submit,
body.coade.page-oem-thanks .form .submit {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .submit,
  body.coade.page-oem-contact .form .submit,
  body.coade.page-thanks .form .submit,
  body.coade.page-oem-thanks .form .submit {
    margin-top: clamp(40px, 10.7vw, 80px);
    width: 90%;
  }
}
body.coade.page-contact .form .submit > input[type=submit],
body.coade.page-oem-contact .form .submit > input[type=submit],
body.coade.page-thanks .form .submit > input[type=submit],
body.coade.page-oem-thanks .form .submit > input[type=submit] {
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: var(--hover-transition);
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .submit > input[type=submit],
  body.coade.page-oem-contact .form .submit > input[type=submit],
  body.coade.page-thanks .form .submit > input[type=submit],
  body.coade.page-oem-thanks .form .submit > input[type=submit] {
    width: 100%;
  }
}
body.coade.page-contact .form .submit > input[type=submit]:hover,
body.coade.page-oem-contact .form .submit > input[type=submit]:hover,
body.coade.page-thanks .form .submit > input[type=submit]:hover,
body.coade.page-oem-thanks .form .submit > input[type=submit]:hover {
  opacity: var(--hover-opacity);
}
body.coade.page-contact .form .submit > input[type=submit].disable,
body.coade.page-oem-contact .form .submit > input[type=submit].disable,
body.coade.page-thanks .form .submit > input[type=submit].disable,
body.coade.page-oem-thanks .form .submit > input[type=submit].disable {
  pointer-events: none;
  background-color: gray;
}
body.coade.page-contact .form .submit span,
body.coade.page-oem-contact .form .submit span,
body.coade.page-thanks .form .submit span,
body.coade.page-oem-thanks .form .submit span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background-color: #FFFFFF;
  width: 32px;
  height: 2px;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .submit span,
  body.coade.page-oem-contact .form .submit span,
  body.coade.page-thanks .form .submit span,
  body.coade.page-oem-thanks .form .submit span {
    right: clamp(25px, 6.7vw, 50px);
    width: clamp(27px, 7.2vw, 54px);
  }
}
@media screen and (max-width: 480px) {
  body.coade.page-contact .form .submit span,
  body.coade.page-oem-contact .form .submit span,
  body.coade.page-thanks .form .submit span,
  body.coade.page-oem-thanks .form .submit span {
    height: 1px;
  }
}
body.coade.page-contact .form .submit span::before,
body.coade.page-oem-contact .form .submit span::before,
body.coade.page-thanks .form .submit span::before,
body.coade.page-oem-thanks .form .submit span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #FFFFFF;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
@media screen and (max-width: 950px) {
  body.coade.page-contact .form .submit span::before,
  body.coade.page-oem-contact .form .submit span::before,
  body.coade.page-thanks .form .submit span::before,
  body.coade.page-oem-thanks .form .submit span::before {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 480px) {
  body.coade.page-contact .form .submit span::before,
  body.coade.page-oem-contact .form .submit span::before,
  body.coade.page-thanks .form .submit span::before,
  body.coade.page-oem-thanks .form .submit span::before {
    width: 4px;
    height: 4px;
  }
}

body.coade.page-thanks .c-button,
body.coade.page-oem-thanks .c-button {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.page-thanks .c-button,
  body.coade.page-oem-thanks .c-button {
    margin-top: clamp(10px, 2.7vw, 20px);
  }
}
body.coade.page-thanks .thanks-msg,
body.coade.page-oem-thanks .thanks-msg {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  margin-bottom: 64px;
  text-align: center;
  position: relative;
}
body.coade.page-thanks .thanks-msg::after,
body.coade.page-oem-thanks .thanks-msg::after {
  content: "";
  position: absolute;
  max-width: 206px;
  width: 24%;
  height: 102px;
  background: no-repeat top/contain;
  background-image: url(../images/icon_sending.svg);
  top: 50%;
  right: 18%;
  transform: translate(50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 950px) {
  body.coade.page-thanks .thanks-msg::after,
  body.coade.page-oem-thanks .thanks-msg::after {
    max-width: 156px;
    width: 23%;
    height: 78px;
    top: calc(50% - clamp(40px, 10.7vw, 80px));
  }
}
@media screen and (max-width: 480px) {
  body.coade.page-thanks .thanks-msg::after,
  body.coade.page-oem-thanks .thanks-msg::after {
    width: 78px;
    height: 39px;
  }
}
@media screen and (max-width: 950px) {
  body.coade.page-thanks .thanks-msg,
  body.coade.page-oem-thanks .thanks-msg {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-bottom: clamp(32px, 8.5vw, 64px);
  }
}

/*------------------------------------------------------------
                          Company
------------------------------------------------------------*/
body.coade.page-company .anker {
  padding-bottom: 0;
}
body.coade.page-company .anker .anker-navi {
  background-color: #E6EEF2;
  padding: 35px 30px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media screen and (max-width: 950px) {
  body.coade.page-company .anker .anker-navi {
    flex-direction: column;
    padding: clamp(30px, 8vw, 60px) clamp(20px, 5.3vw, 40px);
    border-radius: clamp(10px, 2.7vw, 20px);
    gap: clamp(10px, 2.7vw, 20px) 0;
  }
}
body.coade.page-company .anker .anker-navi li {
  width: 100%;
}
body.coade.page-company .anker .anker-navi li a {
  display: block;
  text-align: center;
  background-color: #FFFFFF;
  padding: 15px 5px;
  border: 1px solid var(--theme-blue);
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: var(--theme-blue);
}
@media screen and (max-width: 950px) {
  body.coade.page-company .anker .anker-navi li a {
    padding: clamp(7px, 1.9vw, 14px) 5px;
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.page-company #group .group-block:not(:first-of-type) {
  margin-top: 120px;
}
@media screen and (max-width: 950px) {
  body.coade.page-company #group .group-block:not(:first-of-type) {
    margin-top: clamp(60px, 16vw, 120px);
  }
}
body.coade.page-company #group .philosophy p {
  font-family: var(--sub-font-family2);
  text-align: center;
  font-size: 16px;
  font-weight: var(--semibold);
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 950px) {
  body.coade.page-company #group .philosophy p {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-company #group .ideal > div {
  display: flex;
  justify-content: center;
}
body.coade.page-company #group .ideal > div p {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.page-company #group .ideal > div p {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-company #group .info > div {
  display: flex;
  justify-content: center;
}
body.coade.page-company #group .info > div a {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--theme-blue);
  padding-left: 38px;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-company #group .info > div a {
    font-size: clamp(15px, 4vw, 30px);
    padding-left: clamp(35px, 9.3vw, 70px);
  }
}
body.coade.page-company #group .info > div a:hover {
  text-decoration: none;
}
body.coade.page-company #group .info > div a::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background: no-repeat center/contain;
  background-image: url(../images/icon_window.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade.page-company #group .info > div a::before {
    width: clamp(35px, 9.3vw, 70px);
    height: clamp(35px, 9.3vw, 70px);
  }
}
body.coade.page-company #overview dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--theme-blue-light);
}
@media screen and (max-width: 950px) {
  body.coade.page-company #overview dl {
    flex-direction: column;
  }
}
body.coade.page-company #overview dl:first-of-type {
  border-top: 1px solid var(--theme-blue-light);
}
body.coade.page-company #overview dl dt, body.coade.page-company #overview dl dd {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 30px 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  body.coade.page-company #overview dl dt, body.coade.page-company #overview dl dd {
    font-size: clamp(15px, 4vw, 30px);
    padding: 0 clamp(8px, 2.1vw, 16px);
  }
}
body.coade.page-company #overview dl dt {
  width: 23%;
  font-weight: var(--bold);
  color: var(--theme-blue);
}
@media screen and (max-width: 950px) {
  body.coade.page-company #overview dl dt {
    width: 100%;
    padding-top: clamp(15px, 4vw, 30px);
    padding-bottom: clamp(5px, 1.3vw, 10px);
  }
}
body.coade.page-company #overview dl dd {
  width: 74%;
  font-weight: var(--medium);
}
@media screen and (max-width: 950px) {
  body.coade.page-company #overview dl dd {
    width: 100%;
    padding-top: clamp(5px, 1.3vw, 10px);
    padding-bottom: clamp(15px, 4vw, 30px);
  }
}

/*------------------------------------------------------------
                           Recruit
------------------------------------------------------------*/
body.coade.page-recruit .recruit-data {
  border: 10px solid var(--sub-base-bgcolor);
  box-sizing: border-box;
  padding: 90px 9%;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data {
    border: clamp(6px, 1.6vw, 12px) solid var(--sub-base-bgcolor);
    padding: clamp(45px, 12vw, 90px) 6%;
  }
}
body.coade.page-recruit .recruit-data:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data:first-of-type {
    margin-top: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-recruit .recruit-data:not(:first-of-type) {
  margin-top: 120px;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data:not(:first-of-type) {
    margin-top: clamp(60px, 16vw, 120px);
  }
}
body.coade.page-recruit .recruit-data > h4 {
  font-size: 20px;
  font-weight: var(--bold);
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
  padding: 13px 5px;
  box-sizing: border-box;
  width: 420px;
  background-color: var(--theme-blue-light);
  border-radius: 27px;
  margin: 0 auto;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > h4 {
    font-size: clamp(15px, 4vw, 30px);
    padding: clamp(6px, 1.6vw, 12px) 5px;
    width: 65%;
    border-radius: clamp(17px, 4.5vw, 34px);
    top: calc(clamp(20px, 5.3vw, 40px) * -1);
  }
}
body.coade.page-recruit .recruit-data > dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--theme-blue-light);
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl {
    flex-direction: column;
  }
}
body.coade.page-recruit .recruit-data > dl:first-of-type {
  border-top: 1px solid var(--theme-blue-light);
}
body.coade.page-recruit .recruit-data > dl:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl:last-of-type {
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-recruit .recruit-data > dl dt, body.coade.page-recruit .recruit-data > dl dd {
  padding: 30px 16px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl dt, body.coade.page-recruit .recruit-data > dl dd {
    padding: clamp(15px, 4vw, 30px) clamp(6px, 1.6vw, 12px);
    font-size: clamp(15px, 4vw, 30px);
    line-height: 2;
  }
}
body.coade.page-recruit .recruit-data > dl dt {
  width: 21%;
  font-weight: var(--bold);
  color: var(--theme-blue);
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl dt {
    width: 100%;
    padding-bottom: clamp(5px, 1.3vw, 10px);
  }
}
body.coade.page-recruit .recruit-data > dl dd {
  width: 76%;
  font-weight: var(--medium);
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl dd {
    width: 100%;
    padding-top: clamp(5px, 1.3vw, 10px);
  }
}
body.coade.page-recruit .recruit-data > dl dd span {
  font-size: 14px;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl dd span {
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.page-recruit .recruit-data > dl dd a {
  display: block;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--theme-blue);
  text-decoration: underline;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > dl dd a {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-recruit .recruit-data > dl dd a:hover {
  text-decoration: none;
}
body.coade.page-recruit .recruit-data > div p {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .recruit-data > div p {
    margin-top: clamp(15px, 4vw, 30px);
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-recruit .recruit-data > div p span {
  position: relative;
}
body.coade.page-recruit .recruit-data > div p span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #F0C938;
  bottom: 0;
  left: 0;
  z-index: -1;
}
body.coade.page-recruit .nodata {
  background: no-repeat top/contain;
  background-image: url(../images/recruit-nodata-bg.png);
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .nodata {
    background-image: url(../images/recruit-nodata-bg-sp.png);
  }
}
body.coade.page-recruit .nodata-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.coade.page-recruit .nodata-box > img {
  width: 290px;
  margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .nodata-box > img {
    width: 50%;
    margin-bottom: clamp(20px, 5.3vw, 40px);
  }
}
body.coade.page-recruit .nodata-box > h3 {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  text-align: center;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .nodata-box > h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-bottom: clamp(17px, 4.5vw, 34px);
  }
}
body.coade.page-recruit .nodata-box > p {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.page-recruit .nodata-box > p {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-recruit .nodata-box > p a {
  color: var(--theme-blue-light);
  text-decoration: underline;
}
body.coade.page-recruit .nodata-box > p a:hover {
  text-decoration: none;
}

/*------------------------------------------------------------
                       Privacy Policy
------------------------------------------------------------*/
body.coade.page-privacy {
  counter-reset: h3-cnt;
}
body.coade.page-privacy .document p, body.coade.page-privacy .document a {
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 950px) {
  body.coade.page-privacy .document p, body.coade.page-privacy .document a {
    font-size: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-privacy .document p {
  margin-bottom: 48px;
}
@media screen and (max-width: 950px) {
  body.coade.page-privacy .document p {
    margin-bottom: clamp(35px, 9.3vw, 70px);
  }
}
body.coade.page-privacy .document p:has(+ h3) {
  margin-bottom: 80px;
}
@media screen and (max-width: 950px) {
  body.coade.page-privacy .document p:has(+ h3) {
    margin-bottom: clamp(60px, 16vw, 120px);
  }
}
body.coade.page-privacy .document a {
  color: var(--theme-blue-light);
  text-decoration: underline;
}
body.coade.page-privacy .document a:hover {
  text-decoration: none;
}
body.coade.page-privacy .document h3 {
  font-size: 24px;
  font-weight: var(--bold);
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  padding-bottom: 40px;
  margin-bottom: 40px;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-privacy .document h3 {
    font-size: clamp(18px, 4.8vw, 36px);
    padding-bottom: clamp(20px, 5.3vw, 40px);
    margin-bottom: clamp(20px, 5.3vw, 40px);
    padding-left: clamp(30px, 8vw, 60px);
  }
}
body.coade.page-privacy .document h3::before {
  counter-increment: h3-cnt;
  content: counter(h3-cnt) ".";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 30px;
  font-family: var(--sub-font-family);
  font-weight: var(--semibold);
  color: var(--theme-blue);
  line-height: 1.3333333333;
}
@media screen and (max-width: 950px) {
  body.coade.page-privacy .document h3::before {
    font-size: clamp(20px, 5.3vw, 40px);
  }
}
body.coade.page-privacy .document h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--theme-blue);
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 950px) {
  body.coade.page-privacy .document h3::after {
    width: clamp(40px, 10.7vw, 80px);
  }
}

/*------------------------------------------------------------
                         Site Map
------------------------------------------------------------*/
body.coade.page-sitemap .sitemap-pages {
  margin-bottom: 60px;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-pages {
    margin-bottom: clamp(40px, 10.7vw, 80px);
  }
}
body.coade.page-sitemap .sitemap-pages a {
  display: block;
  font-size: 16px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 14px 5px;
  padding-left: 30px;
  border-bottom: 1px solid var(--theme-blue-light);
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-pages a {
    font-size: clamp(15px, 4vw, 30px);
    padding: clamp(10px, 2.7vw, 20px) 5px;
    padding-left: clamp(29px, 7.7vw, 58px);
  }
}
body.coade.page-sitemap .sitemap-pages a::before {
  content: "";
  position: absolute;
}
body.coade.page-sitemap .sitemap-pages > div a {
  width: 29%;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-pages > div a {
    width: 100%;
    margin-bottom: clamp(8px, 2.1vw, 16px);
  }
}
body.coade.page-sitemap .sitemap-pages > div a::before {
  width: 22px;
  height: 19px;
  background: no-repeat center/contain;
  background-image: url(../images/icon_home.svg);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-pages > div a::before {
    width: clamp(21px, 5.6vw, 42px);
    height: clamp(19px, 5.1vw, 38px);
  }
}
body.coade.page-sitemap .sitemap-pages ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 0 6.5%;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-pages ul {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: clamp(8px, 2.1vw, 16px) 0;
  }
}
body.coade.page-sitemap .sitemap-pages ul li a::before {
  width: 8px;
  height: 8px;
  border-right: solid 2px var(--theme-blue);
  border-bottom: solid 2px var(--theme-blue);
  top: 50%;
  left: 5px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-pages ul li a::before {
    width: clamp(7px, 1.9vw, 14px);
    height: clamp(7px, 1.9vw, 14px);
  }
}
body.coade.page-sitemap .sitemap-types {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types {
    flex-direction: column;
    gap: clamp(40px, 10.7vw, 80px) 0;
  }
}
body.coade.page-sitemap .sitemap-types > div {
  width: 29%;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div {
    width: 100%;
  }
}
body.coade.page-sitemap .sitemap-types > div > a {
  display: block;
  background-color: var(--sub-base-bgcolor);
  font-size: 16px;
  font-weight: var(--bold);
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 15px 30px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div > a {
    font-size: clamp(15px, 4vw, 30px);
    padding: clamp(15px, 4vw, 30px) clamp(32px, 8.5vw, 64px);
    margin-bottom: clamp(15px, 4vw, 30px);
  }
}
body.coade.page-sitemap .sitemap-types > div > a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: solid 2px var(--theme-blue);
  border-bottom: solid 2px var(--theme-blue);
  top: 50%;
  left: 8px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div > a::before {
    width: clamp(7px, 1.9vw, 14px);
    height: clamp(7px, 1.9vw, 14px);
    left: clamp(9px, 2.4vw, 18px);
  }
}
body.coade.page-sitemap .sitemap-types > div ul li a {
  display: block;
  padding-left: 18px;
  font-size: 14px;
  font-weight: var(--medium);
  line-height: 2;
  letter-spacing: 0.05em;
  border-left: 1px solid var(--theme-blue);
  position: relative;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div ul li a {
    padding-left: clamp(13px, 3.5vw, 26px);
    font-size: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.page-sitemap .sitemap-types > div ul li a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: var(--theme-blue);
  left: 0;
  top: 13px;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div ul li a::before {
    width: clamp(8px, 2.1vw, 16px);
    top: clamp(13px, 3.5vw, 26px);
  }
}
body.coade.page-sitemap .sitemap-types > div ul > li:last-child > a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: calc(100% - 14px);
  background-color: #FFFFFF;
  left: -1px;
  top: 14px;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div ul > li:last-child > a::after {
    width: clamp(8px, 2.1vw, 16px);
    height: calc(100% - (clamp(13px, 3.5vw, 26px) + 1px));
    top: calc(clamp(13px, 3.5vw, 26px) + 1px);
  }
}
body.coade.page-sitemap .sitemap-types > div > ul {
  padding-left: 13px;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div > ul {
    padding-left: clamp(14px, 3.7vw, 28px);
  }
}
body.coade.page-sitemap .sitemap-types > div > ul > li:has(> ul) > a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: calc(100% - 14px);
  background-color: #FFFFFF;
  left: -1px;
  top: 14px;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div > ul > li:has(> ul) > a::after {
    width: clamp(8px, 2.1vw, 16px);
    height: calc(100% - (clamp(13px, 3.5vw, 26px) + 1px));
    top: calc(clamp(13px, 3.5vw, 26px) + 1px);
  }
}
body.coade.page-sitemap .sitemap-types > div > ul > li > ul {
  padding-left: 26px;
  margin-top: 5px;
}
@media screen and (max-width: 950px) {
  body.coade.page-sitemap .sitemap-types > div > ul > li > ul {
    padding-left: clamp(18px, 4.8vw, 36px);
    margin-top: clamp(5px, 1.3vw, 10px);
  }
}