@charset "UTF-8";
/* =====================================

	▼▼▼ イラストで知る山角興業


/* =====================================
/*----------------------------------------------------
アニメーション
----------------------------------------------------*/
.visible.rotation_1 {
  -webkit-transition: 3s;
  transition: 3s;
  -webkit-transform: rotateY(720deg);
  transform: rotateY(720deg);
}
.visible.rotation_2 {
  -webkit-transition: 3s;
  transition: 3s;
  -webkit-transform: rotateX(720deg);
  transform: rotateX(720deg);
}
.visible.rotation_3, .visible.rotation_4 {
  -webkit-transition: 3s;
  transition: 3s;
  -webkit-transform: rotate(720deg);
  transform: rotate(720deg);
}

.translateScaleUp::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -10px;
  content: "";
  background-color: #fff;
}

.visible.translateScaleUp {
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
.visible.translateScaleUp::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -10px;
  content: none;
  background-color: #ff0000;
}

/* ====================
ページタイトル
==================== */
.panda_page_title {
  width: 100%;
  height: 550px;
  background: url(../img/panda/title_bg.png) no-repeat scroll center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
.panda_page_title h1 {
  font-size: 63px;
  line-height: 1.2;
  text-align: center;
  color: #0053A5;
  margin-left: 8%;
}

/* =====================================

	▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  .panda_page_title {
    width: 100%;
    height: auto;
    aspect-ratio: 768/264;
    background: url(../img/panda/title_bg_sp.png) no-repeat scroll center bottom;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .panda_page_title h1 {
    font-size: 42px;
    text-align: center;
    margin-left: 7%;
  }
}
/* =====================================

	▼▼▼ max-width: 500px

===================================== */
@media screen and (max-width: 500px) {
  .panda_page_title {
    margin-bottom: 40px;
  }
  .panda_page_title h1 {
    font-size: 24px;
    text-align: center;
    margin-left: 7%;
  }
}
/* =====================================
profile
===================================== */
.panda_profile {
  width: 100%;
  background-color: #DDF4FF;
  background-image: url(../img/panda/profile_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 1920px 1252px;
  padding: 150px 63px;
  position: relative;
}
.panda_profile::after {
  content: "";
  display: block;
  width: 1920px;
  height: 175px;
  position: absolute;
  top: 0;
  left: 50%;
  background-image: url(../img/panda/profile_top.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px 175px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.panda_profile .title_sub {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #0053A5;
  margin-bottom: 20px;
}
.panda_profile h2 {
  width: 90%;
  max-width: 526px;
  margin: 0 auto 45px;
}
.panda_profile .profile_read {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #0053A5;
  padding: 0 20px;
}
.panda_profile .profile_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 65px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.panda_profile .profile_wrap .profile_panda {
  margin-bottom: 85px;
  width: 42.25%;
}
.panda_profile .profile_wrap .profile_panda picture {
  aspect-ratio: 507/586;
  display: block;
}
.panda_profile .profile_wrap .profile {
  width: 51.3%;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 25px 50px 75px;
  border: 7px solid rgba(0, 83, 165, 0.2);
  color: #0053A5;
  margin-left: 25px;
}
.panda_profile .profile_wrap .profile .profile_title_sub {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.panda_profile .profile_wrap .profile h3 {
  font-size: 32px;
  text-align: center;
  line-height: 1.2;
}
.panda_profile .profile_wrap .profile .profile_list {
  margin-top: 20px;
}
.panda_profile .profile_wrap .profile .profile_list .profile_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.panda_profile .profile_wrap .profile .profile_list .profile_item:not(:first-child) {
  margin-top: 15px;
}
.panda_profile .profile_wrap .profile .profile_list .profile_item .profile_label {
  width: 160px;
  height: 28px;
  background-color: #0053A5;
  color: #fff;
  font-weight: bold;
  border-radius: 28px;
  text-align: center;
  line-height: 28px;
}
.panda_profile .profile_wrap .profile .profile_list .profile_value {
  width: calc(100% - 175px);
  font-weight: 700;
}

/* =====================================

	▼▼▼ max-width: 1199px

===================================== */
@media screen and (max-width: 1199px) {
  .panda_profile {
    padding: 150px 0 150px;
  }
  .panda_profile .profile_wrap {
    width: 100%;
    max-width: 100%;
    margin: 65px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .panda_profile .profile_wrap .profile_panda {
    margin-bottom: 0;
    width: 42.25%;
  }
  .panda_profile .profile_wrap .profile {
    width: 51.3%;
    border-radius: 40px;
    padding: 25px 40px 40px;
    margin-left: 25px;
  }
  .panda_profile .profile_wrap .profile .profile_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px 10%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item {
    display: block;
    width: 45%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item:not(:first-child) {
    margin-top: 0;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item.full {
    width: 100%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item .profile_label {
    width: 100%;
    height: 28px;
    background-color: #0053A5;
    color: #fff;
    font-weight: bold;
    border-radius: 28px;
    text-align: center;
    line-height: 28px;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_value {
    width: 100%;
    font-weight: 700;
    margin-top: 5px;
    padding: 0 10px;
  }
}
/* =====================================

	▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  /* ====================
  profile
  ==================== */
  .panda_profile {
    padding: 80px 0 50px;
    background-color: #DDF4FF;
    background-image: url(../img/panda/profile_bg_sp.png), url(../img/panda/profile_bg_sp2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center bottom;
    background-size: contain, contain;
    padding: 150px 0 63px;
    position: relative;
  }
  .panda_profile::after {
    content: "";
    display: block;
    width: 768px;
    height: 54px;
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url(../img/panda/profile_top_sp.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 768px 54px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
  .panda_profile .title_sub {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .panda_profile h2 {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .panda_profile .profile_read {
    font-size: 16px;
  }
  .panda_profile .profile_wrap {
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    display: block;
    padding: 0 20px;
  }
  .panda_profile .profile_wrap .profile_panda {
    margin-bottom: 0;
    width: 60%;
    margin: 0 auto;
  }
  .panda_profile .profile_wrap .profile_panda picture img {
    width: 100%;
  }
  .panda_profile .profile_wrap .profile {
    width: 100%;
    border-radius: 40px;
    padding: 25px 20px;
    margin-left: 0;
    margin-top: 0;
  }
  .panda_profile .profile_wrap .profile .profile_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 10%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item {
    display: block;
    width: 45%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item:not(:first-child) {
    margin-top: 0;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item.full {
    width: 100%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item .profile_label {
    width: 100%;
    height: 28px;
    background-color: #0053A5;
    color: #fff;
    font-weight: bold;
    border-radius: 28px;
    text-align: center;
    line-height: 28px;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_value {
    width: 100%;
    margin-top: 5px;
  }
}
/* =====================================

	▼▼▼ max-width: 500px

===================================== */
@media screen and (max-width: 500px) {
  /* ====================
  profile
  ==================== */
  .panda_profile {
    background-color: #DDF4FF;
    background-image: url(../img/panda/profile_bg_sp.png), url(../img/panda/profile_bg_sp2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center bottom;
    background-size: contain, contain;
    padding: 50px 0 30px;
    position: relative;
  }
  .panda_profile::after {
    content: "";
    display: block;
    width: 768px;
    height: 54px;
    position: absolute;
    top: 0;
    left: 50%;
    background-image: url(../img/panda/profile_top_sp.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 768px 54px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
  .panda_profile .title_sub {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .panda_profile h2 {
    width: 80%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .panda_profile .profile_read {
    font-size: 14px;
  }
  .panda_profile .profile_wrap {
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    display: block;
    padding: 0 20px;
  }
  .panda_profile .profile_wrap .profile_panda {
    margin-bottom: 0;
    width: 60%;
    margin: 0 auto;
  }
  .panda_profile .profile_wrap .profile_panda picture img {
    width: 100%;
  }
  .panda_profile .profile_wrap .profile {
    width: 100%;
    border-radius: 40px;
    padding: 25px 20px;
    margin-left: 0;
    margin-top: 0;
  }
  .panda_profile .profile_wrap .profile .profile_title_sub {
    font-size: 14px;
  }
  .panda_profile .profile_wrap .profile h3 {
    font-size: 24px;
  }
  .panda_profile .profile_wrap .profile .profile_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 10%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item {
    display: block;
    width: 45%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item:not(:first-child) {
    margin-top: 0;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item.full {
    width: 100%;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_item .profile_label {
    width: 100%;
    height: 28px;
    background-color: #0053A5;
    color: #fff;
    font-weight: bold;
    border-radius: 28px;
    text-align: center;
    line-height: 28px;
  }
  .panda_profile .profile_wrap .profile .profile_list .profile_value {
    width: 100%;
    margin-top: 5px;
  }
}
/* ====================
Instagram
==================== */
#instagram {
  padding: 220px 20px 100px;
}

.instagram_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 100px 100px;
  border: 10px solid #0053A5;
  color: #0053A5;
  position: relative;
}
.instagram_wrap::after {
  content: "";
  display: block;
  width: 528px;
  height: 120px;
  position: absolute;
  top: -123px;
  left: 50%;
  background-image: url(../img/panda/instagram_wrap.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 528px 120px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.instagram_wrap .title_sub {
  text-align: center;
  line-height: 1.2;
}
.instagram_wrap h2 {
  font-size: 60px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 50px;
}
.instagram_wrap .instagram {
  width: 100%;
}

#sbi_images .sbi_item .sbi_photo_wrap {
  border: 1px solid #eee;
}

/* =====================================

	▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  #instagram {
    padding: 120px 20px 50px;
  }
  .instagram_wrap {
    max-width: 100%;
    padding: 30px 30px 30px;
    border: 10px solid #0053A5;
    color: #0053A5;
    position: relative;
  }
  .instagram_wrap::after {
    content: "";
    display: block;
    width: 405px;
    height: 92px;
    position: absolute;
    top: -96px;
    left: 50%;
    background-image: url(../img/panda/instagram_wrap.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 405px 92px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
  .instagram_wrap .title_sub {
    font-size: 14px;
  }
  .instagram_wrap h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #0053A5;
  }
  .instagram_wrap .instagram {
    width: 100%;
  }
  #sbi_images .sbi_item .sbi_photo_wrap {
    border: 1px solid #eee;
  }
}
/* =====================================

	▼▼▼ max-width: 500px

===================================== */
@media screen and (max-width: 500px) {
  #instagram {
    padding: 100px 20px 40px;
  }
  .instagram_wrap {
    max-width: 100%;
    padding: 20px;
    border: 10px solid #0053A5;
    color: #0053A5;
    position: relative;
  }
  .instagram_wrap::after {
    content: "";
    display: block;
    width: 300px;
    height: 68px;
    position: absolute;
    top: -74px;
    left: 50%;
    background-size: 300px 68px;
  }
  .instagram_wrap .title_sub {
    font-size: 12px;
  }
  .instagram_wrap h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .instagram_wrap .instagram {
    width: 100%;
  }
  #sbi_images .sbi_item .sbi_photo_wrap {
    border: 1px solid #eee;
  }
}
/* ====================
Q&A
==================== */
#qa {
  width: 100%;
  padding: 50px 0;
  background-color: #ecf3fb;
  background-image: repeating-linear-gradient(125deg, rgb(226, 233, 243) 0, rgb(226, 233, 243) 20px, transparent 20px, transparent 80px);
}
#qa .title_sub {
  text-align: center;
  line-height: 1.2;
  color: #0053A5;
}
#qa h2 {
  font-size: 60px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 50px;
  color: #0053A5;
}
#qa .qa_inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
#qa .qa_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 6.6%;
}
#qa .qa_list .qa_item {
  color: #0053A5;
  font-weight: 700;
  padding-bottom: 40px;
  border-bottom: 1px dotted #0053A5;
}
#qa .qa_list .qa_item .qa_item_title {
  position: relative;
  font-size: 22px;
  padding-left: 55px;
}
#qa .qa_list .qa_item .qa_item_title::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #0053A5;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
#qa .qa_list .qa_item .qa_item_answer {
  position: relative;
  font-size: 18px;
  padding-left: 90px;
  margin-top: 30px;
}
#qa .qa_list .qa_item .qa_item_answer::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  width: 70px;
  height: 60px;
  background: url(../img/panda/qa_icon.svg) no-repeat;
  background-size: contain;
}

/* =====================================

	▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  #qa {
    width: 100%;
    padding: 50px 0;
    background-image: repeating-linear-gradient(125deg, rgb(226, 233, 243) 0, rgb(226, 233, 243) 10px, transparent 10px, transparent 40px);
  }
  #qa .title_sub {
    font-size: 14px;
  }
  #qa h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0053A5;
  }
  #qa .qa_inner {
    max-width: 100%;
  }
  #qa .qa_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
  #qa .qa_list .qa_item {
    padding-bottom: 30px;
  }
  #qa .qa_list .qa_item .qa_item_title {
    position: relative;
    font-size: 16px;
    padding-left: 40px;
  }
  #qa .qa_list .qa_item .qa_item_title::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "Q";
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
  }
  #qa .qa_list .qa_item .qa_item_answer {
    font-size: 16px;
    padding-left: 75px;
    margin-top: 20px;
    min-height: 55px;
  }
  #qa .qa_list .qa_item .qa_item_answer::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: inline-block;
    width: 60px;
    height: 55px;
    background: url(../img/panda/qa_icon.svg) no-repeat;
    background-size: contain;
  }
}
/* =====================================

	▼▼▼ max-width: 500px

===================================== */
@media screen and (max-width: 500px) {
  #qa {
    width: 100%;
    padding: 40px 0;
  }
  #qa .title_sub {
    font-size: 12px;
  }
  #qa h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  #qa .qa_inner {
    max-width: 100%;
  }
  #qa .qa_list {
    display: grid;
    gap: 20px 0;
  }
  #qa .qa_list .qa_item {
    padding-bottom: 20px;
  }
  #qa .qa_list .qa_item .qa_item_title {
    position: relative;
    font-size: 14px;
    padding-left: 40px;
  }
  #qa .qa_list .qa_item .qa_item_title::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "Q";
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
  }
  #qa .qa_list .qa_item .qa_item_answer {
    font-size: 14px;
    padding-left: 65px;
    margin-top: 20px;
    min-height: 55px;
  }
  #qa .qa_list .qa_item .qa_item_answer::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: inline-block;
    width: 50px;
    height: 45px;
    background: url(../img/panda/qa_icon.svg) no-repeat;
    background-size: contain;
  }
}
/* ====================
Gallery
==================== */
#gallery {
  padding: 100px 0 150px;
}
#gallery .title_sub {
  text-align: center;
  line-height: 1.2;
  color: #0053A5;
}
#gallery h2 {
  font-size: 60px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 75px;
  color: #0053A5;
}
#gallery .gallery_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px 4%;
}
#gallery .gallery_list li {
  border: 10px solid #eee;
  position: relative;
  aspect-ratio: 1/1;
}
#gallery .gallery_list li::before {
  position: absolute;
  left: 50%;
  top: -48px;
  width: 34px;
  height: 48px;
  content: "";
  background: url(../img/panda/icon_pin.svg) no-repeat;
  background-size: contain;
}
#gallery .gallery_list li::after {
  position: absolute;
  left: -10px;
  top: 0;
  width: calc(100% + 20px);
  aspect-ratio: 370/60;
  content: "";
  background-color: #eee;
  position: absolute;
  top: 100%;
}
#gallery .gallery_list li img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =====================================

	▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  #gallery {
    padding: 50px 0 80px;
  }
  #gallery .title_sub {
    font-size: 14px;
  }
  #gallery h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #0053A5;
  }
  #gallery .gallery_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 2%;
  }
  #gallery .gallery_list li {
    border: 10px solid #eee;
    position: relative;
    aspect-ratio: 1/1;
  }
  #gallery .gallery_list li::before {
    position: absolute;
    left: 50%;
    top: -48px;
    width: 34px;
    height: 48px;
    content: "";
    background: url(../img/panda/icon_pin.svg) no-repeat;
    background-size: contain;
  }
  #gallery .gallery_list li::after {
    position: absolute;
    left: -10px;
    top: 0;
    width: calc(100% + 20px);
    aspect-ratio: 370/60;
    content: "";
    background-color: #eee;
    position: absolute;
    top: 100%;
  }
  #gallery .gallery_list li img {
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/* =====================================

	▼▼▼ max-width: 500px

===================================== */
@media screen and (max-width: 500px) {
  #gallery {
    padding: 40px 0 60px;
  }
  #gallery .title_sub {
    font-size: 12px;
  }
  #gallery h2 {
    font-size: 26px;
    margin-bottom: 50px;
    color: #0053A5;
  }
  #gallery .gallery_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 100px 2%;
  }
  #gallery .gallery_list li {
    border: 10px solid #eee;
    position: relative;
    aspect-ratio: 1/1;
  }
  #gallery .gallery_list li::before {
    position: absolute;
    left: 50%;
    top: -44px;
    width: 32px;
    height: 44px;
    content: "";
    background: url(../img/panda/icon_pin.svg) no-repeat;
    background-size: contain;
  }
  #gallery .gallery_list li::after {
    position: absolute;
    left: -10px;
    top: 0;
    width: calc(100% + 20px);
    aspect-ratio: 370/60;
    content: "";
    background-color: #eee;
    position: absolute;
    top: 100%;
  }
  #gallery .gallery_list li img {
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.sub_title {
  margin-bottom: 50px;
  opacity: 0;
  position: relative;
}
.sub_title .sub_title_inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sub_title .sub_title_inner .sub_t {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
}
.sub_title .sub_title_inner .main_t {
  display: inline-block;
  margin: 5px 0 0;
  line-height: 1;
}
.sub_title::before {
  margin: 0 10px -10px 0;
  vertical-align: bottom;
}

.movie_wrap {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  height: auto;
  margin: 0 auto;
  border: 10px solid #0053A5;
  position: relative;
}
.movie_wrap::before {
  position: absolute;
  left: -82px;
  bottom: -10px;
  content: " ";
  display: inline-block;
  width: 184px;
  height: 147px;
  background: url(../img/common/sub_title_panda.svg) no-repeat;
  background-size: cover;
  pointer-events: none;
}
.movie_wrap .movie_wrap_inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 16/9;
}

.voice {
  width: 100%;
  max-width: 1000px;
  margin: 5px auto 0;
  text-align: right;
  font-size: 13px;
}

.movie_list {
  margin: 30px auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
}
.movie_list .movie_title {
  cursor: pointer;
  margin: 0 5px 10px;
  border: 1px solid #0053A5;
  height: 40px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 20px;
  color: #0053A5;
  background-color: #fff;
  font-size: 15px;
  -webkit-transition: color 0.2s linear, background-color 0.2s linear;
  transition: color 0.2s linear, background-color 0.2s linear;
}
.movie_list .movie_title.current {
  background-color: #0053A5;
  color: #fff;
}

#panda {
  background-color: #0053A5;
  padding: 100px 0;
}
#panda h2 {
  text-align: center;
  color: #fff;
  font-size: 42px;
  margin: 0 auto 50px;
}
#panda h2 span {
  display: block;
  font-size: 18px;
  text-align: center;
}
#panda .panda_info {
  background-color: #fff;
  border-radius: 30px;
  padding: 60px 0;
}
#panda .panda_info .inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
#panda .panda_info .profile_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#panda .panda_info .profile_wrap .profile_image {
  width: 50%;
  max-height: 450px;
}
#panda .panda_info .profile_wrap .profile_image img {
  width: 100%;
  height: 450px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
#panda .panda_info .profile_wrap .self_intro {
  width: 50%;
}
#panda .panda_info .profile_wrap .self_intro .logo {
  width: 260px;
  margin: 0 auto;
}
#panda .panda_info .profile_wrap .self_intro .profile {
  background-color: #0053A5;
  padding: 40px 40px 20px;
  width: 100%;
  border-radius: 10px;
  color: #fff;
}
#panda .panda_info .profile_wrap .self_intro .profile h3 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}
#panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}
#panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl:not(:last-child) {
  border-bottom: 1px dashed #fff;
}
#panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl dt {
  width: 110px;
}
#panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl dd {
  width: calc(100% - 110px);
}
#panda .panda_info .hobby_etc {
  border-top: 1px dashed #0053A5;
  margin-top: 30px;
}
#panda .panda_info .hobby_etc .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px dashed #0053A5;
  text-align: justify;
}
#panda .panda_info .hobby_etc .item.block {
  display: block;
}
#panda .panda_info .hobby_etc .item dt {
  width: 150px;
  color: #0053A5;
}
#panda .panda_info .hobby_etc .item dd {
  width: calc(100% - 150px);
}
#panda .panda_info .photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
#panda .panda_info .photos li {
  width: 20%;
  aspect-ratio: 1/1;
}
#panda .panda_info .photos li:nth-child(n+6) {
  margin-top: 20px;
}
#panda .panda_info .photos li img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

/* =====================================

	▼▼▼ 1024px以下

===================================== */
@media screen and (max-width: 1024px) {
  .movie_wrap {
    width: 100%;
    max-width: 580px;
  }
  .movie_wrap::before {
    position: absolute;
    left: -60px;
    bottom: -10px;
    content: " ";
    display: inline-block;
    width: 100px;
    height: 79px;
    background: url(../img/common/sub_title_panda.svg) no-repeat;
    background-size: cover;
    pointer-events: none;
  }
  .movie_list {
    margin: 30px auto 70px;
  }
  .movie_list .movie_title {
    margin: 0 10px 10px;
    padding: 0 20px;
    border-radius: 20px;
  }
  #panda {
    padding: 50px 0;
  }
  #panda .panda_info {
    border-radius: 20px;
    padding: 30px 20px;
  }
  #panda .panda_info .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
/* =====================================

	▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  .sub_title {
    margin-bottom: 50px;
  }
  .sub_title .sub_title_inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sub_title .sub_title_inner .sub_t {
    display: inline-block;
    font-size: 18px;
    line-height: 1.2;
  }
  .sub_title .sub_title_inner .main_t {
    display: inline-block;
    margin: 5px 0 0;
    line-height: 1;
  }
  .sub_title::before {
    margin: 0 5px 0 0;
    vertical-align: bottom;
  }
}
/* =====================================

	▼▼▼ 480px以下

===================================== */
@media screen and (max-width: 480px) {
  .sub_title {
    margin-bottom: 20px;
  }
  .movie_wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    border: 5px solid #0053A5;
  }
  .movie_wrap::before {
    position: absolute;
    left: -40px;
    bottom: -5px;
    content: " ";
    display: inline-block;
    width: 80px;
    height: 65px;
    background: url(../img/common/sub_title_panda.svg) no-repeat;
    background-size: cover;
    pointer-events: none;
  }
  .voice {
    width: 100%;
    max-width: 100%;
    margin: 5px auto 0;
    text-align: right;
    font-size: 12px;
  }
  .movie_list {
    margin: 20px auto 50px;
  }
  .movie_list .movie_title {
    margin: 0 5px 10px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 12px;
  }
  #panda {
    padding: 30px 0;
  }
  #panda h2 {
    font-size: 24px;
    margin: 0 auto 20px;
  }
  #panda h2 span {
    display: block;
    font-size: 14px;
    text-align: center;
  }
  #panda .panda_info {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 0;
  }
  #panda .panda_info .inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
  }
  #panda .panda_info .profile_wrap {
    display: block;
  }
  #panda .panda_info .profile_wrap .profile_image {
    width: 100%;
    max-height: 300px;
  }
  #panda .panda_info .profile_wrap .profile_image img {
    width: 100%;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
  }
  #panda .panda_info .profile_wrap .self_intro {
    width: 100%;
    padding: 0 20px;
    margin: 20px 0 0;
  }
  #panda .panda_info .profile_wrap .self_intro .logo {
    width: 260px;
    margin: 0 auto;
  }
  #panda .panda_info .profile_wrap .self_intro .profile {
    padding: 20px 20px 0;
    width: 100%;
    border-radius: 10px;
    color: #fff;
  }
  #panda .panda_info .profile_wrap .self_intro .profile h3 {
    font-size: 18px;
    margin: 0 0 5px;
  }
  #panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
  }
  #panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl dt {
    width: 100px;
  }
  #panda .panda_info .profile_wrap .self_intro .profile .profile_inner dl dd {
    width: calc(100% - 100px);
  }
  #panda .panda_info .hobby_etc {
    border-top: none;
    margin-top: 30px;
    padding: 0 20px;
  }
  #panda .panda_info .hobby_etc .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px dashed #0053A5;
    text-align: justify;
  }
  #panda .panda_info .hobby_etc .item:first-child {
    border-top: 1px dashed #0053A5;
  }
  #panda .panda_info .hobby_etc .item dt {
    width: 120px;
  }
  #panda .panda_info .hobby_etc .item dd {
    width: calc(100% - 120px);
  }
  #panda .panda_info .photos {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #panda .panda_info .photos li {
    width: 50%;
  }
  #panda .panda_info .photos li:nth-child(n+3) {
    margin-top: 20px;
  }
  #panda .panda_info .photos li:nth-child(n+5) {
    margin-top: 20px;
  }
}
/* パンダ画像ポップアップ */
.panda-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.panda-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.panda-popup-content {
  position: relative;
  width: 700px;
  height: 60%;
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.panda-popup-close {
  position: absolute;
  right: -80px;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  z-index: 1001;
  width: 60px;
  height: 60px;
  padding: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.panda-popup-close img {
  width: 60px;
  height: 60px;
}
.panda-popup-close:hover {
  opacity: 0.8;
}

.panda-popup-prev,
.panda-popup-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgb(255, 255, 255);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1001;
}

.panda-popup-prev {
  left: -80px;
}

.panda-popup-next {
  right: -80px;
}

.panda-popup-prev:hover,
.panda-popup-next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.panda-popup-prev.hidden,
.panda-popup-next.hidden {
  display: none;
}

.panda-popup-image {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
.panda-popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .panda-popup-close {
    position: absolute;
    right: 0;
    top: -60px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .panda-popup-close img {
    width: 60px;
    height: 60px;
  }
  .panda-popup-close:hover {
    opacity: 0.8;
  }
  .panda-popup-content {
    width: 90%;
    aspect-ratio: 1/1;
    height: auto;
  }
  .panda-popup-prev,
  .panda-popup-next {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #000;
    color: #333;
  }
  .panda-popup-prev {
    left: -4%;
  }
  .panda-popup-next {
    right: -4%;
  }
  .panda-popup-image {
    padding: 20px;
  }
}
/* 画像をクリッカブルにする */
.photos li {
  cursor: pointer;
}
.photos li:hover {
  opacity: 0.8;
}
.photos li.visible:hover {
  opacity: 1;
}

/* アニメーション中はホバー効果を無効にして、アニメーションを継続 */
/*# sourceMappingURL=panda.css.map */