@charset "UTF-8";

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}

img {
  width: 100%;
}

a img:hover {
  opacity: 0.7;
}

.show-sp {
  display: none;
}

.btn-effects {
  transition: all 0.5s;
  cursor: pointer;
}

.btn-effects:hover {
  opacity: 0.7;
}

.inner {
  width: 950px;
  margin: 0 auto;
}

.acc-btn {
  cursor: pointer;
}

.acc-cnt {
  display: none;
}

.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;
}

@media (max-width: 1200px) {
  body {
    font-size: calc(22vw / 1200 * 100);
  }

  .inner {
    width: calc(950vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  body {
    font-size: calc(22vw / 750 * 100);
  }

  .show-pc {
    display: none;
  }

  .show-sp {
    display: block;
  }

  .inner {
    width: calc(660vw / 750 * 100);
  }
}

/* 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);
  }
}

/* swiper */
.swiper-slide {
  cursor: pointer;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: transparent;
  vertical-align: middle;
  border: 2px solid #fff;
  opacity: 1;
}


.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  width: 12px;
  height: 12px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}

.swiper-button-prev::after {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
}

.swiper-button-next::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

@media (max-width: 1200px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: calc(10vw / 1200 * 100);
    height: calc(10vw / 1200 * 100);
    margin: 0 calc(5vw / 1200 * 100);
    border: calc(2vw / 1200 * 100) solid #fff;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: calc(12vw / 1200 * 100);
    height: calc(12vw / 1200 * 100);
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: calc(12vw / 1200 * 100);
    height: calc(12vw / 1200 * 100);
  }

  .swiper-button-prev::after {
    border-bottom: calc(3vw / 1200 * 100) solid #fff;
    border-left: calc(3vw / 1200 * 100) solid #fff;
  }

  .swiper-button-next::after {
    border-top: calc(3vw / 1200 * 100) solid #fff;
    border-right: calc(3vw / 1200 * 100) solid #fff;
  }
}

@media (max-width: 750px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: calc(20vw / 750 * 100);
    height: calc(20vw / 750 * 100);
    margin: 0 calc(5vw / 750 * 100);
    border: calc(2vw / 750 * 100) solid #fff;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: calc(12vw / 750 * 100);
    height: calc(12vw / 750 * 100);
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: calc(22vw / 750 * 100);
    height: calc(22vw / 750 * 100);
  }

  .swiper-button-prev::after {
    border-bottom: calc(5vw / 750 * 100) solid #fff;
    border-left: calc(5vw / 750 * 100) solid #fff;
  }

  .swiper-button-next::after {
    border-top: calc(5vw / 750 * 100) solid #fff;
    border-right: calc(5vw / 750 * 100) solid #fff;
  }
}

/* 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: 1160px;
}

/*20240822 改修*/
.header-logo {
  width: 186px;
  /*width: 283px;*/
}

.header-btn {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/header_btn_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 268px;
  height: 36px;
}

.header-btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 1200px) {
  .header {
    height: calc(60vw / 1200 * 100);
    box-shadow: 0 0 calc(16vw / 1200 * 100) calc(-6vw / 1200 * 100) #b5b5b5;
  }

  .header .inner {
    width: calc(1160vw / 1200 * 100);
  }

  .header-logo {
    width: calc(186vw / 1200 * 100);
    /*width: calc(283vw / 1200 * 100);*/
  }

  .header-btn {
    width: calc(268vw / 1200 * 100);
    height: calc(36vw / 1200 * 100);
  }

  .header-btn-inner {
    font-size: calc(16vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .header {
    height: calc(107vw / 750 * 100);
    box-shadow: 0 0 calc(16vw / 750 * 100) calc(-6vw / 750 * 100) #b5b5b5;
  }

  .header .inner {
    width: calc(705vw / 750 * 100);
  }

  .header-logo {
    width: calc(222vw / 750 * 100);
    /*width: calc(417vw / 750 * 100);*/
  }

  .header-btn {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/header_btn_bg.png');
    width: calc(216vw / 750 * 100);
    height: calc(68vw / 750 * 100);
  }

  .header-btn-inner {
    width: calc(218vw / 750 * 100);
    font-size: calc(19vw / 750 * 100);
    text-align: center;
  }
}

/* fv */
.fv {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/fv_bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
}

.fv .inner {
  position: relative;
  width: 1200px;
  height: 584px;
}

.fv-logo {
  position: absolute;
  top: 270px;
  left: 170px;
  width: 445px;
}

.fv-main-txt {
  position: absolute;
  top: 85px;
  left: 176px;
  display: inline-block;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.fv-sub-txt {
  position: absolute;
  top: 209px;
  left: 251px;
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
}

.fv-main-img {
  position: absolute;
  top: 65px;
  left: 710px;
  width: 220px;
}

.fv-bubble {
  position: absolute;
  top: 100px;
  left: 967px;
  display: inline-block;
  font-size: 22px;
  color: #fff;
}

.fv-bubble::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: -16px;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/fv_line.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 128px;
  height: 89px;
}

.fv-authority {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 960px;
  width: 128px;
  height: 128px;
  background-color: #ffd73a;
  border-radius: 50%;
}

.fv-authority_01 {
  top: 203px;
}

.fv-authority_02 {
  top: 350px;
}

.fv-authority-inner {



  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.fv-authority_01 .num {
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.fv-authority_02 .num {
  font-size: 52px;
  line-height: 1;
}

.fv-authority-inner .large {
  font-size: 28px;
}

@media (max-width: 1200px) {
  .fv {
    margin-top: calc(60vw / 1200 * 100);
  }

  .fv .inner {
    width: calc(1200vw / 1200 * 100);
    height: calc(584vw / 1200 * 100);
  }

  .fv-logo {
    top: calc(270vw / 1200 * 100);
    left: calc(170vw / 1200 * 100);
    width: calc(445vw / 1200 * 100);
  }

  .fv-main-txt {
    top: calc(85vw / 1200 * 100);
    left: calc(176vw / 1200 * 100);
    font-size: calc(42vw / 1200 * 100);
  }

  .fv-sub-txt {
    top: calc(209vw / 1200 * 100);
    left: calc(251vw / 1200 * 100);
    font-size: calc(25vw / 1200 * 100);
  }

  .fv-main-img {
    top: calc(65vw / 1200 * 100);
    left: calc(710vw / 1200 * 100);
    width: calc(220vw / 1200 * 100);
  }

  .fv-bubble {
    top: calc(100vw / 1200 * 100);
    left: calc(967vw / 1200 * 100);
    font-size: calc(22vw / 1200 * 100);
  }

  .fv-bubble::after {
    bottom: calc(-25vw / 1200 * 100);
    left: calc(-16vw / 1200 * 100);
    width: calc(128vw / 1200 * 100);
    height: calc(89vw / 1200 * 100);
  }

  .fv-authority {
    left: calc(960vw / 1200 * 100);
    width: calc(128vw / 1200 * 100);
    height: calc(128vw / 1200 * 100);
  }

  .fv-authority_01 {
    top: calc(203vw / 1200 * 100);
  }

  .fv-authority_02 {
    top: calc(350vw / 1200 * 100);
  }

  .fv-authority-inner {
    font-size: calc(16vw / 1200 * 100);
  }

  .fv-authority_01 .num {
    font-size: calc(34vw / 1200 * 100);
  }

  .fv-authority_02 .num {
    font-size: calc(52vw / 1200 * 100);
  }

  .fv-authority-inner .large {
    font-size: calc(28vw / 1200 * 100);
  }

}

@media (max-width: 750px) {
  .fv {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/fv_bg.jpg');
    background-position: top center;
    height: calc(1350vw / 750 * 100);
    margin-top: calc(107vw / 750 * 100);
  }

  .fv .inner {
    width: 100%;
    height: 100%;
  }

  .fv .inner::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 100%;
    height: calc(216vw / 750 * 100);
    z-index: 1;
  }

  .fv-logo {
    top: calc(295vw / 750 * 100);
    left: calc(89vw / 750 * 100);
    width: calc(548vw / 750 * 100);
  }

  .fv-main-txt {
    top: calc(50vw / 750 * 100);
    left: 0;
    right: 0;
    font-size: calc(55vw / 750 * 100);
  }

  .fv-sub-txt {
    top: calc(220vw / 750 * 100);
    left: 0;
    right: 0;
    font-size: calc(36vw / 750 * 100);
    text-align: center;
  }

  .fv-main-img {
    top: calc(473vw / 750 * 100);
    left: calc(77vw / 750 * 100);
    width: calc(389vw / 750 * 100);
  }

  .fv-bubble {
    top: calc(545vw / 750 * 100);
    left: calc(519vw / 750 * 100);
    font-size: calc(30vw / 750 * 100);
  }

  .fv-bubble::after {
    bottom: calc(-42vw / 750 * 100);
    left: calc(-23vw / 750 * 100);
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/fv_line.png');
    width: calc(181vw / 750 * 100);
    height: calc(131vw / 750 * 100);
  }

  .fv-authority {
    left: calc(497vw / 750 * 100);
    width: calc(189vw / 750 * 100);
    height: calc(189vw / 750 * 100);
  }

  .fv-authority_01 {
    top: calc(683vw / 750 * 100);
  }

  .fv-authority_02 {
    top: calc(890vw / 750 * 100);
  }

  .fv-authority-inner {
    font-size: calc(24vw / 750 * 100);
    line-height: 1;
  }

  .fv-authority_01 .num {
    font-size: calc(48vw / 750 * 100);
    line-height: 1.2;
  }

  .fv-authority_02 .num {
    font-size: calc(72vw / 750 * 100);
  }

  .fv-authority-inner .large {
    font-size: calc(44vw / 750 * 100);
  }
}

/* notice */
.notice {
  background-color: #e5e5e5;
  padding: 15px 0;
}

.notice-txt {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.notice-txt a {
  text-decoration: underline;
}

.notice-txt a:hover {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .notice {
    padding: calc(15vw / 1200 * 100) 0;
  }

  .notice-txt {
    font-size: calc(22vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .notice {
    padding: calc(40vw / 750 * 100) 0;
  }

  .notice-txt {
    font-size: calc(27vw / 750 * 100);
  }
}

/* campany-logo-area */
.campany-logo-area {
  width: 100%;
  padding: 10px 0;
  overflow-x: hidden;
}

.campany-logo-list {
  display: flex;
}

.campany-logo-item {
  animation: slide-loop 25s infinite linear 0.5s both;
}

.reverse .campany-logo-item {
  animation: slide-loop-reverse 25s infinite linear 0.5s both;
}

.campany-logo-item img {
  width: auto;
  height: 77px;
}

@media (max-width: 1200px) {
  .campany-logo-area {
    padding: calc(10vw / 1200 * 100) 0;
  }

  .campany-logo-item img {
    height: calc(77vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .campany-logo-area {
    padding: calc(40vw / 750 * 100) 0;
  }

  .campany-logo-item img {
    height: calc(77vw / 750 * 100);
  }
}

/* task */
.task {
  padding: 50px 0 80px;
  text-align: center;
}

.task-head {
  font-size: 32px;
  font-weight: bold;
}

.task-head .accent {
  font-size: 45px;
  color: #ed582d;
}

.task-sub-head {
  font-size: 32px;
  font-weight: bold;
  margin-top: 50px;
}

.task-sub-head .accent {
  color: #ed582d;
}

.task-bubble-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}

.task-bubble {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 301px;
  height: 208px;
  opacity: 0;
}

.task-bubble:nth-child(1) {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/task_bubble_01.png');
}

.task-bubble:nth-child(2) {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/task_bubble_02.png');
}

.task-bubble:nth-child(3) {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/task_bubble_03.png');
}

.scroll-anime-start .task-bubble:nth-child(1) {
  animation: fade-in-bottom 0.5s 0.5s forwards;
}

.scroll-anime-start .task-bubble:nth-child(2) {
  animation: fade-in-bottom 0.5s 0.7s forwards;
}

.scroll-anime-start .task-bubble:nth-child(3) {
  animation: fade-in-bottom 0.5s 0.9s forwards;
}

.task-bubble-inner {
  font-size: 18px;
  font-weight: bold;
  transform: translateY(-30px);
}

@media (max-width: 1200px) {
  .task {
    padding: calc(50vw / 1200 * 100) 0 calc(80vw / 1200 * 100);
  }

  .task-head {
    font-size: calc(32vw / 1200 * 100);
  }

  .task-head .accent {
    font-size: calc(45vw / 1200 * 100);
  }

  .task-sub-head {
    font-size: calc(32vw / 1200 * 100);
    margin-top: calc(50vw / 1200 * 100);
  }

  .task-bubble-list {
    margin-top: calc(70vw / 1200 * 100);
  }

  .task-bubble {
    width: calc(301vw / 1200 * 100);
    height: calc(208vw / 1200 * 100);
  }

  .task-bubble-inner {
    font-size: calc(18vw / 1200 * 100);
    transform: translateY(calc(-30vw / 1200 * 100));
  }
}

@media (max-width: 750px) {
  .task {
    padding: calc(70vw / 750 * 100) 0 calc(60vw / 750 * 100);
  }

  .task-head {
    font-size: calc(41vw / 750 * 100);
  }

  .task-head .accent {
    font-size: calc(56vw / 750 * 100);
    line-height: 1.4;
  }

  .task-sub-head {
    font-size: calc(46vw / 750 * 100);
    margin-top: calc(50vw / 750 * 100);
  }

  .task-bubble-list {
    display: block;
    margin-top: calc(85vw / 750 * 100);
  }

  .task-bubble {
    background-size: contain;
    width: calc(660vw / 750 * 100);
    height: calc(168vw / 750 * 100);
    margin-bottom: calc(25vw / 750 * 100);
  }

  .task-bubble:nth-child(1) {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/task_bubble_01.png');
  }

  .task-bubble:nth-child(even) {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/task_bubble_02.png');
  }

  .task-bubble:nth-child(3) {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/task_bubble_03.png');
  }

  .task-bubble-inner {
    font-size: calc(28vw / 750 * 100);
    transform: translateY(calc(-17vw / 750 * 100));
  }
}

/* solution */
.solution {
  background-color: #ffe4d4;
  padding: 75px 0;
}

.solution-head {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.solution-head .accent {
  color: #ed582d;
}

.solution-box-list {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}

.solution-box {
  background-color: #fff;
  width: 295px;
  padding: 30px 0;
  border-radius: 10px;
  opacity: 0;
}

.scroll-anime-start .solution-box:nth-child(1) {
  animation: fade-in-bottom 0.5s 0.5s forwards;
}

.scroll-anime-start .solution-box:nth-child(2) {
  animation: fade-in-bottom 0.5s 0.7s forwards;
}

.scroll-anime-start .solution-box:nth-child(3) {
  animation: fade-in-bottom 0.5s 0.9s forwards;
}

.solution-box-head {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.solution-box-head .accent {
  color: #ed582d;
}

.solution-box-img {
  margin: 30px auto;
}

.solution-box-txt {
  width: 230px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .solution {
    padding: calc(75vw / 1200 * 100) 0;
  }

  .solution-head {
    font-size: calc(42vw / 1200 * 100);
  }

  .solution-box-list {
    margin-top: calc(45vw / 1200 * 100);
  }

  .solution-box {
    width: calc(295vw / 1200 * 100);
    padding: calc(30vw / 1200 * 100) 0;
    border-radius: calc(15vw / 1200 * 100);
  }

  .solution-box-head {
    font-size: calc(22vw / 1200 * 100);
  }

  .solution-box-img {

    margin: calc(30vw / 1200 * 100) auto;
  }

  .solution-box-txt {
    width: calc(230vw / 1200 * 100);
    font-size: calc(16vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .solution {
    padding: calc(105vw / 750 * 100) 0 calc(90vw / 750 * 100);
  }

  .solution-head {
    font-size: calc(50vw / 750 * 100);
    line-height: 1.6;
  }

  .solution-box-list {
    display: block;
    margin-top: calc(65vw / 750 * 100);
  }

  .solution-box {
    width: 100%;
    margin-bottom: calc(60vw / 750 * 100);
    padding: calc(50vw / 750 * 100) 0;
    border-radius: calc(10vw / 750 * 100);
  }

  .solution-box-head {
    font-size: calc(46vw / 750 * 100);
  }

  .solution-box-img {
    margin: 0 auto;
  }

  .solution-box-txt {
    width: calc(570vw / 750 * 100);
    font-size: calc(28vw / 750 * 100);
  }
}

/* usage */
.usage {
  background-image: linear-gradient(-129deg, rgba(242, 157, 66, 0.99608) 0%, rgb(255, 129, 46) 43%, rgb(246, 99, 19) 99%, rgb(246, 99, 19) 100%);
  padding: 90px 0 105px;
}

.usage .inner {
  width: 870px;
}

.usage-sub-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/usage_sub_head_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 334px;
  height: 57px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: bold;
  color: #fc8a35;
  text-align: center;
}

.usage-head {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.usage-box {
  background-color: #fff;
  margin-top: 50px;
  padding: 25px 40px 40px;
  border-radius: 10px;
}

.usage-box-txt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.usage-box-img {
  margin: 20px auto 0;
}

@media (max-width: 1200px) {
  .usage {
    padding: calc(90vw / 1200 * 100) 0 calc(105vw / 1200 * 100);
  }

  .usage .inner {
    width: calc(870vw / 1200 * 100);
  }

  .usage-sub-head {
    width: calc(334vw / 1200 * 100);
    height: calc(57vw / 1200 * 100);
    font-size: calc(24vw / 1200 * 100);
  }

  .usage-head {
    font-size: calc(42vw / 1200 * 100);
    margin-top: calc(20vw / 1200 * 100);
  }

  .usage-box {
    margin-top: calc(50vw / 1200 * 100);
    padding: calc(25vw / 1200 * 100) calc(40vw / 1200 * 100) calc(40vw / 1200 * 100);
    border-radius: calc(10vw / 1200 * 100);
  }

  .usage-box-txt {
    font-size: calc(16vw / 1200 * 100);
  }

  .usage-box-img {
    margin: calc(20vw / 1200 * 100) auto 0;
  }
}

@media (max-width: 750px) {
  .usage {
    padding: calc(115vw / 750 * 100) 0 calc(125vw / 750 * 100);
  }

  .usage .inner {
    width: calc(660vw / 750 * 100);
  }

  .usage-sub-head {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/usage_sub_head_bg.png');
    width: calc(485vw / 750 * 100);
    height: calc(82vw / 750 * 100);
    font-size: calc(34vw / 750 * 100);
  }

  .usage-head {
    font-size: calc(54vw / 750 * 100);
    margin-top: calc(50vw / 750 * 100);
    line-height: 1.3;
  }

  .usage-box {
    margin-top: calc(70vw / 750 * 100);
    padding: calc(60vw / 750 * 100) calc(45vw / 750 * 100) calc(80vw / 750 * 100);
    border-radius: calc(10vw / 750 * 100);
  }

  .usage-box-txt {
    font-size: calc(27vw / 750 * 100);
    text-align: left;
  }

  .usage-box-img {
    margin: calc(50vw / 750 * 100) auto 0;
  }
}

/* operation */
.operation {
  padding: 100px 0 30px;
}

.operation .inner {
  width: 1100px;
}

.operation-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.operation-box+.operation-box {
  margin-top: 110px;
}

.operation-box:nth-child(even) {
  flex-direction: row-reverse;
}

.operation-box-txt-area {
  padding-left: 70px;
}

.operation-box:nth-child(even) .operation-box-txt-area {
  padding-left: 0;
  padding-right: 70px;
}


.operation-box-bubble {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #ed582d;
  height: 49px;
  padding: 0 20px;
  transform: translateX(22px);
}

.operation-box-bubble::before,
.operation-box-bubble::after {
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 17px;
  height: 49px;
}

.operation-box-bubble::before {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/operation_bubble_left.png');
  left: -16px;
}

.operation-box-bubble::after {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/operation_bubble_right.png');
  right: -16px;
}

.operation-box-bubble-inner {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

.operation-box-bubble-inner::after {
  content: "";
  display: block;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/operation_bubble_bottom.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  width: 17px;
  height: 9px;
  margin: 0 auto;
}

.operation-box-head {
  font-size: 42px;
  font-weight: bold;
  margin-top: 25px;
  line-height: 1.4;
}

.operation-box-txt {
  font-size: 16px;
  width: 380px;
  margin-top: 17px;
  line-height: 1.7;
}

.operation-box-img-area {
  position: relative;
  width: 500px;
}

.operation-box-slide-area {
  width: 411px;
  transform: translateX(52px);
  overflow-x: hidden;
}

.operation-box-img-area::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background-color: #fff2ea;
  width: 100%;
  height: 204px;
  border-radius: 100px 0 0 0;
  z-index: -1;
}

.operation-box:nth-child(even) .operation-box-img-area::after {
  border-radius: 0 100px 0 0;
}

.operation-box-img {
  transform: translateY(-30px);
}

.operation-box-slide-pagination.swiper-pagination {
  bottom: -40px;
}

.operation-box-slide-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  border: 2px solid #ff734c;
}

.operation-box-slide-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #ff734c;
}

.operation-box-slide-prev,
.operation-box-slide-next {
  bottom: -33px;
}

.operation-box-slide-prev {
  left: 153px;
}

.operation-box-slide-next {
  right: 153px;
}

.operation-box-slide-prev::after {
  border-bottom: 3px solid #ff734c;
  border-left: 3px solid #ff734c;
}

.operation-box-slide-next::after {
  border-top: 3px solid #ff734c;
  border-right: 3px solid #ff734c;
}

@media (max-width: 1200px) {
  .operation {
    padding: calc(100vw / 1200 * 100) 0 calc(30vw / 1200 * 100);
  }

  .operation .inner {
    width: calc(1100vw / 1200 * 100);
  }

  .operation-box+.operation-box {
    margin-top: calc(110vw / 1200 * 100);
  }

  .operation-box-txt-area {
    padding-left: calc(70vw / 1200 * 100);
  }

  .operation-box:nth-child(even) .operation-box-txt-area {
    padding-right: calc(70vw / 1200 * 100);
  }


  .operation-box-bubble {
    height: calc(49vw / 1200 * 100);
    padding: 0 calc(20vw / 1200 * 100);
    transform: translateX(calc(22vw / 1200 * 100));
  }

  .operation-box-bubble::before,
  .operation-box-bubble::after {
    width: calc(17vw / 1200 * 100);
    height: calc(49vw / 1200 * 100);
  }

  .operation-box-bubble::before {
    left: calc(-16vw / 1200 * 100);

  }

  .operation-box-bubble::after {
    right: calc(-16vw / 1200 * 100);
  }

  .operation-box-bubble-inner {
    font-size: calc(26vw / 1200 * 100);
  }

  .operation-box-bubble-inner::after {
    bottom: calc(-13vw / 1200 * 100);
    width: calc(17vw / 1200 * 100);
    height: calc(9vw / 1200 * 100);
  }

  .operation-box-head {
    font-size: calc(42vw / 1200 * 100);
    margin-top: calc(25vw / 1200 * 100);
  }

  .operation-box-txt {
    font-size: calc(16vw / 1200 * 100);
    width: calc(380vw / 1200 * 100);
    margin-top: calc(17vw / 1200 * 100);
  }

  .operation-box-img-area {
    width: calc(500vw / 1200 * 100);
  }

  .operation-box-slide-area {
    width: calc(411vw / 1200 * 100);
    transform: translateX(calc(52vw / 1200 * 100));
  }

  .operation-box-img-area::after {
    height: calc(204vw / 1200 * 100);
    border-radius: calc(100vw / 1200 * 100) 0 0 0;
  }

  .operation-box:nth-child(even) .operation-box-img-area::after {
    border-radius: 0 calc(100vw / 1200 * 100) 0 0;
  }

  .operation-box-img {
    transform: translateY(calc(-30vw / 1200 * 100));
  }

  .operation-box-slide-pagination.swiper-pagination {
    bottom: calc(-40vw / 1200 * 100);
  }

  .operation-box-slide-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    border: calc(2vw / 1200 * 100) solid #ff734c;
  }

  .operation-box-slide-prev,
  .operation-box-slide-next {
    bottom: calc(-33vw / 1200 * 100);
  }

  .operation-box-slide-prev {
    left: calc(153vw / 1200 * 100);
  }

  .operation-box-slide-next {
    right: calc(153vw / 1200 * 100);
  }

  .operation-box-slide-prev::after {
    border-bottom: calc(3vw / 1200 * 100) solid #ff734c;
    border-left: calc(3vw / 1200 * 100) solid #ff734c;
  }

  .operation-box-slide-next::after {
    border-top: calc(3vw / 1200 * 100) solid #ff734c;
    border-right: calc(3vw / 1200 * 100) solid #ff734c;
  }
}

@media (max-width: 750px) {
  .operation {
    padding: calc(120vw / 750 * 100) 0 calc(30vw / 750 * 100);
  }

  .operation .inner {
    width: 100%;
  }

  .operation-box {
    display: flex;
    flex-direction: column;
  }

  .operation-box+.operation-box {
    margin-top: calc(155vw / 750 * 100);
  }

  .operation-box:first-child+.operation-box {
    margin-top: calc(195vw / 750 * 100);
  }

  .operation-box:nth-child(even) {
    flex-direction: column;
  }

  .operation-box-txt-area {
    padding-left: 0;
    width: calc(660vw / 750 * 100);
    margin: 0 auto;
  }

  .operation-box:nth-child(even) .operation-box-txt-area {
    padding-right: 0;
  }


  .operation-box-bubble {
    height: calc(63vw / 750 * 100);
    padding: 0 calc(20vw / 750 * 100);
    transform: translateX(calc(22vw / 750 * 100));
  }

  .operation-box-bubble::before,
  .operation-box-bubble::after {
    width: calc(22vw / 750 * 100);
    height: calc(63vw / 750 * 100);
  }

  .operation-box-bubble::before {
    background-image: url('/web/jp/asp/seller/images/tanomu/pc/operation_bubble_left.png');
    left: calc(-21vw / 750 * 100);
  }

  .operation-box-bubble::after {
    background-image: url('/web/jp/asp/seller/images/tanomu/pc/operation_bubble_right.png');
    right: calc(-21vw / 750 * 100);
  }

  .operation-box-bubble-inner {
    font-size: calc(34vw / 750 * 100);
  }

  .operation-box-bubble-inner::after {
    display: block;
    background-image: url('/web/jp/asp/seller/images/tanomu/pc/operation_bubble_bottom.png');
    bottom: calc(-16vw / 750 * 100);
    width: calc(22vw / 750 * 100);
    height: calc(11vw / 750 * 100);
  }

  .operation-box-head {
    font-size: calc(52vw / 750 * 100);
    margin-top: calc(25vw / 750 * 100);
  }

  .operation-box-txt {
    font-size: calc(28vw / 750 * 100);
    width: 100%;
    margin-top: calc(25vw / 750 * 100);
  }

  .operation-box-img-area {
    width: 100%;
    height: calc(321vw / 750 * 100);
    margin: calc(110vw / 750 * 100) 0 0 auto;
  }

  .operation-box:first-child .operation-box-img-area {
    margin: calc(140vw / 750 * 100) 0 0 auto;
  }

  .operation-box-slide-area {
    width: calc(662vw / 750 * 100);
    transform: translate(calc(60vw / 750 * 100), calc(-91vw / 750 * 100));
  }

  .operation-box-img-area::after {
    right: 0;
    width: calc(705vw / 750 * 100);
    height: calc(321vw / 750 * 100);
    border-radius: calc(80vw / 750 * 100) 0 0 0;
  }

  .operation-box:nth-child(even) .operation-box-img-area::after {
    border-radius: 0 calc(100vw / 750 * 100) 0 0;
    right: auto;
    left: 0;
  }

  .operation-box-img {
    transform: translateY(calc(-60vw / 750 * 100));
  }

  .operation-box-slide-pagination.swiper-pagination {
    bottom: calc(-71vw / 750 * 100);
  }

  .operation-box-slide-pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    border: calc(2vw / 750 * 100) solid #ff734c;
  }

  .operation-box-slide-prev,
  .operation-box-slide-next {
    bottom: calc(-63vw / 750 * 100);
  }

  .operation-box-slide-prev {
    left: calc(251vw / 750 * 100);
  }

  .operation-box-slide-next {
    right: calc(251vw / 750 * 100);
  }

  .operation-box-slide-prev::after {
    border-bottom: calc(3vw / 750 * 100) solid #ff734c;
    border-left: calc(3vw / 750 * 100) solid #ff734c;
  }

  .operation-box-slide-next::after {
    border-top: calc(3vw / 750 * 100) solid #ff734c;
    border-right: calc(3vw / 750 * 100) solid #ff734c;
  }
}

/* flow */
.flow {
  padding: 30px 0 45px;
}

.flow .inner {
  width: 808px;
}

.flow-head {
  position: relative;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/flow_head_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 323px;
  height: 79px;
  margin: 0 auto;
  padding-left: 20px;
  font-size: 26px;
  font-weight: bold;
  box-sizing: border-box;
}

.flow-head .accent {
  color: #ed582d;
}

.flow-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(-129deg, rgba(242, 157, 66, 0.99608) 0%, rgb(255, 129, 46) 43%, rgb(246, 99, 19) 99%, rgb(246, 99, 19) 100%);
  width: 100%;
  margin-top: 20px;
  padding: 55px 65px;
  border-radius: 10px;
}

.flow-box-slide-area {
  width: 216px;
  overflow-x: hidden;
}

.flow-box-nav-area {
  width: 408px;
}

.flow-box-nav-list {
  display: block;
}

.flow-box-nav {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 122px;
  padding: 0 30px;
  border-radius: 10px;
  box-sizing: border-box;
}

.flow-box-nav+.flow-box-nav {
  margin-top: 20px;
}

.flow-box-nav.swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  top: -7px;
  left: -18px;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/flow_step_nav_active_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 432px;
  height: 134px;
  z-index: -1;
}

.flow-box-nav-inner {
  opacity: 0.5;
}

.swiper-slide-thumb-active .flow-box-nav-inner,
.flow-box-nav.swiper-slide-active .flow-box-nav-inner {
  opacity: 1;
}

.flow-box-nav-head {
  font-size: 24px;
  font-weight: bold;
  color: #e78a00;
}

.flow-box-nav-txt {
  font-size: 16px;
  font-weight: bold;
}

.flow-box-slide-pagination.swiper-pagination {
  width: 100px;

  bottom: 24px;
  left: 649px;
}

.flow-box-slide-prev,
.flow-box-slide-next {
  bottom: 30px;
}

.flow-box-slide-prev {
  left: 648px;
}

.flow-box-slide-next {
  right: 58px;
}

@media (max-width: 1200px) {
  .flow {
    padding: calc(30vw / 1200 * 100) 0 calc(45vw / 1200 * 100);
  }

  .flow .inner {
    width: calc(808vw / 1200 * 100);
  }

  .flow-head {
    width: calc(323vw / 1200 * 100);
    height: calc(79vw / 1200 * 100);
    padding-left: calc(20vw / 1200 * 100);
    font-size: calc(26vw / 1200 * 100);
  }

  .flow-box {
    margin-top: calc(20vw / 1200 * 100);
    padding: calc(55vw / 1200 * 100) calc(65vw / 1200 * 100);
    border-radius: calc(10vw / 1200 * 100);
  }

  .flow-box-slide-area {
    width: calc(216vw / 1200 * 100);
  }

  .flow-box-nav-area {
    width: calc(408vw / 1200 * 100);
  }

  .flow-box-nav {
    height: calc(122vw / 1200 * 100);
    padding: 0 calc(30vw / 1200 * 100);
    border-radius: calc(10vw / 1200 * 100);
  }

  .flow-box-nav+.flow-box-nav {
    margin-top: calc(20vw / 1200 * 100);
  }

  .flow-box-nav.swiper-slide-thumb-active::after {
    top: calc(-7vw / 1200 * 100);
    left: calc(-18vw / 1200 * 100);
    width: calc(432vw / 1200 * 100);
    height: calc(134vw / 1200 * 100);
  }

  .flow-box-nav-head {
    font-size: calc(24vw / 1200 * 100);
  }

  .flow-box-nav-txt {
    font-size: calc(16vw / 1200 * 100);
  }

  .flow-box-slide-pagination.swiper-pagination {
    width: calc(100vw / 1200 * 100);
    bottom: calc(24vw / 1200 * 100);
    left: calc(649vw / 1200 * 100);
  }

  .flow-box-slide-prev,
  .flow-box-slide-next {
    bottom: calc(30vw / 1200 * 100);
  }

  .flow-box-slide-prev {
    left: calc(648vw / 1200 * 100);
  }

  .flow-box-slide-next {
    right: calc(58vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .flow {
    padding: calc(60vw / 750 * 100) 0 calc(45vw / 750 * 100);
  }

  .flow .inner {
    width: 100%;
  }

  .flow-head {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/flow_head_bg.png');
    width: calc(566vw / 750 * 100);
    height: calc(121vw / 750 * 100);
    padding-left: calc(28vw / 750 * 100);
    font-size: calc(48vw / 750 * 100);
    transform: translateX(calc(10vw / 750 * 100));
  }

  .flow-box {
    flex-direction: column-reverse;
    margin-top: calc(35vw / 750 * 100);
    padding: calc(80vw / 750 * 100) calc(65vw / 750 * 100) calc(150vw / 750 * 100);
    border-radius: 0;
    overflow-x: hidden;
  }

  .flow-box-slide-area {
    width: calc(450vw / 750 * 100);
    margin-top: calc(50vw / 750 * 100);
  }

  .flow-box-nav-area {
    width: calc(628vw / 750 * 100);
  }

  .flow-box-nav-list {
    display: flex;
  }

  .flow-box-nav {
    height: calc(143vw / 750 * 100);
    padding: 0 calc(50vw / 750 * 100);
    border-radius: calc(10vw / 750 * 100);
  }

  .flow-box-nav+.flow-box-nav {
    margin-top: 0;
  }

  .flow-box-nav.swiper-slide-thumb-active {
    content: none;
  }

  .flow-box-nav.swiper-slide-active::after {
    content: "";
    position: absolute;
    top: calc(-7vw / 750 * 100);
    left: calc(-18vw / 750 * 100);
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/flow_step_nav_active_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    width: calc(652vw / 750 * 100);
    height: calc(174vw / 750 * 100);
    z-index: -1;
  }

  .flow-box-nav-head {
    font-size: calc(34vw / 750 * 100);
  }

  .flow-box-nav-txt {
    font-size: calc(26vw / 750 * 100);
  }

  .flow-box-slide-pagination.swiper-pagination {
    width: calc(100vw / 750 * 100);
    bottom: calc(79vw / 750 * 100);
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .flow-box-slide-prev,
  .flow-box-slide-next {
    bottom: calc(87vw / 750 * 100);
  }

  .flow-box-slide-prev {
    left: calc(251vw / 750 * 100);
  }

  .flow-box-slide-next {
    right: calc(251vw / 750 * 100);
  }
}

/* fax */
.fax {
  padding: 50px 0 115px;
}

.fax .inner {
  width: 808px;
}

.fax-sub-head {
  display: flex;
  justify-content: center;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/fax_sub_head_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 490px;
  height: 67px;
  padding-top: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #ed5923;
  text-align: center;
  transform: translateX(20px);
  box-sizing: border-box;
}

.fax-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.fax-box-txt-area {
  width: 396px;
  padding-left: 20px;
  box-sizing: border-box;
}

.fax-box-head {
  font-size: 36px;
  font-weight: bold;
}

.fax-box-txt {
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.7;
}

.fax-box-img {
  width: 382px;
}

@media (max-width: 1200px) {
  .fax {
    padding: calc(50vw / 1200 * 100) 0 calc(115vw / 1200 * 100);
  }

  .fax .inner {
    width: calc(808vw / 1200 * 100);
  }

  .fax-sub-head {
    width: calc(490vw / 1200 * 100);
    height: calc(67vw / 1200 * 100);
    padding-top: calc(8vw / 1200 * 100);
    font-size: calc(24vw / 1200 * 100);
    transform: translateX(calc(20vw / 1200 * 100));
  }

  .fax-box {
    margin-top: calc(10vw / 1200 * 100);
  }

  .fax-box-txt-area {
    width: calc(396vw / 1200 * 100);
    padding-left: calc(20vw / 1200 * 100);
  }

  .fax-box-head {
    font-size: calc(36vw / 1200 * 100);
  }

  .fax-box-txt {
    font-size: calc(16vw / 1200 * 100);
    margin-top: calc(15vw / 1200 * 100);
  }

  .fax-box-img {
    width: calc(382vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .fax {
    padding: calc(50vw / 750 * 100) 0 calc(125vw / 750 * 100);
  }

  .fax .inner {
    width: calc(691vw / 750 * 100);
  }

  .fax-sub-head {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/fax_sub_head_bg.png');
    width: calc(691vw / 750 * 100);
    height: calc(85vw / 750 * 100);
    padding-top: calc(8vw / 750 * 100);
    font-size: calc(34vw / 750 * 100);
    transform: none;
  }

  .fax-box {
    display: block;
    width: calc(660vw / 750 * 100);
    margin: calc(10vw / 750 * 100) auto 0;
  }

  .fax-box-txt-area {
    width: 100%;
    padding-left: 0;
  }

  .fax-box-head {
    font-size: calc(56vw / 750 * 100);
    line-height: 1.3;
  }

  .fax-box-txt {
    font-size: calc(25vw / 750 * 100);
    margin-top: calc(20vw / 750 * 100);
  }

  .fax-box-img {
    width: 100%;
    margin: calc(35vw / 750 * 100) auto 0;
  }
}

/* middle_cv */
.middle_cv {
  background-image: linear-gradient(-129deg, rgba(242, 157, 66, 0.99608) 0%, rgb(255, 129, 46) 43%, rgb(246, 99, 19) 99%, rgb(246, 99, 19) 100%);
  padding: 65px 0;
}

.middle_cv .inner {
  width: 765px;
  background-color: #fff;
  padding: 25px 0;
  border-radius: 10px;
  text-align: center;
}

.middle_cv-head {
  font-size: 32px;
  font-weight: bold;
}

.middle_cv-sub-head {
  font-size: 24px;
  font-weight: bold;
  color: #ed5923;
}

.middle_cv-btn {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/common_btn_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 602px;
  height: 105px;
  margin: 10px auto 0;
}

.middle_cv-btn-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 27px;
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .middle_cv {
    padding: calc(65vw / 1200 * 100) 0;
  }

  .middle_cv .inner {
    width: calc(765vw / 1200 * 100);
    padding: calc(25vw / 1200 * 100) 0;
    border-radius: calc(10vw / 1200 * 100);
  }

  .middle_cv-head {
    font-size: calc(32vw / 1200 * 100);
  }

  .middle_cv-sub-head {
    font-size: calc(24vw / 1200 * 100);
  }

  .middle_cv-btn {
    width: calc(602vw / 1200 * 100);
    height: calc(105vw / 1200 * 100);
    margin: calc(10vw / 1200 * 100) auto 0;
  }

  .middle_cv-btn-inner {
    padding-top: calc(27vw / 1200 * 100);
    font-size: calc(28vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .middle_cv {
    padding: calc(65vw / 750 * 100) 0;
  }

  .middle_cv .inner {
    width: calc(690vw / 750 * 100);
    padding: calc(45vw / 750 * 100) 0;
    border-radius: calc(10vw / 750 * 100);
  }

  .middle_cv-head {
    font-size: calc(46vw / 750 * 100);
    line-height: 1.4;
  }

  .middle_cv-sub-head {
    font-size: calc(37vw / 750 * 100);
  }

  .middle_cv-btn {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/common_btn_bg.png');
    width: calc(624vw / 750 * 100);
    height: calc(158vw / 750 * 100);
    margin: calc(20vw / 750 * 100) auto 0;
  }

  .middle_cv-btn-inner {
    padding-top: calc(46vw / 750 * 100);
    font-size: calc(40vw / 750 * 100);
    transform: translateX(calc(-20vw / 750 * 100));
  }
}

/* achievement */
.achievement {
  padding: 90px 0;
  text-align: center;
}

.achievement-head {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}

.achievement-head .accent {
  color: #ed582d;
}

.achievement-img {
  width: 844px;
  margin: 65px auto 0;
}

@media (max-width: 1200px) {
  .achievement {
    padding: calc(90vw / 1200 * 100) 0;
  }

  .achievement-head {
    font-size: calc(42vw / 1200 * 100);
  }

  .achievement-img {
    width: calc(844vw / 1200 * 100);
    margin: calc(65vw / 1200 * 100) auto 0;
  }
}

@media (max-width: 750px) {
  .achievement {
    padding: calc(110vw / 750 * 100) 0 calc(125vw / 750 * 100);
  }

  .achievement .inner {
    width: 100%;
  }

  .achievement-head {
    font-size: calc(56vw / 750 * 100);
  }

  .achievement-head .accent {
    display: inline-block;
    margin-bottom: 30px;
  }

  .achievement-img {
    width: 100%;
    margin: calc(65vw / 750 * 100) auto 0;
  }
}

/* uv */
.uv {
  background-color: #fff2ea;
  padding: 90px 0 110px;
}

.uv-head {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.uv-box {
  margin-top: 55px;
}

.uv-box-tab-list {
  display: flex;
  justify-content: space-between;
}

.uv-box-tab {
  width: 460px;
  height: 66px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-top: 10px;
  border-bottom: 2px solid #fff;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  cursor: pointer;
}

.uv-box-tab.active {
  border-bottom: none;
}

.uv-box-tab-seller {
  background-color: #ed5923;
}

.uv-box-tab-buyer {
  background-color: #f28b46;
}

.uv-box-cnt-area {
  position: relative;
  display: none;
  overflow-x: hidden;
}

.uv-box-cnt-area.active {
  display: block;
}

.uv-box-cnt-area-seller {
  background-color: #ed5923;
}

.uv-box-cnt-area-buyer {
  background-color: #f28b46;
}

.uv-box-slide-area {
  width: 683px;
  margin: 0 auto;
  padding: 60px 0;
}

.uv-box-slide {
  background-color: #fff;
  width: 683px;
  height: 412px;
  padding: 30px 30px;
  border-radius: 10px;
  transition: all 0.5s;
}

.uv-box-slide.swiper-slide-active,
.uv-box-slide.swiper-slide-duplicate-active {
  transform: translateY(-20px);
}

.uv-box-slide-head-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uv-box-slide-head-txt-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 400px;
  height: 130px;
}

.uv-box-slide-head-txt-area::after {
  content: "";
  display: block;
  background-color: #ffbd99;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
}

.uv-box-slide-head {
  font-size: 24px;
  font-weight: bold;
  color: #ed582d;
}

.uv-box-slide-head-category {
  font-size: 16px;
}

.uv-box-slide-head-name {
  font-size: 18px;
  font-weight: bold;
}

.uv-box-slide-txt {
  font-size: 16px;
  margin-top: 40px;
  line-height: 1.8;
}

.uv-box-slide-pagination.swiper-pagination {
  width: 100px;
  bottom: 35px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.uv-box-slide-prev,
.uv-box-slide-next {
  bottom: 42px;
}

.uv-box-slide-prev {
  left: 407px;
}

.uv-box-slide-next {
  right: 407px;
}

.comparisons-banner {
  width: 600px;
  margin: 100px auto 0px;
}



@media (max-width: 1200px) {
  .uv {
    padding: calc(90vw / 1200 * 100) 0 calc(110vw / 1200 * 100);
  }

  .uv-head {
    font-size: calc(32vw / 1200 * 100);
  }

  .uv-box {
    margin-top: calc(55vw / 1200 * 100);
  }

  .uv-box-tab {
    width: calc(460vw / 1200 * 100);
    height: calc(66vw / 1200 * 100);
    font-size: calc(26vw / 1200 * 100);
    padding-top: calc(10vw / 1200 * 100);
    border-bottom: calc(2vw / 1200 * 100) solid #fff;
    border-radius: calc(10vw / 1200 * 100) calc(10vw / 1200 * 100) 0 0;
  }

  .uv-box-slide-area {
    width: calc(683vw / 1200 * 100);
    padding: calc(60vw / 1200 * 100) 0;
  }

  .uv-box-slide {
    width: calc(683vw / 1200 * 100);
    height: calc(412vw / 1200 * 100);
    padding: calc(30vw / 1200 * 100) calc(30vw / 1200 * 100);
    border-radius: calc(10vw / 1200 * 100);
  }

  .uv-box-slide.swiper-slide-active,
  .uv-box-slide.swiper-slide-duplicate-active {
    transform: translateY(calc(-20vw / 1200 * 100));
  }

  .uv-box-slide-head-txt-area {
    width: calc(400vw / 1200 * 100);
    height: calc(130vw / 1200 * 100);
  }

  .uv-box-slide-head-txt-area::after {
    bottom: calc(-13vw / 1200 * 100);
    height: calc(2vw / 1200 * 100);
  }

  .uv-box-slide-head {
    font-size: calc(24vw / 1200 * 100);
  }

  .uv-box-slide-head-category {
    font-size: calc(16vw / 1200 * 100);
  }

  .uv-box-slide-head-name {
    font-size: calc(18vw / 1200 * 100);
  }

  .uv-box-slide-txt {
    font-size: calc(16vw / 1200 * 100);
    margin-top: calc(40vw / 1200 * 100);
  }

  .uv-box-slide-pagination.swiper-pagination {
    width: calc(100vw / 1200 * 100);
    bottom: calc(35vw / 1200 * 100);
  }

  .uv-box-slide-prev,
  .uv-box-slide-next {
    bottom: calc(42vw / 1200 * 100);
  }

  .uv-box-slide-prev {
    left: calc(407vw / 1200 * 100);
  }

  .uv-box-slide-next {
    right: calc(407vw / 1200 * 100);
  }

  .comparisons-banner {
    width: 600px;
    margin: 100px auto 0;
  }
}

@media (max-width: 750px) {
  .uv {
    padding: calc(110vw / 750 * 100) 0 calc(125vw / 750 * 100);
  }

  .uv .inner {
    width: 100%;
  }

  .uv-head {
    font-size: calc(47vw / 750 * 100);
  }

  .uv-box {
    margin-top: calc(60vw / 750 * 100);
  }

  .uv-box-tab {
    width: calc(370vw / 750 * 100);
    height: calc(100vw / 750 * 100);
    font-size: calc(30vw / 750 * 100);
    padding-top: calc(26vw / 750 * 100);
    border-bottom: calc(2vw / 750 * 100) solid #fff;
    border-radius: calc(10vw / 750 * 100) calc(10vw / 750 * 100) 0 0;
  }

  .uv-box-slide-area {
    width: calc(532vw / 750 * 100);
    padding: calc(110vw / 750 * 100) 0 calc(180vw / 750 * 100);
  }

  .uv-box-slide {
    width: calc(683vw / 750 * 100);
    height: auto;
    padding: calc(45vw / 750 * 100) calc(45vw / 750 * 100);
    border-radius: calc(10vw / 750 * 100);
  }

  .uv-box-slide.swiper-slide-active,
  .uv-box-slide.swiper-slide-duplicate-active {
    transform: scale(1.1);
  }

  .uv-box-slide-head-area {
    flex-direction: column-reverse;
  }

  .uv-box-slide-head-txt-area {
    width: 100%;
    min-height: calc(190vw / 750 * 100);
    height: auto;
    margin-top: calc(10vw / 750 * 100);
  }

  .uv-box-slide-head-txt-area::after {
    bottom: calc(-20vw / 750 * 100);
    height: calc(2vw / 750 * 100);
  }

  .uv-box-slide-head {
    font-size: calc(32vw / 750 * 100);
  }

  .uv-box-slide-head-category {
    font-size: calc(26vw / 750 * 100);
    font-weight: bold;
  }

  .uv-box-slide-head-name {
    font-size: calc(36vw / 750 * 100);
  }

  .uv-box-slide-txt {
    font-size: calc(26vw / 750 * 100);
    margin-top: calc(40vw / 750 * 100);
    line-height: 1.6;
    height: calc(300vw / 750 * 100);
  }

  .simplebar-track {
    right: calc(-20vw / 750 * 100);
  }

  .simplebar-scrollbar::before {
    border-radius: calc(4vw / 750 * 100);
    width: calc(4vw / 750 * 100);
    margin-left: calc(5vw / 750 * 100);
  }

  .uv-box-slide-pagination.swiper-pagination {
    width: calc(150vw / 750 * 100);
    bottom: calc(60vw / 750 * 100);
  }

  .uv-box-slide-prev,
  .uv-box-slide-next {
    bottom: calc(68vw / 750 * 100);
  }

  .uv-box-slide-prev {
    left: calc(252vw / 750 * 100);
  }

  .uv-box-slide-next {
    right: calc(252vw / 750 * 100);
  }

  .comparisons-banner {
    width: calc(570vw / 750 * 100);
    margin: 100px auto 0;
  }
}

/* support */
.support {
  background-image: linear-gradient(-129deg, rgba(242, 157, 66, 0.99608) 0%, rgb(255, 129, 46) 43%, rgb(246, 99, 19) 99%, rgb(246, 99, 19) 100%);
  padding: 90px 0 100px;
}

.support-sub-head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/support_sub_head_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 392px;
  height: 57px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: bold;
  color: #fc8a35;
  text-align: center;
}

.support-head {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  margin-top: 25px;
  text-align: center;
}

.support-list {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}

.support-box {
  background-color: #fff;
  width: 300px;
  padding: 30px 0;
  border-radius: 10px;
  opacity: 0;
}

.scroll-anime-start .support-box:nth-child(1) {
  animation: fade-in-bottom 0.5s 0.5s forwards;
}

.scroll-anime-start .support-box:nth-child(2) {
  animation: fade-in-bottom 0.5s 0.7s forwards;
}

.scroll-anime-start .support-box:nth-child(3) {
  animation: fade-in-bottom 0.5s 0.9s forwards;
}

.support-box-head {
  font-size: 22px;
  font-weight: bold;
  color: #ed582d;
  text-align: center;
  line-height: 1.3;
}

.support-box-img {
  margin: 15px auto 15px;
}

.support-box-txt {
  width: 230px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

.support-point-area {
  width: 830px;
  margin: 55px auto 0;
  padding: 25px 0 40px;
  border: 2px solid #fff;
  border-radius: 15px;
}

.support-point-txt {
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.support-point-list {
  display: flex;
  justify-content: space-between;
  width: 750px;
  margin: 20px auto 0;
}

.support-point-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  width: 360px;
  padding: 22px 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.support-point-box-txt-area {
  width: 190px;
}

.support-point-box-head {
  font-size: 26px;
  font-weight: bold;
  color: #e78a00;
}

.support-point-box-txt {
  font-size: 16px;
}

.support-point-box-img {
  width: 142px;
}

@media (max-width: 1200px) {
  .support {
    padding: calc(90vw / 1200 * 100) 0 calc(100vw / 1200 * 100);
  }

  .support-sub-head {
    width: calc(392vw / 1200 * 100);
    height: calc(57vw / 1200 * 100);
    font-size: calc(24vw / 1200 * 100);
  }

  .support-head {
    font-size: calc(42vw / 1200 * 100);
    margin-top: calc(25vw / 1200 * 100);
  }

  .support-list {
    margin-top: calc(35vw / 1200 * 100);
  }

  .support-box {
    width: calc(300vw / 1200 * 100);
    padding: calc(30vw / 1200 * 100) 0;
    border-radius: calc(10vw / 1200 * 100);
  }

  .support-box-head {
    font-size: calc(22vw / 1200 * 100);
  }

  .support-box-img {
    margin: calc(15vw / 1200 * 100) auto calc(15vw / 1200 * 100);
  }

  .support-box-txt {
    width: calc(230vw / 1200 * 100);
    font-size: calc(16vw / 1200 * 100);
  }

  .support-point-area {
    width: calc(830vw / 1200 * 100);
    margin: calc(55vw / 1200 * 100) auto 0;
    padding: calc(25vw / 1200 * 100) 0 calc(40vw / 1200 * 100);
    border: calc(2vw / 1200 * 100) solid #fff;
    border-radius: calc(15vw / 1200 * 100);
  }

  .support-point-txt {
    font-size: calc(24vw / 1200 * 100);
  }

  .support-point-list {
    width: calc(750vw / 1200 * 100);
    margin: calc(20vw / 1200 * 100) auto 0;
  }

  .support-point-box {
    width: calc(360vw / 1200 * 100);
    padding: calc(22vw / 1200 * 100) calc(20vw / 1200 * 100);
    border-radius: calc(10vw / 1200 * 100);
  }

  .support-point-box-txt-area {
    width: calc(190vw / 1200 * 100);
  }

  .support-point-box-head {
    font-size: calc(26vw / 1200 * 100);
  }

  .support-point-box-txt {
    font-size: calc(16vw / 1200 * 100);
  }

  .support-point-box-img {
    width: calc(142vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .support {
    padding: calc(120vw / 750 * 100) 0 calc(125vw / 750 * 100);
  }

  .support-sub-head {
    background-image: url('/web/jp/asp/seller/images/tanomu/sp/support_sub_head_bg.png');
    width: calc(571vw / 750 * 100);
    height: calc(80vw / 750 * 100);
    font-size: calc(37vw / 750 * 100);
  }

  .support-head {
    font-size: calc(54vw / 750 * 100);
    margin-top: calc(40vw / 750 * 100);
    line-height: 1.4;
  }

  .support-list {
    display: block;
    margin-top: calc(60vw / 750 * 100);
  }

  .support-box {
    position: relative;
    width: 100%;
    min-height: calc(311vw / 750 * 100);
    padding: calc(30vw / 750 * 100) 0 calc(30vw / 750 * 100) calc(242vw / 750 * 100);
    border-radius: calc(10vw / 750 * 100);
    box-sizing: border-box;
  }

  .support-box+.support-box {
    margin-top: calc(30vw / 750 * 100);
  }

  .support-box-head {
    font-size: calc(36vw / 750 * 100);
    text-align: left;
    line-height: 1.4;
  }

  .support-box-img {
    position: absolute;
    top: 50%;
    left: calc(33vw / 750 * 100);
    transform: translateY(-50%);
    width: calc(183vw / 750 * 100);
    margin: 0 auto;
  }

  .support-box-txt {
    width: calc(360vw / 750 * 100);

    font-size: calc(27vw / 750 * 100);
    margin: calc(10vw / 750 * 100) auto 0 0;
    line-height: 1.7;
  }

  .support-point-area {
    width: 100%;
    margin: calc(60vw / 750 * 100) auto 0;
    padding: calc(35vw / 750 * 100) 0 calc(50vw / 750 * 100);
    border: calc(2vw / 750 * 100) solid #fff;
    border-radius: calc(10vw / 750 * 100);
  }

  .support-point-txt {
    font-size: calc(36vw / 750 * 100);
    line-height: 1.4;
  }

  .support-point-list {
    display: block;
    width: calc(578vw / 750 * 100);
    margin: calc(25vw / 750 * 100) auto 0;
  }

  .support-point-box {
    width: 100%;
    padding: calc(25vw / 750 * 100) calc(25vw / 750 * 100);
    border-radius: calc(10vw / 750 * 100);
  }

  .support-point-box+.support-point-box {
    margin-top: calc(35vw / 750 * 100);
  }

  .support-point-box-txt-area {
    width: calc(290vw / 750 * 100);
  }

  .support-point-box-head {
    font-size: calc(42vw / 750 * 100);
  }

  .support-point-box-txt {
    font-size: calc(26vw / 750 * 100);
  }

  .support-point-box-img {
    width: calc(219vw / 750 * 100);
  }
}


/* cv */
.cv {
  padding: 90px 0;
}

.cv .inner {
  width: 100%;
}

.cv-head {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.cv-sub-head {
  font-size: 24px;
  font-weight: bold;
  color: #ed582d;
  margin-top: 40px;
  text-align: center;
}

.cv-form {
  height: 670px;
  margin: 0 auto;
}

.cv input,
.cv select {
  border: 1px solid #000;
}

.cv-tel-area {
  position: relative;
  justify-content: space-around;
  align-items: center;
  width: 670px;
  margin: 30px auto 0;
  padding: 30px 0;
  color: #ed582d;
  border: 3px solid #ed582d;
  border-radius: 10px;
}

.cv-tel-head {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  width: 390px;
  margin: 0 auto;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  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-notes {
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
}

.cv-tel-notes2 {
  padding-top: 20px;
  font-weight: bold;
  font-size: 0.7em;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .cv {
    padding: calc(90vw / 1200 * 100) 0;
  }

  .cv-head {
    font-size: calc(42vw / 1200 * 100);
  }

  .cv-sub-head {
    font-size: calc(24vw / 1200 * 100);
    margin-top: calc(40vw / 1200 * 100);
  }

  .cv input,
  .cv select {
    border: calc(1vw / 1200 * 100) solid #000;
  }

  .cv-tel-area {
    width: calc(670vw / 1200 * 100);
    margin: calc(30vw / 1200 * 100) auto 0;
    padding: calc(30vw / 1200 * 100) 0;
    border: calc(3vw / 1200 * 100) solid #ed582d;
    border-radius: calc(10vw / 1200 * 100);
  }

  .cv-tel-head {
    top: calc(-16vw / 1200 * 100);
    width: calc(390vw / 1200 * 100);
    font-size: calc(20vw / 1200 * 100);
  }

  .cv-tel-txt-icon {
    width: calc(23vw / 1200 * 100);
    margin-right: calc(5vw / 1200 * 100);
  }

  .cv-tel-txt-num {
    font-size: calc(38vw / 1200 * 100);
  }

  .cv-tel-notes {
    font-size: calc(15vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .cv {
    padding: calc(110vw / 750 * 100) 0;
  }

  .cv-head {
    font-size: calc(54vw / 750 * 100);
  }

  .cv-sub-head {
    font-size: calc(42vw / 750 * 100);
    margin-top: calc(70vw / 750 * 100);
  }

  .cv-form {
    height: 700px;
  }

  .cv input,
  .cv select {
    border: calc(1vw / 750 * 100) solid #000;
  }

  .cv-tel-area {
    display: block;
    width: calc(660vw / 750 * 100);
    margin: calc(150vw / 750 * 100) auto 0;
    padding: calc(80vw / 750 * 100) 0 calc(55vw / 750 * 100);
    border: calc(3vw / 750 * 100) solid #ed582d;
    border-radius: calc(10vw / 750 * 100);
  }

  .cv-tel-head {
    top: calc(-56vw / 750 * 100);
    width: calc(480vw / 750 * 100);
    font-size: calc(42vw / 750 * 100);
  }

  .cv-tel-txt-icon {
    width: calc(35vw / 750 * 100);
    margin-right: calc(15vw / 750 * 100);
  }

  .cv-tel-txt-num {
    font-size: calc(60vw / 750 * 100);
  }

  .cv-tel-notes {
    font-size: calc(25vw / 750 * 100);
    margin-top: calc(20vw / 750 * 100);
  }
}

@media (max-width: 700px) {
  .cv-form {
    height: 1000px;
  }

  .cv-tel-notes2 {
    font-size: 1em;
  }
}

/* qa */
.qa {
  background-color: #fff2ea;
  padding: 90px 0;
}

.qa-head {
  font-size: 42px;
  font-weight: bold;
  color: #ed582d;
  text-align: center;
}

.qa-list {
  width: 760px;
  margin: 30px auto 0;
}

.qa-box {
  border-bottom: 1px solid #8E99B5;
  padding: 20px 0;
}

.qa-box:first-child .acc-cnt {
  display: block;
}

.qa-q,
.qa-a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  line-height: 1.7;
}

.qa-q::before,
.qa-a::before {
  display: block;
  width: 30px;
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 36px;
  font-weight: bold;
}

.qa-q::before {
  content: "Q";
  color: #e78b00;
  transform: translateY(4px);
}

.qa-a::before {
  content: "A";
  color: #ed582d;
  transform: translateY(6px);
}

.qa-q::after {
  content: "";
  display: block;
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/qa_icon_plus.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}

.active .qa-q::after {
  background-image: url('/web/jp/asp/seller/images/tanomu/pc/qa_icon_minus.svg');
}

.qa-q-txt {
  width: 660px;
  font-size: 19px;
  font-weight: bold;
}

.qa-a-txt {
  width: 706px;
  font-size: 16px;
  color: #383838;
  margin-top: 20px;
}

.qa-a-txt .accent {
  font-weight: bold;
}

.qa-a-txt a {
  text-decoration: underline;
}

.qa-a-txt a:hover {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .qa {
    padding: calc(90vw / 1200 * 100) 0;
  }

  .qa-head {
    font-size: calc(42vw / 1200 * 100);
  }

  .qa-list {
    width: calc(760vw / 1200 * 100);
    margin: calc(30vw / 1200 * 100) auto 0;
  }

  .qa-box {
    border-bottom: calc(1vw / 1200 * 100) solid #8E99B5;
    padding: calc(20vw / 1200 * 100) 0;
  }

  .qa-q::before,
  .qa-a::before {
    width: calc(30vw / 1200 * 100);
    font-size: calc(36vw / 1200 * 100);
  }

  .qa-q::before {
    transform: translateY(calc(4vw / 1200 * 100));
  }

  .qa-a::before {
    transform: translateY(calc(6vw / 1200 * 100));
  }

  .qa-q::after {
    width: calc(20vw / 1200 * 100);
    height: calc(20vw / 1200 * 100);
  }

  .qa-q-txt {
    width: calc(660vw / 1200 * 100);
    font-size: calc(19vw / 1200 * 100);
  }

  .qa-a-txt {
    width: calc(706vw / 1200 * 100);
    font-size: calc(16vw / 1200 * 100);
    margin-top: calc(20vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .qa {
    padding: calc(110vw / 750 * 100) 0;
  }

  .qa-head {
    font-size: calc(52vw / 750 * 100);
  }

  .qa-list {
    width: calc(670vw / 750 * 100);
    margin-top: calc(45vw / 750 * 100);
  }

  .qa-box {
    padding: calc(10vw / 750 * 100) 0 calc(30vw / 750 * 100);
  }

  .qa-q::before,
  .qa-a::before {
    width: calc(56vw / 750 * 100);
    font-size: calc(45vw / 750 * 100);
  }

  .qa-q::before {
    transform: translate(calc(-12vw / 750 * 100), calc(2vw / 750 * 100));
  }

  .qa-a::before {
    transform: translate(calc(-12vw / 750 * 100), calc(2vw / 750 * 100));
  }

  .qa-q::after {
    width: calc(35vw / 750 * 100);
    height: calc(35vw / 750 * 100);
    transform: translateY(calc(7vw / 750 * 100));
  }

  .qa-q-txt {
    width: calc(580vw / 750 * 100);
    font-size: calc(28vw / 750 * 100);
  }

  .qa-a-txt {
    width: calc(616vw / 750 * 100);
    font-size: calc(26vw / 750 * 100);
    margin-top: calc(55vw / 750 * 100);
  }
}

/* bnr-area */
.bnr-area {
  padding: 65px 0;
}

.bnr-list {
  width: 562px;
  margin: 0 auto;
}

.bnr+.bnr {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .bnr-area {
    padding: calc(65vw / 1200 * 100) 0;
  }

  .bnr-list {
    width: calc(562vw / 1200 * 100);
  }

  .bnr+.bnr {
    margin-top: calc(30vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .bnr-area {
    padding: calc(80vw / 750 * 100) 0;
  }

  .bnr-list {
    width: calc(662vw / 750 * 100);
  }

  .bnr+.bnr {
    margin-top: calc(30vw / 750 * 100);
  }
}

/* news */
.news {
  background-color: #e5e5e5;
  padding: 65px 0;
}

.news .inner {
  width: 870px;
}

.news-haed {
  font-size: 24px;
  font-weight: bold;
}

.news-list {
  margin-top: 30px;
}

.news-box {
  margin-bottom: 30px;
}

.news-box-inner {
  display: flex;
  align-items: center;
}

.news-box-inner:hover {
  text-decoration: underline;
}

.news-date {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.news-date::before {
  content: "▶";
  margin-right: 7px;
  font-size: 12px;
}

.news-ttl {
  font-size: 14px;
  margin-left: 40px;
}

@media (max-width: 1200px) {
  .news {
    padding: calc(65vw / 1200 * 100) 0;
  }

  .news .inner {
    width: calc(870vw / 1200 * 100);
  }

  .news-haed {
    font-size: calc(24vw / 1200 * 100);
  }

  .news-list {
    margin-top: calc(30vw / 1200 * 100);
  }

  .news-box {
    margin-bottom: calc(30vw / 1200 * 100);
  }

  .news-date {
    font-size: calc(16vw / 1200 * 100);
  }

  .news-date::before {
    margin-right: calc(7vw / 1200 * 100);
    font-size: calc(12vw / 1200 * 100);
  }

  .news-ttl {
    font-size: calc(14vw / 1200 * 100);
    margin-left: calc(40vw / 1200 * 100);
  }
}

@media (max-width: 750px) {
  .news {
    padding: calc(65vw / 750 * 100) 0;
  }

  .news .inner {
    width: calc(660vw / 750 * 100);
  }

  .news-haed {
    font-size: calc(32vw / 750 * 100);
  }

  .news-list {
    margin-top: calc(40vw / 750 * 100);
  }

  .news-box {
    margin-bottom: calc(55vw / 750 * 100);
  }

  .news-box-inner {
    display: block;
  }

  .news-date {
    font-size: calc(30vw / 750 * 100);
  }

  .news-date::before {
    margin-right: calc(7vw / 750 * 100);
    font-size: calc(12vw / 750 * 100);
  }

  .news-ttl {
    font-size: calc(24vw / 750 * 100);
    margin: calc(20vw / 750 * 100) 0 0 calc(18vw / 750 * 100);
  }
}