@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;700&Poppins:wght@700&display=swap');

@font-face {
  font-family: "makimaru";
  src: url("../fonts/makiirclehand.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

html, body {
  overflow-x: hidden;
	margin: 0;
  font-family: 'Lato', 'M PLUS Rounded 1c', sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
  transform: rotate(0.03deg);
}
a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  
}

/*------------
  common
------------*/

.container {
  position: relative;
  width: 100%;
}

.sec-ttl {
  padding: 0 15px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}
.sec-ttl h1 {
  position: relative;
  margin: 10px auto 35px;
}
.sec-ttl h1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #707070;
}
.sec-ttl h1 span {
  position: relative;
  z-index: 5;
  padding: 0 15px;
  background: #FFF;
}
#useage .sec-ttl h1 span {
  background: rgb(236 240 251);
}
#download .sec-ttl h1 span {
  background: #A3BCE2;
}


.fade {
  transition: .5s;
  opacity: 0;
  transform: translateY(50px);
}
.fade.in {
  opacity: 1;
  transform: translateY(0);
}


@media screen and (min-width: 769px) {
  .container {
    width: 800px;
    margin: 0 auto;
  }

  .sec-ttl h1 {
    width: 330px;
  }
}


/*
  splash
------------*/

.splash {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  background: #5D6FA9;
  font-family: 'makimaru', sans-serif;
  transition: 1s;
}
.splash.fin {
  opacity: 0;
  pointer-events: none;
}
.splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  transition: .5s;
  opacity: 0;
}
.splash-logo.load {
  opacity: 1;
}
.splash-logo p {
  font-size: 56px;
  color: #FFF;
}
.splash-logo div img {
  width: auto;
  height: 161px;
}
.splash-ttl {
  margin-bottom: 30px;
  letter-spacing: -1.6px;
}

@media screen and (min-width: 769px) {
  
}


/*
  fixed-menu
------------*/

.fixed-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 5555;
  bottom: 10px;
  left: 0;
  width: 100%;
  transition: .5s;
  opacity: 0;
  pointer-events: none;
}
.fixed-menu.scroll {
  opacity: 1;
}
.fixed-buy a {
  display: block;
  padding: 30px 15px;
  font-size: 18px;
  background: #FFB100;
  border: 3px solid #FFF;
  border-radius: 0 50px 50px 0;
  font-family: 'makimaru', sans-serif;
  pointer-events: none;
}
.scroll .fixed-buy a {
  pointer-events: auto;
}
.fixed-sns {
  display: flex;
  margin-right: 15px;
}
.fixed-sns a {
  width: 70px;
  pointer-events: none;
}
.scroll .fixed-sns a {
  pointer-events: auto;
}
.fixed-sns a + a {
  margin-left: 25px;
}

/*------------
  header
------------*/

.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 6666;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 5px;
}
.header::before {
  content: '';
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(-45deg, #FDFAEE 0, #FDFAEE 20%, #5D6FA9 20%, #5D6FA9 80%, #FDFAEE 80%, #FDFAEE 100%);
  background-size: 60px 2px;
  background-position: center;
}
.header-toggle {
  position: relative;
  z-index: 99;
  width: 79px;
  height: 100%;
  margin-left: auto;
  padding: 15px 0;
  text-align: center;
  font-size: 20px;
  color: #5D6FA9;
  background: #FFF;
  border: 2px solid #5D6FA9;
  border-radius: 0 0 18px 18px;
  cursor: pointer;
  font-family: 'makimaru', sans-serif;
}
.header-toggle .toggle-inner {
  position: relative;
  width: 16px;
  height: 13px;
  margin: 0 auto 5px;
}
.header-toggle .toggle-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #5D6FA9;
  border-radius: 10px;
}
.header-toggle .toggle-inner span:nth-of-type(1) {
  top: 0;
}
.header-toggle .toggle-inner span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(-50%);
}
.header-toggle .toggle-inner span:nth-of-type(3) {
  bottom: 0;
}
.header-toggle.active .toggle-inner span:nth-of-type(1) {
  bottom: 0;
  margin: auto;
  transform: translateY(-50%) rotate(45deg);
}
.header-toggle.active .toggle-inner span:nth-of-type(2) {
  opacity: 0;
}
.header-toggle.active .toggle-inner span:nth-of-type(3) {
  top: 0;
  margin: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.header-menu {
  overflow: hidden;
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: #A3BCE2;
  transition: .5s;
}
.header-menu.active {
  height: 100vh;
}
.header-menu .menu-ttl {
  display: flex;
  align-items: center;
  height: 72px;
  padding-left: 15px;
  padding-right: 99px;
}
.header-menu .menu-ttl img {
  width: auto;
  height: 24px;
}
.header-menu .menu-scroll {
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100vh - 72px);
}
.header-menu .menu-nav {
  margin: 45px 30px 0;
  padding-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid #FFF;
}
.header-menu .menu-nav p {
  text-align: center;
  font-size: 22px;
  line-height: 48px;
}
.header-menu .menu-sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.header-menu .menu-sns a {
  width: 70px;
  margin: 0 10px;
}
.header-menu .menu-buy {
  margin-top: 25px;
  padding-bottom: 100px;
  text-align: center;
  font-size: 15px;
}
.header-menu .menu-buy p {
  margin-bottom: 15px;
}
.header-menu .menu-buy a {
  display: block;
  margin: 0 45px;
}
.header-menu .menu-buy a + a {
  margin-top: 5px;
}

@media screen and (min-width: 769px) {
  .header-menu {
    width: 320px;
  }
  .header-menu .menu-scroll {
    overflow: hidden;
  }
  .header-menu .menu-buy {
    padding-bottom: 40px;
  }

}


/*------------
  footer
------------*/

.footer {
  padding: 55px 0 160px;
  background: #5d85c3;
}
.footer-logo {
  height: 90px;
  margin-bottom: 55px;
  text-align: center;
}
.footer-logo img {
  width: auto;
  height: 100%;
}
.footer-info {
  margin: 0 20px;
  padding: 40px 0 0;
  border-top: 1px solid #FFF;
}
.footer-info a {
  display: block;
  margin: 20px 15px 30px;
  text-align: center;
}
.footer-info p {
  height: 15px;
  text-align: center;
}
.footer-info p img {
  width: auto;
  height: 100%;
}
.footer-ibc {
  height: 73px;
  text-align: center;
}
.footer-ibc img {
  width: auto;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 55px 0 20px;
  }
  .footer-logo {
    margin-bottom: 45px;
  }
  .footer-info {
    max-width: 1230px;
    margin: 0 auto;
  }
  .footer-info a {
    height: 45px;
    margin: 20px auto 30px;
  }
  .footer-info a img {
    width: auto;
    height: 100%;
  }
  .footer-info p {
    height: 10px;
    text-align: center;
  }
}


/*------------
  index
------------*/

/*
  kv
------------*/

#kv {
  min-height: 100vh;
  padding-top: 95px;
  background: #A3BCE2;
}
#kv .kv-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#kv .kv-logo {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 130px;
  margin-top: 5px;
}

@media screen and (min-width: 769px) {
#kv .kv-logo {
    width: 180px;
}
}

#kv .kv-bg {
  position: absolute;
  transition: opacity .5s;
  opacity: 0;
}
#kv .kv-bg._bg01 {
  width: 150vw;
  top: 15px;
  left: calc(-150vw + 53.8vw);
}
#kv._loaded .kv-bg._bg01 {
  opacity: 1;
  transition-delay: 1s;
}
#kv .kv-bg._bg02 {
  width: 140vw;
  top: 106px;
  right: calc(-140vw + 45.8vw);
}
#kv._loaded .kv-bg._bg02 {
  opacity: 1;
  transition-delay: 1s;
}
#kv .kv-balloon {
  position: absolute;
  width: fit-content;
  padding: 15px 8px 20px;
  border: 4px solid #FFFFFF;
  border-radius: 8px;
  transition: opacity 1.5s;
  opacity: 0;
}
#kv._loaded .kv-balloon {
  opacity: 1;
  transition-delay: 1.75s;
}
#kv .kv-balloon::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #FFF transparent transparent transparent;
}
#kv .kv-balloon::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
}
#kv .kv-balloon .balloon-color {
  display: flex;
  justify-content: center;
  margin: 10px auto 0;
}
#kv .kv-balloon .balloon-color span {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border: 2px solid #FFF;
  border-radius: 100%;
}

#kv .kv-balloon .balloon-color span._black {
  background: #1A252B;
}

#kv .kv-balloon .balloon-color span._green { 
  background: #9CCBC6;
}
#kv .kv-balloon .balloon-color span._blue { 
  background: #214067;
}
#kv .kv-balloon .balloon-color span._white {  
  background: #F6F6ED;
}
#kv .kv-balloon .balloon-color span._white2 {
  background: #DFD3B4;
}
#kv .kv-balloon .balloon-color span._red {  
  background: #961E23;
}

#kv .kv-balloon._balloon01 {
  z-index: 99;
  bottom: calc(100% - (100vh - 220px));
  left: 18px;
  padding: 10px 8px 15px;
  background: #415d9a;
}
#kv .kv-balloon._balloon01::after {
  border-color: #415d9a transparent transparent transparent;
}
#kv .kv-balloon._balloon01 p {
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: #FFF;
}
#kv .kv-balloon._balloon02 {
  top: -90px;
  left: 30px;
  background: #E61874;
}
#kv .kv-balloon._balloon02::after {
  border-color: #E61874 transparent transparent transparent;
}
#kv .kv-balloon._balloon02 p {
  text-align: center;
  font-size: 16px;
  line-height: 23px;
  color: #FFF;
}
#kv .kv-balloon._balloon02 p span {
  font-size: 36px;
  font-weight: 700;
}
#kv h1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0.03deg);
  margin: 0 auto;
  transition: opacity .5s;
  opacity: 0;
}
#kv._loaded h1 {
  opacity: 1;
  transition-delay: 1.25s;
}
#kv h1 img {
  width: auto;
  height: 218px;
}
#kv h1 small {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.3rem;
}
#kv .kv-item {
  padding-top: calc(100vh - 220px);
  transition: opacity .5s;
  opacity: 0;
}
#kv._loaded .kv-item {
  opacity: 1;
  transition-delay: 1.5s;
}
#kv .kv-item .swiper-wrapper {
  transition-timing-function: linear;
}
#kv .kv-desc {
  margin-top: 55px;
  text-align: center;
  background: rgb(65 93 154 / 64%);
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  letter-spacing: .2rem;
}
#kv .kv-desc h2 img {
  width: auto;
  height: 100px;
}
#kv .kv-desc .desc-txt {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8rem;
}
#kv .kv-banner {
  margin-top: 35px;
  padding: 15px 25px;
  text-align: center;
  background: rgb(93 111 169 / 28%);
}

@media screen and (min-width: 769px) {
  #kv .kv-bg._bg01 {
    width: 44vw;
    left: 0;
  }
  #kv .kv-bg._bg02 {
    width: 41.4vw;
    right: 0;
  }

  #kv .kv-balloon._balloon01 {
    bottom: calc(100% - (100vh - 400px));
    left: 135px;
  }
  #kv .kv-balloon._balloon02 {
    top: -83px;
    left: 75px;
  }

  #kv .kv-item {
    width: 755px;
    margin: 0 auto;
    padding-top: calc(100vh - 400px);
  }

  #kv h1 img {
    height: 310px;
  }
  #kv h1 small {
    font-size: 30px;
    line-height: 35px;
  }
}


/*
  variation
------------*/

#variation {
  padding: 45px 0 75px;
}
#variation h1 {
  text-align: center;
}
#variation h1 img {
  width: auto;
  height: 76px;
}
#variation .variation-list {
  display: flex;
  align-items: flex-end;
  margin-top: 65px;
  padding: 0 20px;
}
#variation .variation-box {
  width: calc((100% - 20px) / 2);
  font-size: 12px;
  line-height: 24px;
}
#variation .variation-box + .variation-box {
  margin-left: 20px;
}
#variation .variation-box h2 {
  text-align: center;
}
#variation .variation-box h2 img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 64px;
  max-width: none;
}
#variation .variation-box .box-color {
  display: flex;
  justify-content: center;
  margin: 5px auto 15px;
}
#variation .variation-box .box-color span {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  border-radius: 100%;
  cursor: pointer;
}

#variation .variation-box .box-color span._black {
  background: #1A252B;
}

#variation .variation-box .box-color span._green { 
  background: #9CCBC6;
}
#variation .variation-box .box-color span._blue { 
  background: #214067;
}
#variation .variation-box .box-color span._white {  
  background: #F6F6ED;
}
#variation .variation-box .box-color span._white2 {
  background: #DFD3B4;
}
#variation .variation-box .box-color span._red {  
  background: #961E23;
}



#variation .variation-box .box-price {
  font-size: 16px;
  line-height: 24px;
}
#variation .variation-box .box-price span {
  padding: 0 5px 0 10px;
  font-size: 34px;
}

@media screen and (min-width: 769px) {
  #variation {
    padding: 75px 0 100px;
  }
  #variation h1 img {
    height: 92px;
  }
  #variation .variation-list {
    width: 400px;
    margin: 35px auto 0;
    padding: 0;
  }
}


/*
  useage
------------*/

#useage {
  padding: 40px 0 0;
  background: rgb(236 240 251);
}
#useage .useage-box {
  padding: 0 15px;
}
#useage .useage-box:nth-of-type(odd) {
  padding-left: 45px;
}
#useage .useage-box:nth-of-type(even) {
  padding-right: 45px;
}
#useage .useage-box h2 {
  display: flex;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
}
#useage .useage-box h2 span {
  padding-right: 5px;
  font-size: 38px;
}
#useage .useage-box h2 p {
  margin-top: auto;
  line-height: 29px;
}
#useage .useage-box .box-desc {
  font-size: 12px;
  line-height: 24px;
}
#useage .useage-box .box-image {
  position: relative;
  width: 85vw;
}
#useage .useage-box .box-image._image01 {
  right: calc(-13vw - 45px);
  margin: 35px 0 5px auto;
}
#useage .useage-box .box-image._image02 {
  width: 82vw;
  left: calc(-10vw - 45px);
  margin: 45px auto 55px 0;
}
#useage .useage-box .box-image._image03 {
  top: 16px;
  right: calc(-5vw - 45px);
  margin: 9px 0 5px auto;
}

@media screen and (min-width: 769px) {
  #useage {
    padding: 40px 0 30px;
  }
  #useage .useage-box {
    display: flex;
  }
  #useage .useage-box + .useage-box {
    margin-top: 40px;
  }
  #useage .useage-box:nth-of-type(odd),
  #useage .useage-box:nth-of-type(even) {
    padding: 0;
  }
  #useage .useage-box .box-txt {
    width: calc(50% - 20px);
  }
  #useage .useage-box:nth-of-type(even) .box-txt {
    order: 1;
    margin-right: 20px;
  }
  #useage .useage-box:nth-of-type(odd) .box-txt {
    order: 2;
    margin-left: 20px;
  }

  #useage .useage-box .box-image {
    width: 50%;
  }
  #useage .useage-box .box-image._image01,
  #useage .useage-box .box-image._image03 {
    order: 2;
    top: 0;
    right: 0;
    margin: 0;
  }
  #useage .useage-box .box-image._image02 {
    order: 1;
    top: 0;
    left: 0;
    width: 50%;
    margin: 0;
  }
}


/*
  review
------------*/

#review {
  overflow: hidden;
  padding: 60px 0 0;
}
#review .review-thumbnail {
  position: relative;
  z-index: 99;
}
#review .review-thumbnail .swiper-slide img {
  transform: scale(0.7);
  transition: .5s;
}
#review .review-thumbnail .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}
#review .swiper-slide {
  height: 100%;
}
#review .review-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 10px;
  padding: 135px 10px 55px;
  text-align: center;
  color: #FFF;
  border-radius: 15px;
}
#review .review-box._male {
  background: #89B8EF;
}
#review .review-box._female {
  background: #EF8992;
}
#review .review-box h2 {
  font-size: 29px;
  font-weight: 400;
  line-height: 26px;
  font-family: 'makimaru', sans-serif;
}
#review .review-txt {
  margin: 10px auto;
  font-size: 16px;
  line-height: 26px;
}
#review .review-name {
  margin-top: auto;
  font-size: 25px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
#review .review-content {
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: -90px;
  padding-bottom: 100px;
}
#review .review-content .swiper-arrow {
  display: flex;
  position: absolute;
  z-index: 9;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: fit-content;
  height: 62px;
  padding: 5px;
  background: #FFF;
  border-radius: 50px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .25));
}
#review .review-content .swiper-arrow div {
  width: 52px;
  height: 52px;
}
#review .review-content .swiper-arrow div + div {
  margin-left: 20px;
}

@media screen and (min-width: 769px) {
  #review .review-content {
    margin-top: -75px;
    padding-bottom: 150px;
  }
  #review .review-content .swiper-arrow {
    bottom: 150px;
  }
  #review .review-box {

  }
  #review .review-box h2 {
    width: 320px;
    margin: 0 auto 10px;
  }
  #review .review-txt {
    width: 320px;
    margin: 0 auto 10px;
  }
}


/*
  author
------------*/

#author {
  padding: 60px 20px;
  background: rgb(236 240 251);
}
#author  h2 {
  text-align: center;
}
#author h2 img {
  width: auto;
  height: 30px;
}
#author .author-image {
  margin: 50px auto 25px;
  padding: 0 100px;
  text-align: center;
}
#author .author-image img {
  width: 180px;
}
#author .author-name {
  text-align: center;
  font-size: 16px;
  line-height: 21px;
}
#author .author-txt {
  margin-top: 35px;
  font-size: 16px;
  line-height: 21px;
}
#author .author-sns {
  display: flex;
  justify-content: center;
  margin: 55px auto 80px;
}
#author .author-sns a {
  width: 75px;
  margin: 0 15px;
}
#author .author-flex {
  display: flex;
  align-items: center;
}
#author .author-flex .author-image {
  width: 100px;
  margin: 0;
  margin-right: 20px;
  padding: 0;
}
#author .author-flex .author-name {
  text-align: left;
}

@media screen and (min-width: 769px) {
  #author {
    padding: 45px 0 140px;
  }
  #author .author-image {
    margin: 55px auto 30px;
    padding: 0;
  }
  #author .author-name p {
    margin-bottom: 5px;
  }
  #author .author-txt {
    margin-top: 45px;
  }

  #author .author-flex {
    display: block;
    margin-top: 70px;
  }
  #author .author-flex .author-image {
    width: 100%;
    margin: 0;
  }
  #author .author-flex .author-name {
    display: flex;
    justify-content: center;
  }
}


/*
  info
------------*/

#info {
  padding: 45px 0 65px;
}
#info .info-item {
  display: flex;
  align-items: flex-end;
  padding: 0 20px;
}
#info .info-image {
  width: 50%;
  text-align: center;
}
#info .info-tab {
  display: flex;
  position: relative;
  margin-top: 20px;
  padding: 0 20px;
}
#info .info-tab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #707070;
}
#info .info-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 1px;
  background: #707070;
}
#info .info-tab .tab-btn {
  width: 50%;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  border-bottom: 1px solid #707070;
  cursor: pointer;
}
#info .info-tab .tab-btn.active {
  border: 1px solid #707070;
  border-bottom: none;
}
#info .info-detail {
  margin-top: 20px;
  padding: 0 20px;
}
#info .info-box {
  display: none;
}
#info .info-box.active {
  display: block;
}
#info .info-box h2 {
  text-align: center;
  font-size: 24px;
  font-family: 'makimaru', sans-serif;
}
#info .info-box dl {
  margin-top: 25px;
  font-size: 16px;
  line-height: 45px;
}
#info .info-box dl div {
  display: flex;
  align-items: center;
}
#info .info-box dl dt {
  display: flex;
  align-items: center;
  width: 25%;
}
#info .info-box dl dt._mb {
  margin-bottom: auto;
}
#info .info-box dl dt span {
  margin-left: auto;
}
#info .info-box dl dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 75%;
}
#info .info-box dl dd span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
}

#info .info-box dl dd span + span {
  margin-left: 15px;
}

#info .info-box dl dd span._black {
  background: #1A252B;
}
#info .info-box dl dd span._green { 
  background: #9CCBC6;
}
#info .info-box dl dd span._blue { 
  background: #214067;
}
#info .info-box dl dd span._white {  
  background: #F6F6ED;
}
#info .info-box dl dd span._white2 {
  background: #DFD3B4;
}
#info .info-box dl dd span._red {  
  background: #961E23;
}


#info .info-box dl dd p {
  width: 100%;
}
#info .info-link {
  margin-top: 90px;
}
#info .info-link a {
  display: block;
}

@media screen and (min-width: 769px) {
  #info .info-item {
    width: 85%;
    margin: 0 auto;
  }
  #info .info-link {
    display: flex;
    margin-top: 95px;
  }
  /* #info .info-link a {
    width: calc((100% - 20px) / 3);
  } */
  #info .info-link a {
    width: calc((100% - 20px) / 2);
  }
  #info .info-link a + a {
    margin-left: 10px;
  }
}


/*
  download
------------*/

#download {
  padding: 45px 0 80px;
  background: #A3BCE2;
}
#download .download-list {
  padding: 0 20px;
}
#download .download-box + .download-box {
  margin-top: 60px;
}
#download .download-box a {
  display: block;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #5D6FA9;
  background: #FFF;
  border-radius: 50px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .16));
}

@media screen and (min-width: 769px) {
  #download .download-list {
    display: flex;
    padding: 0;
  }
  #download .download-box {
    width: calc((100% - 30px) / 3);
  }
  #download .download-box + .download-box {
    margin-top: 0;
    margin-left: 15px;
  }
}


/*
  sns
------------*/

#sns {
  padding: 50px 0 80px;
}
#sns h1 {
  text-align: center;
}
#sns h1 img {
  width: auto;
  height: 33px;
}
#sns .sns-head {
  margin: 40px auto;
  text-align: center;
  font-size: 26px;
  line-height: 33px;
  font-family: 'makimaru', sans-serif;
}
#sns .sns-icon {
  width: 75px;
  margin: 0 auto 10px;
}
#sns .sns-twitter {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 380px;
  padding: 0 20px;
}
#sns .sns-insta {
  display: flex;
  flex-wrap: wrap;
}
#sns .sns-insta .insta-box {
  width: 50%;
  height: 50vw;
  border: 0.5px solid #E5E5E5;
}
#sns .sns-insta .insta-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  #sns .sns-insta .insta-box {
    width: 20%;
    height: 20vw;
  }
}


#goals {
    padding: 40px 0 30px;
}

/*アコーディオン*/

#goals summary {
	list-style: none;
	position: relative;
	margin-bottom: 10px;
	padding: 20px 70px 20px 30px;
	cursor: pointer;
	border-radius: 4px;
	background-color: rgb(163 188 226 / 61%);
	display: block;
}

#goals summary::-webkit-details-marker {
	display: none;
}

#goals summary:hover,
#goals details[open] summary {
	background-color: rgba(163, 188, 226, 0.898);
}

#goals summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
}

#goals details{
padding:0 10px;
}

#goals details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

#goals .answer {
	padding: 20px;
}

#goals .answer p{
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 20px;
	padding: 5px 0;
	border-bottom: 1px dashed #bee2de;
}

#goals details[open] .answer {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


.br-sp {
  display: none;
}

@media (max-width: 750px) {
  .br-sp {
    display: block;
}
