@charset "UTF-8";
.hamburger {
  display: none;
  position: fixed;
  z-index: 3;
  right: 30px;
  top: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center; }
  .hamburger span {
    transition: all .2s;
    /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #fff; }
  .hamburger span:nth-of-type(1) {
    top: 22px;
    width: 50%; }
  .hamburger span:nth-of-type(2) {
    top: 29px;
    width: 30%; }
  @media screen and (max-width: 500px) {
    .hamburger {
      top: 20px;
      right: 24px; } }

.hamburger.scroll {
  position: fixed;
  display: block;
  animation-name: anime;
  animation-duration: 0.3s; }

@keyframes anime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*activeクラスが付与されると線が回転して×に*/
.hamburger.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%; }

.hamburger.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%; }

nav.globalMenuSp {
  padding: 40px 70px;
  display: none;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease; }
  nav.globalMenuSp .hamburger_menu {
    margin: 40px 0;
    max-width: 1440px; }
    nav.globalMenuSp .hamburger_menu .menu_box {
      display: flex;
      justify-content: center;
      margin-bottom: 40px; }
    nav.globalMenuSp .hamburger_menu .menu_box:last-child {
      margin-bottom: 0; }
    nav.globalMenuSp .hamburger_menu li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      transition: .4s all; }
      nav.globalMenuSp .hamburger_menu li:last-child {
        padding-bottom: 0; }
      nav.globalMenuSp .hamburger_menu li a {
        font-size: 12.0rem;
        line-height: 1.2;
        display: block;
        color: #fff;
        text-decoration: none; }
  nav.globalMenuSp .hamburger_sns {
    display: flex;
    justify-content: center;
    margin-bottom: 40px; }
    nav.globalMenuSp .hamburger_sns li {
      display: inline-block;
      list-style: none;
      line-height: 2.0;
      padding-right: 40px; }
      nav.globalMenuSp .hamburger_sns li a {
        text-decoration: none;
        color: #fff; }
        nav.globalMenuSp .hamburger_sns li a img {
          width: 30px;
          height: auto; }
    nav.globalMenuSp .hamburger_sns li:last-child {
      padding-right: 0px; }
  nav.globalMenuSp span {
    font-family: 'kinto-sans',sans-serif;
    font-size: 1.2rem;
    text-align: center; }
  @media screen and (max-width: 1000px) {
    nav.globalMenuSp .hamburger_menu .menu_box {
      display: block;
      margin-bottom: 0; }
      nav.globalMenuSp .hamburger_menu .menu_box li a {
        font-size: 6.0rem; } }
  @media screen and (max-width: 800px) {
    nav.globalMenuSp .hamburger_menu .menu_box li a {
      font-size: 4.0rem; }
    nav.globalMenuSp .hamburger_sns {
      margin-bottom: 10px; }
      nav.globalMenuSp .hamburger_sns li {
        padding-right: 20px; }
        nav.globalMenuSp .hamburger_sns li a img {
          width: 20px;
          height: auto; } }
  @media screen and (max-width: 500px) {
    nav.globalMenuSp {
      padding: 24px; }
      nav.globalMenuSp .hamburger_menu .menu_box a {
        font-size: 6.0rem; }
      nav.globalMenuSp .menu-rogo {
        width: 100%; } }

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  display: block;
  opacity: 100; }

.section-top .bg_img {
  position: relative; }
  .section-top .bg_img .top_img {
    width: 100%;
    height: auto;
    object-fit: cover; }
  .section-top .bg_img .top_img2 {
    display: none; }
  .section-top .bg_img .bg_img:before {
    content: "";
    display: block;
    padding-top: 100%; }
  .section-top .bg_img .sweets_img {
    position: absolute;
    top: 120px;
    right: 20px;
    width: 400px;
    animation-name: fadeUpAnime;
    animation-duration: 1.4s;
    animation-fill-mode: forwards;
    opacity: 0; }
  .section-top .bg_img .top_shop-name {
    font-size: 1.4rem;
    position: absolute;
    top: 40px;
    left: 70px; }
  .section-top .bg_img .top_sns {
    position: absolute;
    top: 40px;
    right: 70px; }
    .section-top .bg_img .top_sns li {
      display: inline-block;
      list-style: none;
      line-height: 2.0;
      padding-right: 40px; }
      .section-top .bg_img .top_sns li img {
        width: 20px;
        height: auto; }
      .section-top .bg_img .top_sns li a {
        text-decoration: none;
        color: #fff; }
    .section-top .bg_img .top_sns li:last-child {
      padding-right: 0px; }
  .section-top .bg_img .top_menu {
    position: absolute;
    right: 70px;
    top: 550px; }
    .section-top .bg_img .top_menu li {
      list-style: none;
      line-height: 2.0; }
      .section-top .bg_img .top_menu li a {
        text-decoration: none;
        color: #fff; }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.section-top .scrolldown {
  position: absolute;
  bottom: 1%;
  right: 50%;
  animation: arrowmove 2s ease-in-out infinite;
  /*Scrollテキストの描写*/ }
  .section-top .scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg); }
  .section-top .scrolldown:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: 0;
    /*矢印の形状*/
    width: 1px;
    height: 50px;
    background: #eee; }
@keyframes arrowmove {
  0% {
    bottom: 20%; }
  50% {
    bottom: 18%; }
  100% {
    bottom: 20%; } }
  .section-top .scrolldown span {
    /*描画位置*/
    position: absolute;
    left: -20px;
    bottom: 10px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; }

@media screen and (max-width: 1000px) {
  .section-top .bg_img .sweets_img {
    width: 300px; }
  .section-top .bg_img .top_shop-name {
    font-size: 1.2rem; }

  .hamburger {
    display: block; }

  .top_menu, .top_sns {
    display: none; } }
@media screen and (max-width: 800px) {
  .section-top .bg_img .top_img {
    display: none; }
  .section-top .bg_img .top_img2 {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover; }
  .section-top .bg_img .sweets_img {
    width: 280px;
    top: 180px; } }
@media screen and (max-width: 600px) {
  .section-top .bg_img .sweets_img {
    width: 250px;
    top: 160px; } }
@media screen and (max-width: 500px) {
  .section-top .bg_img .sweets_img {
    width: 200px;
    top: 120px; }
  .section-top .bg_img .top_shop-name {
    left: 24px; } }
.about {
  text-align: center;
  position: relative;
  padding: 140px 70px 300px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0; }
  .about.on {
    transition: 0.8s ease-in-out;
    transform: translateY(0);
    opacity: 1.0; }
  .about:before {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url("../assets/kirameki_site_img/top-read-bg__sentence.png");
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: 2000px auto;
    opacity: 0.2;
    animation: about 60s linear infinite;
    z-index: -1; }

@keyframes about {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -1000px 0; } }
@media screen and (max-width: 768px) {
  .about {
    padding: 100px 24px; }
    .about:before {
      height: 90px;
      background-size: 500px auto; }

  @keyframes about {
    0% {
      background-position: 0 0; }
    100% {
      background-position: -500px 0; } } }
.section-himitu {
  max-width: 1440px;
  padding: 0 70px;
  margin: 0 auto 140px; }
  .section-himitu .himitu_content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: 'kinto-sans',sans-serif;
    align-items: center;
    padding-bottom: 100px;
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0; }
    .section-himitu .himitu_content.on {
      transform: translateY(0);
      opacity: 1.0; }
    .section-himitu .himitu_content:nth-child(3) {
      flex-direction: row-reverse; }
    .section-himitu .himitu_content:last-child {
      padding-bottom: 0; }
    .section-himitu .himitu_content .image {
      flex-basis: 50%;
      cursor: pointer;
      overflow: hidden;
      aspect-ratio: 5 / 6;
      border-radius: 50% 50% 0 0;
      object-position: 50% 50%; }
      .section-himitu .himitu_content .image img {
        width: 130%;
        object-fit: cover;
        transition: transform .6s ease;
        /* ゆっくり変化させる */ }
        .section-himitu .himitu_content .image img:hover {
          transform: scale(1.1);
          /* 拡大 */ }
    .section-himitu .himitu_content .discription {
      flex-basis: 50%; }
      .section-himitu .himitu_content .discription .title__contentwrapper {
        display: flex;
        align-items: center; }
      .section-himitu .himitu_content .discription .himitu-number {
        font-size: 12.0rem;
        font-weight: 600; }
      .section-himitu .himitu_content .discription .himitu-title {
        font-size: 3.4rem;
        font-weight: 600; }
    .section-himitu .himitu_content .one, .section-himitu .himitu_content .three {
      padding-left: 40px; }
    .section-himitu .himitu_content .two {
      padding-right: 40px; }

@media screen and (max-width: 800px) {
  .section-himitu .himitu_content {
    display: block;
    width: 100%;
    padding-bottom: 40px; }
    .section-himitu .himitu_content .img {
      aspect-ratio: 2 / 1; }
    .section-himitu .himitu_content .discription {
      padding: 20px 0 0;
      width: 100%; }
      .section-himitu .himitu_content .discription .himitu-number {
        font-size: 10.0rem; }
      .section-himitu .himitu_content .discription .himitu-title {
        font-size: 3.0rem; }
    .section-himitu .himitu_content .image {
      margin: 0 auto; } }
@media screen and (max-width: 500px) {
  .section-himitu {
    padding: 0 24px;
    margin: 0 auto 120px; }
    .section-himitu .discription .title__contentwrapper .himitu-number {
      font-size: 6.0rem; }
    .section-himitu .discription .title__contentwrapper .himitu-title {
      font-size: 2.0rem; }
    .section-himitu .discription p {
      font-size: 1.6rem; } }
.section-item {
  max-width: 1440px;
  margin: 0 auto;
  /* オーバーレイ */
  /* activeクラスのついたオーバーレイ */
  /* モーダルウィンドウ */
  /* activeクラスのついたモーダルウィンドウ */
  /* モーダルウィンドウ内の閉じるボタン */ }
  .section-item h2 {
    padding: 0 70px; }
  .section-item #app {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 800px;
    background-repeat: no-repeat;
    transition: background-image 1s; }
    .section-item #app.bg1 {
      background-image: url(../assets/kirameki_site_img/bg-change__01.png); }
    .section-item #app.bg2 {
      background-image: url(../assets/kirameki_site_img/bg-change__02.png); }
    .section-item #app.bg3 {
      background-image: url(../assets/kirameki_site_img/bg-change__03.png); }
    .section-item #app.bg4 {
      background-image: url(../assets/kirameki_site_img/bg-change__04.png); }
    .section-item #app.bg5 {
      background-image: url(../assets/kirameki_site_img/bg-change__05.png); }
    .section-item #app.bg6 {
      background-image: url(../assets/kirameki_site_img/bg-change__06.png); }
    .section-item #app.bg7 {
      background-image: url(../assets/kirameki_site_img/bg-change__07.png); }
    .section-item #app.bg8 {
      background-image: url(../assets/kirameki_site_img/bg-change__08.png); }
    .section-item #app.bg9 {
      background-image: url(../assets/kirameki_site_img/bg-change__09.png); }
    .section-item #app.bg10 {
      background-image: url(../assets/kirameki_site_img/bg-change__10.png); }
    .section-item #app.bg11 {
      background-image: url(../assets/kirameki_site_img/bg-change__11.png); }
  .section-item .item__contentwrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
    transform: translateY(30px);
    opacity: 0; }
    .section-item .item__contentwrapper.on {
      transition: 0.8s ease-in-out;
      transform: translateY(0);
      opacity: 1.0; }
  .section-item .list, .section-item .list2 {
    flex-basis: 50%; }
    .section-item .list li, .section-item .list2 li {
      list-style: none;
      padding: 20px 0;
      border-bottom: solid 1px rgba(255, 255, 255, 0.6); }
    .section-item .list a, .section-item .list2 a {
      display: inline-block;
      text-decoration: none;
      transition: background-color 0.3s; }
    .section-item .list h3, .section-item .list2 h3 {
      font-size: 3.2rem; }
    .section-item .list h3, .section-item .list span, .section-item .list2 h3, .section-item .list2 span {
      display: inline-block;
      color: #fff; }
  .section-item .list {
    padding: 0 70px 0 50px; }
  .section-item .list2 {
    padding: 0 50px 0 70px; }
  .section-item .overlay1, .section-item .overlay2, .section-item .overlay3, .section-item .overlay4, .section-item .overlay5, .section-item .overlay6, .section-item .overlay7, .section-item .overlay8, .section-item .overlay9, .section-item .overlay10, .section-item .overlay11 {
    /* 位置を固定 */
    position: fixed;
    top: 0;
    left: 0;
    /* 画面いっぱいに広がるようにする */
    width: 100%;
    height: 100vh;
    /* rgbaを使って60%の黒いオーバーレイにする */
    background: rgba(0, 0, 0, 0.6);
    /* デフォルトでは見えないようにする */
    opacity: 0;
    visibility: hidden;
    /* 表示する際の変化の所要時間 */
    transition: .3s; }
  .section-item .overlay1.active, .section-item .overlay2.active, .section-item .overlay3.active, .section-item .overlay4.active, .section-item .overlay5.active, .section-item .overlay6.active,
  .section-item .overlay7.active, .section-item .overlay8.active, .section-item .overlay9.active, .section-item .overlay9.active, .section-item .overlay10.active, .section-item .overlay11.active {
    /* activeクラスがついたときにオーバーレイを表示する */
    opacity: 1;
    visibility: visible; }
  .section-item .modal1, .section-item .modal2, .section-item .modal3, .section-item .modal4, .section-item .modal5, .section-item .modal6, .section-item .modal7, .section-item .modal8, .section-item .modal9, .section-item .modal10, .section-item .modal11 {
    width: 80%;
    height: 700px;
    box-shadow: 0px 0px 30px 30px rgba(0, 0, 0, 0.8) inset;
    border-radius: 30px;
    padding: 40px;
    /* 位置の調整(真ん中に表示) */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* デフォルトでは非表示にしておく */
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    /* 表示の変化にかかる時間 */ }
  .section-item .modal1 {
    background: linear-gradient(60deg, #caab47, #6d1612, #500102);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal2 {
    background: linear-gradient(60deg, #caab47, #004564, #062838);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal3 {
    background: linear-gradient(60deg, #f4a811, #6f4b04, #351918);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal4 {
    background: linear-gradient(60deg, #020516, #090e70, #118711);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal5 {
    background: linear-gradient(60deg, #dc9ca6, #cb2c28, #3d0d0a);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal6 {
    background: linear-gradient(60deg, #57ae99, #3252a0, #0f194d);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal7 {
    background: linear-gradient(60deg, #dfc297, #634329, #241304);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal8 {
    background: linear-gradient(60deg, #f1745f, #8b1502, #2a0705);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal9 {
    background: linear-gradient(60deg, #04dbe4, #034e63, #0c222a);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal10 {
    background: linear-gradient(60deg, #f5feff, #0999bd, #081839);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
  .section-item .modal11 {
    background: linear-gradient(60deg, #fdbaff, #6f0d75, #492a7d, #350538);
    /*グラデーションを定義*/
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 10s ease infinite; }
@keyframes bggradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
  .section-item .modal1.active, .section-item .modal2.active, .section-item .modal3.active, .section-item .modal4.active, .section-item .modal5.active, .section-item .modal6.active,
  .section-item .modal7.active, .section-item .modal8.active, .section-item .modal9.active, .section-item .modal10.active, .section-item .modal11.active {
    opacity: 1;
    visibility: visible;
    z-index: 5; }
  .section-item .close1, .section-item .close2, .section-item .close3, .section-item .close4, .section-item .close5, .section-item .close6, .section-item .close7, .section-item .close8, .section-item .close9, .section-item .close10, .section-item .close11 {
    margin-top: 40px;
    border-radius: 25px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    transition: all 0.3s ease-out; }
  .section-item .close1:hover, .section-item .close2:hover, .section-item .close3:hover, .section-item .close4:hover, .section-item .close5:hover, .section-item .close6:hover,
  .section-item .close7:hover, .section-item .close8:hover, .section-item .close9:hover, .section-item .close10:hover, .section-item .close11:hover {
    background-color: #000;
    border: 1px solid #000;
    color: #fff; }
  .section-item .modal1 .item-modal__contentwrapper, .section-item .modal2 .item-modal__contentwrapper, .section-item .modal3 .item-modal__contentwrapper, .section-item .modal4 .item-modal__contentwrapper, .section-item .modal5 .item-modal__contentwrapper, .section-item .modal6 .item-modal__contentwrapper, .section-item .modal7 .item-modal__contentwrapper, .section-item .modal8 .item-modal__contentwrapper, .section-item .modal9 .item-modal__contentwrapper, .section-item .modal10 .item-modal__contentwrapper, .section-item .modal11 .item-modal__contentwrapper {
    display: flex;
    align-items: center;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%); }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__image, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription, .section-item .modal2 .item-modal__contentwrapper .item-modal__image, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription, .section-item .modal3 .item-modal__contentwrapper .item-modal__image, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription, .section-item .modal4 .item-modal__contentwrapper .item-modal__image, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription, .section-item .modal5 .item-modal__contentwrapper .item-modal__image, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription, .section-item .modal6 .item-modal__contentwrapper .item-modal__image, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription, .section-item .modal7 .item-modal__contentwrapper .item-modal__image, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription, .section-item .modal8 .item-modal__contentwrapper .item-modal__image, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription, .section-item .modal9 .item-modal__contentwrapper .item-modal__image, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription, .section-item .modal10 .item-modal__contentwrapper .item-modal__image, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription, .section-item .modal11 .item-modal__contentwrapper .item-modal__image, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription {
      flex-basis: 50%; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__image, .section-item .modal2 .item-modal__contentwrapper .item-modal__image, .section-item .modal3 .item-modal__contentwrapper .item-modal__image, .section-item .modal4 .item-modal__contentwrapper .item-modal__image, .section-item .modal5 .item-modal__contentwrapper .item-modal__image, .section-item .modal6 .item-modal__contentwrapper .item-modal__image, .section-item .modal7 .item-modal__contentwrapper .item-modal__image, .section-item .modal8 .item-modal__contentwrapper .item-modal__image, .section-item .modal9 .item-modal__contentwrapper .item-modal__image, .section-item .modal10 .item-modal__contentwrapper .item-modal__image, .section-item .modal11 .item-modal__contentwrapper .item-modal__image {
      margin-right: 20px; }
      .section-item .modal1 .item-modal__contentwrapper .item-modal__image img, .section-item .modal2 .item-modal__contentwrapper .item-modal__image img, .section-item .modal3 .item-modal__contentwrapper .item-modal__image img, .section-item .modal4 .item-modal__contentwrapper .item-modal__image img, .section-item .modal5 .item-modal__contentwrapper .item-modal__image img, .section-item .modal6 .item-modal__contentwrapper .item-modal__image img, .section-item .modal7 .item-modal__contentwrapper .item-modal__image img, .section-item .modal8 .item-modal__contentwrapper .item-modal__image img, .section-item .modal9 .item-modal__contentwrapper .item-modal__image img, .section-item .modal10 .item-modal__contentwrapper .item-modal__image img, .section-item .modal11 .item-modal__contentwrapper .item-modal__image img {
        width: 100%; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription h1 {
      margin-bottom: 10px;
      display: inline-block;
      font-size: 10.0rem;
      line-height: 1.2; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription p {
      font-size: 1.8rem; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription span, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription span {
      font-size: 1.4rem;
      display: inline-block; }

@media screen and (max-width: 1000px) {
  .section-item .modal1 .item-modal__contentwrapper, .section-item .modal2 .item-modal__contentwrapper, .section-item .modal3 .item-modal__contentwrapper, .section-item .modal4 .item-modal__contentwrapper, .section-item .modal5 .item-modal__contentwrapper, .section-item .modal6 .item-modal__contentwrapper, .section-item .modal7 .item-modal__contentwrapper, .section-item .modal8 .item-modal__contentwrapper, .section-item .modal9 .item-modal__contentwrapper, .section-item .modal10 .item-modal__contentwrapper, .section-item .modal11 .item-modal__contentwrapper {
    display: block;
    width: 100%;
    padding: 40px; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__image, .section-item .modal2 .item-modal__contentwrapper .item-modal__image, .section-item .modal3 .item-modal__contentwrapper .item-modal__image, .section-item .modal4 .item-modal__contentwrapper .item-modal__image, .section-item .modal5 .item-modal__contentwrapper .item-modal__image, .section-item .modal6 .item-modal__contentwrapper .item-modal__image, .section-item .modal7 .item-modal__contentwrapper .item-modal__image, .section-item .modal8 .item-modal__contentwrapper .item-modal__image, .section-item .modal9 .item-modal__contentwrapper .item-modal__image, .section-item .modal10 .item-modal__contentwrapper .item-modal__image, .section-item .modal11 .item-modal__contentwrapper .item-modal__image {
      margin: 0; }
      .section-item .modal1 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal2 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal3 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal4 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal5 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal6 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal7 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal8 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal9 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal10 .item-modal__contentwrapper .item-modal__imageimg, .section-item .modal11 .item-modal__contentwrapper .item-modal__imageimg {
        width: 50%;
        text-align: center; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription {
      margin-top: 20px; }
      .section-item .modal1 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription h1 {
        font-size: 6.0rem; }
      .section-item .modal1 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription p {
        font-size: 1.6rem; }
    .section-item .modal1 .item-modal__contentwrapper .close1, .section-item .modal1 .item-modal__contentwrapper .close2, .section-item .modal1 .item-modal__contentwrapper .close3, .section-item .modal1 .item-modal__contentwrapper .close4, .section-item .modal1 .item-modal__contentwrapper .close5, .section-item .modal1 .item-modal__contentwrapper .close6, .section-item .modal1 .item-modal__contentwrapper .close7, .section-item .modal1 .item-modal__contentwrapper .close8, .section-item .modal1 .item-modal__contentwrapper .close9, .section-item .modal1 .item-modal__contentwrapper .close10, .section-item .modal1 .item-modal__contentwrapper .close11, .section-item .modal2 .item-modal__contentwrapper .close1, .section-item .modal2 .item-modal__contentwrapper .close2, .section-item .modal2 .item-modal__contentwrapper .close3, .section-item .modal2 .item-modal__contentwrapper .close4, .section-item .modal2 .item-modal__contentwrapper .close5, .section-item .modal2 .item-modal__contentwrapper .close6, .section-item .modal2 .item-modal__contentwrapper .close7, .section-item .modal2 .item-modal__contentwrapper .close8, .section-item .modal2 .item-modal__contentwrapper .close9, .section-item .modal2 .item-modal__contentwrapper .close10, .section-item .modal2 .item-modal__contentwrapper .close11, .section-item .modal3 .item-modal__contentwrapper .close1, .section-item .modal3 .item-modal__contentwrapper .close2, .section-item .modal3 .item-modal__contentwrapper .close3, .section-item .modal3 .item-modal__contentwrapper .close4, .section-item .modal3 .item-modal__contentwrapper .close5, .section-item .modal3 .item-modal__contentwrapper .close6, .section-item .modal3 .item-modal__contentwrapper .close7, .section-item .modal3 .item-modal__contentwrapper .close8, .section-item .modal3 .item-modal__contentwrapper .close9, .section-item .modal3 .item-modal__contentwrapper .close10, .section-item .modal3 .item-modal__contentwrapper .close11, .section-item .modal4 .item-modal__contentwrapper .close1, .section-item .modal4 .item-modal__contentwrapper .close2, .section-item .modal4 .item-modal__contentwrapper .close3, .section-item .modal4 .item-modal__contentwrapper .close4, .section-item .modal4 .item-modal__contentwrapper .close5, .section-item .modal4 .item-modal__contentwrapper .close6, .section-item .modal4 .item-modal__contentwrapper .close7, .section-item .modal4 .item-modal__contentwrapper .close8, .section-item .modal4 .item-modal__contentwrapper .close9, .section-item .modal4 .item-modal__contentwrapper .close10, .section-item .modal4 .item-modal__contentwrapper .close11, .section-item .modal5 .item-modal__contentwrapper .close1, .section-item .modal5 .item-modal__contentwrapper .close2, .section-item .modal5 .item-modal__contentwrapper .close3, .section-item .modal5 .item-modal__contentwrapper .close4, .section-item .modal5 .item-modal__contentwrapper .close5, .section-item .modal5 .item-modal__contentwrapper .close6, .section-item .modal5 .item-modal__contentwrapper .close7, .section-item .modal5 .item-modal__contentwrapper .close8, .section-item .modal5 .item-modal__contentwrapper .close9, .section-item .modal5 .item-modal__contentwrapper .close10, .section-item .modal5 .item-modal__contentwrapper .close11, .section-item .modal6 .item-modal__contentwrapper .close1, .section-item .modal6 .item-modal__contentwrapper .close2, .section-item .modal6 .item-modal__contentwrapper .close3, .section-item .modal6 .item-modal__contentwrapper .close4, .section-item .modal6 .item-modal__contentwrapper .close5, .section-item .modal6 .item-modal__contentwrapper .close6, .section-item .modal6 .item-modal__contentwrapper .close7, .section-item .modal6 .item-modal__contentwrapper .close8, .section-item .modal6 .item-modal__contentwrapper .close9, .section-item .modal6 .item-modal__contentwrapper .close10, .section-item .modal6 .item-modal__contentwrapper .close11, .section-item .modal7 .item-modal__contentwrapper .close1, .section-item .modal7 .item-modal__contentwrapper .close2, .section-item .modal7 .item-modal__contentwrapper .close3, .section-item .modal7 .item-modal__contentwrapper .close4, .section-item .modal7 .item-modal__contentwrapper .close5, .section-item .modal7 .item-modal__contentwrapper .close6, .section-item .modal7 .item-modal__contentwrapper .close7, .section-item .modal7 .item-modal__contentwrapper .close8, .section-item .modal7 .item-modal__contentwrapper .close9, .section-item .modal7 .item-modal__contentwrapper .close10, .section-item .modal7 .item-modal__contentwrapper .close11, .section-item .modal8 .item-modal__contentwrapper .close1, .section-item .modal8 .item-modal__contentwrapper .close2, .section-item .modal8 .item-modal__contentwrapper .close3, .section-item .modal8 .item-modal__contentwrapper .close4, .section-item .modal8 .item-modal__contentwrapper .close5, .section-item .modal8 .item-modal__contentwrapper .close6, .section-item .modal8 .item-modal__contentwrapper .close7, .section-item .modal8 .item-modal__contentwrapper .close8, .section-item .modal8 .item-modal__contentwrapper .close9, .section-item .modal8 .item-modal__contentwrapper .close10, .section-item .modal8 .item-modal__contentwrapper .close11, .section-item .modal9 .item-modal__contentwrapper .close1, .section-item .modal9 .item-modal__contentwrapper .close2, .section-item .modal9 .item-modal__contentwrapper .close3, .section-item .modal9 .item-modal__contentwrapper .close4, .section-item .modal9 .item-modal__contentwrapper .close5, .section-item .modal9 .item-modal__contentwrapper .close6, .section-item .modal9 .item-modal__contentwrapper .close7, .section-item .modal9 .item-modal__contentwrapper .close8, .section-item .modal9 .item-modal__contentwrapper .close9, .section-item .modal9 .item-modal__contentwrapper .close10, .section-item .modal9 .item-modal__contentwrapper .close11, .section-item .modal10 .item-modal__contentwrapper .close1, .section-item .modal10 .item-modal__contentwrapper .close2, .section-item .modal10 .item-modal__contentwrapper .close3, .section-item .modal10 .item-modal__contentwrapper .close4, .section-item .modal10 .item-modal__contentwrapper .close5, .section-item .modal10 .item-modal__contentwrapper .close6, .section-item .modal10 .item-modal__contentwrapper .close7, .section-item .modal10 .item-modal__contentwrapper .close8, .section-item .modal10 .item-modal__contentwrapper .close9, .section-item .modal10 .item-modal__contentwrapper .close10, .section-item .modal10 .item-modal__contentwrapper .close11, .section-item .modal11 .item-modal__contentwrapper .close1, .section-item .modal11 .item-modal__contentwrapper .close2, .section-item .modal11 .item-modal__contentwrapper .close3, .section-item .modal11 .item-modal__contentwrapper .close4, .section-item .modal11 .item-modal__contentwrapper .close5, .section-item .modal11 .item-modal__contentwrapper .close6, .section-item .modal11 .item-modal__contentwrapper .close7, .section-item .modal11 .item-modal__contentwrapper .close8, .section-item .modal11 .item-modal__contentwrapper .close9, .section-item .modal11 .item-modal__contentwrapper .close10, .section-item .modal11 .item-modal__contentwrapper .close11 {
      margin: 40px auto; } }
@media screen and (max-width: 500px) {
  .section-item h2 {
    padding: 0 24px; }
  .section-item .item__contentwrapper {
    display: inline-block;
    width: 100%;
    height: 500px;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
    .section-item .item__contentwrapper .list, .section-item .item__contentwrapper .list2 {
      padding: 0 24px; }
      .section-item .item__contentwrapper .list h3, .section-item .item__contentwrapper .list2 h3 {
        font-size: 2.0rem; }
      .section-item .item__contentwrapper .list span, .section-item .item__contentwrapper .list2 span {
        font-size: 1.4rem; }
  .section-item .item__contentwrapper::-webkit-scrollbar {
    width: 10px; }
  .section-item .item__contentwrapper::-webkit-scrollbar-track {
    background-color: #ccc; }
  .section-item .item__contentwrapper::-webkit-scrollbar-thumb {
    background-color: #000; }
  .section-item .modal1 .item-modal__contentwrapper, .section-item .modal2 .item-modal__contentwrapper, .section-item .modal3 .item-modal__contentwrapper, .section-item .modal4 .item-modal__contentwrapper, .section-item .modal5 .item-modal__contentwrapper, .section-item .modal6 .item-modal__contentwrapper, .section-item .modal7 .item-modal__contentwrapper, .section-item .modal8 .item-modal__contentwrapper, .section-item .modal9 .item-modal__contentwrapper, .section-item .modal10 .item-modal__contentwrapper, .section-item .modal11 .item-modal__contentwrapper {
    padding: 30px; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription h1, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription h1 {
      font-size: 3.2rem; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription p, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription p {
      margin-top: 20px; }
    .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal1 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal2 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal3 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal4 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal5 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal6 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal7 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal8 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal9 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal10 .item-modal__contentwrapper .item-modal__discription .close11, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close1, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close2, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close3, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close4, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close5, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close6, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close7, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close8, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close9, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close10, .section-item .modal11 .item-modal__contentwrapper .item-modal__discription .close11 {
      width: 100%;
      margin: 20px 0; } }
.section-shop {
  max-width: 1440px;
  padding: 0 70px;
  margin: 140px auto; }
  .section-shop .shop__contentwrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0; }
    .section-shop .shop__contentwrapper.on {
      transform: translateY(0);
      opacity: 1.0; }
    .section-shop .shop__contentwrapper .real-shop {
      flex-basis: 50%;
      width: 100%; }
      .section-shop .shop__contentwrapper .real-shop .real-shop__map {
        width: 100%;
        height: 400px; }
      .section-shop .shop__contentwrapper .real-shop .real-shop__name, .section-shop .shop__contentwrapper .real-shop .real-shop__address {
        padding-bottom: 30px; }
      .section-shop .shop__contentwrapper .real-shop .real-shop__address {
        font-style: normal;
        font-size: 1.8rem; }
      .section-shop .shop__contentwrapper .real-shop span {
        font-size: 1.8rem; }
    .section-shop .shop__contentwrapper .online-shop {
      flex-basis: 50%;
      width: 100%; }
      .section-shop .shop__contentwrapper .online-shop .shop-btn {
        text-decoration: none;
        margin: 0 40px;
        height: 100%;
        background: #fff;
        position: relative; }
      .section-shop .shop__contentwrapper .online-shop span {
        font-family: 'bilo', sans-serif;
        line-height: 1.2;
        font-size: 12.0rem;
        color: #000;
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translateY(-50%) translateX(-50%); }

@media screen and (max-width: 1000px) {
  .section-shop .shop__contentwrapper .online-shop .shop-btn span {
    font-size: 8.0rem; } }
@media screen and (max-width: 800px) {
  .section-shop .shop__contentwrapper {
    display: block; }
    .section-shop .shop__contentwrapper .real-shop {
      padding-bottom: 40px; }
    .section-shop .shop__contentwrapper .online-shop a {
      text-decoration: none; }
      .section-shop .shop__contentwrapper .online-shop a .shop-btn {
        position: static;
        margin: 0;
        padding: 40px;
        text-align: center; }
        .section-shop .shop__contentwrapper .online-shop a .shop-btn span {
          position: static; } }
@media screen and (max-width: 500px) {
  .section-shop {
    padding: 0 24px;
    margin: 120px auto; }
    .section-shop .shop__contentwrapper .real-shop .real-shop__map {
      height: 300px; }
    .section-shop .shop__contentwrapper .real-shop .real-shop__name {
      padding-bottom: 20px; }
      .section-shop .shop__contentwrapper .real-shop .real-shop__name h3 {
        font-size: 2.0rem; }
    .section-shop .shop__contentwrapper .real-shop .real-shop__address {
      font-size: 1.6rem;
      padding-bottom: 20px; }
    .section-shop .shop__contentwrapper .real-shop span {
      font-size: 1.6rem;
      padding-bottom: 40px; }
    .section-shop .shop__contentwrapper .online-shop .shop-btn {
      font-size: 6.0rem; } }
.section-news {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px;
  font-family: 'kinto-sans',sans-serif; }
  .section-news .news__contentwrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row; }
    .section-news .news__contentwrapper .news__content {
      width: 100%;
      flex-basis: 30%;
      text-decoration: none;
      color: #fff;
      transition: 0.8s ease-in-out;
      transform: translateY(30px);
      opacity: 0; }
      .section-news .news__contentwrapper .news__content.on {
        transform: translateY(0);
        opacity: 1.0; }
    .section-news .news__contentwrapper li {
      list-style: none;
      height: 350px;
      padding: 20px;
      border: solid 3px #fff; }
      .section-news .news__contentwrapper li:hover {
        box-shadow: 10px 10px 0px #fff;
        opacity: 1.0;
        transition: 0.8s ease-in-out; }
      .section-news .news__contentwrapper li .article__contentwrapper {
        display: flex;
        align-items: center;
        margin-bottom: 40px; }
        .section-news .news__contentwrapper li .article__contentwrapper .date-category {
          display: inline-grid; }
          .section-news .news__contentwrapper li .article__contentwrapper .date-category time {
            font-size: 1.2rem; }
          .section-news .news__contentwrapper li .article__contentwrapper .date-category .category {
            display: inline-block;
            padding: 10px;
            background: #fff;
            color: #333; }
        .section-news .news__contentwrapper li .article__contentwrapper .title {
          padding-left: 25px;
          font-size: 2.4rem; }

.button {
  position: relative;
  border: none;
  margin: 0 auto;
  text-align: center;
  margin: 20px auto;
  border-bottom: 1px solid #666;
  width: 300px;
  max-width: 90%; }
  .button:before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #666;
    rotate: 40deg;
    position: absolute;
    right: -3px;
    bottom: 9px; }
  .button.on {
    transform: translateY(0);
    opacity: 1.0; }
  .button a {
    text-decoration: none;
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box; }

@media screen and (max-width: 1000px) {
  .section-news .news__contentwrapper {
    display: block; }
    .section-news .news__contentwrapper .news__content li {
      height: 100%;
      padding: 40px;
      margin-bottom: 60px; }
      .section-news .news__contentwrapper .news__content li .article__contentwrapper {
        margin-bottom: 20px; }
      .section-news .news__contentwrapper .news__content li br {
        display: none; } }
@media screen and (max-width: 500px) {
  .section-news {
    padding: 0 24px; }
    .section-news .news__contentwrapper .news__content li {
      margin-bottom: 40px;
      padding: 20px; }
      .section-news .news__contentwrapper .news__content li .article__contentwrapper {
        margin-bottom: 0; }
        .section-news .news__contentwrapper .news__content li .article__contentwrapper .category {
          font-size: 1.4rem; }
        .section-news .news__contentwrapper .news__content li .article__contentwrapper .title {
          font-size: 2.0rem; }
      .section-news .news__contentwrapper .news__content li .text {
        display: none; } }
.section-gallery {
  margin-top: 140px; }
  .section-gallery li {
    list-style: none; }
  .section-gallery .slider2 {
    margin-top: 40px; }
  .section-gallery .slider1 .ele, .section-gallery .slider2 .ele {
    margin: 0 10px;
    height: 250px;
    width: auto;
    background-color: #fff;
    text-align: center;
    object-fit: cover; }
  .section-gallery .slick-prev:before, .section-gallery .slick-next:before {
    color: black; }

@media screen and (max-width: 500px) {
  .section-gallery {
    margin-top: 120px; }
    .section-gallery .slider2 {
      margin-top: 20px; }
    .section-gallery .slider1 .ele, .section-gallery .slider2 .ele {
      height: 180px; } }
