@charset "UTF-8";

main {
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: 0 0 27px 21px #39373747;
  overflow-x: hidden; /* 横だけ隠す */
  overflow-y: visible; /* 縦方向はスクロール */
  position: relative;
  @media only screen and (max-width:767px){
    overflow: hidden;
  }
}

.c-font-en {
  font-family: "Montserrat", sans-serif;
}

.c-display-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-display-pc {
    display: none;
  }
}
.c-display-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-display-sp {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  input, button, textarea, select {
    font-size: 16px;
  }
}

.c-section-head {
  position: relative;
  font-size: 70px;
  font-weight: 700;
  text-align: center;
  @media only screen and (max-width:1200px){
    font-size: 60px;
  }
  @media only screen and (max-width:1100px){
    font-size: 54px;
  }
  @media only screen and (max-width:550px){
    font-size: 34px;
  }

  span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: block;
    font-size: 20px;
    margin-top: 20px;
    @media only screen and (max-width:1100px){
      font-size: 16px;
    }
  }

  &+ .c-section-head-sub {
    margin-top: 100px;
  }
}

.c-section-head-sub {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  @media only screen and (max-width:767px){
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.c-right-btn {
  position: fixed;
  bottom: 10%;
  right: 0;
  writing-mode: vertical-rl;
  display: flex;
  z-index: 90;
  @media only screen and (max-width:767px){
    bottom: auto;
    top: 15%;
  }
}

.c-right-btn-01 {
  color: #fff;
  display: grid;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 64px;
  height: 280px;
  background-color: #FF8000;
  border: 1px solid #FF8000;
  border-radius: 15px 0 0 15px;
  cursor: pointer;
  transition: .2s ease-out;
  @media only screen and (max-width:767px){
    width: 41px;
    height: 213px;
    font-size: 12px;
  }

  &:hover {
    color: #FF8000;
    background-color: #fff;
  }
}

.c-right-btn-02 {
  color: #FF8000;
  display: grid;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 64px;
  height: 280px;
  background-color: #fff;
  border: 1px solid #FF8000;
  border-radius: 15px 0 0 15px;
  cursor: pointer;
  transition: .2s ease-out;
  @media only screen and (max-width:767px){
    width: 41px;
    height: 213px;
    font-size: 12px;
  }

  &:hover {
    color: #FF8000;
    background-color: #FFF2AC;
  }
}

.c-top-anchor {
  position: fixed;
  bottom: 80px;
  right: 65px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  @media only screen and (max-width:767px){
    width: 62px;
    right: 0px;
    bottom: 50px;
  }

  img {
    transition: .3s ease-out;
    &:hover {
      opacity: 0.7;
    }
  }
}

.c-top-anchor.is-visible {
  opacity: 1;
  visibility: visible;
}

.header-wrap {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  background-color: rgb(255 255 255 / .8);
  transition: 0.5s ease;
  max-width: 1920px;
  right: 0px;
  margin: 0px auto;
  @media only screen and (max-width: 1150px) {
    padding: 0 20px;
    height: 62px;
  }
  @media only screen and (max-width: 767px) {
    height: 62px;
  }
}

.header-innner {
  display: flex;
  max-width: 100%;
  height: 100%;
  padding-left: 15px;
  padding-right: 40px;
  margin-right: 30px;
  align-items: center;
  @media only screen and (max-width:1466px){
    margin-right: 10px;
  }
  @media only screen and (max-width:1300px){
    padding-right: 20px;
    margin-right: 10px;
  }
  @media only screen and (max-width: 1150px) {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    z-index: 999;
  }
  @media only screen and (max-width: 767px) {
  }
}

/* ロゴ ーーーーーーーーーーーーーーーーーーーーーー*/
.header-logo-anchor {
  width: 312px;
  margin-left: 10vw;
  @media only screen and (max-width:1600px){
    margin-left: 5vw;
  }
  @media only screen and (max-width:1500px){
    width: 290px;
  }
  @media only screen and (max-width:1450px){
    margin-left: 34px;
  }
  @media only screen and (max-width:1366px){
    width: 250px;
  }
  @media only screen and (max-width:1225px){
    width: 235px;
    margin-left: 20px;
  }
  @media only screen and (max-width: 1195px) {
    width: 210px;
    margin-left: 0;
    margin-top: 0;
  }
  @media only screen and (max-width: 767px) {
    width: 200px;
  }
}
.header-logo-anchor img {
  transition: .2s ease-out;
}
@media (hover: hover) {
  .header-logo-anchor:hover img {
    opacity: 0.8;
  }
}

/* ハンバーガーメニュー ーーーーーーーーーーーーーーーーーーーーーー */
.header-nav-menu-btn-sp {
  display: none;
  @media only screen and (max-width: 1150px) {
    display: flex;
    position: absolute;
    top: 15px;
    right: 0;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
  }
  @media only screen and (max-width: 767px) {
    width: 30px;
    height: 30px;
    padding: 0;
  }
}

.header-nav-menu-btn-sp span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.header-nav-menu-sp {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  padding: 130px 0 50px 0;
  box-shadow: 0 -23px 34px 10px rgba(0, 0, 0, 0.25);
  transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  transition: all 0.3s ease;
  @media only screen and (max-width: 767px) {
    padding: 80px 0 50px 0;
  }
}

.header-nav-menu-sp ul.header-nav-menu-sp-ul {
  width: 100%;
}

.header-nav-menu-sp ul.header-nav-menu-sp-ul li.header-nav-menu-sp-li {
  border-bottom: 1px solid #C2C2C2;

  &.header-nav-menu-sp-contact {
    border: none;
    background-color: #FF8000;
    margin-top: 30px;
    text-align: center;
    padding: 15px 0;
    border-radius: 10px;

    a {
      font-size: 16px;
      color: #fff;
      padding: 10px 0;
    }
  }
}

.header-nav-menu-sp ul.header-nav-menu-sp-ul li.header-nav-menu-sp-li a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 21px 0 13px 0;
  font-size: 16px;
  font-weight: bold;
}

.header-nav-menu-sp ul.header-nav-menu-sp-ul li.header-nav-menu-sp-li .header-nav-menu-sp-fair {
  margin-bottom: 10px;
  li {
    a {
      font-size: 12px;
      padding: 10px 0;

      span {
        color: #FF8000;
        margin-right: 10px;
      }
    }
  }
}

.header-nav-menu-sp .arrow {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-color: #E60012;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  padding: 6px;
}

.header-nav-menu-sp .arrow path {
  fill: #fff;
}

/* メニューが開いた時 */
.header-nav-menu-sp.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

/* ハンバーガーが開いた状態（アイコン変形も） */
.header-nav-menu-btn-sp.open span:nth-child(1) {
  transform: rotate(30deg) translateY(8px) translateX(6px);
}
.header-nav-menu-btn-sp.open span:nth-child(2) {
  opacity: 0;
}
.header-nav-menu-btn-sp.open span:nth-child(3) {
  transform: rotate(-30deg) translateY(-2px) translateX(1px);
}
@media only screen and (max-width: 767px) {
  .header-nav-menu-btn-sp.open span:nth-child(1) {
    transform: rotate(30deg) translateY(8px) translateX(6px);
  }
  .header-nav-menu-btn-sp.open span:nth-child(3) {
    transform: rotate(-30deg) translateY(-2px) translateX(1px);
  }
}

.header-nav {
  margin-left: auto;
  opacity: 1;
  padding: 0 0 0 15px;
  position: static;
  visibility: visible;
  @media only screen and (max-width: 1150px) {
    display: none;
  }
}

.header-nav-inner {
  align-items: center;
  display: flex;
  gap: 16px;
}

.header-nav-list {
  display: flex;
  gap: 25px;
  margin-bottom: 0;
  @media only screen and (max-width:1260px){
    gap: 20px;
  }
}

.header-nav-list-item {
  display: grid;
  align-items: center;

  &:last-child {
    .header-nav-list-anchor {
      color: #fff;
      height: 60px;
      padding: 0 15px;
      background-color: #FF8000;
      border: 2px solid #FF8000;
      border-radius: 10px;
      display: grid;
      align-items: center;
    }
    @media (hover: hover) {
      .header-nav-list-anchor:hover {
        color: #FF8000;
        background-color: #fff;
      }
    }
  }
}

.header-nav-list-anchor {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1px;
  line-height: 1.2;
  display: block;
  flex-direction: column-reverse;
  gap: 0;
  height: auto;
  padding: 5px;
  position: relative;
  width: 100%;
  text-align: center;
  transition: .2s ease-out;
  @media only screen and (max-width: 1407px) {
    color: #333;
    font-size: 14px;
  }
  @media only screen and (max-width: 1350px) {
    color: #333;
  }
}
@media (hover: hover) {
  .header-nav-list-anchor:hover {
    color: #FF8000;
  }
}

.header-nav-list-fair {
  position: relative;
}

.header-nav-list-fair-ul {
  display: none;
  position: absolute;
  bottom: -95px;
  padding: 25px 30px 20px 25px;
  background-color: rgb(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 4px 5px 14px 0px #39373747;

  li {
    a {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 15px;
      &:hover {
        color: #FF8000;
      }
      span {
        color: #FF8000;
        margin-right: 8px;
      }
    }
  }
}


.footer {
  position: relative;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #fff;39373747;
  @media only screen and (max-width:800px){
    flex-wrap: wrap;
  }
}

.footer-logo-anchor {
  img {
    width: auto;
    height: 30px;
  }
}

.footer-right {
  display: flex;
  @media only screen and (max-width:800px){
    flex-wrap: wrap;
    width: 100%;
  }
}

.footer-privacy {
  text-decoration: underline;
  @media only screen and (max-width:767px){
    font-size: 12px;
    margin-top: 20px;
  }
  &:hover {
    text-decoration: none;
  }
}

.footer-copy {
  margin-left: 30px;
  @media only screen and (max-width:800px){
    font-size: 11px;
    width: 100%;
    margin: 10px 0 0;
  }
}
