@charset "UTF-8";

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}

img {
  width: 100%;
  transition: all 0.3s;
}

a img:hover {
  opacity: 0.7;
}

a {
  transition: all 0.3s;
}

a:hover {
  color: #e8440b;
}

iframe {
  width: 100%;
  height: 100%;
}

.show-sp {
  display: none;
}

.link-underline {
  text-decoration: underline;
}

.link-underline:hover {
  text-decoration: none;
}

.btn-effects {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-effects a {
  transition: all 0.3s;
}

.inner {
  position: relative;
  width: 950px;
  margin: 0 auto;
}

.acc-btn {
  cursor: pointer;
}

.acc-cnt {
  display: none;
}

.common-btn {
  background-color: #fff;
  width: 316px;
  height: 54px;
  margin: 0 auto;
  border: 2px solid #ed582d;
  border-radius: 5px;
}

.common-btn:hover {
  background-color: #ed582d;
}

.common-btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #ed582d;
}

.common-btn-inner:hover {
  color: #fff;
}

.common-btn-inner::after {
  content: "";
  position: absolute;
  top: 21px;
  right: 25px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ed582d;
  border-right: 2px solid #ed582d;
  transition: all 0.3s;
  transform: rotate(45deg);
}

.common-btn-inner:hover:after {
  right: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.common-fade-in-bottom {
  opacity: 0;
}

.scroll-anime-start.common-fade-in-bottom {
  animation: fade-in-bottom 0.5s 0.5s forwards;
}

.comma {
  font-family: sans-serif;
}

.asta {
  font-size: 0.5em;
  vertical-align: top;
}

@media screen and (max-width: 1100px) {
  body {
    font-size: calc(16vw / 1100 * 100);
  }

  .inner {
    width: calc(950vw / 1100 * 100);
  }

  .common-btn {
    width: calc(316vw / 1100 * 100);
    height: calc(54vw / 1100 * 100);
    border: calc(2vw / 1100 * 100) solid #ed582d;
    border-radius: calc(5vw / 1100 * 100);
  }

  .common-btn-inner::after {
    top: calc(21vw / 1100 * 100);
    right: calc(25vw / 1100 * 100);
    width: calc(10vw / 1100 * 100);
    height: calc(10vw / 1100 * 100);
    border-top: calc(2vw / 1100 * 100) solid #ed582d;
    border-right: calc(2vw / 1100 * 100) solid #ed582d;
  }

  .common-btn-inner:hover:after {
    right: calc(20vw / 1100 * 100);
    border-top: calc(2vw / 1100 * 100) solid #fff;
    border-right: calc(2vw / 1100 * 100) solid #fff;
  }
}

@media screen and (max-width: 750px) {
  body {
    font-size: calc(32vw / 750 * 100);
  }

  .show-pc {
    display: none !important;
  }

  .show-sp {
    display: block;
  }

  .inner {
    width: calc(660vw / 750 * 100);
  }

  .common-btn {
    width: calc(545vw / 750 * 100);
    height: calc(120vw / 750 * 100);
    border: calc(2vw / 750 * 100) solid #ed582d;
    border-radius: calc(5vw / 750 * 100);
  }

  .common-btn-inner {
    padding-right: calc(40vw / 750 * 100);
    font-size: calc(28vw / 750 * 100);
  }

  .common-btn-inner::after {
    top: calc(49vw / 750 * 100);
    right: calc(55vw / 750 * 100);
    width: calc(20vw / 750 * 100);
    height: calc(20vw / 750 * 100);
    border-top: calc(2vw / 750 * 100) solid #ed582d;
    border-right: calc(2vw / 750 * 100) solid #ed582d;
  }

  .common-btn-inner:hover:after {
    right: calc(20vw / 750 * 100);
    border-top: calc(2vw / 750 * 100) solid #fff;
    border-right: calc(2vw / 750 * 100) solid #fff;
  }

}

/* animation */
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes slide-loop-reverse {
  0% {
    transform: translateX(-100%);
  }


  100% {
    transform: translateX(0);
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 0 16px -6px #b5b5b5;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1360px;
}

/* 20240821 ロゴ変更　幅283→150に修正 */
.header-logo {
	width: 150px;

}

.header-nav-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-nav-list {
  display: flex;
}

.header-nav-item {
  font-size: 14px;
  font-weight: bold;
  margin-right: 35px;
}

.header-nav-item.active {
  color: #e8440b;
}

/* 202601 ナビボタン統一新仕様*/
  .header-nav-btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 205px;
    height: 35px;
    font-size: 13px;
    background-color: #fff;
    border-radius: 10px;
/*    border: 2px solid #0abe62;*/
    border: 2px solid #E8440B;
  }

  .header-nav-btn::before {
    display: block;
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 10px;
/*        background: #07dd7c;
        background: linear-gradient(
          to bottom,
          rgba(7, 221, 124, 1) 0%,
          rgba(11, 188, 96, 1) 100%
        );*/
        background: #E8440B;
        background: linear-gradient(
          to bottom,
          rgba(232, 123, 56, 1) 0%,
          rgba(232, 68, 11, 1) 100%
        );
        transition: all 0.3s;
      }

  .header-nav-btn::after {
    content: "";
    display: block;
    width: 19px;
    height: 11px;
    background-image: url("/tanomu/assets/images/icon_arrow_down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.3s;
  }

  .header-nav-btn:hover .header-nav-btn-inner {
/*    color: #0abe62;*/
    color: #E8440B;
  }

  .header-nav-btn:hover::before {
    opacity: 0;
  }

  .header-nav-btn:hover::after {
    background-image: url("/tanomu/assets/images/icon_arrow_down_h.svg");
    transform: translateY(25%);
  }
  .header-nav-btn-inner {
    font-weight: bold;
    width: auto;
    color: #fff;
  }

  @media screen and (max-width: 1400px) {
    .header-nav-btn {
      width: calc(205vw / 1400 * 100);
      height: calc(35vw / 1400 * 100);
      border-radius: calc(10vw / 1400 * 100);
/*      border: calc(2vw / 1400 * 100) solid #0abe62;*/
      border: calc(2vw / 1400 * 100) solid #E8440B;
      font-size: calc(13vw / 1400 * 100);
    }

    .header-nav-btn::after {
      width: calc(19vw / 1400 * 100);
      height: calc(11vw / 1400 * 100);
    }

    .header-nav-btn::before {
      top: calc(-2vw / 1400 * 100);
      left: calc(-2vw / 1400 * 100);
      width: calc(100% + (4vw / 1400 * 100));
      height: calc(100% + (4vw / 1400 * 100));
    }

    .header-nav-btn-inner {
      font-size: calc(13vw / 1400 * 100);
    }
  }

/* ヘッダー内のボタンが画面幅を突き破るのを防ぐ */
/*
@media screen and (max-width: 1024px) {
    .header-nav-btn {
      width: auto !important;
      max-width: 40vw !important;
      box-sizing: border-box !important;
    }
  }
*/


/* 202601 ナビボタン旧仕様
.header-nav-btn {
  background-color: #e8440b;
  width: 130px;
  height: 34px;
  border: 1px solid #e8440b;
  border-radius: 100px;
}

.header-nav-btn:hover {
  background-color: #fff;
}

.header-nav-btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.header-nav-btn-inner:hover {
  color: #e8440b;
}
@media screen and (max-width: 1400px) {
  .header-nav-btn {
    width: calc(130vw / 1400 * 100);
    height: calc(34vw / 1400 * 100);
    border-radius: calc(100vw / 1400 * 100);
  }

  .header-nav-btn-inner {
    font-size: calc(14vw / 1400 * 100);
  }
}
*/
@media screen and (max-width: 1400px) {
  .header {
    height: calc(60vw / 1400 * 100);
    box-shadow: 0 0 calc(16vw / 1400 * 100) calc(-6vw / 1400 * 100) #b5b5b5;
  }

  .header .inner {
    width: calc(1360vw / 1400 * 100);
  }

  .header-logo {
    width: calc(150vw / 1400 * 100);
  }

  .header-nav-item {
    font-size: calc(13.5vw / 1400 * 100);
    margin-right: calc(35vw / 1400 * 100);
  }
}

@media screen and (max-width: 750px) {
  .header {
    position: static;
    height: calc(110vw / 750 * 100);
    box-shadow: 0 0 calc(16vw / 750 * 100) calc(-6vw / 750 * 100) #b5b5b5;
  }

  .header .inner {
    width: calc(690vw / 750 * 100);
  }

  .header-logo {
    width: calc(222vw / 750 * 100);
  }

  .header-menu-btn {
    position: fixed;
    top: calc(30vw / 750 * 100);
    right: calc(40vw / 750 * 100);
    width: calc(56vw / 750 * 100);
    z-index: 10;
  }
}

/* ▼ ドロップダウン用の最低限CSS。必要なら既存CSSにマージしてください。 */
.header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav-item {
    position: initial; /* サブメニューの基準位置 */
    cursor: pointer;
    padding: 19px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 初期は非表示！ display はここでは none のみ */
.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 0;
  display: none;                 /* ←これが正 */
  background: #f9f9f9;
  /* border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0,0,0,.08); */
  padding: 16px;
  min-width: 100%;
  z-index: 1000;
}

/* 中身を3カラムで横並び */
.dropdown-menu > div {
  display: block;
  flex: 1 1 0;
  padding: 0 12px;
  white-space: normal; /* テキスト折返し防止（必要に応じて外してください） */
}

/* ホバー時のみ表示（メニュー上にマウスが乗っても消えないように子要素も含める） */
.header-nav-item:hover .dropdown-menu,
.header-nav-item:focus-within .dropdown-menu {
  display: flex;                 /* ←ここで flex に */
  gap: 16px;
}

header .dropdown-menu div:nth-of-type(2) {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

header .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: initial;
    margin-inline: initial;
    padding-top: initial;
}

header .h_cta .flex {
    display: flex;
    background-color: #e34d17;
    padding: 16px;
    border-radius: 10px;
    color: #fff;
}

@media screen and (max-width: 1132px) {
header .h_cta_first .flex{
  padding: 10px;
}
header .h_cta_first img{
  width: 50%;
}
/* Firefox */
@-moz-document url-prefix() {
    header .h_cta_first img{
      width: 110%;
}
}
}
header .label {
    font-size: 20px;
    margin-bottom: 16px;
    color: #e8440b;
    font-weight: 700;
}

header .flex img {
    margin-right: 8px;
    border: 1px solid #d8d8d8;
}

header .h_cta .flex > div {
    position: relative;
}

header .h_cta .flex > div p:nth-of-type(2) {
    text-align: center;
    width: 100%;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 100vmax;
    background-color: #fff;
    color: #e34d17;
    /* margin-top: 16px; */
    position: absolute;
    bottom: 0;
}

header .dropdown-menu > div:nth-of-type(1) p:nth-of-type(2) {
  margin-bottom: 8px;
}

header .dropdown-menu > div:nth-of-type(1) p:nth-of-type(2),
header .dropdown-menu > div:nth-of-type(1) p:nth-of-type(3) {
    /* padding: 4px 0;
    border-bottom: 1px solid #333;
    display: inline-block; */
    text-decoration: underline;
}

header .dropdown-menu > div:nth-of-type(2) .grid p {
    /* padding: 4px 0;
    border-bottom: 1px solid #333;
    display: inline-block; */
    text-decoration: underline;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
}

header .right-arrow {
  margin-left: 4px;
  font-size: 12px;
}

header .drop-arrow {
  margin-left: 4px;
  color: #e34d17;
  font-size: 12px;
}


header .dropdown-menu > div p a,
header .grid p a {
  display: inline-flex;
  align-items: center;
}

header .h_cta {
  max-width: 450px;
  width: 100%;
}

header .contents div:nth-of-type(2) {
  border-right: initial;
}

/* menu */
.menu {
  display: none;
}

@media screen and (max-width: 750px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.97);
    width: 100%;
    height: 100vh;
    text-align: center;
    z-index: 20;
    overflow-y: auto;
  }

  .menu .inner {
    width: calc(545vw / 750 * 100);
  }

  .menu-close-btn {
    position: fixed;
    top: calc(30vw / 750 * 100);
    right: calc(40vw / 750 * 100);
    width: calc(46vw / 750 * 100);
  }

  .menu-link-list {
    margin-top: calc(100vw / 750 * 100);
  }

  .menu-link-item {
    font-size: calc(38vw / 750 * 100);
    font-weight: bold;
  }

  .menu-link-item+.menu-link-item {
    margin-top: calc(50vw / 750 * 100);
  }

  .menu-btn {
    margin: calc(50vw / 750 * 100) auto 0;
  }

  .menu-logo {
    width: calc(540vw / 750 * 100);
    margin: calc(70vw / 750 * 100) auto 0;
  }

  .menu-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(70vw / 750 * 100);
  }

  .menu-tel-icon {
    width: calc(34vw / 750 * 100);
  }

  .menu-tel-num {
    font-size: calc(52vw / 750 * 100);
    font-weight: bold;
    color: #858585;
  }

  .menu-txt {
    margin-top: calc(25vw / 750 * 100);
    font-size: calc(24vw / 750 * 100);
    color: #858585;
  }

  /* ▼ ここからアコーディオン用の追記 */
  .menu-link-item.has-sub {
    position: relative;
  }

  .menu-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(10vw / 750 * 100);
    width: 100%;
    background: none;
    border: 0;
    padding: 0;
    font: inherit; /* 親のサイズ/太さを継承 */
    line-height: 1.4;
    cursor: pointer;
  }

  .menu-accordion-btn .material-symbols-rounded {
    font-size: 1.2em;
    transition: transform .2s ease;
  }

  .menu-accordion-btn[aria-expanded="true"] .material-symbols-rounded {
    transform: rotate(180deg);
  }

  .menu-sub-list {
    list-style: none;
    margin: calc(24vw / 750 * 100) 0 0;
    padding: 0;
    display: none; /* jQueryのslideDown/Upで切替 */
  }

  .menu-sub-item {
    font-size: calc(30vw / 750 * 100);
    font-weight: normal;
  }

  .menu-sub-item + .menu-sub-item {
    margin-top: calc(24vw / 750 * 100);
  }
  /* ▲ ここまでアコーディオン用の追記 */
}

@media screen and (max-width: 750px) {
  .menu-link-item.has-sub { position: relative; }

  .menu-accordion-btn {
    display: flex; align-items: center; justify-content: center;
    gap: calc(10vw / 750 * 100);
    width: 100%; background: none; border: 0; padding: 0;
    font: inherit; line-height: 1.4; cursor: pointer;
  }

  .drop-arrow { display: inline-block; margin-left: .4em; transition: transform .2s ease; }
  .menu-accordion-btn[aria-expanded="true"] .drop-arrow { transform: rotate(180deg); }

  .menu-sub-list { list-style: none; margin: calc(24vw / 750 * 100) 0 0; padding: 0; display: none; }
  .menu-sub-item { font-size: calc(30vw / 750 * 100); font-weight: normal; }
  .menu-sub-item + .menu-sub-item { margin-top: calc(24vw / 750 * 100); }

  .label { font-size: calc(28vw / 750 * 100); color: #858585; margin: 0 0 calc(16vw / 750 * 100); }
  .right-arrow { font-size: .9em; margin-left: .25em; }
}

#menu {
  padding-bottom: 64px;
}

#menu .label {
  color: #e8441b;
}

#menu .right-arrow {
  margin-left: 8px;
}

.menu-sub-item {
  margin: 16px 0;
}

#menu #submenu-seller,
#menu #submenu-contents {
  border: 1px solid rgb(221, 221, 221);
    padding: 16px;
    border-radius: 10px;
}

/* cv 202507改修 */
.cv {
  position: relative;
  background-color: #fff8f3;
  padding: 110px 0;
  width: 100%;
}

h2.cv-head {
  margin: 0 auto 80px;
  width: 80%;
  max-width: 800px;
  padding: 0 1rem 10px;
  font-size: 34px;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.4;
  border-bottom: 3px solid #ed582d;
}

.cv .inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 0 3%;
  width: 100%;
  max-width: 1024px;
}

/*202602 テキストボックス幅改修*/
/*
.cv .inner .cv_left {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: 55%;
  color: #333;
}
.cv .inner .cv_right {
  align-self: center;
  width: 45%;
  color: #333;
}
*/
.cv .inner .cv_left {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: 45%;
  color: #333;
}
.cv .inner .cv_right {
  align-self: center;
  width: 55%;
  color: #333;
}
/*End 202602 テキストボックス幅改修*/

.cv .inner .cv_left h3{
  align-self: flex-start;
  margin: 30px 0 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.cv .inner .cv_left img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: auto;
}
.cv .inner .cv_left ul {
  align-self: center;
  margin-bottom: 30px;
  width: 80%;
  max-width: 400px;
}
.cv .inner .cv_left li {
  list-style-type: disc;
  list-style-position: outside;
  font-size: 16px;
  text-align: left;
}
.cv .inner .cv_left p.cv-txt {
  align-self: flex-start;
  margin-bottom: 16px;
  width: 80%;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.cv .inner .cv_right .cv-form {
  /* background-color: #fff;
  max-width: 750px;
  height: 620px;
  margin: 10px auto 0;
  padding-top: 50px;
  border-radius: 5px;*/
  width: 100%;
  height: 1000px;
  margin: 0 auto;
}

.cv input,
.cv select {
  border: 1px solid #000;
}

/*
.cv-sub-head {
  font-size: 24px;
  font-weight: bold;
  margin-top: 55px;
  text-align: center;
}
.cv-tel-txt-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-tel-txt-icon {
  width: 23px;
  margin-right: 5px;
}

.cv-tel-txt-num {
  font-size: 38px;
  font-weight: bold;
}

.cv-tel-details {
  margin-top: 20px;
  line-height: 1.8;
}

.cv-tel-notes {
  margin-top: 5px;
  font-weight: bold;
}
*/
@media screen and (max-width: 1100px) {
  .cv {
    padding: calc(110vw / 1100 * 100) 0;
  }
  h2.cv-head {
    margin: 0 auto calc(80vw / 1100 * 100);
    width: calc(800vw / 1100 * 100);
    font-size: calc(34vw / 1100 * 100);
  }
  .cv .inner {
    max-width: 1000px;
  }
  .cv .inner .cv_left img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  .cv .inner .cv_right .cv-form {
    width: 100%;
    height: 1000px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .cv {
    margin: 0;
    padding: calc(110vw / 768 * 100) 0;
    width: 100%;
  }
  h2.cv-head {
    margin: 0 auto 30px;
    padding: 0;
    width: 94%;
    font-size: calc(34vw / 768 * 100);
  }
  .cv .inner {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    width: 94%;
  }
/*202602 テキストボックス幅改修*/
/*
  .cv .inner .cv_left {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto calc(60vw / 768 * 100);
    width: 100%;
  }
  .cv .inner .cv_right {
    align-self: center;
    margin: 0 auto 30px;
    width: 100%;
  }
*/
  .cv .inner .cv_left {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto calc(60vw / 768 * 100);
    width: 100%;
  }
  .cv .inner .cv_right {
    align-self: center;
    margin: 0 auto 30px;
    width: 100%;
  }
/*End 202602 テキストボックス幅改修*/

  .cv .inner .cv_left h3 {
    align-self: center;
    margin-bottom: calc(16vw / 768 * 100);
    font-size: calc(21vw / 768 * 100);
    width: 100%;
    text-align: center;
  }
  .cv .inner .cv_left img {
    align-self: center;
    width: 94%;
    max-width: 600px;
    height: auto;
  }
  .cv .inner .cv_left ul {
    margin: 0 calc(30vw / 768 * 100) calc(30vw / 768 * 100);
    padding: 0 calc(30vw / 768 * 100);
    width: 100%;
  }
  .cv .inner .cv_left li {
    font-size: calc(16vw / 768 * 100);
  }
  .cv .inner .cv_left p.cv-txt {
    margin-bottom: calc(18vw / 768 * 100);
    width: 100%;
    font-size: calc(21vw / 768 * 100);
    text-align: center;
  }
}

@media screen and (max-width: 450px) {
  h2.cv-head {
    font-size: calc(34vw / 450 * 100);
  }
  .cv .inner .cv_left {
    margin: 0 auto calc(60vw / 450 * 100);
  }
  .cv .inner .cv_left h3 {
    font-size: calc(24vw / 450 * 100);
  }
  .cv .inner .cv_left img {
    align-self: center;
    width: 90%;
    max-width: 440px;
    height: auto;
  }
  .cv .inner .cv_left ul {
    margin: 0 auto calc(30vw / 450 * 100);
    padding: 0 calc(30vw / 450 * 100);
    width: 100%;
  }
  .cv .inner .cv_left li {
    font-size: calc(18vw / 450 * 100);
  }
  .cv .inner .cv_left p.cv-txt {
    font-size: calc(24vw / 450 * 100);
  }
  .cv-form {
    height: 700px;
  }
}



/* news */
.news {
  background-color: #e5e5e5;
  padding: 115px 0 50px;
}

.news-haed {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.news-list {
  margin-top: 40px;
}

.news-box {
  padding: 15px 15px 15px 50px;
  border-top: 1px solid #bfbfbf;
}

.news-box:last-child {
  border-bottom: 1px solid #bfbfbf;
}

.news-box-inner {
  display: flex;
  align-items: center;
}

.news-box-inner:hover {
  text-decoration: underline;
}

.news-date {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.news-ttl {
  font-size: 16px;
  margin-left: 40px;
}

@media screen and (max-width: 1100px) {
  .news {
    padding: calc(115vw / 1100 * 100) 0 calc(50vw / 1100 * 100);
  }

  .news-haed {
    font-size: calc(24vw / 1100 * 100);
  }

  .news-list {
    margin-top: calc(40vw / 1100 * 100);
  }

  .news-box {
    padding: calc(15vw / 1100 * 100) calc(15vw / 1100 * 100) calc(15vw / 1100 * 100) calc(50vw / 1100 * 100);
    border-top: calc(1vw / 1100 * 100) solid #bfbfbf;
  }

  .news-box:last-child {
    border-bottom: calc(1vw / 1100 * 100) solid #bfbfbf;
  }

  .news-ttl {
    font-size: calc(16vw / 1100 * 100);
    margin-left: calc(40vw / 1100 * 100);
  }
}

@media screen and (max-width: 750px) {
  .news {
    padding: calc(115vw / 750 * 100) 0 calc(50vw / 750 * 100);
  }

  .news-haed {
    font-size: calc(38vw / 750 * 100);
  }

  .news-list {
    margin-top: calc(40vw / 750 * 100);
  }

  .news-box {
    padding: calc(25vw / 750 * 100) calc(10vw / 750 * 100);
    border-top: calc(1vw / 750 * 100) solid #bfbfbf;
  }

  .news-box:last-child {
    border-bottom: calc(1vw / 750 * 100) solid #bfbfbf;
  }

  .news-box-inner {
    display: block;
  }

  .news-date {
    font-weight: normal;
  }

  .news-ttl {
    font-size: calc(26vw / 750 * 100);
    margin: calc(20vw / 750 * 100) 0 0;
  }
}


/* faq */
.common-faq {
  background-color: #e5e5e5;
  padding: 75px 0;
}

.common-faq-haed {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.common-faq-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.common-faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 440px;
  padding: 15px 15px;
  border-bottom: 1px solid #bfbfbf;
}

.common-faq-item.accent {
  font-weight: bold;
}

.common-faq-item::after {
  content: "";
  display: block;
  background-image: url(/tanomu/assets/images/pc/faq_icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 12px;
  transition: all 0.3s;
}

.common-faq-item.accent::after {
  content: "";
  background-image: url(/tanomu/assets/images/pc/faq_icon_accent_arrow.svg);
  width: 21px;
  height: 21px;
  transform: translateX(5px);
}

.common-faq-item:hover:after {
  transform: translateX(5px);
}

.common-faq-item.accent:hover:after {
  transform: translateX(10px);
}

.common-faq-item a {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1100px) {
  .common-faq {
    padding: calc(75vw / 1100 * 100) 0;
  }

  .common-faq-haed {
    font-size: calc(24vw / 1100 * 100);
  }

  .common-faq-list {
    margin-top: calc(30vw / 1100 * 100);
  }

  .common-faq-item {
    width: calc(440vw / 1100 * 100);
    padding: calc(15vw / 1100 * 100) calc(15vw / 1100 * 100);
    border-bottom: calc(1vw / 1100 * 100) solid #bfbfbf;
  }

  .common-faq-item::after {
    width: calc(6vw / 1100 * 100);
    height: calc(12vw / 1100 * 100);
  }

  .common-faq-item.accent::after {
    width: calc(21vw / 1100 * 100);
    height: calc(21vw / 1100 * 100);
    transform: translateX(calc(5vw / 1100 * 100));
  }

  .common-faq-item:hover:after {
    transform: translateX(calc(5vw / 1100 * 100));
  }

  .common-faq-item.accent:hover:after {
    transform: translateX(calc(10vw / 1100 * 100));
  }
}

@media screen and (max-width: 750px) {
  .common-faq {
    padding: calc(55vw / 750 * 100) 0;
  }

  .common-faq-haed {
    font-size: calc(36vw / 750 * 100);
  }

  .common-faq-list {
    display: block;
    margin-top: calc(40vw / 750 * 100);
  }

  .common-faq-item {
    width: 100%;
    padding: calc(30vw / 750 * 100) calc(30vw / 750 * 100) calc(30vw / 750 * 100) calc(10vw / 750 * 100);
    font-size: calc(26vw / 750 * 100);
    border-bottom: calc(1vw / 750 * 100) solid #bfbfbf;
  }

  .common-faq-item::after {
    width: calc(12vw / 750 * 100);
    height: calc(24vw / 750 * 100);
  }

  .common-faq-item.accent::after {
    width: calc(42vw / 750 * 100);
    height: calc(42vw / 750 * 100);
    transform: translateX(calc(12vw / 750 * 100));
  }

  .common-faq-item:hover:after {
    transform: translateX(calc(5vw / 750 * 100));
  }

  .common-faq-item.accent:hover:after {
    transform: translateX(calc(10vw / 750 * 100));
  }
}

/* recommend */
.recommend {
  background-color: #e5e5e5;
  padding: 55px 0 120px;
  overflow-x: hidden;
}

.recommend-haed {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.recommend-bnr-area {
  position: relative;
  width: 500px;
  margin: 40px auto 0;
}

.recommend-bnr {
  opacity: 0.5;
  transition: all 0.3s;
}

.recommend-bnr.swiper-slide-active {
  opacity: 1;
}

.recommend-bnr-slide-prev,
.recommend-bnr-slide-next {
  width: 45px;
}

.recommend-bnr-slide-prev {
  left: -30px;
}

.recommend-bnr-slide-next {
  right: -30px;
}

.recommend-bnr-slide-prev:after,
.recommend-bnr-slide-next:after {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  transition: all 0.3s;
}

.recommend-bnr-slide-prev:after {
  background-image: url(/tanomu/assets/images/pc/recommend_bnr_slide_prev.png);
}

.recommend-bnr-slide-next:after {
  background-image: url(/tanomu/assets/images/pc/recommend_bnr_slide_next.png);
}

.recommend-bnr-slide-prev:hover:after,
.recommend-bnr-slide-next:hover:after {
  opacity: 0.7;
  transform: scale(1.1);
}

@media screen and (max-width: 1100px) {
  .recommend {
    padding: calc(55vw / 1100 * 100) 0 calc(120vw / 1100 * 100);
  }

  .recommend-haed {
    font-size: calc(24vw / 1100 * 100);
  }

  .recommend-bnr-area {
    width: calc(500vw / 1100 * 100);
    margin: calc(40vw / 1100 * 100) auto 0;
  }

  .recommend-bnr-slide-prev,
  .recommend-bnr-slide-next {
    width: calc(45vw / 1100 * 100);
  }

  .recommend-bnr-slide-prev {
    left: calc(-30vw / 1100 * 100);
  }

  .recommend-bnr-slide-next {
    right: calc(-30vw / 1100 * 100);
  }

  .recommend-bnr-slide-prev:after,
  .recommend-bnr-slide-next:after {
    width: calc(45vw / 1100 * 100);
    height: calc(45vw / 1100 * 100);
  }
}

@media screen and (max-width: 750px) {
  .recommend {
    padding: calc(45vw / 750 * 100) 0 calc(120vw / 750 * 100);
    overflow-x: hidden;
  }

  .recommend .inner {
    width: 100%;
  }

  .recommend-haed {
    font-size: calc(38vw / 750 * 100);
  }

  .recommend-bnr-area {
    width: calc(660vw / 750 * 100);
    margin: calc(40vw / 750 * 100) auto 0;
    overflow-x: visible;
  }

  .recommend-bnr-slide-prev,
  .recommend-bnr-slide-next {
    width: calc(45vw / 750 * 100);
  }

  .recommend-bnr-slide-prev {
    left: calc(-30vw / 750 * 100);
  }

  .recommend-bnr-slide-next {
    right: calc(-30vw / 750 * 100);
  }

  .recommend-bnr-slide-prev:after,
  .recommend-bnr-slide-next:after {
    width: calc(45vw / 750 * 100);
    height: calc(45vw / 750 * 100);
  }
}

/* footer 202604電話番号エリア追加改修　*/
.footer {
  background-color: #333;
  padding: 50px 0;
  color: #fff;
}

.footer .inner {
/*  width: 1050px;*/
  width: 1100px;
  display: flex;
  justify-content: space-between;
}

.footer-link-area {
/*  width: 715px;*/
  width: 730px;
  border-right: 1px solid #444;
}

.footer-link-head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-link-list-list {
  display: flex;
  flex-wrap: wrap;
}

.footer-link-list {
/*  width: 305px;*/
  margin: 5px 60px 5px 0;
}

.footer-link-list:first-child {
  margin-bottom: 30px;
}

.footer-link-item {
  padding: 4px 0;
}

.footer-link-item.new-tab::after {
  content: "";
  display: inline-block;
  background-image: url('/tanomu/assets/images/pc/icon_new-tab.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 12px;
  margin-left: 10px;
}

.footer-info-area {
  position: relative;
/*  width: 300px;*/
  width: 370px;
  padding: 0 0 50px 30px;
  box-sizing: border-box;
}

.footer-info-sns-list {
  display: flex;
  margin-top: 30px;
}

.footer-info-sns-item {
  width: 40px;
  border-radius: 40px;
  border: 1px solid #fff;
  background-color: #fff;
  margin-right: 15px;
}

.footer-info-copyright {
  position: absolute;
  bottom: 0;
/*  left: 50px;*/
  left: 30px;
  font-size: 13px;
  color: #999;
}

@media screen and (max-width: 1100px) {
  .footer {
    padding: calc(50vw / 1100 * 100) 0;
  }

  .footer .inner {
    width: calc(1050vw / 1100 * 100);
  }

  .footer-link-area {
    width: calc(715vw / 1100 * 100);
  }

  .footer-link-head {
    font-size: calc(18vw / 1100 * 100);
    margin-bottom: calc(10vw / 1100 * 100);
  }

  .footer-link-list {
  margin: 5px 40px 5px 0;
  }

  .footer-link-list:first-child {
    margin-bottom: calc(30vw / 1100 * 100);
  }

  .footer-link-item {
    font-size: calc(16vw / 1100 * 100);
    padding: calc(4vw / 1100 * 100) 0;
  }

  .footer-link-item.new-tab::after {
    width: calc(10vw / 1100 * 100);
    height: calc(12vw / 1100 * 100);
    margin-left: calc(10vw / 1100 * 100);
  }

  .footer-info-area {
    width: calc(300vw / 1100 * 100);
/*    padding: 0 0 calc(50vw / 1100 * 100) calc(50vw / 1100 * 100);*/
    padding: 0 0 calc(50vw / 1100 * 100) 0;
  }

  .footer-info-sns-list {
    margin-top: calc(30vw / 1100 * 100);
  }

  .footer-info-sns-item {
    width: calc(40vw / 1100 * 100);
    border-radius: calc(40vw / 1100 * 100);
    margin-right: calc(15vw / 1100 * 100);
  }

  .footer-info-copyright {
    left: calc(50vw / 1100 * 100);
    font-size: calc(13vw / 1100 * 100);
  }
}

@media screen and (max-width: 750px) {
  .footer {
    padding: calc(50vw / 750 * 100) 0;
  }

  .footer .inner {
    display: block;
    width: calc(670vw / 750 * 100);
  }

  .footer-link-list-list {
    display: block;
  }

  .footer-link-area {
    width: 100%;
    border-right: none;
    margin-bottom: calc(50vw / 750 * 100);
  }

  .footer-link-head {
    font-size: calc(24vw / 750 * 100);
    margin-bottom: calc(10vw / 750 * 100);
  }

  .footer-link-list {
    width: 100%;
  }

  .footer-link-list:first-child {
    margin-bottom: 0;
  }

  .footer-link-item {
    font-size: calc(24vw / 750 * 100);
    padding: calc(15vw / 750 * 100) 0;
    border-bottom: 1px solid #444;
  }

  .footer-link-item.new-tab::after {
    width: calc(20vw / 750 * 100);
    height: calc(22vw / 750 * 100);
    margin-left: calc(10vw / 750 * 100);
  }

  .footer-info-area {
    width: calc(320vw / 750 * 100);
    margin: 0 auto;
    padding: 0;
  }

  .footer-info-sns-list {
    margin-top: calc(30vw / 750 * 100);
    justify-content: center;
  }

  .footer-info-sns-item {
    width: calc(40vw / 750 * 100);
    border-radius: calc(40vw / 750 * 100);
    margin-right: calc(30vw / 750 * 100);
    font-size: 0;
  }

  .footer-info-copyright {
    position: static;
    font-size: calc(16vw / 750 * 100);
    text-align: center;
    margin-top: calc(20vw / 750 * 100);
  }
}


/* 202604 footer 電話番号エリア追加 */
.footer-info-logo img {
  max-width: 300px;
}
.footer-info-tel .m_top {
  margin-top: 1rem!important;
}
.footer-info-tel p {
  font-size: 0.8rem!important;
  line-height: 1.4rem!important;
  font-weight: 400!important;
}
.footer-info-tel p.tel_num {
  font-size: 1.6rem!important;
  line-height: 2.1rem!important;
  font-weight: 600!important;
}
@media screen and (max-width: 768px) {
  .footer-info-tel {
    display: none;
  }
}


/* common-sec */
.common-sec-head {
  font-size: 34px;
  font-weight: bold;
  color: #ed582d;
  text-align: center;
}

.common-sec-head .normal {
  color: #333;
}

/*202506追加 - H1～H3タグ修正*/
.about-example .common-sec-head,
.example .common-sec-head,
.case .common-sec-head,
.faq .common-sec-head {
  margin-bottom: 40px;
  font-size: 34px;
  font-weight: bold;
  color: #ed582d;
  text-align: center;
}

.common-sec-txt {
  margin-top: 20px;
  text-align: center;
}
/*202506追加 - H1～H3タグ修正*/
h2.common-sec-sub {
  margin-top: 60px;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: bold;
  color: #ed582d;
  text-align: center;
  border-bottom: 2px solid #dcdcdc
}

@media screen and (max-width: 1100px) {
  .common-sec-head {
    font-size: calc(34vw / 1100 * 100);
  }
  .about-example .common-sec-head,
  .example .common-sec-head,
  .case .common-sec-head,
  .faq .common-sec-head {
    font-size: calc(34vw / 1100 * 100);
    margin-bottom: calc(40vw / 1100 * 100);
  }

  .common-sec-txt {
    margin-top: calc(20vw / 1100 * 100);
  }
  h2.common-sec-sub {
    margin-top: calc(60vw / 1100 * 100);
    font-size: calc(24vw / 1100 * 100);
  }
}

@media screen and (max-width: 750px) {
  .common-sec-head {
    font-size: calc(50vw / 750 * 100);
  }
  .about-example .common-sec-head,
  .example .common-sec-head,
  .case .common-sec-head,
  .faq .common-sec-head {
    font-size: calc(50vw / 750 * 100);
    margin-bottom: calc(40vw / 750 * 100);
  }

  .common-sec-txt {
    margin-top: calc(40vw / 750 * 100);
    font-size: calc(28vw / 750 * 100);
  }

  h2.common-sec-sub {
    margin-top: calc(60vw / 750 * 100);
    font-size: calc(36vw / 750 * 100);
  }
}

/* pankuzu */
.pankuzu {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  width: 100%;
  height: 32px;
  margin-top: 60px;
  padding: 0 25px;
}

.pankuzu-list {
  display: flex;
  align-items: center;
}

.pankuzu-item {
  font-size: 10px;
}

.pankuzu-item+.pankuzu-item {
  margin-left: 5px;
}

.pankuzu-item+.pankuzu-item::before {
  content: ">";
  margin-right: 5px;
}

@media screen and (max-width: 1400px) {
  .pankuzu {
    height: calc(32vw / 1400 * 100);
    margin-top: calc(60vw / 1400 * 100);
    padding: 0 calc(25vw / 1400 * 100);
  }

  .pankuzu-item {
    font-size: calc(10vw / 1400 * 100);
  }

  .pankuzu-item+.pankuzu-item {
    margin-left: calc(5vw / 1400 * 100);
  }

  .pankuzu-item+.pankuzu-item::before {
    margin-right: calc(5vw / 1400 * 100);
  }
}

@media screen and (max-width: 750px) {
  .pankuzu {
    height: calc(80vw / 750 * 100);
    margin-top: calc(110vw / 750 * 100);
    padding: 0 calc(45vw / 750 * 100);
  }

  .pankuzu-item {
    font-size: calc(22vw / 750 * 100);
  }

  .pankuzu-item+.pankuzu-item {
    margin-left: calc(10vw / 750 * 100);
  }

  .pankuzu-item+.pankuzu-item::before {
    margin-right: calc(10vw / 750 * 100);
  }
}

/* 業種別ドロップダウンメニュー　ここから */

.header-nav-item_gyoshu:hover .dropdown__lists {
  visibility: visible;/*Gナビメニューにホバーしたら表示*/
  opacity: 1;/*不透明度1*/
}
.dropdown__lists {
  visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
  opacity: 0;/*不透明度0*/
  transition: all .5s;
  position: absolute;
  top: 30px;
}
.dropdown__list a:hover {
  color: #e8440b;
}
.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  background-color: #ffffff;
  height: 40px;
  padding:5px 15px;
}

/* 業種別ドロップダウンメニュー　ここまで */

.cv .logo {
  border: 1px solid #dfbbae !important;
  padding: 8px !important;
  background-color: #fff !important;
  border-radius: 5px !important;
}


/* cv-202510 TANOMU新フォーム - 202510新規追加 */
.cv-202510 {
  position: relative;
  background-color: #fff8f3;
  padding: 90px 0;
  width: 100%;
}

h2.cv-202510-head {
  margin: 0 auto 60px;
  width: 86%;
  max-width: 860px;
  padding: 0 1rem 10px;
  font-size: 34px;
  font-weight: bold;
  color: #333;
  text-align: center;
  line-height: 1.4;
  border-bottom: 3px solid #ed582d;
}
h2.cv-202510-head span {
  font-size: 24px;
}
.cv-202510 .inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 3%;
  width: 100%;
  max-width: 1024px;
}
.cv-202510 .inner .cv-202510_left {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: 55%;
  color: #333;
}
.cv-202510 .inner .cv-202510_right {
/*  align-self: center;*/
  align-self: flex-start;
  width: 45%;
  color: #333;
}

.cv-202510 .inner .cv-202510_left img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 450px;
  height: auto;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail {
  align-self: flex-start;
  margin: 30px auto;
  padding: 12px 15px;
  width: 100%;
  max-width: 450px;
  text-align: left;
  border: 1px solid #e9440d;
  border-radius: 14px;
  background: #fff;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail ul {
  align-self: center;
  margin-bottom: 10px;
  max-width: 460px;
  list-style: none;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail li {
  position: relative;
  margin-left: 12px;
  padding-left: 1.4em;
  font-size: 16px;
  text-align: left;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail li::before {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url(/tanomu/assets/images/li_marker.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}

.cv-202510 .inner .cv-202510_right .cv-202510-form {
  /* background-color: #fff;
  max-width: 750px;
  height: 620px;
  margin: 10px auto 0;
  padding-top: 50px;
  border-radius: 5px;*/
  width: 100%;
  height: 960px;
  margin: 0 auto;
}

.cv-202510 input,
.cv-202510 select {
  border: 1px solid #000;
}

.cv-202510 .cv-202510_support_l {
  margin: 0 auto;
  padding: 0 3%;
  width: 100%;
  max-width: 1024px;
}

.cv-202510 .cv-202510_support_l p {
  margin-bottom: 16px;
  padding-left: 2em;
  font-size: 18px;
  font-weight: bold;
}
.cv-202510 .cv-202510_support_l img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
  height: auto;
  border: 1px solid #e9440d;
  border-radius: 14px;
  background: #fff;
}

.for-sp { display: none; }


/*
.cv-202510-sub-head {
  font-size: 24px;
  font-weight: bold;
  margin-top: 55px;
  text-align: center;
}
.cv-202510-tel-txt-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-202510-tel-txt-icon {
  width: 23px;
  margin-right: 5px;
}

.cv-202510-tel-txt-num {
  font-size: 38px;
  font-weight: bold;
}

.cv-202510-tel-details {
  margin-top: 20px;
  line-height: 1.8;
}

.cv-202510-tel-notes {
  margin-top: 5px;
  font-weight: bold;
}
*/
@media screen and (max-width: 1100px) {
  .cv-202510 {
    padding: calc(110vw / 1100 * 100) 0 0;
  }
  h2.cv-202510-head {
    margin: 0 auto calc(80vw / 1100 * 100);
    width: calc(800vw / 1100 * 100);
    font-size: calc(34vw / 1100 * 100);
  }
/*  .cv-202510 .inner {
    max-width: 1000px;
  }*/
  .cv-202510 .inner .cv-202510_left img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  .cv-202510 .inner .cv-202510_right .cv-202510-form {
    width: 100%;
    height: 960px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .cv-202510 {
    margin: 0;
    padding: calc(110vw / 768 * 100) 0 0;
    width: 100%;
  }
  h2.cv-202510-head {
    margin: 0 auto 30px;
    padding: 0;
    width: 94%;
    font-size: calc(34vw / 768 * 100);
  }
  .cv-202510 .inner {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    width: 94%;
  }
  .cv-202510 .inner .cv-202510_left {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto calc(60vw / 768 * 100);
    width: 100%;
  }
  .cv-202510 .inner .cv-202510_right {
    align-self: center;
    margin: 0 auto 30px;
    width: 100%;
  }
  /*
  .cv-202510 .inner .cv-202510_left h3 {
    align-self: center;
    margin-bottom: calc(16vw / 768 * 100);
    font-size: calc(21vw / 768 * 100);
    width: 100%;
    text-align: center;
  }
  .cv-202510 .inner .cv-202510_left img {
    align-self: center;
    width: 94%;
    max-width: 600px;
    height: auto;
  }
  */
  .cv-202510 .inner .cv-202510_left .cv-202510_detail {
  align-self: center;
  margin: 20px auto;
  padding: 12px;
  width: 94%;
  max-width: 600px;
}
  .cv-202510 .inner .cv-202510_left .cv-202510_detail h3 {
  margin-bottom: 10px;
  font-size: calc(28vw / 768 * 100);
    font-weight: 700;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail ul {
  align-self: center;
  margin-bottom: 10px;
  list-style: none;
}
.cv-202510 .inner .cv-202510_left .cv-202510_detail li {
  position: relative;
  margin-left: 12px;
  padding-left: 1.2em;
  font-size: calc(16vw / 768 * 100);
  text-align: left;
}
/*
  .cv-202510 .inner .cv-202510_left ul {
    margin: 0 calc(30vw / 768 * 100) calc(30vw / 768 * 100);
    padding: 0 calc(30vw / 768 * 100);
    width: 100%;
  }
  .cv-202510 .inner .cv-202510_left li {
    font-size: calc(16vw / 768 * 100);
  }
*/
  .cv-202510 .inner .cv-202510_left .cv-202510_support {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 600px;
  }

  .cv-202510 .inner .cv-202510_left .cv-202510_support p {
    margin-bottom: calc(18vw / 768 * 100);
    padding: 0 3%;
    font-size: calc(21vw / 768 * 100);
    font-weight: bold;
  }
  .cv-202510 .inner .cv-202510_left .cv-202510_support img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 1px solid #e9440d;
    border-radius: 14px;
    background: #fff;
  }
  .for-sp { display: block; }
  .for-pc { display: none; }

  .cv-202510-form {
    height: 700px;
  }
}

@media screen and (max-width: 450px) {
  h2.cv-202510-head {
    font-size: calc(34vw / 450 * 100);
  }
  .cv-202510 .inner .cv-202510_left {
    margin: 0 auto calc(60vw / 450 * 100);
  }
  .cv-202510 .inner .cv-202510_left h3 {
    font-size: calc(24vw / 450 * 100);
  }
  .cv-202510 .inner .cv-202510_left img {
    align-self: center;
    width: 90%;
    max-width: 440px;
    height: auto;
  }
  .cv-202510 .inner .cv-202510_left ul {
    margin: 0 auto calc(30vw / 450 * 100);
    padding: 0 calc(30vw / 450 * 100);
    width: 100%;
  }
  .cv-202510 .inner .cv-202510_left li {
    font-size: calc(18vw / 450 * 100);
  }
  .cv-202510 .inner .cv-202510_left .cv-202510_support p {
    font-size: calc(24vw / 450 * 100);
  }
  .cv-202510 .inner .cv-202510_left .cv-202510_support img {
    width: 90%;
    max-width: 440px;
  }
  .cv-202510-form {
    height: 700px;
  }
}

/* 広告用footer  202511追加*/
.footer_ad {
  background-color: #333;
  padding: 30px 0;
  color: #fff;
}

.footer_ad .inner {
  width: 1050px;
}

.footer_ad-info-area {
  position: relative;
  width: 100%;
  padding: 0 0 10px;
  box-sizing: border-box;
}
.footer_ad-info-logo {
  margin: 0 auto;
  max-width: 300px;
}
.footer_ad-info-copyright {
  margin: 0 auto;
  padding: 10px 0 0;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.footer_ad-link-area {
  width: 100%;
}
ul.footer_ad-link-list {
  display: flex;
  justify-content: center;
/*  width: 305px;*/
  margin: 5px auto;
}
li.footer_ad-link-item {
  padding: 0 10px;
  font-size: 14px;
  border-right: solid 1px #fff;
}
li.footer_ad-link-item:last-child {
  border: none;
}
li.footer_ad-link-item.new-tab::after {
  content: "";
  display: inline-block;
  background-image: url('/tanomu/assets/images/pc/icon_new-tab.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  width: 10px;
  height: 12px;
  margin-left: 6px;
}

@media screen and (max-width: 1100px) {
  .footer_ad {
    padding: calc(30vw / 1100 * 100) 0;
  }
  .footer_ad .inner {
    width: calc(1050vw / 1100 * 100);
  }
}

@media screen and (max-width: 750px) {
  .footer_ad {
    padding: calc(30vw / 750 * 100) 0;
  }
  .footer_ad .inner {
    width: 100%;
  }
  
  ul.footer_ad-link-list {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    justify-content: center;
    margin: 5px auto;
    width: 100%;
  }
  li.footer_ad-link-item {
    margin: 0 auto;
    padding: 8px 0;
    font-size: 13px;
    border: none;
  }

  li.footer_ad-link-item.new-tab::after {
    width: calc(20vw / 750 * 100);
    height: calc(22vw / 750 * 100);
    margin-left: calc(10vw / 750 * 100);
  }
}

/** 202511 魚奏監修WP DLページ導線 */
@media screen and (max-width: 820.98px) {
  ._pc {
    display: none !important;
  }
}
@media screen and (min-width: 821px) {
  ._sp {
    display: none !important;
  }
}
.Button {
  --text-color: #fff;
  --bg-color: #292929;
  --border-color: #292929;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 4px solid var(--border-color);
}
:global(.bAndroid) .Button {
  font-weight: 800;
}
@media screen and (min-width: 821px) {
  .Button {
    padding-block: 1.3125rem;
    padding-inline: 2rem;
    gap: 0.625rem;
    font-size: 1rem;
    transition: 0.5s cubic-bezier(0.14, 0.785, 0.19, 1);
  }
}
@media screen and (min-width: 821px) and (max-width: 900px) {
  .Button {
    font-size: 10px;
  }
}
@media screen and (max-width: 820.98px) {
  .Button {
    padding-block: 1rem;
    padding-inline: 2rem;
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.3;
  }
}
.Button-arrowContainer {
  position: relative;
  transition: 0.5s cubic-bezier(0.14, 0.785, 0.19, 1);
}
@media screen and (max-width: 820.98px) {
  .Button-arrowContainer {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.Button-arrow {
  transition: color 0.5s cubic-bezier(0.14, 0.785, 0.19, 1),
    fill 0.5s cubic-bezier(0.14, 0.785, 0.19, 1);
}
@media screen and (max-width: 820.98px) {
  .Button-arrow {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}
[data-whatintent="mouse"] .Button.-fill:hover {
  --text-color: #292929;
  --bg-color: #fff;
}
[data-whatintent="mouse"] .Button.-fill:hover .Button-arrowContainer {
  transform: translate(5px);
}
[data-whatintent="mouse"] .Button.-fill:hover .Button-arrow {
  color: var(--text-color);
  fill: var(--text-color);
}
[data-whatintent="mouse"] .Button.-fill.-blue:hover .Button-arrow,
[data-whatintent="mouse"] .Button.-fill.-green:hover .Button-arrow,
.Button.-fill.-white .Button-arrow,
[data-whatintent="mouse"] .Button.-fill.-white:hover .Button-arrow {
  color: #ff8c00;
  fill: #ff8c00;
}
.Button.-border {
  --text-color: #292929;
  --bg-color: #fff;
}
.Button.-border .Button-arrowContainer {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 821px) {
  .Button.-border .Button-arrowContainer {
    width: 1.25rem;
    height: 1rem;
  }
}
@media screen and (min-width: 821px) {
  .Button.-border .Button-arrowInner {
    width: 1.25rem;
    height: 1rem;
    transition: 0.5s cubic-bezier(0.14, 0.785, 0.19, 1);
  }
}
.Button.-border .Button-arrow {
  color: var(--text-color);
}
[data-whatintent="mouse"] .Button.-border:hover {
  --bg-color: #e8e8e8;
}
[data-whatintent="mouse"] .Button.-border:hover .Button-arrowInner {
  transform: translateY(1rem);
}
@media screen and (min-width: 821px) {
  .Button.-document .Button-arrowContainer {
    width: 1.5625rem;
    height: 2rem;
  }
}
@media screen and (max-width: 820.98px) {
  .Button.-document .Button-arrowContainer {
    width: 1.5625rem;
    height: 2rem;
  }
}
.Button.-document .Button-icon {
  color: var(--text-color);
  fill: var(--text-color);
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
[data-whatintent="mouse"] .Button.-document:hover {
  --text-color: #292929;
  --bg-color: #fff;
}
[data-whatintent="mouse"] .Button.-document:hover .Button-arrowContainer {
  transform: translate(5px);
}
[data-whatintent="mouse"] .Button.-document:hover .Button-icon {
  color: var(--text-color);
  fill: var(--text-color);
}
.Button.-blue {
  --bg-color: #007cff;
  --border-color: #007cff;
}
[data-whatintent="mouse"] .Button.-blue:hover {
  --bg-color: #fff;
  --text-color: #007cff;
}
.Button.-green {
  --bg-color: #7ac41f;
  --border-color: #7ac41f;
}
[data-whatintent="mouse"] .Button.-green:hover {
  --bg-color: #fff;
  --text-color: #7ac41f;
}
.Button.-orange {
  --bg-color: #ff8c00;
  --border-color: #ff8c00;
}
[data-whatintent="mouse"] .Button.-orange:hover {
  --bg-color: #fff;
  --text-color: #ff8c00;
}
.Button.-white {
  --bg-color: #fff;
  --border-color: #fff;
  --text-color: #292929;
}
@media screen and (min-width: 821px) {
  .Button.-white {
    box-shadow: 0 0 0.9375rem #004a7f80;
  }
}
[data-whatintent="mouse"] .Button.-white:hover {
  --text-color: #007cff;
}
.Button.-orangeBorderWhite {
  --bg-color: #ff8c00;
  --border-color: #fff;
  --text-color: #fff;
}
[data-whatintent="mouse"] .Button.-orangeBorderWhite:hover {
  --border-color: #ff8c00;
  --text-color: #ff8c00;
}
[data-whatintent="mouse"] .Button.-hover-green:hover {
  --text-color: #7ac41f;
}
.Button.-isReverse {
  flex-direction: row-reverse;
}
@media screen and (min-width: 821px) {
  .TopDocument {
    margin: 2rem 0 8rem;
    padding-inline: 2.875rem;
  }
}
@media screen and (max-width: 820.98px) {
  .TopDocument {
    margin: 1rem 0 4rem;
  }
}
.TopDocument-inner {
  width: 100%;
}
@media screen and (min-width: 821px) {
  .TopDocument-inner {
/*    max-width: 78rem;*/
    max-width: 62rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 820.98px) {
  .TopDocument-inner {
    max-width: 22rem;
/*    padding-inline: 1.25rem;*/
    padding-inline: 2.25rem;
    margin: 0 auto;
}
.TopDocument-banner {
  position: relative;
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 821px) {
  .TopDocument-banner {
    border-radius: 1.875rem;
    box-shadow: 0 0.25rem 3.125rem #007cff33;
  }
}
@media screen and (max-width: 820.98px) {
  .TopDocument-banner {
    border-radius: 1.25rem;
    box-shadow: 0 0.25rem 3.125rem #007cff33;
  }
}
.TopDocument-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.TopDocument-buttonContainer {
  position: absolute;
}
@media screen and (min-width: 821px) {
  .TopDocument-buttonContainer {
    width: 28.25rem;
    bottom: 7.25rem;
    right: 10.1875rem;
  }
}
@media screen and (max-width: 820.98px) {
  .TopDocument-buttonContainer {
    width: 19.375rem;
    height: 4.375rem;
    bottom: 10.75rem;
    right: 14.4375rem;
  }
}
.TopDocument-buttonContainer {
  position: absolute;
}
@media screen and (min-width: 821px) {
  .TopDocument-buttonContainer {
    width: 28.25rem;
    bottom: 7.25rem;
    right: 10.1875rem;
  }
}
@media screen and (max-width: 820.98px) {
  .TopDocument-buttonContainer {
    width: 19.375rem;
    height: 4.375rem;
    bottom: 10.75rem;
    right: 14.4375rem;
  }
}

