@charset "UTF-8";
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/*メディアクエリー
---------------------------------------------*/
/* For modern browsers */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* variable */
i {
  margin: auto 20px;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*---------------------------------------------------------------
common
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 50px;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 180%;
  color: #222;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  background: #F4F2DF;
  text-align: justify;
  text-justify: inter-ideograph;
  position: relative;
}
@media screen and (min-width: 769px) {
  body {
    background-size: auto;
  }
}

a {
  color: #222;
  text-decoration: none;
}

.content_left {
  display: none;
}
@media screen and (min-width: 769px) {
  .content_left {
    height: 100%;
    width: calc((100% - 769px) * 0.5);
    position: fixed;
    top: 0;
    left: 0;
    background: url("../images/bg_ptn_w.jpg");
    border-right: solid 20px #fff;
    animation: bg 40s infinite linear;
    display: block;
    opacity: 0.3;
  }
}

.content_right {
  display: none;
}
@media screen and (min-width: 769px) {
  .content_right {
    height: 100%;
    width: calc((100% - 769px) * 0.5);
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    opacity: 0.3;
    background: url("../images/bg_ptn_w_2.jpg");
    animation: bg 40s infinite linear;
    border-left: solid 20px #fff;
  }
}

@keyframes bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -592px;
  }
}
#wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: url(../images/bg_check.png);
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #wrapper {
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
  }
}

.fade-in {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h1,
h2,
h3 {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*-------------------------------
block
--------------------------------- */
.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*---------------------------------------------------------------
 navi
-------------------------------------------------------------- */
#toggle {
  padding: 10px 13px;
  position: fixed;
  top: 15px;
  right: 15px;
  background: #fff;
  border: solid 2px #0051E0;
  border-radius: 20%;
  z-index: 99;
  box-shadow: 3px 3px 0px 0 #0051E0;
}

#toggle-box {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: block;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #0051E0;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}

#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  bottom: 0;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #0051E0;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: "corporate-logo-ver2", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  #nav-content {
    width: 50%;
    max-width: 400px;
    border-left: solid 1px #5E91EB;
  }
}
#nav-content nav {
  width: 80%;
  margin: 0 auto;
}
#nav-content nav h1 {
  width: 50%;
  max-width: 200px;
  margin: 0 auto 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  #nav-content nav h1 {
    margin: 0 auto 50px;
  }
}
#nav-content nav ul.list {
  list-style: none;
}
#nav-content nav ul.list li {
  margin-bottom: 5.3333333333vw;
  text-align: center;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  #nav-content nav ul.list li {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
#nav-content nav ul.list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0;
  transition: opacity 0.6s ease;
  position: relative;
}
#nav-content nav ul.list li a:hover {
  opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #0051E0;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

/*-------------------------------
main
--------------------------------- */
.main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.main figure {
  margin-bottom: 18.6666666667vw;
}
@media screen and (min-width: 769px) {
  .main figure {
    margin-bottom: 140px;
  }
}
.main figure img {
  width: 100%;
}
.main p.copy {
  margin: 0 auto 1.8666666667vw;
  padding: 0 50px;
  font-size: 3.2vw;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .main p.copy {
    margin-bottom: 14px;
    font-size: 2.4rem;
  }
}
.main p.copy::before,
.main p.copy::after {
  content: "";
  position: absolute;
  top: 0px;
  display: block;
  width: 2px;
  height: 100%;
  background: #ccc;
}
.main p.copy::before {
  left: 29px;
  transform: rotate(-30deg);
}
.main p.copy::after {
  right: 29px;
  transform: rotate(30deg);
}
.main h1 {
  margin-bottom: 8vw;
  font-size: 3.7333333333vw;
  text-align: center;
  line-height: 180%;
}
@media screen and (min-width: 769px) {
  .main h1 {
    margin-bottom: 60px;
    font-size: 2.8rem;
  }
}
.main .lead {
  margin-bottom: 5.3333333333vw;
  font-size: 3.2vw;
  text-align: center;
  line-height: 180%;
}
@media screen and (min-width: 769px) {
  .main .lead {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}
.main .lead2 {
  font-size: 3.4666666667vw;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .main .lead2 {
    font-size: 2.6rem;
  }
}
.main .lead2 span {
  margin-bottom: 1.3333333333vw;
  padding-bottom: 1.3333333333vw;
  display: inline-block;
  background: linear-gradient(transparent 30%, #FFF100 30%);
}
@media screen and (min-width: 769px) {
  .main .lead2 span {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.main .lead2 span small {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 769px) {
  .main .lead2 span small {
    font-size: 2.2rem;
  }
}

/*-------------------------------
event
--------------------------------- */
.event {
  margin-top: 21.3333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .event {
    margin-top: 160px;
  }
}
.event .side {
  width: 2.6666666667vw;
  height: 100%;
  background: #FFF100;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  .event .side {
    width: 10px;
  }
}
.event .side .tab {
  padding: 1.3333333333vw 10.6666666667vw;
  color: #222;
  font-family: din-2014, sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  background: #FFF100;
  position: absolute;
  top: 16vw;
  right: -13.8666666667vw;
  transform: rotate(90deg);
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .event .side .tab {
    padding: 10px 80px;
    font-size: 2.8rem;
    top: 120px;
    right: -104px;
  }
}
.event .topics {
  width: 100%;
  padding: 13.3333333333vw 10.6666666667vw 20vw 8vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .event .topics {
    padding: 100px 80px 150px 60px;
  }
}
.event .topics .num {
  width: 42.6666666667vw;
  height: 14.6666666667vw;
  background-image: url(../images/topics_tag.png);
  background-size: 100%;
  position: absolute;
  left: -5.3333333333vw;
  top: -8vw;
}
@media screen and (min-width: 769px) {
  .event .topics .num {
    width: 320px;
    height: 110px;
    left: -40px;
    top: -60px;
  }
}
.event .topics .num .txt {
  font-family: adobe-handwriting-ernie, sans-serif;
  font-style: normal;
  font-size: 5.8666666667vw;
  line-height: 100%;
  position: absolute;
  right: 4vw;
  top: 5.3333333333vw;
  display: block;
}
@media screen and (min-width: 769px) {
  .event .topics .num .txt {
    font-size: 44px;
    right: 30px;
    top: 40px;
  }
}
.event .topics .num .txt .big {
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 769px) {
  .event .topics .num .txt .big {
    font-size: 6.4rem;
  }
}
.event .topics h2 {
  margin-top: -13.3333333333vw;
  margin-bottom: 8vw;
  margin-left: -2.6666666667vw;
  transform: rotate(-5deg);
}
@media screen and (min-width: 769px) {
  .event .topics h2 {
    margin-top: -100px;
    margin-bottom: 60px;
    margin-left: -20px;
  }
}
.event .topics h2 span {
  margin-bottom: 0.8vw;
  padding: 1.3333333333vw 2.6666666667vw;
  font-size: 3.7333333333vw;
  letter-spacing: 0.1em;
  line-height: 100%;
  background: #222;
  color: #fff;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .event .topics h2 span {
    margin-bottom: 6px;
    padding: 10px 20px;
    font-size: 2.8rem;
  }
}
.event .topics p {
  font-size: 3.2vw;
  line-height: 1.83;
}
@media screen and (min-width: 769px) {
  .event .topics p {
    font-size: 2.4rem;
  }
}
.event .topics p a {
  text-decoration: underline;
}
.event .topics .detail {
  margin: 8vw 0;
}
@media screen and (min-width: 769px) {
  .event .topics .detail {
    margin: 60px 0;
  }
}
.event .topics .detail > p {
  margin-bottom: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .event .topics .detail > p {
    margin-bottom: 10px;
  }
}
.event .topics .detail > div {
  padding: 6.6666666667vw 5.3333333333vw 1.3333333333vw;
  border: dotted 1px #222;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .event .topics .detail > div {
    padding: 50px 40px 10px;
  }
}
.event .topics .detail > div h3 {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 769px) {
  .event .topics .detail > div h3 {
    font-size: 2.2rem;
  }
}
.event .topics .detail > div p {
  font-size: 3.2vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .event .topics .detail > div p {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }
}
.event .topics a.btn {
  width: 100%;
  margin-bottom: 2.6666666667vw;
  padding: 5.3333333333vw;
  background: #81822D;
  color: #fff;
  text-align: center;
  font-size: 3.2vw;
  display: block;
  border-radius: 100vh;
}
@media screen and (min-width: 769px) {
  .event .topics a.btn {
    margin-bottom: 20px;
    padding: 40px;
    font-size: 2.4rem;
  }
}
.event .topics .small {
  font-size: 2.6666666667vw;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .event .topics .small {
    font-size: 1.6rem;
  }
}
.event .topics_1 {
  background: #F4EEEA;
  position: relative;
}
.event .topics_1:before {
  content: "";
  width: 100%;
  height: 20px;
  background: url("../images/topics_bg1.png");
  position: absolute;
  top: -20px;
  left: 0;
  display: block;
}
.event .topics_1 .profile {
  margin: 0 auto 8vw;
  padding: 8vw 8vw 2.6666666667vw;
  background: #EFE4DC;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile {
    margin: 0 auto 60px;
    padding: 60px 60px 20px;
  }
}
.event .topics_1 .profile > div {
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile > div {
    margin-bottom: 60px;
  }
}
.event .topics_1 .profile > div figure {
  width: 100%;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile > div figure {
    margin-bottom: 20px;
  }
}
.event .topics_1 .profile > div .name {
  font-size: 3.7333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile > div .name {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}
.event .topics_1 .profile > div .name span {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile > div .name span {
    font-size: 2rem;
  }
}
.event .topics_1 .profile > div .txt {
  font-size: 2.6666666667vw;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile > div .txt {
    font-size: 1.6rem;
  }
}
.event .topics_1 .profile > div .txt span {
  margin-bottom: 1.3333333333vw;
  display: block;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 769px) {
  .event .topics_1 .profile > div .txt span {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.event .topics_2 {
  background: #EFE4DC;
  position: relative;
}
.event .topics_2:before {
  content: "";
  width: 100%;
  height: 20px;
  background: url("../images/topics_bg2.png");
  position: absolute;
  top: -20px;
  left: 0;
  display: block;
}
.event .topics_3 {
  background: #E8DBD2;
  position: relative;
}
.event .topics_3:before {
  content: "";
  width: 100%;
  height: 20px;
  background: url("../images/topics_bg3.png");
  position: absolute;
  top: -20px;
  left: 0;
  display: block;
}

/*-------------------------------
item
--------------------------------- */
.item {
  width: 100%;
  margin: 0 auto;
  padding: 21.3333333333vw 10.6666666667vw 5.3333333333vw 8vw;
  text-align: center;
  position: relative;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 769px) {
  .item {
    padding: 160px 80px 40px 60px;
  }
}
.item .side {
  width: 10px;
  height: 100%;
  background: #078DC9;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
.item .side .tab {
  padding: 1.3333333333vw 10.6666666667vw;
  color: #fff;
  font-family: din-2014, sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  background: #078DC9;
  position: absolute;
  top: 16vw;
  right: -12.8vw;
  transform: rotate(90deg);
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .item .side .tab {
    padding: 10px 80px;
    font-size: 2.8rem;
    top: 120px;
    right: -96px;
  }
}
.item .item_img {
  width: 80%;
  position: absolute;
  top: -6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .item .item_img {
    top: -50px;
  }
}
.item .comingsoon {
  padding: 40vw 0 26.6666666667vw;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 769px) {
  .item .comingsoon {
    padding: 200px 0 150px;
    font-size: 2.8rem;
  }
}
.item > div {
  padding: 0;
}
.item .more {
  margin: 0 auto 21.3333333333vw;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .item .more {
    margin: 0 auto 160px;
  }
}
.item .more__btn {
  width: 100%;
  padding: 5.3333333333vw;
  margin-top: 0;
  font-size: 3.2vw;
  background: #81822D;
  color: #fff;
  display: block;
  border-radius: 100vh;
  border: none;
  text-align: center;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 769px) {
  .item .more__btn {
    padding: 40px;
    font-size: 2.4rem;
  }
}
.item .more__btn:before {
  content: "";
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  margin: auto;
  border: 0;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 8vw;
  bottom: 0.8vw;
  z-index: 999;
}
@media screen and (min-width: 769px) {
  .item .more__btn:before {
    width: 20px;
    height: 20px;
    left: 60px;
    bottom: 6px;
  }
}
.item .more .close:before {
  content: "";
  content: "";
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border: 0;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(-135deg);
  position: absolute;
  top: 0.8vw;
  left: 8vw;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .item .more .close:before {
    width: 20px;
    height: 20px;
    left: 60px;
    top: 6px;
  }
}
.item #part_1 {
  margin-top: 40vw;
}
@media screen and (min-width: 769px) {
  .item #part_1 {
    margin-top: 190px;
  }
}
.item h3 {
  margin: 0 auto 2.6666666667vw;
  padding-bottom: 1.3333333333vw;
  font-size: 4.8vw;
  line-height: 100%;
  text-align: center;
  display: inline-block;
  border-bottom: dotted 1px;
  letter-spacing: 0.3em;
  color: #078DC9;
}
@media screen and (min-width: 769px) {
  .item h3 {
    margin: 0 auto 20px;
    padding-bottom: 10px;
    font-size: 3.6rem;
  }
}
.item h3 span {
  font-size: 10.1333333333vw;
}
@media screen and (min-width: 769px) {
  .item h3 span {
    font-size: 3.8rem;
  }
}
.item .lead {
  margin-bottom: 5.3333333333vw;
  font-size: 2.9333333333vw;
  line-height: 180%;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .item .lead {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
}
.item .item_list {
  width: 100%;
  margin: 0 auto 2.6666666667vw;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: inherit;
}
@media screen and (min-width: 769px) {
  .item .item_list {
    margin: 0 auto 20px;
  }
}
.item .item_list > li {
  width: 47%;
  margin-bottom: 8vw;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .item .item_list > li {
    margin-bottom: 60px;
  }
}
.item .item_list > li figure {
  position: relative;
}
.item .item_list > li figure .buy {
  width: 12vw;
  height: 12vw;
  background: #81822D;
  color: #fff;
  font-size: 3.2vw;
  display: block;
  text-align: center;
  border-radius: 50px;
  line-height: 12vw;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .item .item_list > li figure .buy {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    line-height: 60px;
  }
}
.item .item_list > li .txt {
  margin-top: 4vw;
  font-size: 2.6666666667vw;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .item .item_list > li .txt {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.item .item_list > li .name {
  margin-top: 1.3333333333vw;
  font-size: 3.2vw;
  line-height: 1.66em;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .item .item_list > li .name {
    margin-top: 10px;
    font-size: 1.8rem;
  }
}
.item .item_list > li .price {
  margin-top: 1.3333333333vw;
  font-size: 3.7333333333vw;
  line-height: 100%;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .item .item_list > li .price {
    margin-top: 5px;
    font-size: 2rem;
  }
}
.item .item_list > li .price span {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .item .item_list > li .price span {
    font-size: 1.6rem;
  }
}

/*-------------------------------
arukikata
--------------------------------- */
.arukikata {
  width: 100%;
  margin: 0 auto;
  padding: 21.3333333333vw 10%;
  background: #FFF100;
}
@media screen and (min-width: 769px) {
  .arukikata {
    margin: 0 auto;
    padding: 160px 10%;
  }
}
.arukikata h2 {
  margin-bottom: 5.3333333333vw;
  font-size: 4.2666666667vw;
  line-height: 180%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .arukikata h2 {
    margin-bottom: 40px;
    font-size: 3.2rem;
  }
}
.arukikata figure {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .arukikata figure {
    margin-bottom: 40px;
  }
}
.arukikata h3 {
  margin-bottom: 2.6666666667vw;
  font-size: 3.4666666667vw;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .arukikata h3 {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
}
.arukikata p {
  margin-bottom: 5.3333333333vw;
  font-size: 3.2vw;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .arukikata p {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}
.arukikata a.btn {
  width: 100%;
  margin-bottom: 5.3333333333vw;
  padding: 5.3333333333vw;
  background: #222;
  color: #fff;
  font-size: 3.2vw;
  text-align: center;
  border-radius: 100vh;
  display: block;
}
@media screen and (min-width: 769px) {
  .arukikata a.btn {
    margin-bottom: 40px;
    padding: 40px;
    font-size: 2.4rem;
  }
}
.arukikata small {
  font-size: 2.6666666667vw;
  text-align: center;
  display: block;
}
@media screen and (min-width: 769px) {
  .arukikata small {
    font-size: 1.6rem;
  }
}

/*-----------------------------
 information
------------------------------------ */
.information {
  width: 100%;
  margin: 0 auto;
  padding: 21.3333333333vw 10% 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .information {
    padding: 160px 10% 80px;
  }
}
.information .side {
  width: 10px;
  height: 100%;
  background: #81822D;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
.information .side .tab {
  padding: 1.3333333333vw 10.6666666667vw;
  color: #fff;
  font-family: din-2014, sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.1em;
  background: #81822D;
  position: absolute;
  top: 25.3333333333vw;
  right: -20vw;
  transform: rotate(90deg);
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .information .side .tab {
    padding: 10px 80px;
    font-size: 2.8rem;
    top: 190px;
    right: -150px;
  }
}
.information h2 {
  font-family: adobe-handwriting-ernie, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 6.9333333333vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .information h2 {
    font-size: 4.2rem;
  }
}
.information .information_box {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.information .information_box h3 {
  margin: 8vw auto 5.3333333333vw;
  padding: 2.6666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 300;
  line-height: 100%;
  color: #fff;
  background: #222;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .information .information_box h3 {
    margin: 60px auto 40px;
    padding: 20px;
    font-size: 2.2rem;
  }
}
.information .information_box p {
  padding: 0;
  margin-bottom: 2.6666666667vw;
  font-size: 2.9333333333vw;
  line-height: 1.8em;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .information .information_box p {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.information .information_box p::before {
  content: "※";
}
.information .information_box p span {
  color: #E83921;
}
.information .information_box p a {
  width: 90%;
  margin: 10px auto 0;
  font-size: 3.2vw;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .information .information_box p a {
    padding: 10px 20px 10px 0;
    font-size: 1.8rem;
  }
}
.information footer {
  width: 100%;
  padding: 21.3333333333vw 10% 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .information footer {
    padding: 160px 10% 0;
  }
}
.information footer .f_logo {
  width: 32vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .information footer .f_logo {
    width: 200px;
  }
}
.information footer .f_logo a {
  margin: 0 auto;
  padding: 0;
  display: block;
}
.information footer .f_logo a img {
  vertical-align: bottom;
}
.information footer .f_icon {
  margin: 8vw auto 2.6666666667vw;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .information footer .f_icon {
    margin: 60px auto 20px;
  }
}
.information footer .f_icon li {
  margin: 0 4vw;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .information footer .f_icon li {
    margin: 0 20px;
  }
}
.information footer .f_icon li i {
  margin: 0;
  font-size: 7.4666666667vw;
}
@media screen and (min-width: 769px) {
  .information footer .f_icon li i {
    font-size: 3.6rem;
  }
}
.information footer small {
  text-align: center;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .information footer small {
    font-size: 1.6rem;
  }
}

/*------------------------------
animation
-------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}
@keyframes bgAnimTop {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 0px 1200px;
  }
}
@keyframes bgAnimBottom {
  0% {
    background-position: 0px 1200px;
  }
  100% {
    background-position: 0px 0px;
  }
}
@keyframes bgAnimLeft {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 1200px 0px;
  }
}/*# sourceMappingURL=style.css.map */