p {
  word-break: normal;
}

.tabWrap {
  display: flex
}

.tabBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  margin-bottom: 0 !important;
  border-radius: 10px 10px 0 0;
  color: #8096A3;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer
}

.tabBtn.is-open {
  color: #0D0B0B;
  cursor: default;
  border-bottom: 5px solid #404040;
}

.tabBtn:hover {
  opacity: 0.8
}

.tabBtn.is-open:hover {
  opacity: 1
}

.tabBodyContents {
  display: none;
  background-color: #ebeef0
}

.tabBodyContents.is-hide {
  display: block;
  visibility: hidden
}

.tabBodyContents.is-open {
  display: block;
  visibility: visible
}

.tabBodyContents>* {
  transition: opacity 2s;
}

.tabBodyContents.is-hide>* {
  opacity: 0
}

.tabBodyContents.is-open>* {
  opacity: 1
}

.gridItem {
  display: block;
}

.gridItem .photo {
  text-align: center
}

.gridItem .photo img {
  border-radius: 15px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

label[for] .photo:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width:960px) {
  label[for] .photo:hover img {
    -webkit-transform: none;
    transform: none;
  }
}
.gridItem .link_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 10px 20px;
  border-radius: 3px;
  background-color: #fff;
  text-align: center;
  font-size: 1.5rem;
  color: #8096a3
}

label[for] .link_arrow {
  padding: 10px 32px 10px 20px;
}

.gridItem .link_arrow>span>span.f_b {
  font-size: 1.5rem
}

.tabPanel02_2 .gridItem .link_arrow {
  font-size: 1.2rem
}

.gridItem .link_arrow::before,
.gridItem .link_arrow::after {
  content: none;
  right: 10px
}

.gridItem .link_arrow:hover:before {
  content: none
}

label[for] .link_arrow:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url(/common/img/ico-arr4.svg) no-repeat center;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
}

@media (min-width:961px) {

  .spOnlyInBloc,
  .isSp {
    display: none
  }

  .isPc {
    display: block
  }

  .tabBtn {
    min-width: 265px;
    padding: 5px 15px;
    font-size: 2.4rem
  }

  .EN .tabBtn {
    font-size: 2.2rem
  }

  .tabBtn+.tabBtn {
    margin-left: 40px
  }

  .tabBodyContents {
    padding: 45px 40px
  }

  .tabBodyContents .ttl_03 {
    margin-bottom: 25px
  }

  .gridLayout01 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 30px
  }

  .gridItem .photo {
    padding: 0 0 22px;
  }
}

@media (max-width:960px) {
  .spOnlyInBloc {
    display: inline-block
  }

  .isSp {
    display: block
  }

  .isPc {
    display: none
  }

  .tabWrap {
    justify-content: space-between
  }

  .tabBtn {
    width: 48.5%;
    padding: 5px;
    font-size: 1.9rem
  }

  .EN .tabBtn {
    padding: 5px 10px;
    font-size: 1.6rem;
    word-break: break-word
  }

  .tabBodyContents {
    padding: 30px 12px
  }

  .tabBodyContents .ttl_03 {
    margin-bottom: 15px
  }

  .gridItem .photo {
    padding: 0 0 20px
  }

  .gridItem+.gridItem {
    margin-top: 9.6vw
  }
}

/*---------------
modal
------------------*/
.modalWrap input {
  display: none
}

.modalOverlay {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(112, 112, 112, .35);
  opacity: 0;
  transition: opacity .3s, transform 0s .3s;
  transform: scale(0);
  visibility: hidden;
}

@media all and (-ms-high-contrast: none) {
  .modalOverlay {
    overflow: hidden;
  }
}

.modalOverlay::-webkit-scrollbar,
.modalContent::-webkit-scrollbar {
  max-width: 10px;
}

.modalOverlay::-webkit-scrollbar-track,
.modalContent::-webkit-scrollbar-track {
  background: #fff;
  border-left: solid 1px #ececec;
}

.modalOverlay::-webkit-scrollbar-thumb,
.modalContent::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}

.modalWrap input:checked~.modalOverlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
  visibility: visible;
}

.modalTrigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalContent {
  position: absolute;
  top: calc(50% + 10px);
  left: 50%;
  width: 1271px;
  max-width: 95%;
  max-height: 95%;
  transform: translateY(-50%) translateX(-50%);
  transition: .3s;
}

.modalWrap .closeButton {
  position: absolute;
  top: -18px;
  right: -18px;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #484646;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 99999;
}

.modalWrap .closeButton::before,
.modalWrap .closeButton::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  margin-left: -6px;
  background: #fff;
}

.modalWrap .closeButton::before {
  transform: rotate(45deg);
}

.modalWrap .closeButton::after {
  transform: rotate(-45deg);
}

.modalContent .modalInner {
  position: relative;
  background-color: #fff;
}

.modalContent .block01 {
  display: flex;
  padding: 30px;
  background: #EBEEF0;
}

.modalContent .block01 .photo {
  width: 50%;
  text-align: center;
}

.modalContent .block01 .r {
  width: 50%;
  margin: auto;
}

.modalContent .photo img {
  width: 300px;
  border-radius: 15px;
}

.modalContent .block01 .text1 {
  margin-bottom: 0;
  font-size: 5rem;
}

.modalContent .block01 .text2 {
  font-size: 3rem;
}

.modalContent .block02 {
  padding: 20px 30px;
}

@media (max-width:960px) {
  .modalContent {
    top: 50%;
  }

  .modalContent .block01 {
    display: block;
  }

  .modalContent .block01 .photo,
  .modalContent .block01 .r {
    width: 100%;
  }

  .modalContent .block01 .photo {
    padding: 10% 0 6%;
  }

  .modalContent .photo img {
    width: 63%;
  }

  .modalWrap .closeButton {
    top: 9px;
    right: 9px;
  }

  .modalContent .block01 {
    padding: 0 30px 18px;
  }

  .modalContent .block01 .text1 {
    font-size: 2.4rem;
  }

  .modalContent .block01 .text2 {
    font-size: 1.8rem;
  }

  .modalOverlay::-webkit-scrollbar,
  .modalContent::-webkit-scrollbar {
    width: auto;
  }
}