@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transform: translateY(0%);
  transition: transform 0.2s ease-out, background-color 0.2s ease-out;
}

.logo {
  width: 200px;
  margin: 20px;
  position: absolute;
  top: -3px;
  left: 50px;
}
@media only screen and (max-width: 769px) {
  .logo {
    width: 120px;
    left: 3%;
    top: -1px;
  }
}

@media only screen and (max-width: 769px) {
  /*ハンバーガーアイコン*/
  .btn-burger {
    cursor: pointer;
    display: block;
    width: 56px;
    height: 60px;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1000;
  }
  /*ハンバーガーアイコンを作る三本線*/
  .icon, .icon:before, .icon:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px; /*線の太さ*/
    width: 35px; /*線の長さ*/
    background-color: #3E3A39;
    border-radius: 2px;
    display: block;
    content: "";
    cursor: pointer;
    margin: auto;
  }
  /*三本線の間隔*/
  .icon:before {
    top: 15px;
    margin: 0px;
  }
  .icon:after {
    top: -15px;
    margin: 0px;
  }
  #burger.active,
  #burger.active:before,
  #burger.active:after {
    background-color: #3E3A39;
  }
  /*チェックボックス非表示*/
  .nav-toggle {
    display: none;
  }
  /*アイコンをクリックしたら*/
  .nav-toggle:checked ~ .btn-burger .icon {
    background: transparent !important;
  }
  .nav-toggle:checked ~ .btn-burger .icon:before {
    transform: rotate(-45deg);
    top: 0;
    background-color: #3E3A39;
  }
  .nav-toggle:checked ~ .btn-burger .icon:after {
    transform: rotate(45deg);
    top: 0;
    background-color: #3E3A39;
  }
  .icon,
  .icon:before,
  .icon:after {
    transition: all 0.8s;
  }
}
.menu-waku {
  position: relative;
}
@media only screen and (max-width: 769px) {
  .menu-waku {
    width: 100%;
  }
}

.menu-inner-sm {
  display: none;
}
@media only screen and (min-width: 1026px) {
  .menu-inner-sm.active {
    display: block;
    position: absolute;
    width: 130px;
    background-color: rgba(255, 255, 255, 0.9);
    top: 44px;
    left: -35px;
  }
}
@media only screen and (max-width: 769px) {
  .menu-inner-sm.active {
    display: block;
    width: 80%;
    margin: 10px auto 50px;
    text-align: center;
    justify-content: flex-start;
    color: #3E3A39;
  }
}
.menu-inner-sm-inner {
  margin: 20px auto;
  text-align: center;
  display: block;
  font-size: 12px;
  color: #3E3A39;
}
@media only screen and (max-width: 769px) {
  .menu-inner-sm-inner {
    font-size: 15px;
    margin: 30px auto;
  }
}

.sm-entry-waku {
  display: none;
}
@media only screen and (max-width: 769px) {
  .sm-entry-waku {
    display: block;
    text-align: center;
    margin: 20px auto;
  }
  .sm-entry-waku-bun {
    font-size: 15px;
    margin: 40px auto 10px;
    color: #14939C;
  }
  .sm-entry-waku-entoty-btn {
    width: 224px;
    line-height: 49px;
    color: white;
    background-color: #079aa4;
    position: relative;
    margin: 10px auto;
    display: block;
    letter-spacing: 4px;
  }
  .sm-entry-waku-entoty-btn::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 20px;
    width: 20%;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
    display: block;
  }
  .sm-entry-waku-entoty-btn::before {
    content: "";
    position: absolute;
    top: 17px;
    right: 20px;
    width: 15px;
    height: 1px;
    background: #fff;
    transform: rotate(35deg);
    transition: all 0.3s;
  }
  .sm-entry-waku-entoty-btn:hover {
    background-color: #fff;
    color: #1E939C;
  }
  .sm-entry-waku-entoty-btn:hover::after {
    right: 10px;
    background: #1E939C;
  }
  .sm-entry-waku-entoty-btn:hover::before {
    right: 10px;
    background: #1E939C;
  }
}

.nav-items {
  padding: 0;
  list-style: none;
  position: absolute;
  margin: 20px;
  right: 300px;
  top: 19px;
}

.nav-entry {
  position: absolute;
  top: 0px;
  right: 50px;
  z-index: 99;
  width: 157px;
  height: 128px;
  background-color: #089AA4;
}
.nav-entry::after {
  background-image: url(../img/header/Vector.svg);
  content: "";
  top: 72px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  width: 159px;
  height: 122px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 80px;
}
.nav-entry::before {
  content: "";
  background-image: url(../img/header/yajirushi.svg);
  top: 49px;
  left: 49px;
  width: 27px;
  height: 122px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.nav-entry:hover {
  background-color: white;
}
.nav-entry:hover::after {
  background-image: url(../img/header/Vector_on.svg);
}
.nav-entry:hover::before {
  background-image: url(../img/header/yajirushi_on.svg);
  left: 60px;
  transition: all 0.3s;
}
.nav-entry .btn-green {
  width: 157px;
  height: 128px;
  background-color: #089AA4;
  position: relative;
  display: block;
  color: white;
  padding-top: 86px;
  text-align: center;
  /*hoverした際の移動*/
}
.nav-entry .btn-green .maru {
  position: absolute;
  border: 1px solid white;
  top: 25px;
  left: 55px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.nav-entry .btn-green .yajirushi-back {
  top: 35px;
  left: 41px;
  height: 20px;
  width: 30px;
  background-color: #079aa4;
  position: absolute;
}
.nav-entry .btn-green .btn-yajirushi {
  position: absolute;
  top: 23px;
  left: 30px;
}
.nav-entry .btn-green .btn-yajirushi .btnarrow4 {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: white;
  text-decoration: none;
  outline: none;
}
.nav-entry .btn-green .btn-yajirushi .btnarrow4::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
  background: white;
  transition: all 0.3s;
}
.nav-entry .btn-green .btn-yajirushi .btnarrow4::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: white;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.nav-entry .btn-green .btnarrow4:hover::before {
  left: 20%;
}
.nav-entry .btn-green .btnarrow4:hover::after {
  right: -5%;
}

.nav-item {
  display: inline-block;
  margin-right: 25px;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active,
.submenu-link,
.submenu-link:link,
.submenu-link:visited,
.submenu-link:active {
  display: block;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active {
  color: white;
  font-weight: bold;
}
.nav-link.active,
.nav-link:link.active,
.nav-link:visited.active,
.nav-link:active.active {
  color: #3E3A39;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3E3A39;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link:hover::before {
  opacity: 1;
  transform: translate(0, 5px);
}

.dropdown {
  position: relative;
  margin-right: 46px !important;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .dropdown {
    margin: auto !important;
  }
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -15px;
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: transparent transparent white white;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 769px) {
  .dropdown::after {
    top: 10px;
    right: 28%;
    border-color: transparent transparent #3E3A39 #3E3A39;
  }
}
.dropdown.active {
  color: #3E3A39;
}
@media only screen and (max-width: 769px) {
  .dropdown.active {
    opacity: 0.3;
  }
}
.dropdown.active::after {
  border-color: transparent transparent #3E3A39 #3E3A39;
}
@media only screen and (max-width: 769px) {
  .dropdown.active::after {
    border-color: transparent transparent #3E3A39 #3E3A39;
    width: 20px;
    height: 1px;
    top: 16px;
    right: 26%;
    border: 1px solid;
    transform: rotate(0deg);
    opacity: 0.3;
  }
}

.menu {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
  position: absolute;
  top: -14px;
  right: 205px;
}
@media only screen and (max-width: 769px) {
  .menu {
    display: none;
  }
}
.menu-inner {
  margin-right: 32px;
  font-size: 12px;
  position: relative;
  display: block;
  text-decoration: none;
  color: white;
  transition: color 0.25s ease;
}
.menu-inner.active {
  color: #3E3A39;
}
@media only screen and (max-width: 769px) {
  .menu-inner {
    font-size: 15px;
    color: #3E3A39;
  }
}
.menu-inner:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media only screen and (max-width: 769px) {
  .menu-inner:hover::before {
    transform: none;
  }
}
.menu-inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #7799bd;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
}
@media only screen and (max-width: 769px) {
  .menu-inner::before {
    display: none;
  }
}
@media only screen and (max-width: 769px) {
  .menu-inner {
    margin: 30px auto !important;
    text-align: center;
    display: block;
  }
}
@media only screen and (max-width: 769px) {
  .menu.active {
    display: block !important;
    width: 100%;
    height: 100vh;
    background-color: white;
    position: relative;
    z-index: 100;
    margin-top: 0px;
    padding: 20% 5% 10%;
    overflow-y: scroll;
    top: 0px;
    right: 0px;
    overflow-x: hidden;
    z-index: 100;
  }
}

.nav-sub {
  display: none;
}
.nav-sub.active {
  display: block;
}

.sub-inner {
  display: none;
  position: absolute;
}
.sub-inner.active {
  display: block;
  margin-top: 65px;
  transform: translateX(-60px);
  width: 200px;
  z-index: 1;
  position: fixed;
  padding: 10px 0px 10px;
  transform: scaleX(1);
  transform-origin: left;
  position: absolute;
  left: 20px;
  top: 18px;
}
.sub-inner-inner {
  display: block;
  justify-content: center;
}
.sub-inner-inner-sub {
  margin-right: 45px;
  font-size: 12px;
  display: block;
  position: relative;
  color: #3E3A39;
  padding: 10px;
  width: 200px;
}
.sub-inner-inner-sub:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media only screen and (max-width: 769px) {
  .sub-inner-inner-sub:hover::before {
    transform: none;
  }
}
.sub-inner-inner-sub::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #1E939C;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
  bottom: 0px;
}
@media only screen and (max-width: 769px) {
  .sub-inner-inner-sub::before {
    display: none;
  }
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;
  width: 200px;
  margin-left: -100px;
  background: #fff;
  border-radius: 3px;
  line-height: 1.46667;
  margin-top: -5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translate(0, 0) scale(0.85);
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  pointer-events: none;
}
.submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  height: 0;
  margin-left: -13px;
  border: 13px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  filter: blur(1px);
}
.submenu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  height: 0;
  border-bottom-color: #fff;
}

.submenu-items {
  list-style: none;
  padding: 10px 0;
}

.submenu-item {
  display: block;
  text-align: left;
}

.submenu-link,
.submenu-link:link,
.submenu-link:visited,
.submenu-link:active {
  color: #3498db;
  padding: 10px 20px;
}

.submenu-link:hover {
  text-decoration: underline;
}

.submenu-seperator {
  height: 0;
  margin: 12px 10px;
  border-top: 1px solid #eee;
}

.show-submenu .submenu {
  opacity: 1;
  transform: translate(0, 25px) scale(1);
  pointer-events: auto;
}

.js-header.active {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 80px;
}
@media only screen and (max-width: 769px) {
  .js-header.active {
    height: 65px;
  }
}

.drawer {
  position: relative;
}

.front-img {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 0px;
}
@media only screen and (max-width: 769px) {
  .front-img {
    margin-top: 65px;
  }
}

.front-page {
  width: 100%;
  margin: 100px auto 0px;
}
@media only screen and (max-width: 769px) {
  .front-page {
    margin-top: -10px;
  }
}
.front-page .top-img {
  width: 100%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: flex-end;
  background-image: url(../img/front/top-img2.png);
  padding-top: 10%;
  padding-bottom: 10%;
  background-repeat: no-repeat;
  z-index: -90;
}
@media only screen and (max-width: 769px) {
  .front-page .top-img {
    background-image: url(../img/front/sm/top-img2.png);
    display: block;
    padding-bottom: 0px;
    padding-top: 10%;
  }
}
.front-page .top-img .top-img-right {
  width: 60%;
}
@media only screen and (max-width: 769px) {
  .front-page .top-img .top-img-right {
    width: 80%;
    margin: 20% 0px 5% 20%;
  }
}
.front-page .top-img .top-img-left {
  width: 40%;
}
@media only screen and (max-width: 769px) {
  .front-page .top-img .top-img-left {
    width: 84%;
    margin: auto;
  }
}
.front-page .top-img .top-img-left .title {
  padding: 13px 0px 0px 150px;
  font-size: 22px;
  line-height: 43px;
  color: white;
}
@media only screen and (max-width: 769px) {
  .front-page .top-img .top-img-left .title {
    padding: 0px;
    margin-top: 40px;
  }
}
.front-page .top-img .top-img-left .bun {
  font-size: 15px;
  line-height: 30px;
  text-align: left;
  padding: 30px 50px 0px 150px;
  color: white;
}
@media only screen and (max-width: 769px) {
  .front-page .top-img .top-img-left .bun {
    padding: 0px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 769px) {
  .front-page-inner-flex {
    display: flex;
    justify-content: space-between;
    width: 84%;
    margin: auto;
  }
  .front-page-inner-flex-inner {
    width: 30%;
  }
}
.front-page-img-1 {
  width: 570px;
  height: 438px;
}
@media only screen and (max-width: 769px) {
  .front-page-img-1 {
    width: 100%;
    height: auto;
    margin: 10% auto;
  }
}

.mame-batake {
  margin: 20% auto 0px;
}

.front-section-2 {
  width: 100%;
  background-color: #242833;
  background-size: cover;
  padding: 100px 0px;
  margin: 50px auto 100px;
}
@media only screen and (max-width: 769px) {
  .front-section-2 {
    width: 100%;
    padding: 0px 0px 10%;
    margin: 5% auto;
  }
}
.front-section-2 .section2-img {
  display: none;
}
@media only screen and (max-width: 769px) {
  .front-section-2 .section2-img {
    display: block;
    width: 84%;
    padding: 15% 0px 10%;
    margin: auto;
  }
}
.front-section-2 .section2-bun {
  color: white;
  font-size: 15px;
  width: 84%;
  margin: 5% auto;
}
.front-section-2 .inner-title {
  font-size: 22px;
  text-align: left;
  width: 1000px;
  margin: 100px auto 0px;
  color: white;
}
@media only screen and (max-width: 769px) {
  .front-section-2 .inner-title {
    margin: 5% auto;
    width: 84%;
    padding: 0px;
  }
}
.front-section-2 .maru-btn {
  border-radius: 30px;
  border: 1px solid white;
  background-color: none;
  color: white;
  font-size: 15px;
  text-align: center;
  width: 331px;
  line-height: 56px;
  letter-spacing: 2px;
  position: relative;
  display: block;
  margin: 50px auto;
}
@media only screen and (max-width: 769px) {
  .front-section-2 .maru-btn {
    width: 100%;
    max-width: 331px;
  }
}
.front-section-2 .maru-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}
.front-section-2 .maru-btn:hover {
  background-color: white;
  color: #2A2A2A;
}
.front-section-2 .maru-btn:hover::after {
  border-top: 2px solid #2A2A2A;
  border-right: 2px solid #2A2A2A;
}
.front-section-2-inner {
  width: 1000px;
  height: 230px;
  margin: 10px auto;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .front-section-2-inner {
    width: 100%;
    width: 100%;
    height: auto;
    margin: 0px auto;
    position: unset;
  }
}
.front-section-2-inner .bun {
  position: absolute;
  top: 50%;
  left: 373px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 15px;
  margin-right: 74px;
}
@media only screen and (max-width: 769px) {
  .front-section-2-inner .bun {
    position: unset;
    width: 84%;
    margin: 5% auto;
    color: white;
  }
}
.front-section-2-inner .section2-logo {
  margin: 0px auto;
  width: 100px;
  text-align: center;
}
.front-section-2-inner .section2-logo-moji {
  font-size: 20px;
  margin: 10px auto 50px;
  text-align: center;
  color: white;
}
.front-section-2-inner .inner-banner {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 769px) {
  .front-section-2-inner .inner-banner {
    display: block;
    width: 84%;
    margin: auto;
  }
}
.front-section-2-inner .inner-banner-img {
  margin: 0px 10px;
}
@media only screen and (max-width: 769px) {
  .front-section-2-inner .inner-banner-img {
    margin: 10px auto;
    display: block;
  }
}

.margin100 {
  margin-top: 100px;
}

.margin50 {
  margin-top: 50px !important;
}
@media only screen and (max-width: 769px) {
  .margin50 {
    margin-top: 10% !important;
  }
}

.front-section-3 {
  margin: 150px auto;
}
.front-section-3-title {
  width: 270px;
  text-align: center;
  margin: auto;
}
.front-section-3-inner {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
.front-section-3-inner-banner {
  width: 153px;
  margin: 0px 10px;
}
.front-section-3-inner-banner-bun {
  text-align: center;
  font-size: 15px;
  color: #3C1300;
  margin: 10px auto;
}
.front-section-3 .sec4-sns-waku {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  width: 1000px;
}
@media only screen and (max-width: 769px) {
  .front-section-3 .sec4-sns-waku {
    display: block;
    width: 84%;
    margin: 20% auto;
  }
}
.front-section-3 .sec4-sns-waku-banner {
  width: 327px;
}

.about-section {
  width: 1000px;
  margin: 150px auto;
}
@media only screen and (max-width: 769px) {
  .about-section {
    width: 84%;
    margin: 20% auto;
  }
}
.about-section-title {
  font-size: 29px;
  letter-spacing: 4px;
  color: #512008;
  text-align: center;
}
.about-section-waku {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .about-section-waku {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.about-section-waku-inner {
  width: 206px;
  background-color: #3C1300;
  color: white;
  margin: 0px 10px;
  line-height: 75px;
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .about-section-waku-inner {
    width: 46%;
    margin: 2% 2%;
    font-size: 13px;
  }
}
.about-section-waku-inner2 {
  width: 140px;
  margin: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .about-section-waku-inner2 {
    width: 44%;
    margin: 2%;
  }
}
.about-section-waku-inner3 {
  width: 148px;
  margin: 0px 20px;
}
@media only screen and (max-width: 769px) {
  .about-section-waku-inner3 {
    width: 46%;
    margin: 2%;
  }
}

.online-shop-swiper {
  padding: 30px 0px;
  margin: 65px auto 30px;
}
.online-shop-swiper .swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}
.online-shop-swiper .swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 93px;
}

.online-sarch {
  margin: 30px auto;
  width: 421px;
}

.online-banner-waku {
  width: 1000px;
  margin: 100px auto 30px;
  display: flex;
  justify-content: center;
}
.online-banner-waku-inner {
  width: 212px;
  margin: 0px 10px;
}

.news-waku {
  width: 800px;
  margin: 100px auto;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .news-waku {
    width: 80%;
    margin: 30% auto;
  }
}
.news-waku-title {
  font-size: 30px;
  position: relative;
}
@media only screen and (max-width: 769px) {
  .news-waku-title {
    font-size: 30px;
  }
}
.news-waku-title2 {
  font-size: 23px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 769px) {
  .news-waku-title2 {
    font-size: 12px;
  }
}
.news-waku .date-waku {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4901960784);
  padding: 20px 0px;
}
@media only screen and (max-width: 769px) {
  .news-waku .date-waku {
    display: block;
  }
}
.news-waku .date-waku .date-bun {
  color: #14939C;
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .news-waku .date-waku .date-bun {
    font-size: 10px;
    font-weight: 700;
  }
}
.news-waku .date-waku .honbun {
  margin-left: 100px;
  font-size: 15px;
}
@media only screen and (max-width: 769px) {
  .news-waku .date-waku .honbun {
    margin: auto;
    font-size: 14px;
    font-weight: 600;
  }
}
.news-waku .date-last {
  border-bottom: none;
}

.front-footer-inner {
  background-color: #77b0e1;
  width: 100%;
  margin-bottom: -100px;
}
.front-footer-inner-inner {
  width: 800px;
  margin: 100px auto 0px;
  padding: 100px 0;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .front-footer-inner-inner {
    width: 100%;
    margin: 15% auto 0px;
    padding: 20% 8%;
    display: block;
  }
}
.front-footer-inner-inner .bun {
  color: white;
  font-size: 13px;
  margin: 30px auto;
  line-height: 25px;
}
.front-footer-inner-inner .bun2 {
  color: white;
  font-size: 13px;
  margin: 30px auto;
  text-align: right;
  padding-bottom: 30px;
}

.content-waku {
  margin: 200px auto;
}
@media only screen and (max-width: 769px) {
  .content-waku {
    margin: 20% auto;
  }
}
.content-waku .content-title {
  font-size: 22px;
  margin: 50px auto 100px;
  text-align: center;
}

.company-inner-waku {
  width: 800px;
  display: flex;
  justify-content: flex-start;
  margin: 30px auto;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4392156863);
  padding-bottom: 30px;
}
@media only screen and (max-width: 769px) {
  .company-inner-waku {
    width: 84%;
    display: block;
  }
}
.company-inner-waku .left {
  font-size: 15px;
  line-height: 30px;
  width: 40%;
}
@media only screen and (max-width: 769px) {
  .company-inner-waku .left {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .company-inner-waku .left {
    width: 100%;
    color: #666767;
  }
}
.company-inner-waku .right {
  font-size: 15px;
  line-height: 30px;
  width: 60%;
}
@media only screen and (max-width: 769px) {
  .company-inner-waku .right {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .company-inner-waku .right {
    width: 100%;
  }
}
.company-inner-waku iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.company-inner-waku .koujyo-waku {
  border-bottom: 1px solid rgba(128, 128, 128, 0.4392156863);
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.company-inner-waku .koujyo-waku .title {
  font-weight: 700;
}

.company-inner-waku2 {
  width: 800px;
  display: flex;
  justify-content: flex-start;
  margin: 10px auto;
  padding-bottom: 10px;
}
@media only screen and (max-width: 769px) {
  .company-inner-waku2 {
    width: 84%;
  }
}
.company-inner-waku2 .left {
  font-size: 15px;
  line-height: 30px;
  width: 20%;
}
@media only screen and (max-width: 769px) {
  .company-inner-waku2 .left {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .company-inner-waku2 .left {
    color: #666767;
  }
}
.company-inner-waku2 .right {
  font-size: 15px;
  line-height: 30px;
  width: 80%;
}
@media only screen and (max-width: 769px) {
  .company-inner-waku2 .right {
    font-size: 15px;
    line-height: 30px;
  }
}

.company-second-waku {
  width: 800px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .company-second-waku {
    width: 84%;
    margin: 10% auto;
  }
}
.company-second-waku .title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 700;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4392156863);
  padding-bottom: 30px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .company-second-waku .title {
    font-size: 15px;
    line-height: 30px;
  }
}
.company-second-waku .bun {
  font-size: 15px;
  line-height: 30px;
  margin: 30px auto;
  line-height: 27px;
}
@media only screen and (max-width: 769px) {
  .company-second-waku .bun {
    font-size: 15px;
    line-height: 30px;
  }
}

.tokuteisho-waku {
  width: 800px;
  margin: 30px auto;
  border-bottom: 1px solid rgba(128, 128, 128, 0.4392156863);
  padding-bottom: 30px;
}
@media only screen and (max-width: 769px) {
  .tokuteisho-waku {
    width: 84%;
  }
}
.tokuteisho-waku .title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 700;
  margin: 0px auto 5px;
}
@media only screen and (max-width: 769px) {
  .tokuteisho-waku .title {
    font-size: 15px;
    line-height: 30px;
  }
}
.tokuteisho-waku .bun {
  font-size: 15px;
  line-height: 30px;
  line-height: 27px;
}
@media only screen and (max-width: 769px) {
  .tokuteisho-waku .bun {
    font-size: 15px;
    line-height: 30px;
  }
}

.kojinjyohou-waku {
  width: 800px;
  margin: 30px auto;
  padding-bottom: 30px;
}
@media only screen and (max-width: 769px) {
  .kojinjyohou-waku {
    width: 84%;
  }
}
.kojinjyohou-waku .title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 700;
  margin: 0px auto 5px;
}
@media only screen and (max-width: 769px) {
  .kojinjyohou-waku .title {
    font-size: 15px;
    line-height: 30px;
  }
}
.kojinjyohou-waku .bun {
  font-size: 15px;
  line-height: 30px;
  line-height: 27px;
}
@media only screen and (max-width: 769px) {
  .kojinjyohou-waku .bun {
    font-size: 15px;
    line-height: 30px;
  }
}

.kojin-bunsho {
  font-size: 15px;
  line-height: 30px;
  margin: 50px auto;
  width: 800px;
}
@media only screen and (max-width: 769px) {
  .kojin-bunsho {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .kojin-bunsho {
    margin: 10% auto;
    width: 84%;
  }
}

.guide-waku {
  width: 800px;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .guide-waku {
    width: 84%;
  }
}
.guide-waku dt {
  font-size: 15px;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .guide-waku dt {
    font-size: 15px;
    line-height: 30px;
  }
}
.guide-waku dd {
  margin-bottom: 70px !important;
}
.guide-waku .center-bun {
  font-size: 15px;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .guide-waku .center-bun {
    font-size: 15px;
    line-height: 30px;
  }
}
.guide-waku-inner {
  margin: 50px auto;
}
.guide-waku-inner .title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 700;
  margin: 0px auto 5px;
}
@media only screen and (max-width: 769px) {
  .guide-waku-inner .title {
    font-size: 15px;
    line-height: 30px;
  }
}
.guide-waku-inner .bun {
  font-size: 15px;
  line-height: 30px;
  line-height: 27px;
}
@media only screen and (max-width: 769px) {
  .guide-waku-inner .bun {
    font-size: 15px;
    line-height: 30px;
  }
}

.guide-bana {
  max-width: 400px;
  width: 84%;
  margin: 100px auto;
  display: block;
}

.aisatu-waku {
  width: 800px;
  margin: 50px auto;
  font-size: 15px;
  line-height: 35px;
}
.aisatu-waku .inner {
  width: 300px;
  margin-right: auto;
}
@media only screen and (max-width: 769px) {
  .aisatu-waku {
    width: 84%;
  }
}

.aisatu-name {
  text-align: right;
  width: 800px;
  margin: 50px auto;
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 769px) {
  .aisatu-name {
    width: 84%;
  }
}
.aisatu-name .inner {
  width: 247px;
  margin-left: auto;
  text-align: left;
}

.aboutus-back {
  position: relative;
  width: 100%;
}
.aboutus-back .title {
  font-size: 30px;
  color: white;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  letter-spacing: 8px;
}
@media only screen and (max-width: 769px) {
  .aboutus-back .title {
    letter-spacing: 2px;
  }
}

.aboutus-section {
  margin: 100px auto;
  width: 1000px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section {
    width: 84%;
    margin: 10% auto;
  }
}
.aboutus-section .title {
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 30px;
  text-align: center;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .title {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 769px) {
  .aboutus-section .title {
    text-align: left;
  }
}
.aboutus-section .shina-title {
  margin: 100px auto 20px;
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 30px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-title {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.aboutus-section .shina-title2 {
  margin: 0px auto 20px;
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 30px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-title2 {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.aboutus-section .bun-about {
  font-size: 15px;
  line-height: 30px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .bun-about {
    font-size: 15px;
    line-height: 30px;
  }
}
.aboutus-section .shina-img {
  width: 100%;
  margin-bottom: 221px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img {
    height: auto;
    margin-bottom: 20%;
  }
}
.aboutus-section .shina-img .bun1 {
  margin: 20px auto;
  font-size: 15px;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .bun1 {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .bun1 {
    height: auto;
  }
}
.aboutus-section .shina-img .bun2 {
  font-size: 15px;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .bun2 {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .bun2 {
    height: auto;
  }
}
.aboutus-section .shina-img .bun3 {
  font-size: 15px;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .bun3 {
    font-size: 15px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .bun3 {
    height: auto;
    width: 100%;
  }
}
.aboutus-section .shina-img .img2 {
  margin: 10px 0px 10px auto;
  width: 655px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img .img2 {
    width: 100%;
  }
}
.aboutus-section .shina-img1-1 {
  height: 200px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img1-1 {
    height: auto;
  }
}
.aboutus-section .shina-img3 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img3 {
    display: block;
  }
}
.aboutus-section .shina-img3-inner {
  margin: 30px 5px 30px;
  width: 48%;
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 30px;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img3-inner {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img3-inner {
    width: 100%;
  }
}
.aboutus-section .shina-img3-inner .title {
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 30px;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .aboutus-section .shina-img3-inner .title {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.aboutus-section .shina-img3-inner .img {
  margin: 10px auto;
}

.kuro-btn {
  border-radius: 30px;
  border: 1px solid #2A2A2A;
  background-color: white;
  color: #2A2A2A;
  font-size: 15px;
  text-align: center;
  width: 331px;
  line-height: 56px;
  letter-spacing: 2px;
  position: relative;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 769px) {
  .kuro-btn {
    width: 100%;
    max-width: 331px;
  }
}
.kuro-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid #2A2A2A;
  border-right: 2px solid #2A2A2A;
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}
.kuro-btn:hover {
  background-color: #2A2A2A;
  color: white;
}
.kuro-btn:hover::after {
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.aboutus-kurobtn {
  margin: 50px auto;
}

.recruit-waku {
  width: 800px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .recruit-waku {
    width: 84%;
    margin: 10% auto;
  }
}
.recruit-waku .bun {
  font-size: 15px;
  padding: 30px;
  border: 1px solid #2A2A2A;
  line-height: 30px;
}
.recruit-waku .bun-1 {
  font-size: 15px;
  margin: 30px auto;
  line-height: 30px;
}
.recruit-waku .bun-1 .bun-1-title {
  color: #666767;
}
.recruit-waku .bun-2 {
  font-size: 15px;
  margin-bottom: 50px;
  line-height: 30px;
}
.recruit-waku .title {
  font-size: 22px;
  text-align: center;
  display: inline-block;
  border-bottom: 1px solid #2A2A2A;
  margin: 30px auto 100px;
}
@media only screen and (max-width: 769px) {
  .recruit-waku .title {
    margin-bottom: 10%;
  }
}
.recruit-waku .title-1 {
  font-size: 22px;
  margin: 30px auto 0px;
}
.recruit-waku .title-waku {
  margin: auto;
  text-align: center;
}
.recruit-waku .img {
  width: 100% auto;
}

.mw_wp_form {
  width: 100%;
  color: #333;
}

.mw_wp_form table.mailform-tbl {
  width: 100%;
  margin-bottom: 40px;
}

.mw_wp_form table tr {
  width: 100%;
  border-bottom: 1px dotted #ccc;
  padding: 30px 0;
  font-weight: normal;
}

.mw_wp_form table tr:first-child {
  border-top: 1px dotted #ccc;
}

.mw_wp_form table th {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  width: 30%;
  float: left;
}

.mw_wp_form table th .attention {
  font-size: 80%;
  margin-left: 10px;
  color: red;
  padding: 3px;
}

.mw_wp_form table td {
  padding: 20px 0;
  width: 70%;
  float: left;
}

.mw_wp_form table td.w50 input, .mw_wp_form table td.w50 select {
  width: 50%;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  padding: 10px;
  border-radius: 4px;
}

.mw_wp_form table td.w80 input, .mw_wp_form table td.w80 select {
  width: 80%;
  box-sizing: border-box;
}

.mw_wp_form table td.w80 textarea {
  width: 80%;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  padding: 10px;
  border-radius: 4px;
}

.mw_wp_form table td.w80 textarea::-moz-placeholder {
  color: #807c7b;
}

.mw_wp_form table td.w80 textarea::placeholder {
  color: #807c7b;
}

.mw_wp_form #submit-button {
  text-align: center;
}

.mw_wp_form #submit-button input {
  margin: 1em;
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #4b3939;
  background: #dedddd;
  color: #2a2a2a;
  box-sizing: border-box;
  height: 40px;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
  width: 300px;
  height: 70px;
}
@media only screen and (max-width: 769px) {
  .mw_wp_form #submit-button input {
    width: 80%;
  }
}

.mw_wp_form #submit-button input[name=submitBack] {
  margin: 1em;
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #999;
  background: #999;
  color: white;
  box-sizing: border-box;
  height: 40px;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
  width: 300px;
  height: 70px;
}
@media only screen and (max-width: 769px) {
  .mw_wp_form #submit-button input[name=submitBack] {
    width: 80%;
  }
}

.mw_wp_form .form_step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
  list-style: none;
}

.mw_wp_form .form_step > li {
  display: block;
  position: relative;
  padding: 0.5em;
  width: 22%;
  border: 1px solid currentColor;
  color: #867f7f;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.mw_wp_form .form_step > li:nth-of-type(n + 2) {
  margin: 0px 0px 0px 4%;
}

.mw_wp_form .form_step > li:nth-of-type(n + 2):before {
  position: absolute;
  top: 50%;
  left: -1.5em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #867f7f;
  border-left: 2px solid #867f7f;
  transform: translateY(-50%) rotate(135deg);
  content: "";
}

.mw_wp_form_input .form_step > li:nth-of-type(1), .mw_wp_form_preview .form_step > li:nth-of-type(2), .mw_wp_form_complete .form_step > li:nth-of-type(3) {
  background-color: #867f7f;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .form_step > li {
    font-size: 10px;
    width: 30%;
  }
  .mw_wp_form table td {
    width: 65%;
    float: right;
  }
  .mw_wp_form table td.w50 input, .mw_wp_form table td.w50 select {
    width: 100%;
    box-sizing: border-box;
  }
  .mw_wp_form table td.w80 input, .mw_wp_form table td.w80 select {
    width: 100%;
    box-sizing: border-box;
  }
  .mw_wp_form table td.w80 textarea {
    width: 100%;
    box-sizing: border-box;
  }
}
.contact-waku {
  width: 800px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .contact-waku {
    width: 84%;
  }
}
.contact-waku-title {
  font-size: 20px;
  margin: 30px auto;
}
@media only screen and (max-width: 769px) {
  .contact-waku-title {
    font-size: 15px;
  }
}

.single-information-flexbox {
  display: flex;
  width: 1010px;
  margin: 5px auto 0px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .single-information-flexbox {
    width: 84%;
    margin: 10% auto 0px;
    display: block;
  }
}

.single-date {
  color: rgba(62, 58, 57, 0.5882352941);
  letter-spacing: 1.5px;
}

.single-date-title {
  margin-right: 5px;
  letter-spacing: 1px;
}

.single-page-waku {
  width: 1000px;
  margin: 100px auto;
}
@media only screen and (max-width: 769px) {
  .single-page-waku {
    width: 84%;
  }
}
.single-page-waku-inner {
  display: flex;
  justify-content: space-between;
}
.single-page-waku-inner .title {
  font-size: 22px;
}
.single-page-waku-inner .date {
  font-size: 10px;
}
.single-page-waku .content {
  margin-top: 50px;
}

.footer {
  background-color: #2A2A2A;
  width: 100%;
}
.footer-inner {
  width: 1000px;
  margin: 100px auto 0px;
  padding: 30px 0;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .footer-inner {
    width: 100%;
    margin: 15% auto 0px;
    padding: 20% 8%;
    display: block;
  }
}
.footer-inner-left {
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left {
    width: 100%;
  }
}
.footer-inner-left-logo {
  width: 200px;
  display: block;
  margin-right: auto;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left-logo {
    margin: auto;
  }
}
.footer-inner-left-logo img {
  width: 100%;
}
.footer-inner-left .bun {
  color: white;
  font-size: 13px;
  margin: 30px auto;
  line-height: 25px;
}
.footer-inner-left .bun2 {
  color: white;
  font-size: 13px;
  margin: 30px auto;
  text-align: right;
  padding-bottom: 30px;
  border-bottom: 1px solid white;
}
.footer-inner-left-inner {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
@media only screen and (max-width: 769px) {
  .footer-inner-left-inner {
    margin: 50px auto;
  }
}
.footer-inner-left-inner-img {
  width: 28px;
  margin: 0px 15px;
}
.footer-inner-right {
  width: 652px;
  margin-top: 50px;
}
.footer-inner-right-inner {
  display: flex;
  justify-content: start;
  margin: 10px auto;
  font-size: 13px;
  letter-spacing: 3px;
}
.footer-inner-right-inner-bun {
  margin: auto 0px 0px 10px;
  border-right: 1px solid white;
  color: white;
  padding: 0px 10px 0px 0px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-right-inner-bun {
    padding: 0px 10px 0px 0px;
    width: 100%;
    display: block;
    margin: 20px auto;
    text-align: center;
    border-right: none;
  }
}
.footer-inner-right-inner-bun2 {
  margin: auto 0px 0px 10px;
  color: white;
  padding: 0px 10px 0px 0px;
}
@media only screen and (max-width: 769px) {
  .footer-inner-right-inner-bun2 {
    padding: 0px 10px 0px 0px;
    width: 100%;
    display: block;
    margin: 10px auto;
    text-align: left;
    border-right: none;
  }
}
.footer-inner-right .copy-right {
  font-size: 10px;
  text-align: right;
  margin: 35px 0px 0px 0px;
  color: white;
}

@media only screen and (max-width: 769px) {
  .copy-right {
    font-size: 10px;
    text-align: center;
    color: white;
  }
}

.footer-logo-flex-waku {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo-right-waku {
  width: 120px;
}
@media only screen and (max-width: 769px) {
  .footer-logo-right-waku {
    width: 100px;
    margin: auto;
  }
}

body {
  color: black;
}
body.fixed {
  position: fixed;
}

html {
  margin-top: 0px !important;
}

.container {
  width: 100%;
  overflow-x: hidden;
}

@media only screen and (min-width: 1026px) {
  .pc-only,
  #swiper-top-pc {
    display: block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .pc-only,
  #swiper-top-pc {
    display: block;
  }
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .pc-only,
  #swiper-top-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 481px) {
  .pc-only,
  #swiper-top-pc {
    display: none !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 769px) {
  .sm-br {
    display: block;
  }
}
@media only screen and (max-width: 481px) {
  .sm-br {
    display: block;
  }
}
@media only screen and (min-width: 1026px) {
  .sm-br {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .sm-br {
    display: none !important;
  }
}

@media only screen and (min-width: 481px) and (max-width: 769px) {
  .pc-br {
    display: none !important;
  }
}
@media only screen and (max-width: 481px) {
  .pc-br {
    display: none !important;
  }
}
@media only screen and (min-width: 1026px) {
  .pc-br {
    display: block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .pc-br {
    display: block;
  }
}

@media only screen and (min-width: 1026px) {
  .sm-only,
  #swiper-top-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1025px) {
  .sm-only,
  #swiper-top-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 481px) and (max-width: 769px) {
  .sm-only,
  #swiper-top-sm {
    display: block;
  }
}
@media only screen and (max-width: 481px) {
  .sm-only,
  #swiper-top-sm {
    display: block;
  }
}

.font-mincho {
  font-family: "Noto Serif JP", serif;
}

body {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up2 {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: opacity 3s;
}

.fade.view {
  opacity: 1;
}

@media only screen and (max-width: 769px) {
  .sm-margintop-40 {
    margin-top: 40%;
  }
}

@media only screen and (max-width: 769px) {
  .sm-marginbottom-40 {
    margin-bottom: 40%;
  }
}

.header-toiawase {
  border-radius: 30px;
  border: 1px solid white;
  color: white;
  font-size: 12px;
  text-align: center;
  width: 150px;
  line-height: 30px;
  letter-spacing: 2px;
  position: fixed;
  right: 54px;
  top: 29px;
  display: block;
}
.header-toiawase:hover {
  background-color: #2A2A2A;
  color: white;
}
@media only screen and (max-width: 769px) {
  .header-toiawase {
    width: 100%;
    border-radius: 30px;
    border: 1px solid #2A2A2A;
    background-color: white;
    color: #2A2A2A;
    font-size: 15px;
    text-align: center;
    line-height: 56px;
    letter-spacing: 2px;
    position: unset;
    display: block;
    margin: auto;
    max-width: 400px;
  }
}
.header-toiawase.active {
  color: #3E3A39;
  border: 1px solid #3E3A39;
}
.header-toiawase.active:hover {
  background-color: #2A2A2A;
  color: white;
}/*# sourceMappingURL=style.css.map */