@charset "UTF-8";
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Th.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Th.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/*
@function rem($size) {
  @return $size / 10 + rem;
}
*/
/*
@function rems($size) {
  @return ($size / 375) * 100vw;
}
*/
* {
  box-sizing: border-box;
}

:root,
html {
  font-size: 100%;
  overflow: initial;
}

body {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
.inner {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 0.75rem;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

.picture {
  display: block;
}

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

.mincho {
  font-family: "Noto Serif JP", serif;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
/*セレクトボックスの設定(全ブラウザ共通にするため)
//設定やアイコンは用途に合わせて書き換え*/
select::-ms-expand {
  display: none;
}

label {
  font-size: 0.9375rem;
}

.select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 4.375rem;
  width: 100%;
  height: 2.375rem;
}
.select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("../images/arrow-select.svg") 0 0 no-repeat;
  pointer-events: none;
}
.select-box select {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.3125rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

/*//////////////////////////////////////////
//  下層ページ共通
//////////////////////////////////////////*/
body #contents {
  overflow: initial;
  display: flex;
  flex-direction: row-reverse;
  max-width: 67.5rem;
  width: 100%;
  margin: 0 auto;
  gap: 1.875rem;
  padding: 10.8125rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  body #contents {
    padding: 5.46875rem 0 0;
  }
}
body article {
  box-sizing: border-box;
  max-width: 50rem;
  width: 100%;
  margin: 0;
  float: none;
}
@media screen and (max-width: 768px) {
  body article {
    max-width: initial;
  }
}
body #main-column {
  max-width: initial;
  width: 100%;
  margin: 0;
  float: none;
}
body #main-column #Journal > h1 {
  display: none;
}
body #main-column #Journal article > h2 {
  display: none;
}
body #sub-column {
  margin: 0;
  width: 13.125rem;
}
body #sub-column .side-bar-free {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (max-width: 768px) {
  body #sub-column .side-bar-free {
    display: none;
  }
}
body #sub-column .side-bar-free .side-box h2 {
  border-top: none;
  padding: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5714285714;
  color: #fff;
  font-weight: 700;
  background: #013193;
  border-radius: 0.625rem 0.625rem 0 0;
}
body #sub-column .side-bar-free .side-box .side-contents {
  background: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
  border: 1px solid #d4d4d4;
  padding: 1rem 0;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li {
  border-bottom: 1px solid #d4d4d4;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li > a {
  display: block;
  padding: 0.75rem 1.25rem 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-left: 0.6875rem;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li > a:after, body #sub-column .side-bar-free .side-box .side-ctg-list > li > a:before {
  content: "";
  position: absolute;
  background: #000;
  transition: all 0.3s;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li > a:after {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 2px;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li > a:before {
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0.625rem;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li.is-active > a:before {
  transform: translateY(-50%) rotate(90deg) scale(0);
  opacity: 0;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li .sub-list {
  display: none;
  padding-bottom: 1.5rem;
  padding-left: 0.6875rem;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li .sub-list li {
  margin-top: 0.5rem;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li .sub-list li:not(:first-child) {
  margin-top: 1rem;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li .sub-list li a {
  display: block;
  font-size: 0.8125rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
body #sub-column .side-bar-free .side-box .side-ctg-list > li .sub-list li a:hover {
  text-decoration: underline;
}
body #sub-column .side-bar-free .side-box .side-list {
  padding-left: 0.6875rem;
}
body #sub-column .side-bar-free .side-box .side-list li {
  margin-top: 1rem;
}
body #sub-column .side-bar-free .side-box .side-list li a {
  display: block;
  font-size: 0.8125rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
body #sub-column .side-bar-free .side-box .side-list li a:hover {
  text-decoration: underline;
}
body #sub-column .side-bar-free .side-box .side-menu {
  padding-left: 0.6875rem;
}
body #sub-column .side-bar-free .side-box .side-menu li:not(:first-child) {
  margin-top: 1rem;
}
body #sub-column .side-bar-free .side-box .side-menu li a {
  display: block;
  font-size: 0.8125rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
body #sub-column .side-bar-free .side-box .side-menu li a:hover {
  text-decoration: underline;
}
body .state_r {
  display: none;
}

#Journal .journal-cont .page-mv {
  padding: 1.5rem 1.25rem 1rem 2.1875rem;
  margin-bottom: 4rem;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv {
    padding: 2.4166666667vw 1.6666666667vw 1.4166666667vw 2.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv {
    padding: 0.75rem 0.625rem 0.625rem;
    margin-bottom: 3.125rem;
  }
}
#Journal .journal-cont .page-mv .txt-area {
  max-width: 26.875rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .txt-area {
    max-width: 35.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .txt-area {
    max-width: 14.84375rem;
  }
}
#Journal .journal-cont .page-mv .page-ttl {
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .page-ttl {
    margin-bottom: 0.4375rem;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .page-ttl {
    margin-bottom: 0.5rem;
  }
}
#Journal .journal-cont .page-mv .page-ttl .en {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #013193;
  min-width: 9.0625rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 1.125rem;
  border-radius: 3.125rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .page-ttl .en {
    font-size: 1vw;
    min-width: 12.0833333333vw;
    padding: 0.3333333333vw 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .page-ttl .en {
    display: none;
  }
}
#Journal .journal-cont .page-mv .page-ttl .jp {
  font-size: 2.4375rem;
  line-height: 1.2138461538;
  font-weight: 900;
  margin: 0;
  margin-top: 0.875rem;
  border: none;
  color: #000;
  padding: 0;
  letter-spacing: initial;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .page-ttl .jp {
    font-size: 3.25vw;
    margin-top: 0.4375rem;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .page-ttl .jp {
    font-size: 1.34125rem;
    line-height: 1.2385496183;
    margin-top: 0.5rem;
  }
}
#Journal .journal-cont .page-mv .mv-txt {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-txt {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-txt {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
#Journal .journal-cont .page-mv .mv-txt span {
  color: #013193;
}
#Journal .journal-cont .page-mv .mv-bottom {
  display: flex;
  gap: 0.6875rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom {
    gap: 0.9166666667vw;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom {
    margin-top: 3.25rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-contact {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 26.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact {
    padding: 1.3333333333vw 2vw;
    width: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact {
    width: 12.3909375rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-contact .txt {
  background: #d3111f;
  color: #fff;
  font-size: 1.086875rem;
  font-weight: 700;
  border-radius: 3.125rem;
  padding: 0.375rem 1.5rem;
  line-height: 1;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact .txt {
    font-size: 1.4491666667vw;
    padding: 0.5vw 2vw;
    margin-bottom: 0.375rem;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact .txt {
    font-size: 0.513125rem;
    padding: 0.28125rem 0;
    margin-bottom: 0.44125rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013193;
  font-size: 2.665625rem;
  font-weight: 700;
  line-height: 1;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact a {
    font-size: 3.5541666667vw;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact a {
    font-size: 1.258125rem;
    margin-bottom: 0.2353125rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-contact a:before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1.625rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact a:before {
    width: 3.3333333333vw;
    height: 2.1666666667vw;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact a:before {
    width: 1.1875rem;
    height: 0.78125rem;
    margin-right: 0.25rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-contact .note {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #013193;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact .note {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-contact .note {
    font-size: 0.4425rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-list {
    gap: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-list {
    gap: 0.25rem;
  }
}
#Journal .journal-cont .page-mv .mv-bottom .mv-list li {
  background: #faf8f2;
  border: 1px solid #e1dec8;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.75rem;
  padding: 0.625rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-list li {
    font-size: 1.3333333333vw;
    min-height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .page-mv .mv-bottom .mv-list li {
    font-size: 0.625rem;
    min-height: 1.875rem;
    padding: 0;
    border-radius: 0.3125rem;
    line-height: 1.2;
  }
}
#Journal .journal-cont .sec-head {
  text-align: center;
  border-bottom: 0.125rem solid #013193;
  padding-bottom: 0.25rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .sec-head {
    border-bottom-width: 0.125rem;
    padding-bottom: 0.125rem;
    margin-bottom: 1rem;
  }
}
#Journal .journal-cont .sec-head .en {
  display: inline-block;
  background-color: #013193;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.375rem 1.75rem 0.375rem;
  border-radius: 9999px;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .sec-head .en {
    font-size: 0.625rem;
    padding: 0.3125rem 1.6875rem 0.25rem;
  }
}
#Journal .journal-cont .sec-head .jp {
  margin-top: 0.625rem;
  color: #013193;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .sec-head .jp {
    margin-top: 0.5625rem;
    font-size: 1.3125rem;
    line-height: 1.3333333333;
  }
}
#Journal .journal-cont .sec-head .jp .txt {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .sec-head .jp .txt {
    font-size: 0.659375rem;
    margin-top: 0.75rem;
  }
}
#Journal .journal-cont .sec-head .jp span {
  display: block;
  border-bottom: 0.0625rem solid #013193;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .sec-head .jp span {
    padding-bottom: 0.75rem;
  }
}
#Journal .journal-cont .caution-area .caution-box {
  max-width: 100%;
  background: #b20404;
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box {
    padding: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box {
    padding: 0.4375rem;
    border-radius: 0.3125rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner {
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.6875rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner {
    padding: 0.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner {
    padding: 0.46875rem;
    border-radius: 0.3125rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner {
  border-radius: 0.625rem;
  border: 1px solid #013193;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner {
    padding: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner {
    padding: 1.3125rem 0.5rem;
    border-radius: 0.3125rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-ttl {
  font-size: 1.75rem;
  font-weight: 900;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  line-height: 1;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-ttl {
    font-size: 2.3333333333vw;
    gap: 0.8333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-ttl {
    font-size: 1.125rem;
    gap: 0.09375rem;
    margin-bottom: 0.75rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-ttl:before {
  content: "";
  display: inline-block;
  width: 2.375rem;
  height: 1.9375rem;
  background: url("../images/common/icon-caution.png") no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-ttl:before {
    width: 3.1666666667vw;
    height: 2.5833333333vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-ttl:before {
    width: 1.1875rem;
    height: 0.96875rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-txt {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-txt {
    font-size: 1.3333333333vw;
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-txt {
    font-size: 0.65625rem;
    line-height: 1.7142857143;
    margin-bottom: 1.21875rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #31a924;
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: 1;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact a {
    font-size: 3.4166666667vw;
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact a {
    font-size: 1.921875rem;
    margin-bottom: 0.25rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact a:before {
  content: "";
  display: inline-block;
  width: 3.375rem;
  height: 2.25rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact a:before {
    width: 4.5vw;
    height: 3vw;
    margin-right: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact a:before {
    width: 2.5rem;
    height: 1.6875rem;
    margin-right: 0.3125rem;
  }
}
#Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact .note {
  font-size: 0.875rem;
  font-weight: 500;
  color: #31a924;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact .note {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .caution-area .caution-box .box-inner .box-in-inner .caution-contact .note {
    font-size: 0.65625rem;
  }
}
#Journal .journal-cont .contents-index h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.0909090909;
  margin-bottom: 1.75rem;
}
#Journal .journal-cont .contents-index p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 500;
}
#Journal .journal-cont .consultation .c-inner {
  max-width: 100%;
  background: linear-gradient(165deg, #0046b2 0, #002359 100%);
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .c-inner {
    padding: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .c-inner {
    padding: 0.4375rem;
    border-radius: 0.3125rem;
  }
}
#Journal .journal-cont .consultation .box-inner {
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.6875rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .box-inner {
    padding: 0.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .box-inner {
    padding: 0.46875rem;
    border-radius: 0.3125rem;
  }
}
#Journal .journal-cont .consultation .box-in-inner {
  border-radius: 0.625rem;
  border: 1px solid #013193;
  padding: 1.75rem 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .box-in-inner {
    padding: 4vw 1.6666666667vw 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .box-in-inner {
    padding: 1.5rem 0.625rem 1rem;
    border-radius: 0.3125rem;
  }
}
#Journal .journal-cont .consultation .box-in-inner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8.6875rem;
  height: 10.375rem;
  background: url("../images/top/img-consultation.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .box-in-inner:before {
    left: 0;
    width: 11.5833333333vw;
    height: 13.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .box-in-inner:before {
    content: none;
  }
}
#Journal .journal-cont .consultation h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2222222222;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation h2 {
    font-size: 2.6666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation h2 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-feature-settings: "palt";
  }
}
#Journal .journal-cont .consultation .txt {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 2.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .txt {
    font-size: 1.1666666667vw;
    margin-bottom: 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .txt {
    font-size: 0.625rem;
    margin-bottom: 1.125rem;
  }
}
#Journal .journal-cont .consultation .btn-more {
  margin-bottom: 1.5rem;
  max-width: 20.625rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .btn-more {
    max-width: 27.5vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .btn-more {
    margin-bottom: 0.9375rem;
    max-width: 13.53125rem;
    height: 3.40625rem;
  }
}
#Journal .journal-cont .consultation .btn-more .btn-txt {
  font-size: 1.25rem;
}
#Journal .journal-cont .consultation .contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#Journal .journal-cont .consultation .contact-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #31a924;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .contact-area a {
    font-size: 4vw;
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .contact-area a {
    font-size: 1.921875rem;
    margin-bottom: 0.25rem;
  }
}
#Journal .journal-cont .consultation .contact-area a:before {
  content: "";
  display: inline-block;
  width: 3.375rem;
  height: 2.25rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .contact-area a:before {
    width: 4.5vw;
    height: 3vw;
    margin-right: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .contact-area a:before {
    width: 2.5rem;
    height: 1.6875rem;
    margin-right: 0.3125rem;
  }
}
#Journal .journal-cont .consultation .contact-area .note {
  font-size: 0.875rem;
  font-weight: 500;
  color: #31a924;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #Journal .journal-cont .consultation .contact-area .note {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .consultation .contact-area .note {
    font-size: 0.65625rem;
  }
}
#Journal .journal-cont .sec-note {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}
#Journal .journal-cont .faq-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .faq-list {
    margin-top: 1rem;
  }
}
#Journal .journal-cont .faq-list .faq-item {
  border-bottom: 1px solid #cccccc;
  padding: 2rem 0 1.5rem;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .faq-list .faq-item {
    padding: 0.9375rem 0 0.75rem;
  }
}
#Journal .journal-cont .faq-list .faq-item:first-child {
  padding-top: 0;
}
#Journal .journal-cont .faq-list .faq-item dt {
  font-size: 1.25rem;
  font-weight: 600;
  color: #013193;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .faq-list .faq-item dt {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    font-feature-settings: "palt";
  }
}
#Journal .journal-cont .faq-list .faq-item dd p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #383838;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  #Journal .journal-cont .faq-list .faq-item dd p {
    font-size: 0.625rem;
    font-feature-settings: "palt";
    line-height: 1.5;
  }
}

#bread-crumb ol {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #bread-crumb ol {
    margin-top: 1rem;
    padding: 0 0.75rem;
  }
}
#bread-crumb ol a {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 400;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  #bread-crumb ol a {
    font-size: 0.5625rem;
  }
}
#bread-crumb ol a:after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 0.0625rem solid #000;
  border-right: 0.0625rem solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  #bread-crumb ol a:after {
    width: 0.25rem;
    height: 0.25rem;
  }
}
#bread-crumb ol span {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #bread-crumb ol span {
    font-size: 0.5625rem;
  }
}
#bread-crumb ol li {
  background: none;
  float: initial;
  font-size: 0.75rem;
  padding: 0;
  letter-spacing: initial;
}
#bread-crumb ol li:last-child a {
  pointer-events: none;
}
#bread-crumb ol li:last-child a:after {
  content: none;
}

/*//////////////////////////////////////////
//  header
//////////////////////////////////////////*/
.main-header {
  background: #fff;
  width: 100%;
  position: fixed;
  z-index: 20;
}
.main-header .h-inner {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding: 1.875rem 1.875rem 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner {
    padding: 0.9375rem 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .main-header .h-inner {
    height: 2.96875rem;
    padding: 0 0.375rem;
  }
}
.main-header .h-inner .logo {
  width: 12.5625rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-header .h-inner .logo {
    width: 6.28125rem;
  }
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner .search-area {
    display: none;
  }
}
.main-header .h-inner .search-area form {
  display: flex;
  align-items: center;
}
.main-header .h-inner .search-area form input[type=text] {
  max-width: 13.625rem;
  width: 100%;
  height: 2.1875rem;
  background: #fff;
  border-radius: 0.3125rem 0 0 0.3125rem;
  font-size: 1rem;
  padding-left: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.32);
}
.main-header .h-inner .search-area form input[type=text]::-moz-placeholder {
  color: #808080;
}
.main-header .h-inner .search-area form input[type=text]::placeholder {
  color: #808080;
}
.main-header .h-inner .search-area form button {
  width: 2.625rem;
  height: 2.1875rem;
  border-radius: 0 0.3125rem 0.3125rem 0;
  border: 1px solid #013193;
  background: #013193;
}
.main-header .h-inner .search-area .tags-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.5625rem;
}
.main-header .h-inner .search-area .tags-list a {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  background: #119cd2;
  border-radius: 3.125rem;
  padding: 0 0.875rem;
  height: 1.5625rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  transition: linear all 0.2s;
}
.main-header .h-inner .search-area .tags-list a:hover {
  background: rgb(40.3744493392, 182.436123348, 237.6255506608);
}
.main-header .h-inner .contact-area {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner .contact-area {
    display: none;
  }
}
.main-header .h-inner .contact-area .tel {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.main-header .h-inner .contact-area .tel .tel-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 2.1125rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  color: #013193;
  letter-spacing: -0.05em;
  line-height: 1;
}
.main-header .h-inner .contact-area .tel .tel-link:before {
  content: "";
  display: inline-block;
  width: 2.8125rem;
  height: 1.875rem;
  background-image: url("../images/common/icon-dial.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.main-header .h-inner .contact-area .tel .reception-hours {
  font-size: 0.82125rem;
  color: #013193;
  letter-spacing: 0.025em;
  text-align: right;
  line-height: 1;
}
.main-header .h-inner .contact-area .btn-contact {
  width: 12.8125rem;
  height: 3.75rem;
  background: linear-gradient(to bottom, #fc861b 0%, #f34800 50%, #fc861b 100%);
  background-size: 100% 200%;
  background-position: top center;
  border: 3px solid #fff;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-weight: 700;
  font-size: 1.333125rem;
  line-height: 1;
  gap: 0.4375rem;
  transition: background-position 0.2s ease;
}
.main-header .h-inner .contact-area .btn-contact:hover {
  background-position: bottom center;
}
.main-header .h-inner .contact-area .btn-contact:before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../images/common/icon-mail.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.main-header .h-inner .sp-icon-list {
  display: none;
}
@media screen and (max-width: 1080px) {
  .main-header .h-inner .sp-icon-list {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    margin-right: 3.53125rem;
  }
}
@media screen and (max-width: 768px) {
  .main-header .h-inner .sp-icon-list li {
    width: 1.875rem;
  }
  .main-header .h-inner .sp-icon-list li img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.main-header .gnav {
  width: 100%;
  background: #013193;
  overflow-x: auto;
  /* スクロールバー全体のデザイン調整（Google Chrome, Safari, Edge等のWebkit系ブラウザ用） */
}
.main-header .gnav::-webkit-scrollbar {
  height: 2px; /* 横スクロールバーの高さ */
}
.main-header .gnav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* スクロールバーの軌道（背景） */
  border-radius: 3px;
}
.main-header .gnav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35); /* つまみ（ドラッグ部分） */
  border-radius: 3px;
}
.main-header .gnav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}
.main-header .gnav {
  /* Firefox 用のスクロールバーデザイン調整 */
  scrollbar-width: thin; /* 幅を細くする */
  scrollbar-color: rgba(255, 255, 255, 0.35) rgba(255, 255, 255, 0.1); /* つまみ色 軌道色 */
}
.main-header .gnav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main-header .gnav-inner {
    width: -moz-max-content;
    width: max-content;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .main-header .gnav-inner li {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
.main-header .gnav-inner li:not(:last-child) {
  border-right: 1px solid #fff;
}
.main-header .gnav-inner a {
  padding: 0 1.875rem;
  color: #fff;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-header .gnav-inner a {
    font-size: 0.84375rem;
  }
}
.main-header .gnav-inner a span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  padding-top: 3px;
}
.main-header .gnav-inner a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.main-header .gnav-inner a:hover span::after {
  transform: scaleX(1);
}
.main-header {
  /* ハンバーガーメニューボタンのスタイル */
}
.main-header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1080px) {
  .main-header .drawer-toggle {
    display: block;
    position: absolute;
    right: 1.25rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 3.125rem;
    height: 1.875rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: 0;
  }
  .main-header .drawer-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #013193; /* 白色の三本線 */
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .main-header .drawer-toggle span:nth-child(1) {
    top: 0;
  }
  .main-header .drawer-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .main-header .drawer-toggle span:nth-child(3) {
    bottom: 0;
  }
  .main-header .drawer-toggle {
    /* オープン時の✕印のアニメーション */
  }
  .main-header .drawer-toggle.is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .main-header .drawer-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .main-header .drawer-toggle.is-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-toggle {
    right: 1.375rem;
    width: 1.5625rem;
    height: 0.9375rem;
  }
}
.main-header {
  /* ドロワーメニューのスタイル */
}
.main-header .drawer-menu {
  display: none;
}
@media screen and (max-width: 1080px) {
  .main-header .drawer-menu {
    display: block;
    position: fixed;
    top: 8.5rem;
    right: -100%; /* 初期状態は画面外（右側）に隠す */
    width: 80%;
    max-width: 23.4375rem;
    height: 100vh;
    background-color: #013193; /* 背景色は$navy */
    z-index: 99;
    padding: 1.8125rem 0.84375rem 6.25rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease; /* スライドのアニメーション */
    overflow-y: auto;
  }
  .main-header .drawer-menu.is-open {
    right: 0; /* スライドインして表示 */
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-menu {
    top: 5.46875rem;
    max-width: initial;
    width: 100%;
  }
}
.main-header .drawer-menu .drawer-banner a {
  display: block;
  margin: 0 auto;
}
.main-header .drawer-menu .drawer-banner img {
  display: block;
  margin: 0 auto;
}
.main-header .sp-nav-wrapper {
  margin-top: 1.5rem;
}
.main-header .sp-nav-wrapper h2 {
  background: #eff7ff;
  color: #013193;
  min-height: 2.5rem;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
.main-header .sp-nav-wrapper .sp-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}
.main-header .sp-nav-wrapper .sp-nav li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 1080px) {
  .main-header .sp-nav-wrapper .sp-nav li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.main-header .sp-nav-wrapper .sp-nav li a {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 0 2rem;
}
@media screen and (max-width: 1080px) {
  .main-header .sp-nav-wrapper .sp-nav li a {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
  }
}
.main-header .drawer-cta {
  margin-top: 0.5rem;
}
.main-header .drawer-cta img {
  display: block;
  margin: 0 auto;
}

.cta-contents {
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.6875rem;
}
@media screen and (max-width: 1200px) {
  .cta-contents {
    padding: 0.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents {
    border-radius: 0.3125rem;
    padding: 0.34375rem;
  }
}
.cta-contents .cta-inner {
  border: 1px solid #0046b2;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2.1875rem 0.875rem 1.6875rem 8.4375rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner {
    padding: 2.9166666667vw 1.1666666667vw 2.25vw 11.25vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner {
    border-radius: 0.25rem;
    flex-direction: column;
    padding: 0.53125rem 0.625rem 0.78125rem;
    gap: 0.59375rem;
    text-align: center;
  }
}
.cta-contents .cta-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8.6875rem;
  height: 10.375rem;
  background: url("../images/top/img-consultation.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner::before {
    width: 11.5833333333vw;
    height: 13.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner::before {
    width: 5.21875rem;
    height: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .txt-ara {
    text-align: center;
  }
}
.cta-contents .cta-inner .txt-ara .lead {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .txt-ara .lead {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .txt-ara .lead {
    font-size: 1.125rem;
    display: inline;
  }
}
.cta-contents .cta-inner .txt-ara .ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .txt-ara .ttl {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .txt-ara .ttl {
    font-size: 1.125rem;
    display: inline;
  }
}
.cta-contents .cta-inner .contact-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-wrap {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-wrap {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    padding-left: 4.625rem;
  }
}
.cta-contents .cta-inner .contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.cta-contents .cta-inner .contact-area a {
  font-size: 2.5625rem;
  font-weight: 700;
  color: #31a924;
  font-family: "LINE Seed JP", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-area a {
    font-size: 3.1666666667vw;
    gap: 0.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-area a {
    font-size: 1.4375rem;
    gap: 0.375rem;
  }
}
.cta-contents .cta-inner .contact-area a::before {
  content: "";
  display: inline-block;
  width: 3.375rem;
  height: 2.25rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-area a::before {
    width: 4.5vw;
    height: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-area a::before {
    width: 1.9334375rem;
    height: 1.28875rem;
  }
}
.cta-contents .cta-inner .contact-area .note {
  font-size: 0.875rem;
  font-weight: 700;
  color: #31a924;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .contact-area .note {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .contact-area .note {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .btn-more {
    width: 24vw;
    padding: 0.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .btn-more {
    max-width: 12.625rem;
    width: 100%;
  }
}
.cta-contents .cta-inner .btn-more .btn-txt em {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .btn-more .btn-txt em {
    font-size: 1.6666666667vw;
    gap: 0.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .btn-more .btn-txt em {
    font-size: 0.8125rem;
    gap: 0.125rem;
  }
}
.cta-contents .cta-inner .btn-more .btn-txt em:before {
  content: "";
  display: inline-block;
  width: 1.6625rem;
  height: 1.25rem;
  background-image: url("../images/common/icon-mail-cta.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .cta-contents .cta-inner .btn-more .btn-txt em:before {
    width: 2.2166666667vw;
    height: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .cta-contents .cta-inner .btn-more .btn-txt em:before {
    width: 0.83125rem;
    height: 0.625rem;
  }
}

.drawer-cta .cta-contents {
  background: #fff;
  border-radius: 0.3125rem;
  padding: 0.34375rem;
}
.drawer-cta .cta-contents .cta-inner {
  border: 1px solid #0046b2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 0.25rem;
  flex-direction: column;
  padding: 0.53125rem 0.625rem 0.78125rem;
  gap: 0.59375rem;
  text-align: center;
}
.drawer-cta .cta-contents .cta-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("../images/top/img-consultation.png") no-repeat center bottom/contain;
  width: 5.21875rem;
  height: 6.25rem;
}
.drawer-cta .cta-contents .cta-inner .txt-ara {
  text-align: center;
}
.drawer-cta .cta-contents .cta-inner .txt-ara .lead {
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
  font-size: 1.125rem;
  display: inline;
}
.drawer-cta .cta-contents .cta-inner .txt-ara .ttl {
  font-weight: 700;
  color: #0046b2;
  line-height: 1.3;
  font-size: 1.125rem;
  display: inline;
}
.drawer-cta .cta-contents .cta-inner .contact-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 4.625rem;
}
.drawer-cta .cta-contents .cta-inner .contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.125rem;
}
.drawer-cta .cta-contents .cta-inner .contact-area a {
  font-weight: 700;
  color: #31a924;
  font-family: "LINE Seed JP", sans-serif;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 1.4375rem;
  gap: 0.375rem;
}
.drawer-cta .cta-contents .cta-inner .contact-area a::before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .drawer-cta .cta-contents .cta-inner .contact-area a::before {
    width: 1.9334375rem;
    height: 1.28875rem;
  }
}
.drawer-cta .cta-contents .cta-inner .contact-area .note {
  font-weight: 700;
  color: #31a924;
  line-height: 1.2;
  font-size: 0.625rem;
}
.drawer-cta .cta-contents .cta-inner .btn-more {
  max-width: 12.625rem;
  width: 100%;
  padding: 0.09375rem;
}
.drawer-cta .cta-contents .cta-inner .btn-more .btn-txt em {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  gap: 0.125rem;
}
.drawer-cta .cta-contents .cta-inner .btn-more .btn-txt em:before {
  content: "";
  display: inline-block;
  background-image: url("../images/common/icon-mail-cta.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.83125rem;
  height: 0.625rem;
}

/*//////////////////////////////////////////
//  footer
//////////////////////////////////////////*/
.main-footer {
  background: linear-gradient(165deg, #0046b2 0, #002359 100%);
  padding: 5.9375rem 0;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .main-footer {
    margin-top: 3.125rem;
    padding: 3.125rem 0;
  }
}
.main-footer .f-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid #fff;
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-footer .f-ttl {
    font-size: 1.25rem;
    padding-bottom: 0.125rem;
    border-bottom: 0.09375rem solid #fff;
    margin-bottom: 0.9375rem;
  }
}
.main-footer .f-ttl span {
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  display: block;
}
@media screen and (max-width: 768px) {
  .main-footer .f-ttl span {
    padding-bottom: 0.75rem;
    border-bottom: 0.03125rem solid rgba(255, 255, 255, 0.5);
  }
}
.main-footer .f-txt {
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-footer .f-txt {
    font-size: 0.625rem;
    margin-bottom: 0.9375rem;
  }
}
.main-footer .f-nav {
  display: flex;
  justify-content: center;
  margin-top: 3.375rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .main-footer .f-nav {
    gap: 1.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav {
    gap: 0;
    flex-direction: column;
    margin-top: 0.5625rem;
  }
}
.main-footer .f-nav li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.main-footer .f-nav li a {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav li a {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
  }
}
.main-footer .copyright {
  display: flex;
  justify-content: center;
  margin-top: 3.375rem;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .main-footer .copyright {
    font-size: 0.625rem;
    margin-top: 2.125rem;
  }
}

/*//////////////////////////////////////////
//  Section Header
//////////////////////////////////////////*/
.sec-head {
  text-align: center;
  border-bottom: 0.125rem solid #013193;
  padding-bottom: 0.25rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .sec-head {
    border-bottom-width: 0.125rem;
    padding-bottom: 0.125rem;
    margin-bottom: 1rem;
  }
}
.sec-head .en {
  display: inline-block;
  background-color: #013193;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.375rem 1.75rem 0.375rem;
  border-radius: 9999px;
}
@media screen and (max-width: 768px) {
  .sec-head .en {
    font-size: 0.625rem;
    padding: 0.3125rem 1.6875rem 0.25rem;
  }
}
.sec-head .jp {
  margin-top: 0.625rem;
  color: #013193;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sec-head .jp {
    margin-top: 0.5625rem;
    font-size: 1.3125rem;
    line-height: 1.3333333333;
  }
}
.sec-head .jp .txt {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .sec-head .jp .txt {
    font-size: 0.659375rem;
    margin-top: 0.75rem;
  }
}
.sec-head .jp span {
  display: block;
  border-bottom: 0.0625rem solid #013193;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec-head .jp span {
    padding-bottom: 0.75rem;
  }
}

/*//////////////////////////////////////////
//  Button More
//////////////////////////////////////////*/
.btn-more {
  display: flex;
  max-width: 18rem;
  width: 100%;
  height: 4.5rem;
  padding: 0.25rem;
  border-radius: 3.125rem;
  background: linear-gradient(to bottom, #ff8000 0%, #b53500 100%);
}
@media screen and (max-width: 1200px) {
  .btn-more {
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-more {
    max-width: 12.625rem;
    height: 2.5rem;
    padding: 0.125rem;
  }
}
.btn-more .btn-txt {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 0.125rem;
}
.btn-more .btn-txt em {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .btn-more .btn-txt em {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-more .btn-txt em {
    font-size: 0.75rem;
  }
}
.btn-more .btn-txt em span {
  font-size: 0.875rem;
}
@media screen and (max-width: 1200px) {
  .btn-more .btn-txt em span {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-more .btn-txt em span {
    font-size: 0.625rem;
  }
}
.btn-more .btn-txt:after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 1.125rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .btn-more .btn-txt:after {
    width: 0.1875rem;
    height: 0.1875rem;
    right: 1rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.btn-more.small-type {
  max-width: 11.875rem;
  height: 3rem;
  padding: 0.125rem;
}
@media screen and (max-width: 768px) {
  .btn-more.small-type {
    max-width: 6.25rem;
    height: 1.5625rem;
    padding: 0.0625rem;
  }
}
.btn-more.small-type .btn-txt:after {
  right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .btn-more.small-type .btn-txt:after {
    right: 0.5rem;
  }
}
.btn-more.small-type .btn-txt em {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .btn-more.small-type .btn-txt em {
    font-size: 0.5625rem;
    font-weight: 500;
  }
}

/*//////////////////////////////////////////
//  カテゴリーページ
//////////////////////////////////////////*/
.page-category .page-mv {
  padding: 1.5rem 1.25rem 1rem 2.1875rem;
  margin-bottom: 4rem;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv {
    padding: 2.4166666667vw 1.6666666667vw 1.4166666667vw 2.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv {
    padding: 0.75rem 0.625rem 0.625rem;
    margin-bottom: 3.125rem;
  }
}
.page-category .page-mv .txt-area {
  max-width: 26.875rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .txt-area {
    max-width: 35.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .txt-area {
    max-width: 14.84375rem;
  }
}
.page-category .page-mv .page-ttl {
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .page-ttl {
    margin-bottom: 0.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .page-ttl {
    margin-bottom: 0.5rem;
  }
}
.page-category .page-mv .page-ttl .en {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #013193;
  min-width: 9.0625rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 1.125rem;
  border-radius: 3.125rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .page-ttl .en {
    font-size: 1vw;
    min-width: 12.0833333333vw;
    padding: 0.3333333333vw 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .page-ttl .en {
    display: none;
  }
}
.page-category .page-mv .page-ttl .jp {
  font-size: 2.4375rem;
  line-height: 1.2138461538;
  font-weight: 900;
  margin: 0;
  margin-top: 0.875rem;
  border: none;
  color: #000;
  padding: 0;
  letter-spacing: initial;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .page-ttl .jp {
    font-size: 3.25vw;
    margin-top: 0.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .page-ttl .jp {
    font-size: 1.34125rem;
    line-height: 1.2385496183;
    margin-top: 0.5rem;
  }
}
.page-category .page-mv .mv-txt {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-txt {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-txt {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
.page-category .page-mv .mv-txt span {
  color: #013193;
}
.page-category .page-mv .mv-bottom {
  display: flex;
  gap: 0.6875rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom {
    gap: 0.9166666667vw;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom {
    margin-top: 3.25rem;
  }
}
.page-category .page-mv .mv-bottom .mv-contact {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 26.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-contact {
    padding: 1.3333333333vw 2vw;
    width: 35vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-contact {
    width: 12.3909375rem;
  }
}
.page-category .page-mv .mv-bottom .mv-contact .txt {
  background: #d3111f;
  color: #fff;
  font-size: 1.086875rem;
  font-weight: 700;
  border-radius: 3.125rem;
  padding: 0.375rem 1.5rem;
  line-height: 1;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-contact .txt {
    font-size: 1.4491666667vw;
    padding: 0.5vw 2vw;
    margin-bottom: 0.375rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-contact .txt {
    font-size: 0.513125rem;
    padding: 0.28125rem 0;
    margin-bottom: 0.44125rem;
  }
}
.page-category .page-mv .mv-bottom .mv-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013193;
  font-size: 2.665625rem;
  font-weight: 700;
  line-height: 1;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-contact a {
    font-size: 3.5541666667vw;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-contact a {
    font-size: 1.258125rem;
    margin-bottom: 0.2353125rem;
  }
}
.page-category .page-mv .mv-bottom .mv-contact a:before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1.625rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-contact a:before {
    width: 3.3333333333vw;
    height: 2.1666666667vw;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-contact a:before {
    width: 1.1875rem;
    height: 0.78125rem;
    margin-right: 0.25rem;
  }
}
.page-category .page-mv .mv-bottom .mv-contact .note {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #013193;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-contact .note {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-contact .note {
    font-size: 0.4425rem;
  }
}
.page-category .page-mv .mv-bottom .mv-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-list {
    gap: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-list {
    gap: 0.25rem;
  }
}
.page-category .page-mv .mv-bottom .mv-list li {
  background: #faf8f2;
  border: 1px solid #e1dec8;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.75rem;
  padding: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .page-category .page-mv .mv-bottom .mv-list li {
    font-size: 1.3333333333vw;
    min-height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom .mv-list li {
    font-size: 0.625rem;
    min-height: 1.875rem;
    padding: 0;
    border-radius: 0.3125rem;
    line-height: 1.2;
  }
}
.page-category .page-mv {
  background-image: url("../images/category/back-mv.jpg");
}
@media screen and (max-width: 768px) {
  .page-category .page-mv {
    background-image: url(../images/category/back-mv_sp.jpg);
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .txt-area {
    width: 12.96875rem;
  }
}
@media screen and (max-width: 768px) {
  .page-category .page-mv .mv-bottom {
    margin-top: 0.75rem;
  }
}
.page-category .select-type {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .page-category .select-type {
    padding-bottom: 3.125rem;
  }
}
.page-category .select-type .type-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page-category .select-type .type-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.page-category .select-type .type-list li {
  border-radius: 0.625rem;
  box-shadow: 0.125rem 0.4375rem 0.4375rem rgba(0, 0, 0, 0.15);
}
.page-category .select-type .type-list li h3 {
  min-height: 3.375rem;
  background: #013193;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.168;
  font-weight: 500;
  font-feature-settings: "palt";
  padding: 0 0.5rem;
  text-align: center;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 768px) {
  .page-category .select-type .type-list li h3 {
    min-height: 2.5rem;
    font-size: 0.75rem;
    line-height: 1.0954166667;
    padding: 0 0.3125rem;
  }
}
.page-category .select-type .type-list li figure {
  width: 100%;
  height: auto;
  display: block;
}
.page-category .select-type .type-list li figure img {
  width: 100%;
  height: auto;
  display: block;
}
.page-category .select-type .type-list li .txt-area {
  padding: 1rem 1.125rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page-category .select-type .type-list li .txt-area {
    padding: 0.5rem 0.5625rem 0.75rem;
    gap: 0.75rem;
  }
}
.page-category .select-type .type-list li .txt-area p {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  font-feature-settings: "palt";
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-category .select-type .type-list li .txt-area p {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
.page-category .select-type .type-list li .txt-area .btn-more {
  margin: auto auto 0;
}
.page-category .consultation .c-inner {
  max-width: 100%;
  background: linear-gradient(165deg, #0046b2 0, #002359 100%);
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .c-inner {
    padding: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .c-inner {
    padding: 0.4375rem;
    border-radius: 0.3125rem;
  }
}
.page-category .consultation .box-inner {
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.6875rem;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .box-inner {
    padding: 0.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .box-inner {
    padding: 0.46875rem;
    border-radius: 0.3125rem;
  }
}
.page-category .consultation .box-in-inner {
  border-radius: 0.625rem;
  border: 1px solid #013193;
  padding: 1.75rem 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .box-in-inner {
    padding: 4vw 1.6666666667vw 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .box-in-inner {
    padding: 1.5rem 0.625rem 1rem;
    border-radius: 0.3125rem;
  }
}
.page-category .consultation .box-in-inner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 8.6875rem;
  height: 10.375rem;
  background: url("../images/top/img-consultation.png") no-repeat center bottom/contain;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .box-in-inner:before {
    left: 0;
    width: 11.5833333333vw;
    height: 13.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .box-in-inner:before {
    content: none;
  }
}
.page-category .consultation h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2222222222;
  padding: 0 !important;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation h2 {
    font-size: 2.6666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation h2 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-feature-settings: "palt";
  }
}
.page-category .consultation .txt {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 2.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .txt {
    font-size: 1.1666666667vw;
    margin-bottom: 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .txt {
    font-size: 0.625rem;
    margin-bottom: 1.125rem;
  }
}
.page-category .consultation .btn-more {
  margin-bottom: 1.5rem;
  max-width: 20.625rem;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .btn-more {
    max-width: 27.5vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .btn-more {
    margin-bottom: 0.9375rem;
    max-width: 13.53125rem;
    height: 3.40625rem;
  }
}
.page-category .consultation .btn-more .btn-txt {
  font-size: 1.25rem;
}
.page-category .consultation .contact-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-category .consultation .contact-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #31a924;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  font-family: "LINE Seed JP", sans-serif;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .contact-area a {
    font-size: 4vw;
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .contact-area a {
    font-size: 1.921875rem;
    margin-bottom: 0.25rem;
  }
}
.page-category .consultation .contact-area a:before {
  content: "";
  display: inline-block;
  width: 3.375rem;
  height: 2.25rem;
  background: url("../images/common/icon-dial.svg") no-repeat center/contain;
  margin-right: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .contact-area a:before {
    width: 4.5vw;
    height: 3vw;
    margin-right: 0.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .contact-area a:before {
    width: 2.5rem;
    height: 1.6875rem;
    margin-right: 0.3125rem;
  }
}
.page-category .consultation .contact-area .note {
  font-size: 0.875rem;
  font-weight: 500;
  color: #31a924;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .page-category .consultation .contact-area .note {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-category .consultation .contact-area .note {
    font-size: 0.65625rem;
  }
}
.page-category .consultation .txt {
  margin-bottom: 1rem;
}

#itemList_wrap .product-list {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap .product-list {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
#itemList_wrap .product-list .filter-area {
  background: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 0.625rem;
  padding: 1.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap .product-list .filter-area {
    padding: 0.625rem 0.5rem;
    gap: 0.5rem;
    border-radius: 0.3125rem;
  }
}
#itemList_wrap .product-list .filter-area > div {
  position: relative;
  padding-left: 5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem 0.5rem;
  min-height: 1.875rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap .product-list .filter-area > div {
    padding-left: 3.75rem;
    gap: 0.59375rem 0.40625rem;
    min-height: 1.4375rem;
    align-items: flex-start;
  }
}
#itemList_wrap .product-list .filter-area dt {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  width: 5rem;
  line-height: 1;
  padding-top: 0.125rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #itemList_wrap .product-list .filter-area dt {
    font-size: 0.59375rem;
    width: 3.4375rem;
    align-items: flex-start;
    padding-top: 0.625rem;
  }
}
#itemList_wrap .product-list .filter-area dd {
  display: inline-block;
}
#itemList_wrap .product-list .filter-area .filter-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem 0.375rem;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 1.875rem;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #itemList_wrap .product-list .filter-area .filter-tag {
    height: 1.4375rem;
    padding: 0 0.625rem;
    font-size: 0.5625rem;
    border-radius: 1.4375rem;
  }
}
#itemList_wrap .product-list .filter-area .filter-tag.active, #itemList_wrap .product-list .filter-area .filter-tag:hover {
  background: #1396d8;
  border-color: #1396d8;
  color: #fff;
}
#itemList_wrap .product-list .result-num {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 1.125rem;
}
#itemList_wrap #itemList {
  padding-bottom: 2.5rem;
}
#itemList_wrap #itemList > h1 {
  display: none;
}
#itemList_wrap #itemList .column-set {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList .column-set {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
  }
}
#itemList_wrap #itemList .column-set .column4 {
  margin: 0;
  padding: 0;
  width: initial;
  float: initial;
  display: flex;
  flex-direction: column;
}
#itemList_wrap #itemList .column-set .column4 h2 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #383838;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList .column-set .column4 h2 {
    font-size: 0.6875rem;
  }
}
#itemList_wrap #itemList .column-set .column4 .sp_price,
#itemList_wrap #itemList .column-set .column4 .price {
  margin-top: auto !important;
  margin-bottom: 0;
}
#itemList_wrap #itemList .column-set .column4 .sp_price .selling_price_str,
#itemList_wrap #itemList .column-set .column4 .price .selling_price_str {
  display: none;
}
#itemList_wrap #itemList .column-set .column4 .sp_price .selling_price,
#itemList_wrap #itemList .column-set .column4 .price .selling_price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #d3111f;
  margin-top: 0.375rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList .column-set .column4 .sp_price .selling_price,
  #itemList_wrap #itemList .column-set .column4 .price .selling_price {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}
#itemList_wrap #itemList .column-set .column4 .sp_price .taxin,
#itemList_wrap #itemList .column-set .column4 .price .taxin {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #d3111f;
  margin-left: 0.125rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList .column-set .column4 .sp_price .taxin,
  #itemList_wrap #itemList .column-set .column4 .price .taxin {
    font-size: 0.5625rem;
    margin-left: 0.125rem;
  }
}
#itemList_wrap #itemList2 > h1 {
  display: none;
}
#itemList_wrap #itemList2 .column-set {
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set {
    margin-top: 0.9375rem;
    gap: 1.875rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 {
  display: flex;
  gap: 2.375rem;
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 {
    gap: 1.25rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap {
  width: 12.5rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap {
    width: 6.25rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap img {
  width: 100%;
  height: auto;
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin: 0;
  padding: 0;
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.375rem;
  line-height: 1.2727272727;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right h2 {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .fx_price {
  font-size: 0.75rem;
  font-weight: 500;
  color: #383838;
  margin-bottom: 0.625rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .fx_price {
    font-size: 0.5625rem;
    margin-bottom: 0.1875rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .sp_price,
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .price {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .sp_price,
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .price {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .sp_price .selling_price,
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .price .selling_price {
  color: #e60012;
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .sp_price .selling_price_str,
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .price .selling_price_str {
  display: none;
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .sp_price .taxin,
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .price .taxin {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e60012;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .sp_price .taxin,
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .price .taxin {
    font-size: 0.5625rem;
  }
}
#itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .inner-catch {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #383838;
  line-height: 1.5384615385;
  margin: 0;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .itemThumb-wrap-right .inner-catch {
    font-size: 0.625rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .btn-more.small-type {
    max-width: 10.03125rem;
    height: 2.53125rem;
    padding: 0.125rem;
  }
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .btn-more.small-type .btn-txt:after {
    right: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  #itemList_wrap #itemList2 .column-set .column4 .btn-more.small-type .btn-txt em {
    font-size: 0.75rem;
    font-weight: 500;
  }
}

/*//////////////////////////////////////////
//  上書き用
//////////////////////////////////////////*/
.sec-head .jp {
  padding: 0 !important;
  letter-spacing: initial !important;
  border-top: none !important;
}

.cta-contents .ttl {
  padding: 0 !important;
  border-top: none !important;
  letter-spacing: initial !important;
}

.main-footer {
  height: initial;
}

#main-column,
#contents {
  margin-bottom: 0;
}
#main-column h2,
#contents h2 {
  border-top: none;
}

.w100 .freeArea2 {
  margin: 0;
  padding: 0;
}/*# sourceMappingURL=common_update.css.map */