$(function () { $('.qa .qa_tit').click(function () { $(this).next('.qa_tx').slideToggle(); $(this).toggleClass('active'); }); }); $(function () { $('.f_spbtn--01').click(function () { $('.img_wrap--01').slideToggle(); $(this).toggleClass('active'); $(".f_spbtn--01").not($(this)).removeClass("active"); }); $('.f_spbtn--02').click(function () { $('.img_wrap--02').slideToggle(); $(this).toggleClass('active'); $(".f_spbtn--02").not($(this)).removeClass("active"); }); $('.f_spbtn--03').click(function () { $('.img_wrap--03').slideToggle(); $(this).toggleClass('active'); $(".f_spbtn--03").not($(this)).removeClass("active"); }); $('.f_spbtn--04').click(function () { $('.img_wrap--04').slideToggle(); $(this).toggleClass('active'); $(".f_spbtn--04").not($(this)).removeClass("active"); }); }); $(function () { $('.kyoukasyo_title04').click(function () { $(this).next('.book_list').slideToggle(); $(this).toggleClass('active'); $(".kyoukasyo_title04").not($(this)).removeClass("active"); }); }); $(function () { var video01 = document.getElementById('video1k'); var video02 = document.getElementById('video2k'); var video03 = document.getElementById('video3k'); var video04 = document.getElementById('video4k'); var video05 = document.getElementById('video5k'); var video06 = document.getElementById('video6k'); var video07 = document.getElementById('video7k'); $('#openModal01').click(function () { $('#modalArea01').fadeIn(); video01.play(); }); $('#closeModal01 , #modalBg01').click(function () { video01.pause(); video01.currentTime = 0; $('#modalArea01').fadeOut(); }); $('#openModal02').click(function () { $('#modalArea02').fadeIn(); video02.play(); }); $('#closeModal02 , #modalBg02').click(function () { video02.pause(); video02.currentTime = 0; $('#modalArea02').fadeOut(); }); $('#openModal03').click(function () { $('#modalArea03').fadeIn(); video03.play(); }); $('#closeModal03 , #modalBg03').click(function () { video03.pause(); video03.currentTime = 0; $('#modalArea03').fadeOut(); }); $('#openModal04').click(function () { $('#modalArea04').fadeIn(); video04.play(); }); $('#closeModal04 , #modalBg04').click(function () { video04.pause(); video04.currentTime = 0; $('#modalArea04').fadeOut(); }); $('#openModal05').click(function () { $('#modalArea05').fadeIn(); video05.play(); }); $('#closeModal05 , #modalBg05').click(function () { video05.pause(); video05.currentTime = 0; $('#modalArea05').fadeOut(); }); $('#openModal06').click(function () { $('#modalArea06').fadeIn(); video06.play(); }); $('#closeModal06 , #modalBg06').click(function () { video06.pause(); video06.currentTime = 0; $('#modalArea06').fadeOut(); }); $('#openModal07').click(function () { $('#modalArea07').fadeIn(); video07.play(); }); $('#closeModal07 , #modalBg07').click(function () { video07.pause(); video07.currentTime = 0; $('#modalArea07').fadeOut(); }); $('.img_wrap').lightGallery({ selector: '.item', download: false, share: false }); });