@charset "utf-8";

/* CSS Document */
@media print,
screen and (min-width: 768px) {
  .p-top {
    background-image: url("../images/mv.webp");
    position: relative;
    background-position: center;
    background-color: #f0f0f0;
    border-radius: 15px;
    background-size: cover;
    background-attachment: fixed;
  }
}

@media not all and (min-width: 768px) {
  .p-top {
    background-image: url("../images/mv.webp");
    background-color: #000000;
    padding: 130px 0 50px;
    border-radius: 10px;
	background-position: center;
  }	
}



@media print,
screen and (min-width: 768px) {
  .p-top {
    padding: 150px 0 220px;
  }
}

.sub {
  font-size: 1rem;
  text-align: center;
  margin-top: 3em;
	padding: 0 1.5rem;
	line-height: 1.8rem;
}

/*.p-top__heading {
  color: white;
  text-shadow: 0px 0px 8px #000000, 0px 0px 10px #000000, 0px 0px 10px #000000;
  text-align: center;
}

.p-top__text {
  color: white;
  text-shadow: 0px 0px 8px #000000, 0px 0px 10px #000000, 0px 0px 10px #000000;
  text-align: center;
}*/

@media print, screen and (min-width: 768px) {
.p-top__inner {
    padding-left: 2rem;
	}}

.mark {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

#movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  padding-right: .5rem;
}


/*p-reason*/
@media print,
screen and (min-width: 768px) {
  .p-reason {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
}

@media not all and (min-width: 768px) {
  .p-reason {
    display: block;
    margin-top: 20px;
  }
}

.p-reason-item {
  transition: box-shadow 0.5s;
}

/*@media (hover: hover) {
  .p-reason-item:not(.is-disabled-hover):hover {
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  }
  .p-reason-item:not(.is-disabled-hover):hover .p-reason-item__image img {
    transform: scale(120%);
  }
}*/
@media print,
screen and (min-width: 768px) {
  .p-reason-item {
    display: flex;
    width: calc((100% - 30px) / 2);
    padding: 10px;
  }

  .p-reason-item:nth-child(2n) {
    margin-left: 30px;
  }

  .p-reason-item:nth-child(n+3) {
    margin-top: 30px;
  }
}

@media not all and (min-width: 768px) {
  .p-reason-item {
    display: block;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  .p-reason-item+.p-reason-item {
    margin-top: 40px;
  }
}

.p-reason-item__image {
  overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
  .p-reason-item__image {
    width: 165px;
  }
}

@media not all and (min-width: 768px) {
  .p-reason-item__image {
    width: 103px;
    position: absolute;
    top: 4px;
    left: 0;
  }
}

.p-reason-item__image img {
  transition: transform 0.5s;
	border-radius: 6px;
}

@media print,
screen and (min-width: 768px) {
  .p-reason-item__detail {
    width: calc(100% - 175px);
    margin-left: 10px;
  }
}

.p-reason-item__heading {
  font-weight: bold;
	color: #003366;
}

@media print,
screen and (min-width: 768px) {
  .p-reason-item__heading {
    font-size: 1.25rem;
  }
}

@media not all and (min-width: 768px) {
  .p-reason-item__heading {
    font-size: 1rem;
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: 119px;
  }

  .p-reason-item__heading--paddingY-small {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

.p-reason-item__text {
  font-size: 0.875rem;
  margin-top: 1rem;
}

@media not all and (min-width: 768px) {
  .p-reason-item__text {
    width: 100%;
  }
}




/*p-menu*/

@media print,
screen and (min-width: 768px) {
  .tab-menu {
    width: 100%;
    max-width: 1240px;
    position: relative;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    /*padding: 0 1em;*/
    margin-top: 90px;
  }

  .tab-menu .p-info {
    margin-top: 0px;
  }

}

@media not all and (min-width: 768px) {
  #case .p-info {
    margin-top: 0px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu {
    /*padding: 0 6.4%;*/
    margin-top: 60px;
  }
}

.tab-menu__inner {
  /*background-color: rgba(0, 51, 102, 0.7);*/
  box-shadow: 0 8px 30px rgb(0 16 14 / 20%);
  border-radius: 10px;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu__inner {
    padding: 40px 45px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu__inner {
    display: block;
    padding: 16px 12px 24px;
  }
}

.tab-menu-tabs {
  display: flex;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-tabs {
    justify-content: left;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-tabs {
    justify-content: space-around;
  }
}

.tab-menu-tabs__item {
  /*color: #666;*/
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0.4;
}

.tab-menu-tabs__item.is-show {
  opacity: 1;
}

@media (hover: hover) {
  .tab-menu-tabs__item:not(.is-disabled-hover):hover {
    opacity: 1;
  }
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-tabs__item {
    max-width: 30.1075268817%;
    font-size: 1.375rem;
  }

  .tab-menu-tabs__item+.tab-menu-tabs__item {
    margin-left: 4.8387096774%;
  }

  .tab-menu-tabs__item span {
    font-size: 1.25rem;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-tabs__item {
    font-size: 1rem;
    margin-left: 0;
  }

  .tab-menu-tabs__item span {
    font-size: 1rem;
  }
}

.tab-menu-contents {
  /*background-color: rgba(233, 236, 242, 0.8);*/
  border-radius: 10px;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-contents {
    /*padding: 35px 35px 30px 25px;*/
    margin-top: 24px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-contents {
    padding: 15px 12px 24px;
    margin-top: 16px;
  }
}

.tab-menu-content {
  display: none;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-content.is-show {
    display: flex;
    align-items: center;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-content.is-show {
    display: block;
  }
}

.tab-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tab-menu-list__item {
  width: 25%;
}

.w33 {
  width: 33.3333% !important;
}

@media not all and (min-width: 768px) {
  .tab-menu-list__item:nth-child(2n) {
    padding-left: 5px;
  }
}

.tab-menu-list__item .tab-menu-list__item-text {
  width: 100%;
  display: flex;
  font-weight: bold;
  align-items: center;
  color: #003366;
  border-radius: 8px;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-list__item .tab-menu-list__item-text {
    font-size: 1rem;
    padding: 10px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-list__item .tab-menu-list__item-text {
    font-size: 0.875rem;
    padding: 8px 0;
  }

  .tab-menu-list__item .tab-menu-list__item-text:nth-child(2n) {
    padding-left: 5px;
  }
}

.tab-menu-list__item .tab-menu-list__item-text::before {
  content: "";
  display: block;
  flex-shrink: 0;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-list__item .tab-menu-list__item-text::before {
    margin-right: 16px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-list__item .tab-menu-list__item-text::before {
    margin-right: 6px;
  }
}

.tab-menu-list__item--info .tab-menu-list__item-text::before {
  width: 28px;
  height: 29px;
  background: url("../images/common/icon_document_blue.svg") no-repeat left 4px top 0/contain;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-list__item--info .tab-menu-list__item-text::before {
    width: 32px;
    height: 29px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-list__item--info .tab-menu-list__item-text::before {
    width: 24px;
    height: 21px;
  }
}

@media (hover: hover) {
  .tab-menu-list__item--info:not(.is-disabled-hover):hover .tab-menu-list__item-text::before {
    background: url("../images/common/icon_document_white.svg") no-repeat left 4px top 0/contain;
  }
}

.tab-menu-list__item--bag .tab-menu-list__item-text::before {
  background: url("../images/common/icon_bag_blue.svg") no-repeat left 4px top 0/contain;
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-list__item--bag .tab-menu-list__item-text::before {
    width: 32px;
    height: 32px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-list__item--bag .tab-menu-list__item-text::before {
    width: 24px;
    height: 24px;
  }
}

@media (hover: hover) {
  .tab-menu-list__item--bag:not(.is-disabled-hover):hover .tab-menu-list__item-text::before {
    background: url("../images/common/icon_bag_white.svg") no-repeat left 4px top 0/contain;
  }
}

@media only screen and (max-width: 1024px) {
  .tab-menu-list__item {
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 900px) {
  .tab-menu-list__item {
    width: 50%;
  }
}

@media (hover: hover) {
  .tab-menu-list__item:not(.is-disabled-hover):hover .tab-menu-list__item-text {
    background-color: #9db6cf;
    color: #ffffff;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-list__item {
    width: 50%;
  }
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-list {
    width: calc(100% - 195px);
    border-right: 2px solid rgba(0, 51, 102, 0.7);
    padding-right: 10px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-list {
    border-bottom: 2px solid rgba(0, 51, 102, 0.7);
    padding-bottom: 14px;
  }
}

.tab-menu-item {
  width: 195px;
}

.tab-menu-item__contact-button {
  width: 160px;
}

@media not all and (min-width: 768px) {
  .tab-menu-item__contact-button {
    margin: 24px auto 0;
  }
}

@media print,
screen and (min-width: 768px) {
  .tab-menu-item {
    padding: 0 9px 0 26px;
  }
}

@media not all and (min-width: 768px) {
  .tab-menu-item {
    width: auto;
  }
}


/*p-issue*/
@media print,
screen and (min-width: 768px) {
  .p-issue-item {
    padding: 0;
  }
}


.p-issue-item {
  display: flex;
  flex-direction: column;
  margin: 1em;

}







/*.p-issue-item {
  display: flex;
  flex-direction: column;
  background-color: #e9ecf2;
  border-radius: 12px;
  position: relative;
  transition: transform 0.5s, background-color 0.5s;
}*/
@media (hover: hover) {

  /*.p-issue-item:not(.is-disabled-hover):hover {
    background-color: #f2f4f8;
  }*/
  .p-others-item:not(.is-disabled-hover):hover .p-others-item__image img {
    transform: scale(120%);
  }
}

@media print,
screen and (min-width: 768px) {
  .p-issue-item {
    width: 100%;
  }
}

@media not all and (min-width: 768px) {
  .p-issue-item {
    margin: 0;

  }
}

.p-issue-item__link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-issue-item__head {
  width: 100%;
  position: relative;
}

@media print,
screen and (min-width: 768px) {
  .p-issue-item__head {
    height: 155px;
  }
}

@media not all and (min-width: 768px) {
  .p-issue-item__head {
    height: 120px;
  }
}

.p-issue-item__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-issue-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.5s;
}


/*.p-issue-item__image {
  margin: 30px auto;
  width: 100%;
  box-shadow: 30px 30px 0 #336699;
}*/

.p-issue-item__sup {
  text-align: left;
  color: #ffffff;
  position: absolute;
  top: -5px;
}

@media print,
screen and (min-width: 768px) {
  .p-issue-item__sup {
    left: -11px;
  }
}

@media not all and (min-width: 768px) {
  .p-issue-item__sup {
    left: -9px;
  }
}

.p-issue-item__sup span {
  display: inline-block;
  font-weight: bold;
  background-color: #009999;
}

@media print,
screen and (min-width: 768px) {
  .p-issue-item__sup span {
    font-size: 1rem;
    padding: 3px 11px;
  }
}

@media not all and (min-width: 768px) {
  .p-issue-item__sup span {
    font-size: 0.875rem;
    padding: 2px 8px;
  }
}

.p-issue-item__sup::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #008282 transparent transparent;
  position: absolute;
  left: 0;
}

@media print,
screen and (min-width: 768px) {
  .p-issue-item__sup::after {
    border-width: 0 11px 11px 0;
    bottom: -11px;
  }
}

@media not all and (min-width: 768px) {
  .p-issue-item__sup::after {
    border-width: 0 9px 9px 0;
    bottom: -9px;
  }
}

.p-issue-item__heading {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  border-bottom: 1px solid #666;
	justify-content: center;
}

@media not all and (min-width: 768px) {
  .p-issue-item__heading {
    text-align: center;
    margin-top: 3rem;
  }
}

.p-issue-item__detail {
  font-size: 1.0625rem;
    margin-top: 2rem;
    margin-bottom: 14px;
    line-height: 1.8rem;
}

#tour .p-issue-item__detail {
  font-size: 1.0625rem;
    margin-top: -1rem;
    margin-bottom: 14px;
    line-height: 1.8rem;
	background: white;
    padding: 3rem;
    margin-left: -2rem;
    margin-right: -2rem;
	border-radius: 12px;
}

.p-issue-item__solution {
  font-size: 1.2rem;
    /* margin-top: 22px; */
    margin-bottom: 0.7rem;
    font-weight: bold;
    text-align: center;
	margin-top: 2rem;
}

.p-issue-item__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

@media print,
screen and (min-width: 768px) {
  .p-issue-item__tags {
    justify-content: left;
  }
}

@media not all and (min-width: 768px) {
  .p-issue-item__tags {
    justify-content: center;
  }
}


/*p-others*/
.p-others {
  display: block;
  background-color: #e9ecf2;
  padding: 2em 2em 0;
  border-radius: 10px;
}

@media print,
screen and (min-width: 768px) {
  .p-others {
    display: flex;
    /*flex-wrap: wrap;*/
    margin-top: 1rem;
  }
}

@media not all and (min-width: 768px) {
  .p-others {
    display: block;
  }
}

.p-others-item {
  transition: box-shadow 0.5s;
  margin-bottom: 2em;

}

/*@media (hover: hover) {
  .p-others-item:not(.is-disabled-hover):hover {
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  }
  .p-others-item:not(.is-disabled-hover):hover .p-others-item__image img {
    transform: scale(120%);
  }
}*/
@media print,
screen and (min-width: 768px) {
  .p-others-item {
    display: flex;
    /*width: calc((100% - 30px) / 2);
    padding: 10px;*/
  }

  /*.p-others-item:nth-child(2n) {
    margin-left: 30px;
  }
  .p-others-item:nth-child(n+3) {
    margin-top: 30px;
  }*/
}

@media not all and (min-width: 768px) {
  .p-others-item {
    display: block;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  .p-others-item+.p-others-item {
    margin-top: 40px;
  }
}

.p-others-item__image {
  overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
  .p-others-item__image {
    width: 120px;
    height: 120px;
    background: #c8d9e3;
  }
}

@media not all and (min-width: 768px) {
  .p-others-item__image {
    width: 103px;
    position: absolute;
    top: 4px;
    left: 0;
  }
}

.p-others-item__image img {
  transition: transform 0.5s;
}

.p-others-item__detail dt{
  float: left;
	padding:3px;
}

.p-others-item__detail dd{
  margin-left: 120px;
	padding:3px;
}

@media print,
screen and (min-width: 768px) {
  .p-others-item__detail {
    margin-left: 20px;
  }
}

.p-others-item__heading {
  font-weight: bold;
}

@media print,
screen and (min-width: 768px) {
  .p-others-item__heading {
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: bold;
    /*border-bottom: 1px solid #666;
    margin-bottom: 5px;*/
    padding-bottom: 5px;
  }
}

@media not all and (min-width: 768px) {
  .p-others-item__heading {
    font-size: 1rem;
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: 119px;
  }
  .line2 {
    padding-top: 27px;
    padding-bottom: 24px;
  }
  .line3 {
    padding-top: 17px;
    padding-bottom: 11px;
  }
  .p-others-item__heading--paddingY-small {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

.p-others-item__text {
  font-size: 0.875rem;
}

@media not all and (min-width: 768px) {
  .p-others-item__text {
    width: 100%;
    margin-top: 1rem;
  }
}


/*p-figure*/
.p-figure {
  display: block;
}

@media print,
screen and (min-width: 768px) {
  .p-figure {
    display: flex;
    /*flex-wrap: wrap;*/
    margin: 2rem 0;
  }
}

@media not all and (min-width: 768px) {
  .p-figure {
    display: block;
  }
}

.p-figure-item {
  transition: box-shadow 0.5s;
  /*margin-bottom: 2em;*/

}

/*@media (hover: hover) {
  .p-figure-item:not(.is-disabled-hover):hover {
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  }
  .p-figure-item:not(.is-disabled-hover):hover .p-figure-item__image img {
    transform: scale(120%);
  }
}*/
@media print,
screen and (min-width: 768px) {
  .p-figure-item {
    display: flex;
	justify-content: center;
    /*width: calc((100% - 30px) / 2);
    padding: 10px;*/
  }

  /*.p-figure-item:nth-child(2n) {
    margin-left: 30px;
  }
  .p-figure-item:nth-child(n+3) {
    margin-top: 30px;
  }*/
}

@media not all and (min-width: 768px) {
  .p-figure-item {
    display: block;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  .p-figure-item+.p-figure-item {
    margin-top: 40px;
  }
}

.p-figure-item__image {
  overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
  .p-figure-item__image {
    width: 200px;
    /*height: 120px;*/
    background: white;
  }
}

@media not all and (min-width: 768px) {
  .p-figure-item__image {
    width: 103px;
    position: absolute;
    top: 4px;
    left: 0;
  }
}

.p-figure-item__image img {
  transition: transform 0.5s;
}

@media print,
screen and (min-width: 768px) {
  .p-figure-item__detail {
    margin-left: 20px;
    width: 65%;
  }
}

.p-figure-item__heading {
  font-weight: bold;
}

@media print,
screen and (min-width: 768px) {
  .p-figure-item__heading {
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: bold;
    /*border-bottom: 1px solid #666;
    margin-bottom: 5px;*/
    padding-bottom: 5px;
  }
}

@media not all and (min-width: 768px) {
  .p-figure-item__heading {
    font-size: 1rem;
    padding-top: 37px;
    padding-bottom: 37px;
    padding-left: 119px;
  }
  .line2 {
    padding-top: 27px;
    padding-bottom: 24px;
  }
  .line3 {
    padding-top: 17px;
    padding-bottom: 11px;
  }
  .p-figure-item__heading--paddingY-small {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}

.p-figure-item__text {
  font-size: 0.875rem;
}

@media not all and (min-width: 768px) {
  .p-figure-item__text {
    width: 100%;
    margin-top: 1rem;
  }
}




.issue-s {
  background: #333333;
  flex: none;
  height: 3rem;
  margin: -5px 20px 10px 0;
  width: 1px;
  max-width: calc(100% - 20px);
}

.issue-s1 {
  background: #333333;
  flex: none;
  height: 3rem;
  margin: -30px 20px;
  transform: rotate(45deg);
  width: 1px;
  max-width: calc(100% - 20px);
}


.issue-s2 {
  background: #333333;
  flex: none;
  height: 3rem;
  margin: -5px 25px 10px;
  transform: rotate(45deg);
  width: 1px;
  max-width: calc(100% - 20px);
}

.issue-n {
  font-size: 4.2rem;
  font-weight: bold;
  margin-top: -2rem;
  margin-right: 20px;
}


.issue-title {
  display: flex
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow-right::before{
    left: 4px;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #7a0;
}

.balloon {
  /*position: relative;
  display: inline-block;
  background-color: #fff;
  border-bottom: solid 1px #525252;*/
  padding: 16px;
  min-width: 240px;
  max-width: 100%;
}


.balloon p {
  margin: 0;
  padding: 0;
}



/*ページ内リンク*/
.productPageLink {
  width: 100%;
  display: flex;
  margin: 4.69% auto;
}

.productPageLink li {
  flex: 1 1 auto;
  margin: 0 1px 1px 0;
}

.productPageLink li a {
  display: block;
  width: 100%;
  text-align: center;
  color: #004098;
  font-weight: 500;
  background: #eee;
  padding: 20px 0;
  font-size: 16px;
  transition: all .25s ease;
  position: relative;
}


.productPageLink li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 5px;
  background: url(/corp/images/common/arrowBlueDown.png) no-repeat center/100%;
  bottom: 10px;
  left: 50%;
  margin-left: -4px;
  transition: all .25s ease;
}

.productPageLink li a:hover {
  background: #004098;
  color: #fff;
}

.productPageLink li a:hover:after {
  background: url(/corp/images/common/arrowWhiteDown.png) no-repeat center/100%;
  bottom: 5px;
}

.subTtlNote {
  margin-bottom: 30px;
}

@media screen and (max-width:768px) {

  .productPageLink {
    display: block;
    margin: 4.69% auto 10%;
  }

  .productPageLink li {
    float: left;
    margin: 0 1px 1px 0;
	width: 100%;
	padding: 0 1rem;
  }

  .productPageLink li a,
  .productPageLink li a:hover {
    display: block;
    width: auto;
    text-align: center;
    color: #004098;
    font-weight: 500;
    background: #eee;
    padding: 1em 1.2em;
    font-size: 85.71%;
    position: relative;
  }

  .productPageLink li a:after,
  .productPageLink li a:hover:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 5px;
    background: url(/corp/images/common/arrowBlueDown.png) no-repeat center/100%;
    bottom: 5px;
    left: 50%;
    margin-left: -4px;
    transition: all .25s ease;
  }
}



@media print,
screen and (min-width: 768px) {
  #case .p-info__item {
    width: 100%;
    padding: 27px 5.5555555556%;
  }

  #case .p-info-item__detail {
    margin-top: 0px;
  }

  .full-w {
    display: flex;
  }

  .full-w li {
    width: 50%;
    float: left;
    list-style: none;
    margin: 30px;
  }

}


@media (hover: hover) {
  #studytrip .p-info-item:not(.is-disabled-hover):hover .p-info-item__image img {
    transform: scale(100%);
  }
}

.pl-1 {
	padding-left: 1rem;
}


@media all and (min-width: 768px) {
.dvd-3 {
    width: calc((100% - 38px) / 3);
}
}




/*//////////////////*/

.p-info-item_year {
  text-align: left;
  color: #FFF;
  position: absolute;
  top:  -18px;
	opacity: 0.6;
}
@media print, screen and (min-width: 768px) {
  .p-info-item_year {
    left: -11px;
	  z-index: 2;
  }
}
@media not all and (min-width: 768px) {
  .p-info-item_year {
    left: -9px;
	  z-index: 1;
  }
}
.p-info-item_year span {
  display: inline-block;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .p-info-item_year span {
    font-size: 4rem;
    padding: 3px 11px;
  }
}
@media not all and (min-width: 768px) {
  .p-info-item_year span {
    font-size: 4rem;
    padding: 2px 8px;
  }
}
/*.p-info-item_year::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #008282 transparent transparent;
  position: absolute;
  left: 0;
}*/
@media print, screen and (min-width: 768px) {
  .p-info-item_year::after {
    border-width: 0 11px 11px 0;
    bottom: -11px;
  }
}
@media not all and (min-width: 768px) {
  .p-info-item_year::after {
    border-width: 0 9px 9px 0;
    bottom: -9px;
    }
}



/*//////////////////*/

.p-info-item_badge {
  text-align: left;
  color: #FFF;
  position: absolute;
  top:  15px;
}
@media print, screen and (min-width: 768px) {
  .p-info-item_badge {
	  z-index: 2;
  }
}
@media not all and (min-width: 768px) {
  .p-info-item_badge {
    left: -9px;
  }
}
.p-info-item_badge span {
  display: inline-block;
  font-weight: bold;
	    background-color: rgba(0,102,153,0.7);
}
@media print, screen and (min-width: 768px) {
  .p-info-item_badge span {
    font-size: 1rem;
    padding: 3px 11px;
  }
}
@media not all and (min-width: 768px) {
  .p-info-item_badge span {
    font-size: 1rem;
    padding: 2px 8px;
  }
}

@media print, screen and (min-width: 768px) {
  .p-info-item_badge::after {
    border-width: 0 11px 11px 0;
    bottom: -11px;
  }
}
@media not all and (min-width: 768px) {
  .p-info-item_badge::after {
    border-width: 0 9px 9px 0;
    bottom: -9px;
    }
}



/*///////////////////*/
.reason {
  background: #eef0f5;
  padding: 15px 30px;
  /* border: 1px solid #ccc; */
  /* font-size: 128.57%; */
  border-radius: 12px;
	width: 100%;
}

.reason h4 {
  display: inline-block;
    /* margin: -1.5rem; */
    padding-left: .3rem;
    /* border-radius: 50px; */
    /* background: #59bab2; */
    /* line-height: 1.7; */
    /* color: white; */
    position: absolute;
    font-size: 1.0625rem
}

.reason ul {
  margin-top: 0.6rem;
}

.reason ul li:before {
  content: "\f046";
  color: #999;
  font-family: FontAwesome;
  margin-right: 0.55em;
	font-size: 1.2rem;
}

.reason ul li {
  line-height: 3rem;
}


/*///////////////////*/




@media print, screen and (min-width: 768px) {
.p-info_second {
    margin-top: 32px;
	display: flex;
}
	
.p-info__item + .p-info__item {
    margin-left: 28px;
	text-align: center;
}



}

@media not all and (min-width: 768px) {
.p-info_second {
    margin-top: 28px;
}


	}



.p-info-item__detail {
    margin-top: 12px;
}
.p-info-item__image {
    border-radius: 12px 12px 0 0;
}
.p-info-item__heading {
    padding: 0 2rem;
}
.p-info-item__detail {
    padding: 0 2rem 1rem;
	text-align: left;
}

.p-info-item__detail-low {
    width: 70%;
	padding: 1rem;
}

.p-info-item__heading-low {
    font-size: 1.0625rem;
    font-weight: bold;
    margin: 20px 0 12px;
}



.fd-un {
    flex-direction: unset;
	}

.wd-150 {
	width: 30%;
	height: 140px;
    border-radius: 50%;
    margin: 1rem 0 1rem 1.6rem;
}

.wd-100 {
    width: 30%;
    height: 90px;
    border-radius: 50%;
    margin: 2rem 0 1rem 1.6rem;
}


.box {
	box-shadow: 0 8px 30px rgb(0 16 14 / 20%);
	border-radius: 20px;
	padding: 1.8rem
}




.arrow-r:before {
    content: "\f101";
    color: #bbd4e3;
    font-family: FontAwesome;
    margin-right: 0.55em;
    font-size: 3rem;
    /* display: flex; */
    /* align-items: stretch; */
    flex-direction: row-reverse;
    position: absolute;
    margin-left: -2.7rem;
    margin-top: 8rem;
}




.arrow-d {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #333;
  text-decoration: none;
}
.arrow-d:before {
  content: "\f101";
    color: #bbd4e3;
    font-family: FontAwesome;
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 44%;
    margin-top: -2rem;
    transform: rotate(90deg);
}

.p-issue-item__result {
    font-size: 1.38rem;
    margin-top: 5rem;
    line-height: 2.1rem;
    font-weight: bold;
    color: #003366;
}



/*tour-content*/
.tour-img{
    width:100%;
}

.tour-img img{
    animation: fluidrotate 30s ease 0s infinite;
}

.tour-content {
	margin-left: 2rem;
    margin-top: 3%;
	width: fit-content;
}

.tour-content-r {
	margin: 0 2rem;
    margin-top: 3%;
	width: fit-content;
}

.tour-bg01 {
	background-image: url(../images/tour01.png);
    width: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.tour-content .p-issue-item__heading {
    justify-content: left;
	background: #e2eeec;
    box-shadow: 0px 0px 0px 5px #e2eeec;
    border: dashed 1px #59bab2;
    padding: 0.2em 0.5em;
    color: #336699;
	display: inline-block;
}
.tour-content-r .p-issue-item__heading {
    justify-content: left;
	background: #e2eeec;
    box-shadow: 0px 0px 0px 5px #e2eeec;
    border: dashed 1px #59bab2;
    padding: 0.2em 0.5em;
    color: #336699;
	display: inline-block;
}

#tour .destination {
     color: yellow;
    /* display: inline-block; */
    -webkit-text-stroke: 2px #006699;
    /* position: absolute; */
    text-align: center;
    font-weight: bold;
    /* left: 40%; */
    /* right: 40%; */
    font-size: 4rem;
    /* padding-bottom: 1rem; */
    /* border-bottom: solid 2px #333;*/
}

.dotted {
    background-image: linear-gradient(to right, #59bab2, #59bab2 2px, transparent 3px, transparent 8px);
    background-size: 8px 2px;
    background-position: left bottom;
    background-repeat: repeat-x;
}
.tour-image {
	width:60%;
	margin-left: 2rem;
}
.tour-image img {
	width: 400px;
    height: auto;
    border-radius: 50%;
    border: 1px solid #666;
    padding: 4px;
}

.tour-image-r {
	width:60%;
	margin-left: 2rem;
}

.tour-image-r img {
	width: 400px;
    height: auto;
    border-radius: 50%;
    border: 1px solid #666;
    padding: 4px;
}

#tour .p-info-wrap {
	/*background-color: #dff1ef;*/
	border-radius: 12px;
    padding: 2rem;
    margin-top: -50px;
    background-size: auto auto;
    background-color: white;
    background-image: repeating-linear-gradient(219deg, #faf7f2, #faf7f2 33px, #eef1f7 33px, #eef1f7 88px);
}

#effect .p-info-wrap {
	background-color: #e9ecf2;
	border-radius: 12px;
	padding: 2rem;
	margin-top: 84px;
}

#voice .p-info-wrap {
    background-color: #e9ecf2;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 84px;
}

.mt-0 {
    margin-top: 0;
}
	
.mt-30 {
    margin-top: 30px;
}

.mt-100 {
    margin-top: 100px!important;
}

.pb-90 {
        margin-top: 84px;
}

.mark {
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.button-w {
    width: 40%;
    text-align: center;
    padding: 1rem;
    margin: 70px auto 80px;
}
	
.fw-1 {
    font-size: 1.0625rem;
}

.voice {
  margin-bottom: 1rem;
}

.voice ul {
  margin: 0.5em;
    padding-left: 1em;
    text-indent: -1.4em;
}

.voice ul li:before {
  content: "・";
  color: #ccc;
  font-size: 1.3rem;
}

.voice ul li {
  line-height: 1.4rem;
}

.voice h4 {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.75;
  border-bottom: 1px solid #666;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.voice span {
  /*font-weight: bold;*/
  line-height: 1.6rem;
}

#voice .p-issue-item__image {
    border-radius: 12px;
}



.comment {
    display: flex;
    padding: 1.2rem;
    background: #f4f7fd;
    border-radius: 12px;
    margin-top: 1.2rem;
}

.comment-image {
  overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
  .comment-image {
    width: 165px;
  }
}

@media not all and (min-width: 768px) {
  .comment-image {
    width: 103px;
    position: relative;
    top: 4px;
    left: 0;
  }
	#tour .destination {
    -webkit-text-stroke: 1px #006699;
    font-size: 2.4rem;
}
	.tour-image {
    width: 100%;
    margin-left: 0;
}
	.tour-image-r {
    width: 100%;
    margin-left: 0;
}
	.button-w {
    width: 100%;
    right: 0; 
}
	#voice h3 {
    margin-top: 1rem;
}

}

.comment-image img {
  transition: transform 0.5s;
	border-radius: 50%;
}

.comment-detail {
	width:100%;
	margin-left: 1rem;
}

.comment-heading {
	font-weight: bold;
}

#voice h3 {
	font-weight: bold;
	font-size: 1.6rem;
	color: #003366;
    margin-bottom: 1rem;
}

/*#voice h3 {
  border-bottom: solid 5px #73aac7;
  position: relative;
	line-height: 3.3rem;
}

#voice h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 5px #ffc778;
  bottom: -5px;
  width: 20%;
}*/

#voice h3 {
  position: relative;
  line-height: 1.4;
  padding:0.25em 1em;
  display: inline-block;
  text-align: center;
}

#voice h3:before, #voice h3:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
#voice h3:before {
  border-left: solid 1px #666;
  border-top: solid 1px #666;
  border-bottom: solid 1px #666;
  left: 0;
}
#voice h3:after {
  content: '';
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  border-bottom: solid 1px #666;
  right: 0;
}

#whats h2 {
	color: #003366;
}

#mice .p-view-list-button {
    margin: 24px auto 0;
	width: 220px;
}

#tour .movie {
    width: 70%;
    margin: 0 auto;
    padding-top: 5.5rem;
}

#tour iframe {
	width:100%; 
	height: auto;
	aspect-ratio: 16/9;
	padding-right: .5rem;
}

.p-top__inner img {
	width: 600px;
	height: auto;
}


@media not all and (min-width: 768px) {
.p-info-wrap {
    margin-top: 52px;
}

.p-info-item {
    padding: 0;
}

#tour .movie {
    width: 100%;
	padding-top: 4rem;
}

#mice .p-view-list-button {
    margin-bottom: 2rem;
}
}


/*-------------------------
  p-travel-info-table
-------------------------*/
.travel-info-table {
  width: 100%;
  border: solid 1px #D7D7D7;
}
.travel-info-table + .travel-info-table {
  margin-top: 25px;
}
.travel-info-table__heading,
.travel-info-table__data {
  text-align: center;
  vertical-align: middle;
  padding: .5em;
  border: solid 1px #D7D7D7;
}
.travel-info-table__heading {
  font-weight: bold;
  color: #003366;
  background-color: #b2cbe4;
}
.travel-info-table a {
  text-decoration: underline;
  color: #336699;
}

@media print, screen and (min-width: 768px) {
  /*.travel-info-table a:hover {
    text-decoration: none;
  }*/
}

@media not all and (min-width: 768px) {
  .travel-info {
    width: 100%;
    padding: 10px;
    overflow-x: auto;
  }
}


.heading {
    font-weight: bold;
    font-size: 1.6rem;
    /*color: #003366;*/
    margin: 2.5rem 0 0.7rem 1rem;
}


/*-------------------------
  summary
-------------------------*/
.summary {
  background: #e9ecf2;
  padding: 15px 30px;
  border-radius: 6px;
  margin-top: 1.6rem;
}

.summary h4 {
  display: inline-block;
  margin: -1.5rem;
  padding: 0 15px;
  border-radius: 50px;
  background: #9dabc8;
  line-height: 1.7;
  color: white;
  position: absolute;
}

.summary dl {
  padding-top: .725rem;
}

.summary dt {
  float: left;
	padding:3px;
}

.summary dd {
  margin-left: 120px;
	padding:3px;
}

.summary ul {
  margin-top: 0.6rem;
}


.summary ul li span {
  line-height: 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fc92a4;
  padding-bottom: 3px;
}

/*-------------------------
  point
-------------------------*/

.point {
  background: #e5f2f2;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 6px;
  margin: 2rem;
}

.point h3 {
	font-size:1.275rem;
    font-weight: bold;
    color: #003366;
	margin:1rem 0 0 1rem;
}

.point ul {
  margin: 1rem;
}

.point ul a {
  color: #3366CC;
	text-decoration: underline;
}

.point ul li:before {
  content: "\f046";
  color: #9cd1d3;
  font-family: FontAwesome;
  margin-right: 0.55em;
}

/*-------------------------
  p-contetns-contact
-------------------------*/
.p-contetns-contact {
  padding: 5rem 1.5rem
}

@media not all and (min-width: 768px) {
  .p-contetns-contact {
  padding: 1rem 1.5rem
}
}

.p-contetns-contact + .p-contetns-contact {
  margin-top: 16px;
}
.p-contetns-contact__lead {
  font-size: 1.275rem;
  font-weight: bold;
  text-align: center;
	margin-bottom: 1.5rem;
}

@media print, screen and (min-width: 768px) {
.p-contetns-contact__lead {
	position: relative;
	display: block;
	padding: 0 45px;
	margin-bottom: 2.5rem;
}
.p-contetns-contact__lead:before, .p-contetns-contact__lead:after {
	content: '';
	top: 50%;
	display: inline-block;
	width: 44px;
	height: 2px;
	background-color: #333;
}
.p-contetns-contact__lead:before {
	left:0;
	transform: rotate(60deg);
}
.p-contetns-contact__lead:after {
	right: 0;
	transform: rotate(-60deg);
}
	}

.p-contetns-contact__text {
  position: relative;
  display: block;
  font-weight: bold;
  text-align: center;
  word-break: break-all;
  font-size: 1.2rem;
  color: #ffffff;
  transition: color 0.6s;
  z-index: 2;
}

@media (hover: hover) {
  .c-rounded-button:not(.is-disabled-hover):hover .p-contetns-contact__text {
    color: #003366;
  }
}


.p-contetns-contact__button {
  width: 680px;
    margin: 15px auto 0;
	text-align: center;
    padding: 1rem;
}

@media not all and (min-width: 768px) {
  .p-contetns-contact__button {
  width: 100%;
}
	.c-rounded-button {
    border-radius: 20px;
}
}

@media print, screen and (min-width: 768px){
.p-info-item {
    padding: 0;
    text-align: center;
}}

.p-view-list-button {
    margin: auto;
    margin-bottom: 2rem;
}


.dotted {
    background-image: linear-gradient(to right, #fc92a4, #fc92a4 2px, transparent 3px, transparent 8px);
    background-size: 8px 2px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

.l2 {
    margin-top: -1rem;
}

.redb {
	font-weight: bold;
	color: red;
}

.ta-l {
	text-align: left;
}

.note {
	margin-top: 5px;
}

.l-contents__inner .point {
	margin: 1rem!important;
}


@media print, screen and (min-width: 768px) {
.p-contents {
    margin-top: 20px;
	}
.point ul li {
  line-height: 2.2rem;
}

	}

@media not all and (min-width: 768px) {
	.point ul li {
  line-height: 1.65rem;
}
	.p-contents {
    margin-top: 0px;
	}
	.inner {
    margin: 0;
}
	.p-top__heading span{
    font-size: 1.85rem;
}
	.textsize {
    margin-bottom: 0!important;
}
	table.table02 {
    margin-bottom: 0;
}
	.section01 {
    margin-bottom: 0;
}
}


