@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.75;
}

p {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sp_only {
  display: none;
}

.p-r {
  position: relative;
}

.p-a {
  position: absolute;
}

.ta-c {
  text-align: center;
}

.m-0a {
  margin: 0 auto;
}

.flex,
.flex_r,
.flex_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.col-2,
.col-3,
.col-4,
.col-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.col-2 > * {
  width: calc(100% / 2 - 2%);
}

.col-2 > *:nth-of-type(n + 3) {
  margin-top: 20px;
}

.col-3 > * {
  width: calc(100% / 3 - 2%);
}

.col-3 > *:nth-of-type(n + 4) {
  margin-top: 20px;
}

.col-4 > * {
  width: calc(100% / 4 - 2%);
}

.col-4 > *:nth-of-type(n + 5) {
  margin-top: 20px;
}

.col-5 > * {
  width: calc(100% / 5 - 2%);
}

.col-5 > *:nth-of-type(n + 6) {
  margin-top: 20px;
}

.container {
  max-width: 1280px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.footer .container {
  max-width: 1380px;
}
.container_max {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

/* ----- main ----- */
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  p {
    font-size: 1.4rem;
  }
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex > *,
  .flex_r > * {
    width: 100%;
  }
  .col-2 > *,
  .col-3 > *,
  .col-4 > *,
  .col-5 > * {
    width: calc(100% / 2 - 2%);
  }
  .col-2 > *:nth-of-type(n + 3),
  .col-3 > *:nth-of-type(n + 3),
  .col-4 > *:nth-of-type(n + 3),
  .col-5 > *:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}

/* ホバー時 四隅から枠線が伸びる */
.hover-border a {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  font-weight: bold;
}

.hover-border a:hover {
  opacity: 0.7;
}

.hover-border a:hover:before, .hover-border a:hover:after {
  width: 100%;
}

.hover-border a:hover .line:before, .hover-border a:hover .line:after {
  height: 100%;
}

.hover-border a:before, .hover-border a:after,
.hover-border a .line:before,
.hover-border a .line:after {
  background-color: #2a54b4;
  content: "";
  display: block;
  position: absolute;
  z-index: 1000;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.hover-border a:before {
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
}

.hover-border a:after {
  width: 0;
  height: 2px;
  top: 0;
  left: 0;
}

.hover-border a .line:before {
  width: 2px;
  height: 0;
  top: 0;
  right: 0;
}

.hover-border a .line:after {
  width: 2px;
  height: 0;
  bottom: 0;
  left: 0;
}

.hover-zoom {
  overflow: hidden;
  border-radius: 12px;
}

.hover-zoom a img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: 1s;
  transition: 1s;
}

.hover-zoom a:hover {
  opacity: 1;
}

.hover-zoom a:hover img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;
}

.header .header_contents {
  max-width: 1400px;
  width: 100%;
  padding: 20px 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header_contents .header_logo_wrap {
  width: 230px;
}

.header .header_contents .header_logo_wrap p {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
}

.header .header_contents .header_logo_wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header_contents .header_logo_wrap .header_logo {
  max-width: 90px;
  margin-right: 15px;
}

.header .header_contents .header_logo_wrap .header_logo img {
  vertical-align: middle !important;
}

@media screen and (max-width: 768px) {
  .header {
    background: white;
  }
  .header .header_contents {
    padding: 10px 20px;
  }
}

.footer {
  padding: 30px 0 70px;
  border-top: 1px solid #000;
}

.footer .footer_contents .footer_left .footer_logo_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.footer .footer_contents .footer_left .footer_logo_wrap p {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
}

.footer .footer_contents .footer_left .footer_logo_wrap .footer_logo {
  max-width: 90px;
  margin-right: 10px;
}

.footer .footer_contents .footer_left .catch {
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  font-weight: 300;
}

.footer .footer_contents .footer_left .company_info {
  margin-top: 20px;
  letter-spacing: 2px;
}

.insta_icon img{
  width: 2rem;
}




.footer .footer_contents .footer_left .company_info p:not(:last-of-type) {
  margin-bottom: 10px;
}

.footer .footer_contents .footer_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer .footer_contents .footer_right .footer_bnrs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer .footer_contents .footer_right .aqush_cm {
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  padding: 20px 50px;
  color: #fff;
  background: #1e1e1e;
}

.footer .footer_contents .footer_right .aqush_cm i {
  margin-right: 10px;
}

.footer .footer_contents .footer_right .nippon_fight {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 50px;
  margin-top: 10px;
  margin-left: 10px;
  background: #faf6f3;
}

.footer .footer_contents .footer_right .nippon_fight .hinomaru {
  font-size: 2.4rem;
  color: #f00;
  margin-right: 10px;
}

.footer .footer_contents .footer_right .nippon_fight .sub {
  font-size: 1.6rem;
  color: #985c51;
}

.footer .footer_contents .footer_right .copyright {
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .footer .footer_contents .footer_left .footer_logo_wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .footer_contents .footer_left .footer_logo_wrap .footer_logo {
    max-width: 100px;
    margin-right: 10px;
  }
  .footer .footer_contents .footer_left .catch {
    font-size: 1.4rem;
    text-align: center;
  }
  .footer .footer_contents .footer_left .company_info {
    text-align: center;
    margin-top: 40px;
  }
  .footer .footer_contents .footer_left .company_info p:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .footer .footer_contents .footer_right {
    margin-top: 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer_contents .footer_right .footer_bnrs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .footer .footer_contents .footer_right .nippon_fight {
    margin-top: 30px;
    margin-left: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .footer_contents .footer_right .nippon_fight .hinomaru {
    font-size: 2.4rem;
    color: #f00;
    margin-right: 10px;
  }
  .footer .footer_contents .footer_right .nippon_fight .sub {
    font-size: 1.6rem;
    color: #985c51;
  }
  .footer .footer_contents .footer_right .acd a {
    padding: 0.3em 0 !important;
  }
  .footer .footer_contents .footer_right .acd a:hover:after {
    content: none;
  }
  .footer .footer_contents .footer_right .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer_contents .footer_right .nav li a {
    padding: 12px 20px;
  }
  .footer .footer_contents .footer_right .copyright {
    font-size: 1.4rem;
    margin-top: 60px;
    text-align: center;
  }
}

.nav {
  font-size: 1.2rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 2px;
  position: relative;
  max-width: 840px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nav li {
  float: left;
  width: auto;
}

.nav li a {
  display: inline-block;
  position: relative;
  padding: 7px 15px;
}

.nav li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.nav li a:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.nav .nav_items_wrap {
  position: relative;
}

.nav .nav_items_wrap .nav_item {
  position: absolute;
  top: 33px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  border-left: 1px solid #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav .nav_items_wrap .nav_item li {
  width: calc(100% + 100px);
  background: rgba(255, 255, 255, 0.9);
}

.nav .nav_items_wrap .nav_item li:first-of-type {
  margin-top: 15px;
  padding-top: 15px;
}

.nav .nav_items_wrap .nav_item li a {
  width: 100%;
}

.nav .nav_items_wrap:hover .nav_item {
  top: 43px;
  visibility: visible;
  opacity: 1;
}

.nav:before, .nav:after {
  content: " ";
  display: table;
}

.nav:after {
  clear: both;
}

@media screen and (max-width: 768px) {
  .nav li {
    float: none;
    text-align: center;
  }
}

/* ハンバーガーメニュー */
.nav_sp .hamburger {
  display: block;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 100;
}

.nav_sp .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 6px;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.nav_sp .hamburger span:nth-child(1) {
  top: 10px;
}

.nav_sp .hamburger span:nth-child(2) {
  top: 20px;
}

.nav_sp .hamburger span:nth-child(3) {
  top: 30px;
}

.nav_sp .hamburger.active span:nth-child(1) {
  top: 20px;
  left: 6px;
  background: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav_sp .hamburger.active span:nth-child(2), .nav_sp .hamburger.active span:nth-child(3) {
  top: 20px;
  background: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_sp .globalMenuSp {
  font-family: "Raleway", sans-serif;
  letter-spacing: 2px;
  width: 100%;
  background: white;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  padding-top: 50px;
  position: fixed;
  z-index: 2;
  top: 60px;
  left: 0;
}

.nav_sp .globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.nav_sp .globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.nav_sp .globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

.nav_sp .globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration: none;
}

.nav_sp .globalMenuSp.active {
  visibility: visible;
  opacity: 1;
}

.nav_sp .globalMenuSp .close {
  margin-top: 50px;
}

.nav_sp .globalMenuSp .close a {
  display: block;
  padding: 10px 0;
  background: #f5f5f5;
}

.active-bg {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.active-bg.active {
  opacity: 1;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  pointer-events: none;
}

.acd {
  cursor: pointer;
}

.acd .acd_link {
  display: block;
  position: relative;
}

.acd .acd_sub {
  display: none;
  margin-bottom: 20px !important;
}

.acd .acd_sub:before {
  content: "｜";
  font-size: 1.4rem;
  display: block;
  padding: 0.7em 0;
}

.acd .acd_sub .acd_subitem {
  font-size: 1.4rem;
}

.acd .acd_sub .acd_subitem a {
  padding: 0.7em 0;
}

@media screen and (max-width: 768px) {
  .acd {
    display: block;
  }
}

.trig-fade {
  opacity: 0;
}

.trig-fade.fadeup {
  -webkit-animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.acd_link {
  position: relative;
}

.acd_link:after {
  content: "";
  background: url(../img/item/arrow_down.png) center center/contain no-repeat;
  width: 20px;
  height: 8px;
  position: absolute;
  -webkit-transform: translate(75%, -50%);
          transform: translate(75%, -50%);
  top: 50%;
}

.acd_link.on:after {
  background: url(../img/item/arrow_up.png) center center/contain no-repeat;
}
