@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #575757;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}

main {
  padding-top: 5.5em;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  main {
    padding-top: 75px;
  }
}

@media screen and (max-width: 1400px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.elm {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateY(6.25em);
}
@media screen and (max-width: 768px) {
  .elm {
    transform: translateY(70px);
  }
}

.elm.elm2 {
  transition-delay: 0.3s;
}

.elm.elm2_2 {
  transition-delay: 0.6s;
}

.elm.elm3 {
  transition: opacity 0.6s ease-in-out, transform 1s ease-out;
  transition-delay: 0.9s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition: opacity 0.6s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_title_en {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}

.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_o.fade-in {
  opacity: 1;
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}

@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}

@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.entryList_bg {
  background-color: #0096df;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.entryList_block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 65.875em;
  width: 100%;
  background-color: #cceaf9;
  border-radius: 1.5em;
  padding: 6.25em 0;
}
.entryList_block_inner {
  color: #0096df;
  text-align: center;
}
.entryList_block_lead {
  font-size: 1.875em;
  font-weight: 600;
}
.entryList_block_text {
  font-weight: 500;
  margin-top: 1.875em;
  line-height: 1.8;
}
.entryList_block_btnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5em;
}
.entryList_block_btn {
  display: block;
  position: relative;
  width: 20em;
  height: 5em;
  border: 0.25em solid #0096df;
  border-radius: 3.5em;
  background-color: #fff;
  display: block;
  box-shadow: 0.5em 0.5625em 0.5625em -0.5em #777777;
}
.entryList_block_btn:nth-of-type(n + 2) {
  margin-left: 1.5em;
}
.entryList_block_btn .navi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.entryList_block_btn .navi.recNavi {
  width: 62.5%;
  left: 42%;
}
.entryList_block_btn .navi.myNavi {
  width: 56.5625%;
  left: 45%;
}
.entryList_block_btn .navi_arrow {
  width: 2.0625em;
  height: 2.0625em;
  background-color: #0096df;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition-duration: 0.3s;
}
.entryList_block_btn .navi_arrow .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.75em;
  height: 0.75em;
  transform: translateX(-15%) translateY(15%) rotate(45deg);
  transition-duration: 0.3s;
}
.entryList_block_btn .navi_arrow .arrow::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
  transition-duration: 0.3s;
}
.entryList_block_btn .navi_arrow .arrow::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.15em;
  transition-duration: 0.3s;
}
.entryList_block_btn .navi_arrow .liner {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.17em;
  transition-duration: 0.3s;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
}
.entryList_block_btn .navi_arrow .liner::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
  transition-duration: 0.3s;
}
.entryList_block_btn:hover {
  opacity: 1;
  border-color: #cceaf9;
  box-shadow: none;
  transform: translate(0.2em, 0.22em);
}
.entryList_block_btn:hover .navi_arrow {
  background-color: #fff;
}
.entryList_block_btn:hover .navi_arrow .arrow {
  color: #0096df;
  transform: translateX(25%) translateY(15%) rotate(45deg);
}
.entryList_block_btn:hover .navi_arrow .arrow::before {
  background: #0096df;
}
.entryList_block_btn:hover .navi_arrow .arrow::after {
  background: #0096df;
}
.entryList_block_btn:hover .navi_arrow .arrow.liner {
  opacity: 1;
}
.entryList_block_btn:hover .navi_arrow .liner {
  color: #0096df;
  left: 56%;
  opacity: 1;
}
.entryList_block_btn:hover .navi_arrow .liner::before {
  background: #0096df;
}
.entryList_close {
  position: absolute;
  top: 2em;
  right: 2em;
  text-align: center;
  cursor: pointer;
}
.entryList_close .closeBtn {
  width: 2.8125em;
  height: 2.8125em;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  transition-duration: 0.3s;
}
.entryList_close .closeBtn span {
  display: inline-block;
  vertical-align: middle;
  color: #0096df;
  line-height: 1;
  width: 1.125em;
  height: 0.125em;
  background: #0096df;
  border-radius: 0.1em;
  position: absolute;
  top: 49%;
  left: 31%;
  transform: rotate(45deg);
  transition-duration: 0.3s;
}
.entryList_close .closeBtn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.entryList_close .closeBtn_text {
  font-size: 0.6875em;
  color: #0096df;
  font-weight: 500;
  margin-top: 0.2em;
  transition-duration: 0.3s;
}
.entryList_close:hover .closeBtn {
  background-color: #0096df;
}
.entryList_close:hover .closeBtn span {
  transform: rotate(135deg) scale(1.5);
  color: #fff;
  background: #fff;
}
.entryList_close:hover .closeBtn_text {
  transform: translateY(20%);
  font-weight: 600;
}

.contactList {
  margin-top: 2.625em;
}
.contactList_block {
  background-color: #fff;
  width: 100%;
  border-radius: 1.5em;
  padding: 6.25em 0;
}
.contactList_block_inner {
  text-align: center;
}
.contactList_block_lead {
  font-size: 1.875em;
  color: #0096df;
  font-weight: 600;
}
.contactList_block_btn {
  display: block;
  position: relative;
  width: 32.5em;
  height: 5.875em;
  margin: 2.8125em auto 0;
  border: 0.25em solid #0096df;
  border-radius: 3.5em;
  background-color: #0096df;
  display: block;
  box-shadow: 0.5em 0.5625em 0.5625em -0.5em #777777;
}
.contactList_block_btn:nth-of-type(n + 2) {
  margin-left: 1.5em;
}
.contactList_block_btn .navi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 2.125em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.13em;
  transition-duration: 0.3s;
  line-height: 1;
  width: 100%;
}
.contactList_block_btn .navi_arrow {
  width: 2.0625em;
  height: 2.0625em;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition-duration: 0.3s;
}
.contactList_block_btn .navi_arrow .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #0096df;
  line-height: 1;
  position: relative;
  width: 0.75em;
  height: 0.75em;
  transform: translateX(-15%) translateY(15%) rotate(45deg);
  transition-duration: 0.3s;
}
.contactList_block_btn .navi_arrow .arrow::before {
  content: "";
  position: absolute;
  background: #0096df;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
  transition-duration: 0.3s;
}
.contactList_block_btn .navi_arrow .arrow::after {
  content: "";
  position: absolute;
  background: #0096df;
  border-radius: 0.1em;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.15em;
  transition-duration: 0.3s;
}
.contactList_block_btn .navi_arrow .liner {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.17em;
  transition-duration: 0.3s;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
}
.contactList_block_btn .navi_arrow .liner::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
  transition-duration: 0.3s;
}
.contactList_block_btn:hover {
  opacity: 1;
  box-shadow: none;
  background-color: #fff;
  transform: translate(0.2em, 0.22em);
}
.contactList_block_btn:hover .navi {
  color: #0096df;
}
.contactList_block_btn:hover .navi_arrow {
  background-color: #fff;
}
.contactList_block_btn:hover .navi_arrow .arrow {
  color: #0096df;
  transform: translateX(25%) translateY(15%) rotate(45deg);
}
.contactList_block_btn:hover .navi_arrow .arrow::before {
  background: #0096df;
}
.contactList_block_btn:hover .navi_arrow .arrow::after {
  background: #0096df;
}
.contactList_block_btn:hover .navi_arrow .arrow.liner {
  opacity: 1;
}
.contactList_block_btn:hover .navi_arrow .liner {
  color: #0096df;
  left: 56%;
  opacity: 1;
}
.contactList_block_btn:hover .navi_arrow .liner::before {
  background: #0096df;
}

.secInner {
  max-width: 65.875em;
  margin: 0 auto;
  width: 90%;
  position: relative;
}

.secInner2 {
  max-width: 61.25em;
  margin: 0 auto;
  width: 90%;
  position: relative;
}

.sec_headline {
  text-align: center;
}
.sec_headline .ja {
  font-size: 1.375em;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #0096df;
}
.sec_headline_title {
  overflow: hidden;
}
.sec_headline h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5em;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0096df;
}
@media screen and (max-width: 768px) {
  .sec_headline h2 {
    font-size: 3em;
  }
}

.linkBtn {
  width: 16.875em;
  height: 3.875em;
  margin: 0 auto;
  border: 0.25em solid #0096df;
  background-color: #fff;
  border-radius: 3.5em;
  display: block;
  position: relative;
  box-shadow: 0.5em 0.5625em 0.5625em -0.5em #777777;
}
.linkBtn .navi {
  font-size: 1.4375em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0096df;
  display: inline-block;
  position: absolute;
  top: 49%;
  left: 47%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition-duration: 0.3s;
  line-height: 1;
}
.linkBtn .navi_arrow {
  width: 2.0625em;
  height: 2.0625em;
  background-color: #0096df;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition-duration: 0.3s;
}
.linkBtn .navi_arrow .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.75em;
  height: 0.75em;
  transform: translateX(65%) translateY(15%) rotate(45deg);
  transition-duration: 0.3s;
}
.linkBtn .navi_arrow .arrow::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
  transition-duration: 0.3s;
}
.linkBtn .navi_arrow .arrow::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.15em;
  transition-duration: 0.3s;
}
.linkBtn .navi_arrow .liner {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.17em;
  transition-duration: 0.3s;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
}
.linkBtn .navi_arrow .liner::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
  transition-duration: 0.3s;
}
.linkBtn:hover {
  opacity: 1;
  border-color: #cceaf9;
  box-shadow: none;
  transform: translate(0.2em, 0.22em);
}
.linkBtn:hover .navi_arrow {
  background-color: #fff;
}
.linkBtn:hover .navi_arrow .arrow {
  color: #0096df;
  transform: translateX(100%) translateY(15%) rotate(45deg);
}
.linkBtn:hover .navi_arrow .arrow::before {
  background: #0096df;
}
.linkBtn:hover .navi_arrow .arrow::after {
  background: #0096df;
}
.linkBtn:hover .navi_arrow .arrow.liner {
  opacity: 1;
}
.linkBtn:hover .navi_arrow .liner {
  color: #0096df;
  left: 56%;
  opacity: 1;
}
.linkBtn:hover .navi_arrow .liner::before {
  background: #0096df;
}

/* ふわふわするアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.3em);
  }
}
@keyframes fuwafuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6em);
  }
}
.anime-fuwafuwa {
  animation: 1s fuwafuwa infinite;
}

#Head {
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  color: #000;
  box-shadow: 0 0.0625em 1em 0 #a6a6a6;
}
#Head > .inner {
  max-width: 980px;
  margin: 0 auto;
  width: 90%;
}
#Head #LogoMain {
  padding: 0;
  margin-top: 1.3em;
}
#Head #LogoMain h1 a {
  height: auto;
  line-height: 1;
  font-size: unset;
  width: 13em;
}
#Head #LogoMain h1 a img {
  width: 100%;
}
#Head #HeadRight {
  color: #000;
  width: 24.9em;
}
#Head #HeadMembers {
  font-size: 0.875em;
  width: 8em;
  border-right: 0.0625em solid #000;
  border-left: 0.0625em solid #000;
}
#Head #HeadMembers > a {
  color: #000;
}
#Head #HeadCartView {
  font-size: 0.875em;
  width: 14em;
  padding-left: 1em;
  padding-right: 1em;
}
#Head #HeadCartView > a {
  color: #000;
}
#Head #HeadUserNav {
  font-size: 0.875em;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    color: #000;
    box-shadow: 0 0.0625em 1em 0 #a6a6a6;
  }
  .header .logo-main h1 a {
    line-height: 1;
    height: auto;
    display: block;
    margin-left: 13px;
    margin-top: 9px;
  }
  .header .logo-main h1 a .headerIcon {
    width: 160px;
  }
  .header .logo-main h1 a .headerIcon img {
    width: 100%;
  }
  .header ul li a#toggle-global-menu {
    background-image: url(../../../SmartPhone/Contents/ImagePkg/common/icon-bar_active.png);
  }
  .header ul li a#toggle-search {
    background-image: url(../../../SmartPhone/Contents/ImagePkg/common/icon-search-box.png);
  }
  .header-toggle {
    position: fixed;
    z-index: 100;
    width: 100%;
  }
  .header-toggle .search-item ul li img {
    width: 3.1em;
    padding-right: 0.5em;
  }
}
#Foot {
  background-color: #009e96;
}
#Foot .inner {
  max-width: 880px;
  width: 90%;
  margin: 0 auto;
  padding: 2em 0 1em;
}
#Foot .inner .footIcon {
  width: 21.375em;
  margin: 0 auto;
}
#Foot .inner .footIcon img {
  width: 100%;
}
#Foot .inner #FootNav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 3em 0 2em;
}
#Foot .inner #FootNav li {
  width: 30%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#Foot .inner #FootNav li:nth-child(n+2) {
  margin-left: 5%;
}
#Foot .inner #FootNav li:nth-child(n+4) {
  border-top: none;
}
#Foot .inner #FootNav li:nth-child(3n+1) {
  margin-left: 0;
}
#Foot .inner #FootNav li a {
  padding: 1.2em 0;
  font-size: 0.875em;
  display: block;
  color: #fff;
  position: relative;
}
#Foot .inner #FootNav li a::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.6em;
  width: 0.9285714286em; /* くの字を山なりに見た時、左側の長さ */
  height: 0.9285714286em; /* くの字を山なりに見た時、右側の長さ */
  border-top: 0.125em solid #fff; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 0.125em solid #fff; /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);
}
#Foot .inner #coryRight {
  text-align: center;
}
#Foot .inner #coryRight address {
  color: #fff;
}

#ToTop {
  display: none;
}

.page-top {
  display: none;
}

footer {
  background-color: #009e96;
}
footer.footer {
  padding: 3em 0 1.5em;
}
footer.footer .footIcon {
  width: 70vw;
  margin: 0 auto;
}
footer.footer .footIcon img {
  width: 100%;
}
footer.footer #FootNav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 80%;
  margin: 3em auto;
}
footer.footer #FootNav li {
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
footer.footer #FootNav li:nth-child(n+2) {
  margin-left: 0;
  border-top: none;
}
footer.footer #FootNav li a {
  padding: 1.3em 0;
  font-size: 1em;
  display: block;
  color: #fff;
  position: relative;
}
footer.footer #FootNav li a::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.6em;
  width: 0.9285714286em; /* くの字を山なりに見た時、左側の長さ */
  height: 0.9285714286em; /* くの字を山なりに見た時、右側の長さ */
  border-top: 0.125em solid #fff; /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 0.125em solid #fff; /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);
}
footer .switch-view {
  display: none;
}

.cycle_addNoteTxt ul {
  margin: 0;
  padding: 0;
  list-style: disc;
  padding-left: 1em;
}
.cycle_addNoteTxt ul li {
  font-size: 0.8em;
  list-style-type: disc;
  line-height: 1.4;
}
.cycle_addNoteTxt ul li:nth-child(n+2) {
  margin-top: 0.2em;
}
.cycle_addNoteTxt.cartInner {
  margin-top: 1em;
  font-size: 0.75em;
}
.cycle_addNoteTxt.cartInner:nth-child(n+2) {
  margin-top: 0.1em;
}

.ChangesByVariation .selectValiation {
  display: none;
}
.ChangesByVariation .productAmount {
  display: none;
}
.ChangesByVariation .productCart {
  display: none;
}

.course-select-area {
  margin: 3em auto 0;
}

.course-select-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background: #e57200;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition-duration: 0.3s;
}
.course-select-btn:hover {
  opacity: 0.6;
}

.course-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: auto;
}

.course-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 6.25em auto 0;
  padding: 1.875em;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .course-modal-content {
    margin-top: 4.25em;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2.5em;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
}

.modal-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .modal-title {
    margin-bottom: 0.5em;
    font-size: 1.5em;
  }
}

.course-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.course-item {
  width: 44%;
  padding: 1.25em;
  border: 1px solid #ddd;
  border-radius: 0.5em;
  text-align: center;
  background-color: #fff;
  height: 11.5em;
  position: relative;
}
.course-item:nth-child(n+3) {
  margin-top: 1.25em;
}
.course-item:last-child h3 {
  color: #333;
}
.course-item:last-child .price {
  color: #333;
}
.course-item:last-child .cart-btn {
  background-color: #646464;
}
@media screen and (max-width: 768px) {
  .course-item {
    width: 100%;
    height: 15.5em;
  }
  .course-item:nth-child(n+2) {
    margin-top: 1.25em;
  }
}
.course-item-block {
  display: flex;
  justify-content: flex-start;
}
.course-item-block-img {
  width: 24%;
  margin-right: 4%;
}
.course-item-block-img img {
  width: 100%;
}
.course-item-block-title {
  width: 72%;
}
.course-item-txt {
  font-size: 0.9em;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .course-item-txt {
    font-size: 1em;
    text-align: justify;
  }
}
.course-item-txt p {
  line-height: 1.4;
}

.course-item h3 {
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 0.3em;
  text-align: left;
  color: #e57200;
}
@media screen and (max-width: 768px) {
  .course-item h3 {
    margin-bottom: 0;
  }
}

.price {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #e57200;
}
.price span {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .price {
    text-align: left;
  }
}

.discount {
  color: #ff0000;
  margin-bottom: 15px;
}

.cart-btn {
  font-size: 1em;
  width: 90%;
  padding: 1em 0.2em;
  background: #e57200;
  color: #fff !important;
  border: none;
  border-radius: 0.3125em;
  cursor: pointer;
  position: absolute;
  bottom: 0.9em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transition-duration: 0.3s;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cart-btn {
    padding: 0.7em 0;
    font-size: 1.2em;
  }
}
.cart-btn:hover {
  opacity: 0.6;
  color: #fff;
}

#dvProductDetailArea #detailImage {
  width: 52.5%;
}
#dvProductDetailArea #detailImage .mainImage #zoomPicture {
  width: 100%;
}
#dvProductDetailArea #detailOne {
  width: 41.3%;
}
#dvProductDetailArea #detailOne .productSellInfo {
  margin-top: 2em;
}

#dvProductDescription p {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .wrap-product-detail header h1 {
    font-size: 1.5em;
    font-weight: bold;
  }
  .wrap-product-detail .product-info {
    display: none;
  }
  .wrap-product-detail #ctl00_ContentPlaceHolder1_ddlVariationSelect {
    display: none;
  }
  #ctl00_ContentPlaceHolder1_ctl00_upUpdatePanel {
    display: none;
  }
  .wrap-product-desc {
    margin: 3em 0;
  }
}/*# sourceMappingURL=productDetail.css.map */