@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 #00c7b8;
  border-radius: 5px;
}

.common-btn:hover {
  background-color: #00c7b8;
}

.common-btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #00c7b8;
}

.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 #00c7b8;
  border-right: 2px solid #00c7b8;
  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;
}

.orange-txt {
  color: #ed582d;
}

@media (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 #00c7b8;
    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 #00c7b8;
    border-right: calc(2vw / 1100 * 100) solid #00c7b8;
  }

  .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 (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 #00c7b8;
    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 #00c7b8;
    border-right: calc(2vw / 750 * 100) solid #00c7b8;
  }

  .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;
}
.header-nav-btn {
  background-color: #00c7b8;
  width: 130px;
  height: 34px;
  border: 1px solid #00c7b8;
  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: #00c7b8;
}

@media (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(14vw / 1400 * 100);
    margin-right: calc(35vw / 1400 * 100);
  }

  .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 (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;
  }
}

/* menu */
.menu {
  display: none;
}

@media (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: scroll;
  }

  .menu .inner {
    width: calc(545vw / 750 * 100);
    padding-bottom: calc(210vw / 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: fit-content;
    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-txt:nth-last-of-type(1) {
    margin-bottom: calc(60vw / 750 * 100);
  }
}

/* cv */
.cv {
  background-color: #fff8f3;
  padding: 60px 0 110px;
}

.cv .inner {
  width: 100%;
}

.cv-head {
  font-size: 34px;
  font-weight: bold;
  color: #ed582d;
  text-align: center;
  line-height: 1.4;
}

.cv-sub-head {
  font-size: 24px;
  font-weight: bold;
  margin-top: 55px;
  text-align: center;
}

.cv-txt {
  margin-top: 10px;
  text-align: center;
}

.cv-form {
  /* background-color: #fff; */
  width: 750px;
  height: 700px;
  margin: 10px auto 0;
  padding-top: 50px;
  border-radius: 5px;
}

.cv input,
.cv select {
  border: 1px solid #000;
}

.cv-tel-area {
  position: relative;
  width: 670px;
  margin: 90px auto 0;
  padding: 30px 0 35px;
  font-size: 15px;
  color: #ed582d;
  text-align: center;
  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: #fff8f3;
  font-size: 20px;
  font-weight: bold;
}

.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 (max-width: 1100px) {
  .cv {
    padding: calc(70vw / 1100 * 100) 0;
  }

  .cv-head {
    font-size: calc(34vw / 1100 * 100);
  }

  .cv-sub-head {
    font-size: calc(24vw / 1100 * 100);
    margin-top: calc(55vw / 1100 * 100);
  }

  .cv-txt {
    margin-top: calc(10vw / 1100 * 100);
  }

  .cv input,
  .cv select {
    border: calc(1vw / 1100 * 100) solid #000;
  }

  .cv-tel-area {
    width: calc(670vw / 1100 * 100);
    margin: calc(90vw / 1100 * 100) auto 0;
    padding: calc(30vw / 1100 * 100) 0 calc(35vw / 1100 * 100);
    font-size: calc(15vw / 1100 * 100);
    border: calc(3vw / 1100 * 100) solid #ed582d;
    border-radius: calc(10vw / 1100 * 100);
  }

  .cv-tel-head {
    top: calc(-16vw / 1100 * 100);
    width: calc(390vw / 1100 * 100);
    font-size: calc(20vw / 1100 * 100);
  }

  .cv-tel-txt-icon {
    width: calc(23vw / 1100 * 100);
    margin-right: calc(5vw / 1100 * 100);
  }

  .cv-tel-txt-num {
    font-size: calc(38vw / 1100 * 100);
  }

  .cv-tel-details {
    margin-top: calc(20vw / 1100 * 100);
  }

  .cv-tel-notes {
    margin-top: calc(5vw / 1100 * 100);
  }
}

@media (max-width: 750px) {
  .cv {
    padding: calc(201vw / 750 * 100) 0;
  }

  .cv-head {
    font-size: calc(48vw / 750 * 100);
    line-height: 1.5;
  }

  .cv-sub-head {
    font-size: calc(36vw / 750 * 100);
    margin-top: calc(85vw / 750 * 100);
  }

  .cv-txt {
    margin-top: calc(20vw / 750 * 100);
    font-size: calc(22vw / 750 * 100);
  }

  .cv-form {
    width: calc(690vw / 750 * 100);
    height: 700px;
    margin: calc(10vw / 750 * 100) auto 0;
    padding-top: calc(50vw / 750 * 100);
    border-radius: calc(5vw / 750 * 100);
  }

  .cv input,
  .cv select {
    border: calc(1vw / 750 * 100) solid #000;
  }

  .cv-tel-area {
    width: calc(660vw / 750 * 100);
    margin: calc(100vw / 750 * 100) auto 0;
    padding: calc(100vw / 750 * 100) 0 calc(70vw / 750 * 100);
    font-size: calc(26vw / 750 * 100);
    border: calc(3vw / 750 * 100) solid #ed582d;
    border-radius: calc(10vw / 750 * 100);
  }

  .cv-tel-head {
    top: calc(-46vw / 750 * 100);
    width: calc(390vw / 750 * 100);
    font-size: calc(38vw / 750 * 100);
  }

  .cv-tel-txt-icon {
    width: calc(30vw / 750 * 100);
    margin-right: calc(40vw / 750 * 100);
  }

  .cv-tel-txt-num {
    font-size: calc(50vw / 750 * 100);
  }

  .cv-tel-details {
    margin-top: calc(10vw / 750 * 100);
  }

  .cv-tel-notes {
    margin-top: calc(5vw / 750 * 100);
  }
}

@media (max-width: 700px) {
  .cv-form {
    height: 1000px;
  }
}

/* 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 (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 (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 (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 (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 (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 (min-width: 750px) {
  .pc-none {
    display: none;
  }
}

@media (max-width: 750px) {
  .sp-none {
    display: none;
  }
}

@media (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 */
.footer {
  background-color: #333;
  padding: 50px 0;
  color: #fff;
}

.footer .inner {
  width: 1050px;
  display: flex;
  justify-content: space-between;
}

.footer-link-area {
  width: 715px;
  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;
  padding: 0 0 50px 50px;
  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;
  font-size: 13px;
  color: #999;
}

@media (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);
  }

  .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 (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);
  }
}

/* common-sec */
.common-sec-head {
  font-size: 34px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.common-sec-head .normal {
  color: #333;
}

.common-sec-txt {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 1100px) {
  .common-sec-head {
    font-size: calc(34vw / 1100 * 100);
  }

  .common-sec-txt {
    margin-top: calc(20vw / 1100 * 100);
  }
}

@media (max-width: 750px) {
  .common-sec-head {
    font-size: calc(50vw / 750 * 100);
  }

  .common-sec-txt {
    margin-top: calc(40vw / 750 * 100);
    font-size: calc(28vw / 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 (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 (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 0.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;
}

/* 業種別ドロップダウンメニュー　ここまで */
