@keyframes open_btn01 {
  0% {
    transform: translateY(20px) rotate(45deg);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes open_btn02 {
  0% {
    transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes open_btn01_on {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(20px) rotate(45deg);
  }
}
@keyframes open_btn02_on {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(-20px) rotate(-45deg);
  }
}
.hd {
  background: #FFF;
  width: 100%;
  padding: 10px 20px;
  position: fixed;
  top: 29px;
  left: 0;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  z-index: 100;
}
.hd .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-logo a {
  display: block;
  width: 216px;
}
.hd-right .open-btn {
  display: none;
  width: 50px;
  height: 56px;
  position: absolute;
  top: 0;
  right: 0;
}
.hd-right .open-btn span {
  display: block;
  background: #222;
  width: 24px;
  height: 2px;
  margin: -1px 0 0 -13px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease-in-out 0s;
}
.hd-right .open-btn span::before, .hd-right .open-btn span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  position: absolute;
  background: #222;
  top: 0;
  left: 0;
}
.hd-right .open-btn span::before {
  margin-top: -8px;
  animation: open_btn01 0.75s forwards;
}
.hd-right .open-btn span::after {
  margin-top: 8px;
  animation: open_btn02 0.75s forwards;
}
.hd-right .open-btn.on span {
  background: transparent;
}
.hd-right .open-btn.on span::before {
  margin-top: -20px;
  animation: open_btn01_on 0.75s forwards;
}
.hd-right .open-btn.on span::after {
  margin-top: 20px;
  animation: open_btn02_on 0.75s forwards;
}
@media only screen and (min-width: 961px) {
  .hd-open {
    display: block !important;
  }
}
.hd-open > div {
  display: flex;
  align-items: center;
}
.hd-open .hd-right__menu {
  display: flex;
  gap: 20px;
}
.hd-open .hd-right__menu > li > a {
  padding: 6px 0;
  position: relative;
  font-size: 12px;
  font-weight: 600;
}
.hd-open .hd-right__menu > li > a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -16px;
}
.hd-open .hd-right__menu > li > a:hover {
  color: #0F8EFF;
}
.hd-open .hd-right__menu > li:last-child {
  border-left: #E5E5E5 1px solid;
}
.hd-open .hd-right__menu > li:last-child > a {
  padding-right: 20px;
  padding-left: 20px;
}
.hd-open .hd-right__menu > li .inr {
  display: none;
  background: white;
  width: 100vw;
  padding: 0 20px;
  overflow: hidden;
  position: absolute;
  top: 57px;
  left: 0;
  border-bottom: #E5E5E5 1px solid;
}
.hd-open .hd-right__menu > li .inr::before {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  position: absolute;
  background: #F8F8F8;
  left: 0;
  top: 0;
}
.hd-open .hd-right__menu > li .inr::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background: #F8F8F8;
  left: 0;
  top: -2px;
}
.hd-open .hd-right__menu > li .inr > div {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hd-open .hd-right__menu > li .inr .tit {
  background: #F8F8F8;
  padding: 40px 20px 40px 0;
  width: 320px;
}
.hd-open .hd-right__menu > li .inr .tit p {
  margin-bottom: 30px;
}
.hd-open .hd-right__menu > li .inr .tit p span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.hd-open .hd-right__menu > li .inr .tit .btn:hover {
  background-color: white;
  border-color: #0F8EFF;
}
.hd-open .hd-right__menu > li .inr .list {
  background: white;
  flex: 1;
  padding: 40px 0 40px 30px;
}
.hd-open .hd-right__menu > li .inr .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}
.hd-open .hd-right__menu > li .inr .list ul li {
  width: calc((100% - 120px) / 3);
  border-bottom: #E5E5E5 1px solid;
}
.hd-open .hd-right__menu > li .inr .list ul li.sp-menu {
  display: none;
}
.hd-open .hd-right__menu > li .inr .list ul li a {
  display: block;
  background: url(../../img/include/public-common/icon_arrow01.svg) no-repeat right center/12px;
  padding-bottom: 8px;
  padding-right: 20px;
}
.hd-open .hd-right__menu > li .inr .list ul li a.blank {
  background: url(../../img/include/public-common/icon_blank01.svg) no-repeat right center/12px;
}
.hd-open .hd-right__menu > li .inr .list ul li a:hover {
  color: #0F8EFF;
}
.hd-open .btn-area {
  display: flex;
  gap: 10px;
}
.hd-open .btn-area .btn {
  background: white;
  padding: 6px 16px;
  color: #0F8EFF;
  border-color: #0F8EFF;
}
.hd-open .btn-area .btn:hover {
  background: #F8F8F8;
}
.hd-open .btn-area .btn-blue, .hd-open .btn-area .btn-cart {
  background: #0F8EFF;
  color: white;
}
.hd-open .btn-area .btn-blue:hover, .hd-open .btn-area .btn-cart:hover {
  background: #0080F2;
}
.hd-open .btn-area .btn-cart {
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
}
.hd-open .btn-area .btn-cart img {
  display: block;
  width: 16px;
}
.hd-open .btn-area .btn-cart span {
  display: block;
  background: #FF0008;
  min-width: 12px;
  height: 12px;
  position: absolute;
  top: 6px;
  right: 12px;
  color: white;
  font-size: 10px;
  text-align: center;
  line-height: 12px;
  border-radius: 100px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 960px) {
  .hd {
    height: 56px;
    padding-top: 14px;
    padding-bottom: 0;
  }
  .hd .flex {
    display: block;
  }
  .hd-logo a {
    width: 160px;
  }
  .hd-right .open-btn {
    display: block;
  }
  .hd-open {
    display: none;
    width: 100%;
    max-height: calc(100vh - 85px);
    overflow: hidden;
    position: absolute;
    top: 56px;
    left: 0;
    overflow-y: scroll;
    border-top: #E5E5E5 1px solid;
  }
  .hd-open > div {
    background: white;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: #E5E5E5 1px solid;
  }
  .hd-open .hd-right__menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
  }
  .hd-open .hd-right__menu > li {
    width: 100%;
  }
  .hd-open .hd-right__menu > li.no-open a::before, .hd-open .hd-right__menu > li.no-open a::after {
    display: none;
  }
  .hd-open .hd-right__menu > li > a {
    display: block;
    background: white;
    padding: 16px 20px;
    border-bottom: #E5E5E5 1px solid;
  }
  .hd-open .hd-right__menu > li > a::before, .hd-open .hd-right__menu > li > a::after {
    background: #0F8EFF;
  }
  .hd-open .hd-right__menu > li > a::before {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 17px;
    bottom: auto;
    left: auto;
  }
  .hd-open .hd-right__menu > li > a::after {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 24px;
  }
  .hd-open .hd-right__menu > li.on a::after {
    display: none;
  }
  .hd-open .hd-right__menu > li .inr {
    padding: 0;
    position: static;
    border-bottom: none;
  }
  .hd-open .hd-right__menu > li .inr::before {
    display: none;
  }
  .hd-open .hd-right__menu > li .inr::after {
    display: none;
  }
  .hd-open .hd-right__menu > li .inr > div {
    flex-wrap: wrap;
  }
  .hd-open .hd-right__menu > li .inr .tit {
    display: none;
  }
  .hd-open .hd-right__menu > li .inr .list {
    flex: 1;
    padding: 0;
  }
  .hd-open .hd-right__menu > li .inr .list ul {
    gap: 0;
  }
  .hd-open .hd-right__menu > li .inr .list ul li {
    width: 100%;
  }
  .hd-open .hd-right__menu > li .inr .list ul li.sp-menu {
    display: block;
  }
  .hd-open .hd-right__menu > li .inr .list ul li a {
    background-color: #F8F8F8 !important;
    background-position: right 20px center !important;
    padding: 16px 30px 16px 20px;
    font-size: 12px;
  }
  .hd-open .btn-area {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 769px) {
  .hd {
    top: 0;
  }
  .hd-open {
    max-height: calc(100vh - 56px);
  }
}

.security_ft {
  background: #f2f3f4;
  padding: 0 10px;
}
.security_ft .wrap {
  max-width: 1040px;
  padding: 20px 0 40px;
  margin: 0 auto;
}
.security_ft .security__logo {
  display: block;
  width: 200px;
  margin: 0 auto 14px;
}
.security_ft .seal_gmo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.security_ft #csi_siteseal_tag,
.security_ft #brs_siteseal_tag {
  display: block;
  width: 100px;
  margin-left: 10px;
}
@media only screen and (min-width: 769px) {
  .security_ft {
    background: white;
  }
  .security_ft .security__logo {
    margin: 0 0 14px 10px;
  }
}

.support {
  background: #F8F8F8;
  padding: 0 20px;
}
.support .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 0;
}
.support .sec-txt {
    font-size: 18px;
    font-weight: 700;
}
.support ul {
  display: flex;
  align-items: center;
  border-right: #E5E5E5 1px solid;
}
.support ul li {
  width: 25%;
  padding: 0 10px;
  text-align: center;
  border-left: #E5E5E5 1px solid;
}
.support ul li .tit {
  margin-bottom: 8px;
  font-size: 12px;
}
.support ul li .btn {
  margin: 0 auto;
}
.support ul li .btn:hover {
  background-color: white;
  border-color: #0F8EFF;
}
@media only screen and (max-width: 960px) {
  .support .wrap {
    padding: 40px 0 60px;
  }
  .support .sec-txt {
    font-size: 16px;
  }
  .support ul {
    flex-wrap: wrap;
    border-right: none;
  }
  .support ul li {
    width: 50%;
    padding: 20px 10px;
  }
  .support ul li:nth-child(odd) {
    border-left: none;
  }
  .support ul li:nth-child(n+3) {
    border-top: #E5E5E5 1px solid;
  }
}

@media only screen and (max-width: 500px) {
  .support ul li {
    width: 100%;
    border-left: none;
  }
  .support ul li:not(:first-child) {
    border-top: #E5E5E5 1px solid;
  }
}

.ft {
  background: #F8F8F8;
  border-top: #E5E5E5 1px solid;
}
.ft-top {
  padding: 0 20px;
  border-bottom: #E5E5E5 1px solid;
}
.ft-top .wrap {
  display: flex;
  gap: 140px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 0 60px;
}
.ft-top .txt {
  width: 200px;
}
.ft-top .txt > a {
  display: block;
}
.ft-top__sns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 60px;
}
.ft-top__sns li a {
  display: block;
  width: 20px;
}
.ft-top__sns li a:hover {
  opacity: 0.8;
}
.ft-top__submenu li:not(:first-child) {
  margin-top: 8px;
}
.ft-top__submenu li a {
  font-size: 12px;
}
.ft-top__submenu li a:hover {
  color: #0F8EFF;
}
.ft-top__menu {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
}
.ft-top__menu > div {
  width: calc((100% - 240px) / 3);
}
.ft-top__menu > div > a {
  display: table;
  margin-bottom: 18px;
  font-weight: 600;
}
.ft-top__menu > div > a:hover {
  color: #0F8EFF;
}
.ft-top__menu > div > a:not(:first-of-type) {
  margin-top: 40px;
}
.ft-top__menu > div .tit {
  margin-bottom: 18px;
  margin-top: 40px;
  font-weight: 600;
  color: #666;
}
.ft-top__menu > div ul li:not(:first-child) {
  margin-top: 8px;
}
.ft-top__menu > div ul li a {
  font-size: 12px;
  color: #666;
}
.ft-top__menu > div ul li a:hover {
  color: #222;
}
.ft-btm {
  padding: 40px 0;
}
.ft-btm p {
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  .ft-top .wrap {
    gap: 100px;
  }
  .ft-top__menu {
    gap: 80px;
  }
}
@media only screen and (max-width: 960px) {
  .ft-top {
    padding: 0;
    border-top: none;
  }
  .ft-top .wrap {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 0;
    padding: 100px 0 0;
    position: relative;
  }
  .ft-top .txt {
    width: 100%;
  }
  .ft-top .txt > a {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 250px;
  }
  .ft-top__sns {
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
  }
  .ft-top__submenu {
    background: #E5E5E5;
    display: flex;
    flex-wrap: wrap;
  }
  .ft-top__submenu li {
    width: 50%;
    text-align: center;
    border-top: white 1px solid;
  }
  .ft-top__submenu li:not(:first-child) {
    margin-top: 0;
  }
  .ft-top__submenu li:nth-child(even) {
    border-left: white 1px solid;
  }
  .ft-top__submenu li a {
    display: block;
    padding: 12px 10px;
  }
  .ft-top__menu {
    gap: 0;
    border-top: #E5E5E5 1px solid;
    max-width: 90%;
    margin: auto;
  }
  .ft-top__menu > div {
    width: 100%;
  }
  .ft-top__menu > div > a {
    position: relative;
    display: block;
    padding: 12px 20px;
    margin-bottom: 0;
    border-bottom: #E5E5E5 1px solid;
  }
  .ft-top__menu > div > a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../../img/top/icon_arrow03.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
  }
  .ft-top__menu > div > a:not(:first-of-type) {
    margin-top: 0;
  }
  .ft-top__menu > div .tit {
    display: none;
  }
  .ft-top__menu > div ul {
    display: none;
  }
  .ft-top__menu > div ul.other-menu {
    display: block;
  }
  .ft-top__menu > div ul.other-menu li {
    margin-top: 0;
    border-bottom: #E5E5E5 1px solid;
  }
  .ft-top__menu > div ul.other-menu li a {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    padding: 12px 20px;
  }
  .ft-top__menu > div ul.other-menu li a:hover {
    color: #0F8EFF;
  }
  .ft-btm {
    padding: 28px 0;
  }
}/*# sourceMappingURL=public-common.css.map */
