@charset "utf-8";

/*-----------------------------------------------------------
	layout
-----------------------------------------------------------*/
#container {
  min-width: 1280px;
}

#container > #global-header {
}

#container > #contents {
}

#container > #contents > #main-content {
  margin-top: 143px;
}

@media screen and (max-width: 768px) {
  #container > #contents > #main-content {
    margin-top: 0px;
  }
}

#container > #global-footer .site {
  width: 1200px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 2s;
}

@media screen and (max-width: 768px) {
  #container {
    padding-top: 60px;
    min-width: 0;
  }

  #container > #global-header {
  }

  #container > #contents {
  }

  #container > #contents > #main-content {
  }

  #container > #global-footer .site {
    width: auto;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s;
  }
}

/*-----------------------------------------------------------
	loading
-----------------------------------------------------------*/

.loader-wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 80%;
  width: 1.1em;
  height: 1.2em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load 1.8s infinite ease-in-out;
  animation: load 1.8s infinite ease-in-out;
}

.loader {
  color: #761d3d;
  font-size: 14px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/*-----------------------------------------------------------
	header
-----------------------------------------------------------*/
#global-header > .wrap.hideClass {
  transform: translateY(-150px);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #global-header > .wrap.hideClass {
    transform: translateY(-80px);
    opacity: 0;
  }
}

#global-header {
  position: relative;
}

#global-header::before {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  z-index: 101;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#global-header.is-dropdown-open::before {
  opacity: 1;
}

#global-header > .wrap {
  position: fixed;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-width: 1240px;
  height: 143px;
  overflow: hidden;
  transform: translateY(0);
  transition: height 0.5s ease, transform 0.5s ease-in, opacity 0.5s ease-in;
}

#global-header.is-dropdown-open > .wrap {
  height: 100vh;
}

#global-header > .wrap:after {
  display: block;
  content: "";
  clear: both;
}

#global-header .logo {
  margin: 0;
  padding: 18px 20px;
  line-height: 1;
  position: absolute;
  z-index: 1;
}

#global-header .logo img {
  vertical-align: top;
}

#global-header .navi {
  /* float: right; */
  position: relative;
  top: 0;
  padding: 24px 0 0;
  border-bottom: 1px solid #ececec;
  background-color: #fff;
}

#global-header .navi .site {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  /* float: right; */
}

#global-header .navi .site:after {
  display: block;
  content: "";
  clear: both;
}

#global-header .site a {
  color: #333;
  font-size: 0.9375rem;
  text-decoration: none;
  line-height: 48px;
}

#global-header .site ul {
  margin: 0;
  padding: 0 36px;
  list-style: none;
  /* float: left; */
}

#global-header .links li {
  margin-right: 30px;
  display: inline-block;
}

#global-header .links a:hover {
  color: #761d3d;
}

#global-header .control {
  overflow: hidden;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

#global-header .control li {
  display: inline-block;
  /* float: left; */
}

#global-header .control a {
  display: block;
  padding: 0 20px;
  transition: opacity 0.3s ease-out;
}

#global-header .control a span {
  display: inline-block;
  padding-left: 30px;
  background: left center no-repeat transparent;
  background-size: auto 20px;
}

#global-header .control .login a {
  padding: 0 0 0 20px;
}

#global-header .control .login a span {
  position: relative;
  padding-left: 0;
}

#global-header .control .login a span::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 20px;
  background: url(/shared/images/icon_user.png) center center / 20px no-repeat;
  transform: translateY(-50%);
  content: "";
}

#global-header .control .diagonal {
  margin-right: 10px;
  margin-left: 3px;
  color: rgb(49, 55, 62, 0.4);
}

#global-header .control .signup a {
  padding: 0 24px 0 0;
}

#global-header .control .signup a span {
  position: relative;
  padding-left: 0;
}

#global-header .control .login a span::after,
#global-header .control .signup a span::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #31373e;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease;
  content: "";
}

#global-header .control .trial {
  border-bottom: none;
}

#global-header .control .trial a {
  color: #fff;
  background-color: #f86f0c;
  transition: all 0.3s ease;
}
#global-header .control .trial a span {
  background: url(/shared/images/icon_wine_white.svg) left center / 24px no-repeat;
}

#global-header .control .tel a {
  width: 48px;
  height: 48px;
  padding: 0;
  background: url(/shared/images/icon_tel.png) center center no-repeat transparent;
  background-size: auto 22px;
  background-color: #31373e;
}

#global-header .control .tel a span {
  display: none;
}

#global-header .control .sp-menu-button,
#global-header .sp-menu {
  display: none;
}

#global-header .tel-popup {
  display: none;
}

@media screen and (min-width: 769px) {
  #global-header .control .login a:hover span::after,
  #global-header .control .signup a:hover span::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  #global-header .control .trial a:hover {
    background-color: #e36d17;
  }

  #global-header .control .tel {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* background-color: #fff; */
    z-index: 1000;
  }

  #global-header > .wrap {
    height: auto;
    overflow: visible;
    min-width: 0;
  }

  #global-header .logo {
    padding: 5px 6px;
  }

  #global-header .logo img {
    width: auto;
    height: 50px;
  }

  #global-header .navi {
    padding: 0;
    border-bottom: none;
  }

  #global-header .navi .site .links {
    display: none;
  }

  #global-header .site ul {
    padding: 0;
  }

  #global-header .control {
    column-gap: 0;
  }

  #global-header .navi .site .control .login,
  #global-header .navi .site .control .diagonal,
  #global-header .navi .site .control .signup,
  #global-header .navi .site .control .trial {
    display: none;
  }

  #global-header .control .sp-menu-button {
    display: block;
  }

  #global-header .control .tel a {
    width: 60px;
    height: 60px;
    padding: 0;
    background-size: auto 25px;
  }

  #global-header .control .sp-menu-button a {
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    color: #31373e;
    line-height: 1;
    text-align: center;
    background-color: #e7e6cc;
    position: relative;
  }

  #global-header .control .sp-menu-button a span {
    display: inline-block;
    padding: 0;
    padding-top: 37px;
    font-size: 11px;
    line-height: 1;
  }

  #global-header .control .sp-menu-button a i,
  #global-header .control .sp-menu-button a i:before,
  #global-header .control .sp-menu-button a i:after {
    display: block;
    position: absolute;
    left: 50%;
    width: 21px;
    height: 1px;
    background-color: #9fa093;
    transition: all 0.2s ease-out;
  }

  #global-header .control .sp-menu-button a i {
    top: 22px;
    transform: translateX(-50%);
  }

  #global-header .control .sp-menu-button a i:before,
  #global-header .control .sp-menu-button a i:after {
    content: "";
    left: 0;
  }

  #global-header .control .sp-menu-button a i:before {
    margin-top: -6px;
  }

  #global-header .control .sp-menu-button a i:after {
    margin-top: 6px;
  }

  #global-header .control .sp-menu-button.open a i {
    background-color: rgba(159, 160, 147, 0);
  }

  #global-header .control .sp-menu-button.open a i:before,
  #global-header .control .sp-menu-button.open a i:after {
    width: 30px;
    left: -4px;
  }

  #global-header .control .sp-menu-button.open a i:before {
    transform: rotate(-405deg);
    margin-top: 0px;
  }

  #global-header .control .sp-menu-button.open a i:after {
    transform: rotate(405deg);
    margin-top: 0px;
  }

  #global-header .sp-menu {
    display: block;
    position: absolute;
    left: 100%;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: left 0.3s ease-out;
  }

  #global-header .sp-menu.open {
    left: 0;
  }

  #global-header .sp-menu > .wrap {
    max-height: calc(100vh - 60px);
    overflow: auto;
  }

  .sp-menu .menu-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
    margin: 0;
    padding: 27px 28px 30px;
    background-color: #e7e6cc;
    list-style: none;
  }
  .sp-menu .menu-buttons li.online {
    width: 100%;
  }
  .sp-menu .menu-buttons li {
    width: 47.761194%;
  }

  .sp-menu .menu-buttons li.trial {
    width: 100%;
    border-bottom: none;
  }

  .sp-menu .menu-buttons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    color: #31373e;
    text-decoration: none;
    background-color: #fff;
  }

  .sp-menu .menu-buttons li.trial a {
    height: 56px;
    color: #fff;
    background-color: #f86f0c;
  }

  .sp-menu .menu-buttons li.trial a span {
    position: relative;
    padding-left: 37px;
  }

  .sp-menu .menu-buttons li.trial a span::after {
    position: absolute;
    top: 50%;
    left: 9px;
    width: 24px;
    height: 24px;
    background: url(/shared/images/icon_wine_white.svg) left center / 24px no-repeat;
    content: "";
    transform: translateY(-50%);
  }

  .sp-menu .menu-buttons li a span {
    display: inline-block;
  }

  .sp-menu .menu-items {
    /* border-top: 1px solid #e1e3e5; */
  }

  .sp-menu .menu-items ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  .sp-menu .menu-items > ul > li {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #e1e3e5;
  }

  .sp-menu .menu-items > ul > li > a {
    display: block;
    padding: 16px 20px;
    color: #31373e;
    font-size: 1em;
    text-decoration: none;
  }

  .sp-menu .menu-items ul.accordion li {
    width: 100%;
  }

  .sp-menu .menu-items ul.accordion > li > a {
    position: relative;
  }

  .sp-menu .menu-items ul.accordion > li > a:before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 11px;
    background: url(/shared/images/header_arrow.svg) center center / 16px no-repeat;
    content: "";
    transform: translateY(-50%);
  }

  .sp-menu .menu-items ul.accordion > li > a.open:before {
    transform: translateY(-50%) rotate(-180deg);
  }

  .sp-menu .menu-items ul.accordion ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 1px;
    padding: 0 20px 29px;
  }

  .sp-menu .menu-items ul.accordion ul li a {
    position: relative;
    padding-left: 18px;
    font-size: 0.875em;
    color: #31373e;
    text-decoration: none;
  }

  .sp-menu .menu-items ul.accordion ul li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 1px;
    background-color: #761d3d;
    transform: translateY(-50%);
    content: "";
  }

  .sp-menu .menu-items ul.accordion ul li:last-child {
    border-bottom: 0;
  }

  .sp-menu .menu-items > ul.bottom {
    margin: 17px 0;
  }

  .sp-menu .menu-items > ul.bottom > li {
    border-bottom: none;
  }

  .sp-menu .menu-items > ul.bottom > li > a {
    display: block;
    padding: 4px 20px;
    color: #31373e;
    font-size: 0.875em;
  }

  #global-header .tel-popup {
    display: none;
    position: absolute;
    top: 76px;
    right: 15px;
    color: #fff;
    background-color: #31373e;
    opacity: 0.96;
    z-index: 10;
  }

  #global-header .tel-popup:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-width: 10px 6px;
    border-bottom-color: #31373e;
    position: absolute;
    right: 66px;
    bottom: 100%;
    opacity: 0.96;
    transform: none;
  }

  #global-header .tel-popup a {
    color: #fff;
    text-decoration: none;
  }

  #global-header .tel-popup dl {
    display: block;
    margin: 0;
    min-width: 220px;
    padding: 16px 24px;
    overflow: hidden;
  }

  #global-header .tel-popup dl dt,
  #global-header .tel-popup dl dd {
    display: block;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    float: left;
    white-space: nowrap;
    text-align: right;
  }

  #global-header .tel-popup dl dt {
    clear: left;
    width: 4em;
    font-weight: normal;
    font-size: 0.9375rem;
    text-align: right;
  }

  #global-header .tel-popup dl dd {
    padding-left: 0.75em;
    font-size: 1.25rem;
  }
}

/*-----------------------------------------------------------
	dropdown menu
-----------------------------------------------------------*/
#dropdown-menu {
  position: relative;
  /* height: calc(100vh - 142px); */
  /* background-color: rgba(0, 0, 0, 0.25); */
}

#dropdown-menu::after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  content: "";
  transition: height 0.5s ease;
  z-index: -1;
}

#dropdown-menu:has(#dropdown-about.is-active)::after {
  height: 331px;
}

#dropdown-menu:has(#dropdown-course.is-active)::after {
  height: 541.81px;
}

#dropdown-menu .menu {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  /* background-color: #fff; */
  opacity: 0;
  visibility: hidden;
}

#dropdown-menu .menu.is-active {
  opacity: 1;
  visibility: visible;
}

#dropdown-menu .menu-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 20px 74px;
  opacity: 0;
  transition: opacity 0.2s ease 0.15s;
}

#dropdown-menu .menu.is-active .menu-wrap {
  opacity: 1;
}

#dropdown-menu .menu-wrap > a,
#dropdown-menu .menu-wrap > p {
  position: relative;
  padding-right: 40px;
  font-size: 1.5em;
  color: #31373e;
  text-decoration: none;
}
#dropdown-menu .menu-wrap > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background: url(/shared/images/header_arrow_menu.svg) center center / 20px no-repeat;
  content: "";
  transform: translateY(-50%);
  transition: all 0.2s ease;
}
#dropdown-menu .menu-wrap > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin: 29px auto 0;
  padding: 0;
  list-style: none;
}
#dropdown-menu .menu-wrap > ul:has(figure) {
  gap: 40px 32px;
  margin: 50px auto 0;
}
#dropdown-menu .menu-wrap > ul li {
  width: calc(100% / 3 - 22px);
}
#dropdown-menu .menu-wrap > ul li a {
  display: block;
  width: 100%;
  font-size: 1em;
  color: #31373e;
  text-decoration: none;
  border-bottom: 1px solid #ececec;
  transition: all 0.3s ease;
}
#dropdown-menu .menu-wrap > ul li a figure {
  overflow: hidden;
}
#dropdown-menu .menu-wrap > ul li a img {
  width: 100%;
  transition: transform 0.3s ease;
}
#dropdown-menu .menu-wrap > ul li a span {
  position: relative;
  display: block;
  padding: 17px 0;
}
#dropdown-menu .menu-wrap > ul li a span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background: url(/shared/images/header_arrow_menu.svg) center center / 16px no-repeat;
  content: "";
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

@media screen and (min-width: 769px) {
  #dropdown-menu .menu-wrap > a:hover,
  #dropdown-menu .menu-wrap > ul li a:hover {
    color: #761d3d;
  }

  #dropdown-menu .menu-wrap > a:hover::after {
    background: url(/shared/images/header_arrow_menu_red.svg) center center / 20px no-repeat;
  }

  #dropdown-menu .menu-wrap > ul li a:hover span::after {
    background: url(/shared/images/header_arrow_menu_red.svg) center center / 16px no-repeat;
  }

  #dropdown-menu .menu-wrap > ul li a:hover img {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 768px) {
  #dropdown-menu {
    display: none;
  }
}

/*-----------------------------------------------------------
	global navi
-----------------------------------------------------------*/
#global-navi {
}

#global-navi ul {
  margin: 0;
  padding: 0;
  padding: 0 36px;
  list-style: none;
  text-align: right;

  display: flex;
  justify-content: flex-end;
  column-gap: 38px;
}

#global-navi ul li {
  display: inline-block;
}

#global-navi ul li.has-menu a {
  position: relative;
  padding-right: 19px;
}

#global-navi ul li.has-menu a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 8px;
  background: url(/shared/images/header_arrow.svg) center center / 12px no-repeat;
  content: "";
  transform: translateY(-50%);
}

#global-navi ul li a {
  display: block;
  color: #333;
  font-size: 0.9375rem;
  line-height: 70px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

#global-navi ul li a:after {
  display: block;
  content: "";
  width: 5%;
  height: 2px;
  background-color: #761d3d;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition: width 0.25s ease-out;
}

#global-navi ul li.current a:after,
#global-navi ul li a:hover:after {
  width: 100%;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  #global-navi ul li a:hover {
    color: #761d3d;
  }
}

@media screen and (max-width: 768px) {
  #global-navi {
    display: none;
  }
}

/*-----------------------------------------------------------
	footer
-----------------------------------------------------------*/
#global-footer {
  color: #fff;
  background-color: #31373e;
}

#global-footer .site {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 140px;
}

#global-footer .site .info {
  width: 327px;
  box-sizing: border-box;
  border-right: 1px solid #5a5f65;
}

#global-footer .site .sitemap {
  width: 873px;
  padding-left: 97px;
  box-sizing: border-box;
}

#global-footer .info .sns {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

#global-footer .info .sns li {
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
}

#global-footer .info .sns li + li {
  margin-left: 25px;
}

#global-footer .info .control {
  display: flex;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
}

#global-footer .info .control li a {
  color: #fff;
  font-size: 0.9375rem;
  text-decoration: none;
}

#global-footer .info .login a {
  padding: 0 0 0 29px;
}

#global-footer .info .login a span {
  position: relative;
  padding-left: 0;
}

#global-footer .info .login a span::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 20px;
  background: url(/shared/images/icon_user_gray.png) center center / 20px no-repeat;
  transform: translateY(-50%);
  content: "";
}

#global-footer .info .diagonal {
  padding: 0 10px;
  color: rgb(255, 255, 255, 0.3);
}

#global-footer .info .signup a {
  padding: 0 24px 0 0;
}

#global-footer .info .signup a span {
  position: relative;
  padding-left: 0;
}

#global-footer .info .login a span::after,
#global-footer .info .signup a span::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #31373e;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease;
  content: "";
}

#global-footer .info .trial {
  border-bottom: none;
  margin: 22px 0 0;
}

#global-footer .info .trial a {
  display: block;
  width: 223px;
  padding: 0 30px;
  color: #fff;
  background-color: #f86f0c;
  transition: all 0.3s ease;
  line-height: 56px;
  text-decoration: none;
  box-sizing: border-box;
}

#global-footer .info .trial a span {
  display: inline-block;
  padding-left: 30px;
  background: url(/shared/images/icon_wine_white.svg) left center / 24px no-repeat;
}

#global-footer .sitemap {
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

#global-footer .sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#global-footer .sitemap ul + ul {
  margin-left: 80px;
}

#global-footer .sitemap > ul {
  float: left;
  font-size: 0.875em;
  line-height: 2.8;
}

#global-footer .sitemap ul ul {
  font-size: 0.92857em;
  line-height: 2.15;
  opacity: 0.6;
}

#global-footer .sitemap a {
  color: #fff;
  text-decoration: none;
}

#global-footer .sitemap a:hover {
  text-decoration: underline;
}

#global-footer .logo img {
  width: 191px;
  height: auto;
}

#global-footer .lower {
  background-color: #121212;
}

#global-footer .lower .lower-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

#global-footer .legal {
  display: flex;
  column-gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#global-footer .legal li a {
  text-decoration: none;
  font-size: 0.8125em;
  color: rgb(255, 255, 255, 0.6);
}

#global-footer .copy {
  clear: both;
  margin: 0;
  font-size: 0.75rem;
  line-height: 60px;
  text-align: center;
}

#global-footer .copy small {
  font-size: 1em;
}

@media screen and (min-width: 769px) {
  #global-footer .info .login a:hover,
  #global-footer .info .signup a span:hover {
    text-decoration: underline;
  }

  #global-footer .info .trial a:hover {
    background-color: #e36d17;
  }
}

@media screen and (max-width: 768px) {
  #global-footer .site {
    display: block;
    padding: 27px 0;
  }

  #global-footer .site .info {
    width: auto;
    border-right: 0;
    text-align: center;
  }

  #global-footer .site .sitemap {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 32px 0 0;
    padding: 0 16px 11px;
  }

  #global-footer .site .sitemap ul + ul {
    margin-top: 13px;
  }

  #global-footer .site .sitemap > ul:nth-child(4) {
    margin-top: 0;
  }

  #global-footer .site .sitemap > ul:nth-child(3),
  #global-footer .site .sitemap > ul:nth-child(4) {
    display: flex;
    flex-wrap: wrap;
  }

  #global-footer .site .sitemap > ul:nth-child(3) li,
  #global-footer .site .sitemap > ul:nth-child(4) li {
    width: 50%;
  }

  #global-footer .site .sitemap ul li ul {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    margin-top: 4px;
  }

  #global-footer .site .sitemap > ul:first-child,
  #global-footer .site .sitemap > ul:nth-child(2) {
    width: 100%;
  }

  #global-footer .sitemap ul + ul {
    margin-left: 0;
  }

  #global-footer .logo img {
    width: 191px;
    height: auto;
  }

  #global-footer .info .sns {
    margin-top: 27px;
  }

  #global-footer .info .sns li + li {
    margin-left: 50px;
  }

  #global-footer .info .control {
    margin: 38px 0 0;
    justify-content: center;
  }

  #global-footer .info .control li a {
    font-size: 0.875em;
  }

  #global-footer .info .signup a {
    padding: 0;
  }

  #global-footer .info .trial {
    display: flex;
    justify-content: center;
    margin: 17px 0 0;
  }

  #global-footer .info .trial a {
    width: 210px;
    padding: 0;
  }

  #global-footer .lower .lower-wrap {
    flex-direction: column;
    align-items: unset;
    padding: 19px 16px 3px;
  }

  #global-footer .lower .lower-wrap .legal {
    flex-direction: column;
    row-gap: 9px;
  }

  #global-footer .copy {
    line-height: 57px;
  }

  .footer-sub-navi p {
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 0.875rem;
  }

  .footer-sub-navi ul {
    display: none;
    list-style: none;
    margin: 0;
    background: #40464f;
    font-size: 0.875rem;
  }

  .footer-sub-navi li {
    padding: 5px 10px;
    border-bottom: 1px solid #31373e;
  }

  .footer-sub-navi ul.open {
    display: block;
  }

  .footer-sub-navi a {
    color: #fff;
    text-decoration: none;
  }
}

/*-----------------------------------------------------------
	main
-----------------------------------------------------------*/
#contents {
  overflow: hidden;
}

.content-block {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.content-block > .main-block {
  width: 840px;
  /* background: #ccc; */
}

.content-block > .main-block:only-child {
  width: 100%;
}

.content-block > .sub-block {
  width: 300px;
  /* background: #ccc; */
}

.content-block.reverse {
  flex-flow: row-reverse;
}

/* SP */
@media screen and (max-width: 768px) {
  .content-block {
    display: block;
  }

  .content-block > .main-block,
  .content-block > .sub-block {
    width: 100%;
  }
}

/*---------------------	common parts ---------------------*/

/*-----------------------------------------------------------
	MV
-----------------------------------------------------------*/

.page-header {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 80px;
  position: relative;
}

.page-header:after {
  display: block;
  content: "";
  clear: both;
}

.page-header .page-ttl {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.page-header .page-ttl .sub-ttl {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.5em;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 0.85;
  text-align: center;
}

.page-header .page-ttl .title {
  margin: 0;
  color: #fff;
  font-size: 2.125em;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.page-header .subpage-mv {
  display: block;
  width: 96.5%;
  margin-bottom: 45px;
  float: right;
  max-width: 1350px;
}

.page-header .subpage-mv:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 26.666667%;
  background: right center no-repeat transparent;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.page-header .subpage-mv:after {
  display: block;
  content: "";
  position: absolute;
  width: 50%;
  height: calc(100% - 45px);
  top: 45px;
  left: 0;
  background-color: #f4f4f4;
}

@media screen and (max-width: 768px) {
  .page-header {
    margin: 0;
  }

  .page-header .page-ttl {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
  }

  .page-header .page-ttl .sub-ttl {
    margin-bottom: 10px;
    font-size: 1.25em;
  }

  .page-header .page-ttl .title {
    font-size: 1.5em;
  }

  .page-header .subpage-mv {
    width: 100%;
    margin-bottom: 0;
    float: none;
  }

  .page-header .subpage-mv:before {
    height: 125px;
    padding-top: 0;
    background-position: center center;
  }

  .page-header .subpage-mv:after {
    display: none;
  }
}

/*-----------------------------------------------------------
	catch style
-----------------------------------------------------------*/

.catch-main {
  font-weight: normal;
  font-size: 1.75rem;
  position: relative;
  width: 886px;
  margin: 20px auto 45px;
  padding: 10px 30px;
  line-height: 1.4;
  letter-spacing: -1px;
}

.catch-main:before {
  display: block;
  content: "";
  width: 20px;
  height: 75px;
  border-width: 1px 0 1px 1px;
  border-color: #31373e;
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.catch-main:after {
  display: block;
  content: "";
  width: 20px;
  height: 75px;
  border-width: 1px 1px 1px 0;
  border-color: #31373e;
  border-style: solid;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .catch-main {
    font-weight: normal;
    font-size: 1.25rem;
    position: relative;
    width: 85%;
    margin: 0px auto 20px;
    padding: 10px;
    letter-spacing: -1px;
  }

  .catch-main:before {
    display: block;
    content: "";
    width: 20px;
    height: 111px;
    border-width: 1px 0 1px 1px;
    border-color: #31373e;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .catch-main:after {
    display: block;
    content: "";
    width: 20px;
    height: 111px;
    border-width: 1px 1px 1px 0;
    border-color: #31373e;
    border-style: solid;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

/* Tablet */
@media screen and (max-width: 768px) and (min-width: 450px) {
  .page-header .subpage-mv:before {
    height: 200px;
  }
}

/*-----------------------------------------------------------
	breadcrumbs
-----------------------------------------------------------*/

.breadcrumbs {
  border-top: 1px solid #e1e3e5;
}

.breadcrumbs ol {
  width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  list-style: none;
}

.breadcrumbs ol li {
  display: inline-block;
  font-size: 0.875em;
  line-height: 1;
  vertical-align: middle;
  position: relative;
}

.breadcrumbs ol li + li {
  margin-left: 1em;
  padding-left: 2em;
}

.breadcrumbs ol li + li:before {
  display: block;
  content: "";
  width: 0.8em;
  height: 0;
  position: absolute;
  left: 0;
  top: 50%;
  border-top: 1px solid #31373e;
}

.breadcrumbs ol li a {
  color: #31373e;
  opacity: 0.4;
  text-decoration: none;
}

.breadcrumbs ol li a:hover {
  text-decoration: underline;
}

/* SP */
@media screen and (max-width: 768px) {
  .breadcrumbs ol {
    width: auto;
    padding: 6px 10px;
    overflow: scroll;
    white-space: nowrap;
  }

  .breadcrumbs ol li {
    font-size: 0.75em;
  }
}

/*-----------------------------------------------------------
	side bar - search
-----------------------------------------------------------*/

.search {
  padding: 30px 30px 40px;
  border-top: 2px solid #761d3d;
  background-color: #f4f4f4;
  color: #31373e;
  margin-bottom: 80px;
}

.search dl {
  margin-bottom: 20px;
}

.search dd {
  margin: 0;
}

.search dt {
  padding-left: 25px;
  margin-bottom: 5px;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}

.search .search-school {
  background: url(/shared/images/icon_point.png) no-repeat center left;
}

.search .search-gender {
  background: url(/instructor/images/side_icon03.png) no-repeat center left;
}

.search .search-purpose {
  background: url(/instructor/images/side_icon04.png) no-repeat center left;
}

.search .initial {
  background: url(/instructor/images/side_icon01.png) no-repeat center left;
}

.search .search-genre {
  background: url(/shared/images/icon_glass.png) no-repeat center left;
}

.search .search-course {
  background: url(/shared/images/icon_pen.png) no-repeat center left;
}

.search .search-level {
  background: url(/shared/images/icon_star.png) no-repeat top 7px left;
}

.search .search-category {
  background: url(/shared/images/icon_book2.png) no-repeat center left;
}

.search dd select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background-color: #fff;
  background-image: url(/instructor/images/side_arrow.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  vertical-align: middle;
  font-size: 15px;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px 12px;
  color: #31373e;
  width: 100%;
  border-radius: 0;
  border: 1px solid #fff;
  box-shadow: 0px 0px 14px rgba(54, 54, 54, 0.1);
  cursor: pointer;
}

.checkbox {
  margin-top: 10px;
}

.checkbox-input {
  display: none;
  padding-top: 10px;
}

.checkbox-parts {
  padding-left: 30px;
  position: relative;
  margin-right: 20px;
  display: block;
  font-size: 0.9375rem;
}

.checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 0px;
}

.checkbox-input:checked + .checkbox-parts {
  color: rgb(118, 29, 61);
}

.checkbox-input:checked + .checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid rgb(118, 29, 61);
  border-right: 2px solid rgb(118, 29, 61);
}

.checkbox span,
.checkbox-input {
  margin-bottom: 10px;
}

/* .search .btn-search{
	margin-top: 40px; 
}
.btn-search{
	width: 100%;
  text-align: center;
  background-color: #761d3d;
  color: #fff;
  padding: 15px 0;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.btn-search:hover{
	opacity: 0.8;
	transition: .2s ease-out;
}
.btn-search p{
	margin: 0 auto;
	width: 150px;
	padding: 0 30px;
	box-sizing: border-box;
	background:url(/shared/images/search_icon.png)no-repeat left center;
	font-size: 1.125rem;
}
.btn-search a{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
} */

/*---edit----*/
.search .btn-search {
  margin-top: 40px;
}

.btn-search {
  width: 100%;
  text-align: center;
  background-color: #761d3d;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.btn-search:hover {
  opacity: 0.8;
  transition: 0.2s ease-out;
}

.btn-search input {
  margin: 0 auto;
  display: block;
  color: #fff;
  width: 100%;
  padding: 15px 0px;
  box-sizing: border-box;
  border: 0;
  background: url(/shared/images/search_icon.png) no-repeat left 20px center;
  font-size: 1.125rem;
  cursor: pointer;
}

/*---edit----*/

@media screen and (max-width: 768px) {
  .search {
    border-top: none;
    padding: 20px 20px 30px;
    margin: 1px 0;
    display: none;
  }

  .search-ttl {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background-color: #f4f4f4;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    margin: 1px 0;
  }

  .search-ttl:before {
    display: block;
    content: "";
    position: absolute;
    top: 46%;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease-in;
    right: 20px;
    height: 12px;
    width: 12px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #761d3d;
  }

  .open:before {
    transform: translateY(-50%) rotate(-135deg);
    top: 35px;
  }

  .search dl {
    margin-bottom: 15px;
  }

  .search dt {
    font-size: 1rem;
    padding-left: 20px;
  }

  .search .search-school {
    background-size: 13px;
  }

  .search .search-gender {
    background-size: 13px;
  }

  .search .search-purpose {
    background-size: 12px;
  }

  .search .initial {
    background-size: 13px;
  }

  .search .search-genre {
    background-size: 10px;
  }

  .search .search-course {
    background-size: 16px;
  }

  /* .btn-search p {
    font-size: 1rem;
    letter-spacing: 1px;
	}
	.search .btn-search{
		margin-top: 30px; 
	}
	.btn-search{
		width: 85%;
		margin: 0 auto;
		text-align: center;
		background-color: #761d3d;
		color: #fff;
		padding: 15px 0;
		-webkit-font-smoothing: antialiased;
		position: relative;
	} */

  .btn-search {
    width: 60%;
    margin: 0 auto;
  }

  .btn-search:hover {
    opacity: 1;
  }
}

/*-----------------------------------------------------------
	btn parts
-----------------------------------------------------------*/
.btn-more {
  margin-top: 30px;
}

.btn-more p {
  border: 1px solid #31373e;
  text-align: center;
  width: 360px;
  margin: 0 auto;
}

.btn-more p a {
  display: block;
  width: 360px;
  padding: 17px 0;
  text-decoration: none;
  color: #31373e;
}

.btn-more p:hover {
  border-color: #761d3d;
}

.btn-more p:hover a {
  color: #761d3d;
}

@media only screen and (max-width: 768px) {
  .btn-more {
    margin-top: 30px;
  }

  .btn-more p {
    border: 1px solid #31373e;
    text-align: center;
    width: 85%;
    margin: 0 auto;
  }

  .btn-more p a {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    text-decoration: none;
    color: #31373e;
  }

  .btn-more p:hover {
    border-color: #761d3d;
  }

  .btn-more p:hover a {
    color: #761d3d;
  }
}

/*-----------------------------------------------------------
	profile style
-----------------------------------------------------------*/

.profile-list {
  display: inline-block;
  margin: 0;
  padding-bottom: 30px;
}

.profile-list > li {
  width: 250px;
  position: relative;
  margin-bottom: 75px;
  display: inline-block;
  vertical-align: top;
  padding-left: 40px;
}

.profile-list > li:nth-child(3n-2) {
  padding-left: 0px;
}

.profile-list > li:nth-child(3n + 4)::before {
  display: block;
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  background-color: #ccc;
  width: 840px;
  height: 1px;
  z-index: 100;
}

.profile-list > li a {
  display: block;
  text-decoration: none;
  color: #31373e;
}

.profile-list > li:hover .profile {
  opacity: 0.6;
  transition: all 0.3s ease-in;
}

.profile-photo {
  margin: 0 0 10px 0;
  position: relative;
}

.profile {
  list-style: none;
  margin: 0;
}

.status {
  font-size: 0.8125rem;
  margin-top: 12px;
}

.profile .f-futura {
  font-weight: 400;
  color: #761d3d;
  font-size: 16px;
  margin-top: -5px;
  letter-spacing: 1px;
}

.profile .name {
  font-size: 24px;
}

.profile .acquire-knowledge {
  margin: 3px 0;
}

.list-category span {
  background-color: #b9a978;
  border-radius: 20px;
  color: #fff;
  padding: 2px 12px;
  font-weight: lighter;
  font-size: 13px;
  margin-right: 5px;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
}

.acquire-knowledge {
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
}

.acquire-knowledge .tag-wine {
  background: url(/instructor/images/tag_icon_wine.png) no-repeat center left;
  padding-left: 12px;
  margin-right: 10px;
}

.acquire-knowledge .tag-cheese {
  background: url(/instructor/images/tag_icon_cheese.png) no-repeat center left;
  padding-left: 15px;
  margin-right: 10px;
}

.acquire-knowledge .tag-sake {
  background: url(/instructor/images/tag_icon_sake.png) no-repeat top 1px left 4px;
  padding-left: 15px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .profile-list {
    border-bottom: none;
    flex-direction: column;
    margin: 0 auto 10px;
    padding-bottom: 0;
  }

  .profile-list:first-child {
    margin-top: 10px;
  }

  .profile-list > li {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: top;
    padding-left: 0px;
  }

  .profile-list > li > a {
    display: flex;
    border-bottom: #ccc 1px solid;
    width: 89%;
    margin: 0 auto;
    padding: 15px 5px;
    position: relative;
  }

  .profile-list > li:nth-child(3n + 4)::before {
    display: none;
  }

  .profile-list > li:last-child a {
    border-bottom: none;
  }

  .profile-photo {
    width: 93px;
    height: 120px;
    overflow: hidden;
  }

  .profile-photo img {
    width: 100%;
    height: auto;
  }

  .profile-photo {
    margin-bottom: 0;
  }

  .profile-photo span {
    display: none;
  }

  .profile-list > li:hover .profile-photo span {
    display: none;
  }

  .profile-list > li:hover .profile-photo img {
    opacity: 1;
    filter: blur(0px);
  }

  .profile-list:nth-child(3) {
    margin-bottom: 0px;
  }

  .profile {
    margin-left: 18px;
  }

  .profile .name {
    font-size: 1.3125rem;
  }

  .status {
    display: none;
  }

  .profile .f-futura {
    font-weight: 400;
    color: #761d3d;
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/*-----------------------------------------------------------
	pager
-----------------------------------------------------------*/

.pager {
  list-style: none;
  margin: 0 auto;
  display: inline-block;
  width: 100%;
  margin-bottom: 75px;
  text-align: center;
}

.pager li {
  display: inline-block;
  border: 1px solid #31373e;
  font-size: 0.9375rem;
  width: 37px;
  height: 37px;
  margin: 0 3px;
  line-height: 2.4;
}

.pager li a {
  display: block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #31373e;
  box-sizing: border-box;
}

.pager li a:hover {
  background: #31373e;
  color: #fff;
}

.pager .current a {
  background: #31373e;
  color: #fff;
}

.pager .current a:hover {
  opacity: 0.7;
}

.pager li:first-child,
.pager li:last-child {
  width: 37px;
  height: 37px;
  padding: 0;
  font-weight: bold;
  position: relative;
}

.pager li:first-child {
  margin-right: 10px;
}

.pager li:last-child {
  margin-left: 10px;
}

.pager li:first-child a,
.pager li:last-child a {
  font-weight: bold;
}

.pager li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pager li.max {
  display: none;
}

@media screen and (max-width: 768px) {
  .pager {
    border-width: 1px 0px;
    border-style: solid;
    border-color: #31373e;
    margin-bottom: 0;
    padding: 10px 0;
    position: relative;
  }

  .pager li {
    border: none;
    display: none;
  }

  .pager li:first-child {
    position: absolute;
    left: 0;
    display: inline-block;
  }

  .pager li:last-child {
    position: absolute;
    right: 0;
    display: inline-block;
  }

  .pager li a:hover,
  .pager li.current a {
    color: #31373e;
    background-color: #fff;
  }

  .pager li.current {
    display: inline-block;
  }

  .pager li.current a {
    display: inline-block;
    width: auto;
    background: none;
    color: #31373e;
  }

  .pager li.max {
    display: inline-block;
    width: auto;
  }

  .pager li.max:before {
    display: inline-block;
    content: "/";
    margin-right: 22px;
  }
}

.new {
  position: relative;
  overflow: hidden;
}

.new:before {
  display: block;
  content: "NEW";
  position: absolute;
  color: #fff;
  width: 140px;
  height: 28px;
  background: #761d3d;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  right: -40px;
  top: 20px;
  transform: rotate(45deg);
}

/*-----------------------------------------------------------
	common style - title / list
-----------------------------------------------------------*/
.common-sec-ttl {
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
}

.common-sec-ttl span {
  display: block;
  color: #761d3d;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* .common-sec-ttl .f-futura{	
		position: relative;
}
.common-sec-ttl .f-futura::before{	
		display: block;
		content: '';
		width: 20px;
		height: 20px;
		background: #761d3d;
		position: absolute;
		top: 0;
		left: 20px;
} */

.common-ttl-line {
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 15px;
  margin-bottom: 45px;
}

.common-ttl-line::before {
  display: block;
  content: "";
  background: #ccc;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.common-ttl-line::after {
  display: block;
  content: "";
  background: #761d3d;
  width: 240px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.common-ttl-sideline {
  display: block;
  position: relative;
  padding-left: 16px;
  font-weight: normal;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.common-ttl-sideline:before {
  display: block;
  content: "";
  width: 4px;
  height: 20px;
  background-color: #761d3d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
}

.list-style-dot {
  margin: 0;
}

.list-style-dot li {
  padding-left: 15px;
  position: relative;
  font-size: 0.9375;
  margin-bottom: 10px;
  list-style: none;
}

.list-style-dot li:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #b9a978;
  border-radius: 5px;
}

.backnumber .list-style-dot li {
  margin-bottom: 5px;
}

.backnumber .list-style-dot li a {
  text-decoration: none;
  color: #121212;
}

.backnumber .list-style-dot li a:hover {
  color: #761d3d;
}

.list-style-line {
  list-style: none;
  margin: 0;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.list-style-line li {
  position: relative;
  padding-left: 20px;
}

.list-style-line li:before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #761d3d;
  left: 0;
  top: 50%;
}

.list-style-line li + li {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .common-ttl-line {
    font-size: 1.4375rem;
    letter-spacing: 2px;
    font-weight: normal;
    position: relative;
    padding: 0px 0px 5px 0px;
    width: 90%;
    margin: 0 auto 20px;
  }

  .common-sec-ttl {
    text-align: center;
    font-weight: normal;
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .common-sec-ttl span {
    display: block;
    color: #761d3d;
    margin-bottom: -10px;
    font-size: 1.25rem;
  }
}

.backnumber {
  background-color: #f0efdd;
  padding: 35px;
  box-sizing: border-box;
  border-top: 2px solid #761d3d;
  font-weight: normal;
  letter-spacing: 2px;
  width: 100%;
}

.backnumber p {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .backnumber .list-style-dot {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.event {
  padding: 60px 0;
  background: #f4f4f4;
}

.event a {
  text-decoration: none;
}

.event-list {
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.event-list li {
  width: 340px;
  height: 437px;
  list-style: none;
  background: #fff;
  position: relative;
  text-decoration: none;
  color: #31373e;
  display: block;
  margin: 0 auto;
}

.event-list li a {
  text-decoration: none;
  color: #31373e;
  display: block;
  width: 100%;
  height: 100%;
}

.event-list li a > img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.event-list li a .event-txt {
  padding: 15px 20px 32px;
}

.swiper-button-prev {
  background-image: url(/shared/images/slide_button_prev.png) !important;
  background-size: 70% !important;
}

.swiper-button-next {
  background-image: url(/shared/images/slide_button_next.png) !important;
  background-size: 70% !important;
}

/*-----------------------------------------------------------
	tag
-----------------------------------------------------------*/
/* .tags {
  display: inline-block;
  font-size: 0.75rem;
  padding-left: 10px;
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: -0.04rem;
  -webkit-white-space: nowrap;
} */
.tags {
  display: inline-block;
  font-size: 0.65rem;
  padding-left: 10px;
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: -0.04rem;
  -webkit-white-space: nowrap;
  line-height: 1.9;
}

.tags span {
  padding: 5px 10px 2px 23px;
  margin-left: 10px;
  font-size: 0.65rem;
}

.date {
  font-size: 1rem;
}

.date span {
  letter-spacing: 1px;
  font-weight: normal;
}

.introductory {
  border-bottom: 2px solid #9a4f0e;
}

.introductory .tags {
  border: 1px solid #9a4f0e;
  color: #9a4f0e;
}

.introductory .tags span {
  display: inline-block;
  background-color: #9a4f0e;
  color: #fff;
}

.introductory .date {
  color: #9a4f0e;
}

.trial {
  border-bottom: 2px solid #1d424c;
}

.trial .tags {
  border: 1px solid #1d424c;
  color: #1d424c;
}

.trial .tags span {
  display: inline-block;
  background-color: #1d424c;
  color: #fff;
}

.trial .date {
  color: #1d424c;
}

.winelover {
  border-bottom: 2px solid #c89d10;
}

.winelover .tags {
  border: 1px solid #c89d10;
  color: #c89d10;
}

.winelover .tags span {
  display: inline-block;
  background-color: #c89d10;
  color: #fff;
}

.winelover .date {
  color: #c89d10;
}

.sake {
  border-bottom: 2px solid #1d4c34;
}

.sake .tags {
  border: 1px solid #1d4c34;
  color: #1d4c34;
}

.sake .tags span {
  background-color: #1d4c34;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}

.sake .date {
  color: #1d4c34;
}

.l1-l2 {
  border-bottom: 2px solid #8c230e;
}

.l1-l2 .tags {
  border: 1px solid #8c230e;
  color: #8c230e;
}

.l1-l2 .tags span {
  background-color: #8c230e;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}

.l1-l2 .date {
  color: #8c230e;
}

.wine {
  border-bottom: 2px solid #8c230e;
}

.wine .tags {
  border: 1px solid #8c230e;
  color: #8c230e;
}

.wine .tags span {
  background-color: #8c230e;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}

.wine .date {
  color: #8c230e;
}

.cheese {
  border-bottom: 2px solid #c89d10;
}

.cheese .tags {
  border: 1px solid #c89d10;
  color: #c89d10;
}

.cheese .tags span {
  display: inline-block;
  background-color: #c89d10;
  color: #fff;
}

.cheese .date {
  color: #c89d10;
}

.others {
  border-bottom: 2px solid #4c341d;
}

.others .tags {
  border: 1px solid #4c341d;
  color: #4c341d;
}

.others .tags span {
  display: inline-block;
  background-color: #4c341d;
  color: #fff;
}

.others .date {
  color: #4c341d;
}

.instructor-seminar {
  border-bottom: 2px solid #4c341d;
}

.instructor-seminar .tags {
  border: 1px solid #4c341d;
  color: #4c341d;
}

.instructor-seminar .tags span {
  background-color: #4c341d;
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}

.tag-wine {
  background: url(/shared/images/cat_tag_wine.png) no-repeat left 10px center;
}

.tag-cheese {
  background: url(/shared/images/cat_tag_cheese.png) no-repeat left 10px center;
}

.tag-sake {
  background: url(/shared/images/cat_tag_sake.png) no-repeat left 10px center;
}

.wine .tags span {
  background-image: url(/shared/images/cat_tag_wine.png);
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.cheese .tags span {
  background-image: url(/shared/images/cat_tag_cheese.png);
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.sake .tags span {
  background-image: url(/shared/images/cat_tag_sake.png);
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.others .tags span {
  background-image: url(/shared/images/cat_tag_sake.png);
  background-repeat: no-repeat;
  background-position: left 10px center;
}

.seats {
  background-color: #2761a6;
  color: #fff;
  font-size: 0.8125em;
  padding: 1px 10px;
  border-radius: 20px;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
  display: inline-block;
}

.seats-almost {
  background-color: #ca5b42;
  color: #fff;
  font-size: 0.8125em;
  padding: 1px 10px;
  border-radius: 20px;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
  display: inline-block;
}

.seats-full {
  background-color: #919191;
  color: #fff;
  font-size: 0.8125em;
  padding: 1px 10px;
  border-radius: 20px;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
  display: inline-block;
}
.seats-finish,
.seats-closed {
  background-color: #31373e;
  color: #fff;
  font-size: 0.8125em;
  padding: 1px 10px;
  border-radius: 20px;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
  display: inline-block;
}
.seats::before {
  content: "○ ";
}

.seats-almost::before {
  content: "△ ";
}

.seats-full::before {
  content: "✕ ";
}
.tags-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.event-list li .info-txt {
  font-size: 0.875rem;
  margin: 0;
}

.event-list li .info-ttl {
  font-size: 1rem;
  margin: 8px 0 3px;
}

.event-list li a:hover .info-ttl {
  color: #761d3d;
}

.event-list li a:hover {
  opacity: 0.8;
}

.event-list li .date {
  position: absolute;
  bottom: 25px;
  right: 20px;
  margin-bottom: 0;
  font-size: 1rem;
}

.swiper-container {
  width: 1140px;
  margin: 0 auto;
}

.swiper-button-prev,
.swiper-button-next {
  outline: none;
}

.swiper-custom-parent {
  margin: 0 auto;
  width: 1300px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .event-list {
    width: 80%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .event-list li {
    /* width: 256px !important; */
    /* height: 334px !important; */
  }

  .event-list img {
    width: 100%;
  }

  .event-list li a .event-txt {
    padding: 5px 8px 0 10px;
    box-sizing: border-box;
  }

  .tags {
    font-size: 0.5625rem;
  }

  .event-list li .info-ttl {
    font-size: 0.9375rem;
    line-height: 1;
    margin: 10px 0 6px;
  }

  .event-list li .info-text {
    font-size: 0.875rem !important;
    margin: 0;
  }

  .event-list li .date {
    position: absolute;
    bottom: 5px;
    right: 10px;
    margin-bottom: 0;
    font-size: 0.75rem;
  }

  .info-txt {
    font-size: 0.87rem;
    line-height: 1.3;
  }

  .swiper-container {
    height: 336px !important;
    width: 100%;
  }

  .swiper-custom-parent {
    margin: 15px auto 10px;
    width: 100%;
    position: relative;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.btn-return {
  padding: 60px 0 80px;
}

.btn-return p {
  margin: 0;
  text-align: center;
  border: 1px solid #31373e;
  width: 360px;
  margin: 0 auto;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
}

.btn-return a {
  display: block;
  padding: 15px 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  -webkit-text-decoration: none;
  color: #31373e;
  -webkit-color: #31373e;
}

.btn-return a:hover {
  color: #761d3d;
}

.btn-return p:hover {
  color: #761d3d;
  border-color: #761d3d;
}

.genre {
  margin: 0 auto 55px;
  display: flex;
  flex-direction: row;
  list-style: none;
  box-shadow: 0 0 6px #efefef;
}

.genre li {
  width: calc(100% / 4);
  border-color: #d8d8d8;
  border-style: solid;
  border-width: 0px 1px 0px 0px;
  box-sizing: border-box;
  text-align: center;
}

.genre li:last-child {
  border-width: 0px;
}

.genre li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  color: #31373e;
}

.genre li a:hover {
  color: #fff;
  background-color: #761d3d;
  position: relative;
  display: block;
}

.genre li a:hover::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: #761d3d;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}

@media screen and (max-width: 768px) {
  .genre li {
    width: calc(100% / 2);
    border: #efefef 1px solid;
    box-sizing: border-box;
    text-align: center;
  }

  .genre {
    flex-wrap: wrap;
    margin: 30px 15px;
  }

  .genre li a {
    padding: 15px 0;
  }

  .genre li a:hover::before {
    display: none;
  }

  .btn-return {
    padding: 30px 0;
  }

  .btn-return p {
    width: 80%;
    padding: 0;
  }
}

.instructor-tags {
  margin: 0 0 90px 25px;
}

.instructor-tags li {
  display: inline-block;
  background: #f4f4f4;
  font-size: 0.875rem;
  padding: 4px 20px 4px 35px;
  border-radius: 30px 30px;
  position: relative;
  margin-right: 8px;
  margin-bottom: 10px;
}

.instructor-tags li::before {
  display: block;
  content: "#";
  color: #31373e;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .instructor-tags {
    margin: 0 0 28px 20px;
  }

  .instructor-tags li {
    display: inline-block;
    background: #f4f4f4;
    font-size: 0.8125rem;
    padding: 4px 20px 4px 35px;
    border-radius: 30px 30px;
    position: relative;
    margin-bottom: 10px;
  }

  .instructor-tags li::before {
    display: block;
    content: "#";
    color: #31373e;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

/*-----------------------------------------------------------
	detail page (event / course)
-----------------------------------------------------------*/

.event-detail-mv {
  width: 100%;
  position: relative;
  height: 440px;
  display: flex;
}

.event-detail-mv::after {
  display: block;
  content: "";
  width: calc(100% - 150px);
  height: calc(100% - 45px);
  background-color: #f4f4f4;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.event-detail-mv > div {
  border-bottom: none;
}

.event-detail-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1140px;
  margin: 0 auto;
  z-index: 10;
}

.event-detail-ttl .tags-wrapper {
  display: inline-block;
  width: 55%;
  justify-content: start;
  margin-bottom: 10px;
}

.event-detail-ttl .tags-wrapper .tags {
  background-color: #fff;
  margin-right: 15px;
}

.event-detail-ttl h1 {
  font-size: 2.25rem;
  margin-bottom: 0;
  font-weight: normal;
  width: 53%;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}

.event-detail-mv img {
  position: absolute;
  right: 0px;
  width: 610px;
  height: auto;
  object-fit: cover;
}

.course-anchor-link {
  margin: 0 auto 52px;
}

.course-anchor-link a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 21.75px 0;
  font-size: 1.125em;
  color: #31373e;
  background-color: #e7e6cc;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.course-anchor-link a small {
  font-size: 0.88889em;
}

.course-anchor-link a::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 24px;
  height: 24px;
  background: url(../images/arrow-orange.svg) center center / 24px no-repeat;
  transform: translateY(-50%);
  content: "";
}

.course-anchor-link.fixed {
  position: fixed;
  bottom: 0;
  right: -250px;
  margin: 0;
  z-index: 11;
  /* opacity: 0; */
  transition: right 0.3s ease-out;
}

.course-anchor-link.fixed.is-active {
  right: 0;
  /* opacity: 1; */
}

.course-anchor-link.fixed a {
  width: 221px;
  max-width: none;
  font-size: 1em;
}

.course-anchor-link.fixed a::after {
  right: 17px;
  width: 22px;
  height: 20px;
  background: url(../images/arrow-orange.svg) center center / 22px no-repeat;
}

.detail-list {
  border: 1px solid #761d3d;
  padding: 20px 50px;
  margin: 0 auto 75px;
  width: 950px;
  box-sizing: border-box;
}

.detail-list dl dt,
.detail-list dl dd {
  display: inline-block;
  font-weight: normal;
}

.detail-list dl {
  margin: 28px 0;
  display: flex;
}

.detail-list dt {
  width: 200px;
  position: relative;
  padding-right: 55px;
}

.detail-list dd {
  padding-left: 0;
  width: 580px;
}

.detail-list dt::before {
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  top: 15px;
  right: 25px;
}

.event-detail-txt {
  width: 1140px;
  margin: 0 auto 75px;
}

.event-detail-txt h3 {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: normal;
}

.event-detail-txt dl {
  margin-bottom: 24px;
}

.event-detail-txt dt {
  font-size: 1.0625rem;
  margin-bottom: 2px;
  font-weight: normal;
}

.event-detail-txt dd {
  font-size: 1rem;
  margin: 0;
}

.event-detail-txt > p {
  font-size: 1rem;
  margin: 30px 0;
}

.event-detail-txt.youtube {
  text-align: center;
}

.event-curriculums {
  width: 950px;
}

.event-curriculums h3 {
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}

.event-curriculums table {
  width: 100%;
}

.event-curriculums table th,
.event-curriculums table td {
  padding: 15px 20px;
  font-size: 0.875em;
  border: 1px solid #e1e3e5;
  box-sizing: border-box;
}

.event-curriculums table th {
  width: 100px;
  font-weight: normal;
  text-align: center;
  background-color: #fffdf5;
}

.event-curriculums table tr:nth-child(even) td {
  background-color: #f4f4f4;
}

@media screen and (min-width: 768px) {
  .course-anchor-link br.for-sp {
    display: none;
  }

  .course-anchor-link a:hover {
    background-color: #dbdac2;
  }
}

@media screen and (max-width: 768px) {
  .event-detail-mv {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: #f4f4f4;
  }

  .event-detail-mv::after {
    display: none;
  }

  .event-detail-mv img {
    position: static;
    width: 100%;
    /* height: 275px; */
  }

  .event-detail-ttl {
    position: static;
    width: 90%;
    padding: 20px 0;
    box-sizing: border-box;
    transform: translate(0, 0);
  }

  .event-detail-ttl h1 {
    line-height: 1.6;
    font-size: 1.25rem;
    width: 100%;
  }

  .tags span {
    padding: 5px 10px 2px 25px;
    height: 100%;
    box-sizing: border-box;
  }

  .event-detail-ttl .tags-wrapper {
    display: inline-block;
    width: 100%;
    justify-content: start;
    margin-bottom: 10px;
  }

  .course-anchor-link {
    margin: 20px auto 24px;
  }

  .course-anchor-link a {
    width: 77%;
    max-width: 350px;
    padding: 17px 0;
    font-size: 1em;
    line-height: 1.25;
  }

  .course-anchor-link a small {
    font-size: 0.8125em;
  }

  .course-anchor-link a::after {
    right: 22px;
    width: 20px;
    height: 20px;
    background: url(../images/arrow-orange.svg) center center / 20px no-repeat;
  }

  .course-anchor-link.fixed {
    width: 100%;
    opacity: 1;
    right: 0;
    bottom: -100px;
    transition: bottom 0.3s ease-out;
  }

  .course-anchor-link.fixed.is-active {
    bottom: 0;
  }

  .course-anchor-link.fixed a {
    width: 100%;
    padding: 23px 0;
  }

  .course-anchor-link.fixed a::after {
    right: 25px;
    width: 20px;
    background: url(../images/arrow-orange.svg) center center / 20px no-repeat;
  }

  .detail-list {
    border: 1px solid #761d3d;
    padding: 20px;
    margin: 30px auto 20px;
    width: 90%;
    box-sizing: border-box;
    font-size: 0.875rem;
  }

  .detail-list dl {
    display: block;
    margin: 5px 0;
  }
  .detail-list dl + dl {
    margin-top: 15px;
  }
  .detail-list dl dt {
    display: block;
    width: auto;
    padding: 0;
  }
  .detail-list dl dt:before {
    display: none;
  }
  .detail-list dl dd {
    display: block;
    width: auto;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .detail-list dl dd iframe {
    max-width: 100%;
  }

  .event-detail-txt {
    width: 90%;
    margin: 0 auto 25px;
  }

  .event-detail-txt h3 {
    font-size: 1.25rem;
    letter-spacing: 0px;
    line-height: 1.5;
  }

  .event-detail-txt dd {
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
  }

  .event-detail-txt.youtube {
    width: 95%;
    height: 200px;
  }

  .event-detail-txt iframe,
  .event-detail-txt.youtube iframe {
    width: 100%;
    height: 200px;
  }

  .event-detail-txt img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

/*-----------------------------------------------------------
	btn-circle (mypage/payment/login)
-----------------------------------------------------------*/

.btn-circle {
  text-align: center;
}

.btn-circle > p {
  margin: 0 auto;
  display: inline-block;
}

.btn-circle > p > a {
  background-color: #761d3d;
  color: #fff;
  display: block;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  padding: 15px 35px;
  font-size: 1.18rem;
  border-radius: 30px;
}

.btn-circle > p > a:hover {
  opacity: 0.7;
}

/*-----------------------------------------------------------
	complete page
-----------------------------------------------------------*/

.complete-wrapper .catch-main,
.complete-wrapper .content-wrapper {
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.content-wrapper.complete {
  margin-bottom: 150px;
}

.content-wrapper.complete .txt-block b {
  font-size: 1.4em;
  font-weight: normal;
}

.content-wrapper.complete .txt-block.txt-note {
  width: calc(100% - 40px);
  max-width: 510px;
  margin: 0 auto 27px;
  padding: 8px 20px;
  font-weight: 700;
  background-color: rgb(206, 34, 34, 0.1);
  color: #ce2222;
}

.complete-wrapper .catch-main {
  width: 580px;
  margin: 20px auto 60px;
}

@media screen and (max-width: 768px) {
  .complete-wrapper .content-wrapper > p {
    text-align: left;
    -webkit-font-smoothing: antialiased;
  }

  .content-wrapper.complete {
    width: 90%;
    margin: 20px auto 40px;
  }

  .content-wrapper.complete .txt-block.txt-note {
    width: calc(100% - 20px);
    margin: 0 auto 15px;
    padding: 8px 14px;
  }

  .complete-wrapper .catch-main {
    width: 90%;
    margin: 50px auto 60px;
    font-size: 1.15rem;
  }

  .complete-wrapper .catch-main:before {
    display: block;
    content: "";
    width: 20px;
    height: 75px;
    border-width: 1px 0 1px 1px;
    border-color: #31373e;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .complete-wrapper .catch-main:after {
    display: block;
    content: "";
    width: 20px;
    height: 75px;
    border-width: 1px 1px 1px 0;
    border-color: #31373e;
    border-style: solid;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

/*-----------------------------------------------------------
	confirm btn
-----------------------------------------------------------*/
.btn-block {
  display: flex;
  justify-content: center;
  margin: 60px auto 90px;
}

.btn-block > div {
  margin: 0 20px;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
}

.btn-more.btn-correction p {
  width: 300px;
  border: 1px solid #ccc;
}

.btn-more.btn-correction p a {
  display: block;
  width: 100%;
  color: #ccc;
}

.btn-more.btn-correction p a:hover {
  color: #761d3d;
}

.btn-more.btn-correction p:hover {
  border: 1px solid #761d3d;
}

@media screen and (max-width: 768px) {
  .btn-block {
    display: flex;
    flex-direction: column;
    margin: 30px auto 60px;
  }

  .btn-block > div {
    margin: 10px 0px;
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
  }

  .btn-more.btn-correction p {
    width: 85%;
  }
}

/*-----------------------------------------------------------
	headlink
-----------------------------------------------------------*/

.head-link {
  width: 1140px;
  margin: 0 auto 70px;
  border-width: 1px 0;
  padding: 20px 0 16px;
  border-style: solid;
  border-color: #31373e;
}

.head-link ul {
  width: 95%;
  display: flex;
  list-style: none;
  justify-content: center;
  margin: 0 auto;
}

.head-link li {
  letter-spacing: 1.5px;
  position: relative;
  margin: 0 15px;
}

.head-link li a {
  display: block;
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
  text-decoration: none;
  color: #31373e;
}

.head-link li a:hover {
  color: #761d3d;
}

.head-link li::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #31373e;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.head-link li:hover::before {
  border-color: #761d3d;
}

@media screen and (max-width: 768px) {
  .head-link {
    width: 90%;
    margin: 30px auto;
    border-width: 1px 0;
    padding: 16px 0 12px;
    border-style: solid;
    border-color: #31373e;
  }

  .head-link ul {
    width: 95%;
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0 auto;
  }

  .head-link li {
    letter-spacing: 1px;
    font-size: 0.875rem;
  }

  .head-link li a {
    display: block;
    position: relative;
    z-index: 1;
    padding-bottom: 14px;
    text-decoration: none;
    color: #31373e;
  }
}

@media screen and (max-width: 450px) {
  .col-inner p {
    max-width: 100% !important;
  }
}

.ofi {
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%;";
}

.error {
  width: 100%;
  background-color: #f7f6ef;
  padding: 150px 0 280px;
}

.error-item {
  width: 90%;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  padding: 60px 30px 60px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 0px 10px 3px #e5e5e5;
}

.notfound-ttl {
  font-size: 2.4rem;
  margin-bottom: 15px;
  line-height: 1;
  color: #761d3d;
  font-weight: normal;
}

.notfound-subttl {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1;
}

.notfound-txt {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

@media screen and (max-width: 450px) {
  .error {
    width: 100%;
    background-color: #f7f6ef;
    padding: 80px 0 150px;
  }

  .error-item {
    width: 95%;
    padding: 40px 16px;
    max-width: none;
    text-align: center;
  }

  .notfound-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1;
    color: #761d3d;
  }

  .notfound-subttl {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1;
  }

  .notfound-txt {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}
