@charset "UTF-8";

body {
  font-family: tbudmincho-std, sans-serif;

  font-style: normal;
  font-weight: 400;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li,
dl,
dt,
dd,
p,
time {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
a,
label {
  cursor: pointer;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

.d-none {
  display: none;
}

/* font-size */
h2 {
  font-size: 24px;
}

.fontsize--S {
  font-size: 12px;
}

.fontsize--M {
  font-size: 14px;
}

.fontsize--L {
  font-size: 16px;
}

.fontsize--LL {
  font-size: 24px;
}

/* color */
.font-bold {
  font-weight: bold;
  color: #8e2258;
}

.bg-red {
  background: #8e2258;
}

.bg-gray {
  background: #efefef;
}

.text-white {
  color: #fff;
}

/* wave */
.wave-box {
  width: 100%;
  height: 240px;
}

.wave-red {
  position: relative;
}

.wave-red::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/wave-red.svg) center / 100% 100% no-repeat;
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.wave-red-top {
  position: relative;
}

.wave-red-top::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 240px;
  bottom: 144px;
  background: url(/common/img/wave-red-top.svg) center / 100% 100% no-repeat;
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
}

.wave-red-bottom {
  width: 100%;
  height: 240px;
  position: relative;
  transform: rotate(180deg) rotateY(180deg);
  background: url(/common/img/wave-red-top.svg) center / 100% 100% no-repeat;
}

.wave-red-bottom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/wave-red.svg) center / 100% 100% no-repeat;
  transform: rotateX(180deg);
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.wave-white {
  position: relative;
}

.wave-white::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/wave-white.svg) center / 100% 100% no-repeat;
  transform: rotateY(180deg);
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
}

.wave-yellow {
  position: relative;
}

.wave-yellow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  background: url(/common/img/wave-yellow.svg) center / 100% 100% no-repeat;
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
}

.wave-yellow::after {
  content: "";
  background-size: contain;
  display: inline-block;
  background-image: url(/common/img/prince.png);
  position: absolute;
  top: 0;
  left: 20px;
  width: 220px;
  height: 240px;
  background-repeat: no-repeat;
}

.wave-yellow-bottom {
  position: relative;
}

.wave-yellow-bottom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  background: url(/common/img/wave-yellow.svg) center / 100% 100% no-repeat;
  transform: rotateX(180deg);
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
}

.logo--S {
  height: 32px;
}

.logo--M {
  height: 40px;
}

.logo--L {
  height: 72px;
}

/* 余白 */
.mrS {
  margin-right: 16px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin: 24px;
}

.mbL {
  margin-bottom: 40px;
}

.mbLL {
  margin-bottom: 80px;
}

.mb3L {
  margin-bottom: 120px;
}

.mb--ML {
  margin-bottom: 24px;
}

.mb--L2L {
  margin-bottom: 40px;
}

.mb--LL3L {
  margin-bottom: 80px;
}

.pb--M {
  padding-bottom: 24px;
}

.pb--L {
  padding-bottom: 40px;
}

.pb--LL {
  padding-bottom: 80px;
}

.py--L2L {
  padding: 40px 0;
}

/* 配置 */
.center {
  text-align: center;
}

.mx-auto {
  margin: 0 auto;
}

/* 幅 */
.w100 {
  width: 100%;
}

/* container */
.container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* section */
.section {
  width: 100%;
  height: 100%;
}

.section__wrapper {
  width: calc(100% - 24px * 2);
  max-width: 1200px;
  margin: 0 auto;
}

.section__wrapper--min {
  width: calc(100% - 24px * 2);
  max-width: 800px;
  margin: 0 auto;
}

/* title */
.section__title {
  padding-top: 80px;
  text-align: center;
}

/* ******************** header ******************** */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 0 8px;
  width: 100%;
  z-index: 100;
}

.header__bar--ohter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 8px 8px;
  width: 100%;
  z-index: 100;
  background: #8e2258;
}

.header__logo {
  height: 32px;
}

.header__logo--pc {
  height: 56px;
}

.menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 56px;
  position: relative;
  background: #8e2258;
  border-radius: 40px 0 0 40px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.menuButton--other {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 56px;
}

.menuButton::before {
  position: absolute;
  content: "";
  overflow: hidden;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 59%;
  border-radius: 0 0 1% 90%;
  background: #fff;
  opacity: 0.3;
}

.menuButton:before {
  content: "メニュー";
  position: absolute;
  color: #fff;
  font-size: 8px;
  bottom: 10px;
}

.menuButton--other:before {
  content: "メニュー";
  position: absolute;
  color: #fff;
  font-size: 8px;
  bottom: 0px;
}

.menuButton__inner {
  position: relative;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

.menuButton__inner::before,
.menuButton__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.4s;
}

.menuButton__inner::before {
  top: -8px;
}

.menuButton__inner::after {
  top: 8px;
}

/* チェックした時に真ん中の棒をなくす→くるっと回転させる */
#menu:checked ~ .header__bar .menuButton__inner {
  background: transparent;
  transform: rotate(180deg);
}

/* ×を作るために線を回転させる */
#menu:checked ~ .header__bar .menuButton__inner::before {
  transform: rotate(45deg);
  top: 0;
}

#menu:checked ~ .header__bar .menuButton__inner::after {
  transform: rotate(-45deg);
  top: 0;
}

/* menu */
#menu {
  display: none;
}

.menu {
  position: fixed;
  padding-top: 24px;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #8e2258;
  transition: 0.6s;
}

.menu__wrapper {
  margin-top: 40px;
}

.menu__wrapper li:not(:last-child) {
  margin-bottom: 16px;
}

#menu:checked ~ .menu {
  right: 0;
}

.menu__link {
  position: relative;
  display: block;
  height: 48px;
  line-height: 40px;
  color: #fff;
  text-decoration: none;
  border: solid 1px #fff;
  border-radius: 4px;
  text-align: center;
}

.menu__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

/* nav-pc */
.menu__pc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  border-radius: 107px;
  box-shadow: 0 0 20px rgba(0, -3, 10, 0.2);
  background: yellow;
}

.menu__wrapper--pc {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

.menu__box--pc {
  display: block;
  list-style-type: none;
  border-left: 1px solid #8e2258;
  width: calc(100% / 5);
}

.menu__box--pc:first-child {
  border: 0;
}

.menu__list--pc {
  display: block;
  color: #8e2258;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
}

/* ******************** login ******************** */
.login__title {
  padding: 80px 0;
}

#form {
  width: 100%;
}

.form-title {
  text-align: center;
}

.login__name {
  font-size: 14px;
  padding-bottom: 8px;
}

.member {
  margin-bottom: 24px;
}

.pass {
  margin-bottom: 40px;
}

.login {
  margin: 0 auto;
}

.login-btn {
  border: none;
  font-size: 16px;
}

/* ******************** mainvisual ******************** */
.mainvisual {
  position: relative;
}

.mainvisual__hero {
  width: 100%;
  height: 660px;
  background-image: url(/common/img/main.jpg);
  background-repeat: no-repeat;
  background-position: 24%;
  background-size: cover;
  padding: 0 8px;
  position: relative;
}

.mainvisual__hero h2 {
  position: absolute;
  top: 50%;
  font-size: 32px;
  /* font-family: 'TBUDMincho M'; */
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.mainvisual__bottom {
  height: 144px;
  width: 100%;
  background: #8e2258;
}

/* ******************** information__list ******************** */

.information {
  padding-top: 0;
  padding-bottom: 40px;
}

.information__box:not(:first-child) {
  padding-top: 8px;
}

.information__box {
  border-bottom: dotted 1px #cbcbcb;
}

.information__title {
  padding: 8px 0;
}

.pageNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 auto;
}

.pageNumber li:not(:last-child) {
  padding-right: 8px;
}

.pageNumber__item a {
  display: inline-block;
  text-decoration: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
  color: #8e2258;
  border: 1px solid #8e2258;
}

.pageNumber__item a::active {
  background: #8e2258;
  color: #fff;
}

/* ******************** about ******************** */
.aboutUs {
  padding-bottom: 80px;
}

.about__wave {
  width: 100%;
  height: 240px;
  position: relative;
  background: #8e2258;
}

.about__wave::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/wave-white.svg) center / 100% 100% no-repeat;
  transform: rotate(180deg);
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.about__wrapper {
  padding: 24px 0 40px 0;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 960px) {
  .about__wrapper {
    margin: 0 0 80px 0;
  }
}
/* ******************** thought ******************** */
.thought__top {
  padding-top: 40px;
  background: linear-gradient(0deg, #0041a8, #0c0f14);
}

.thought__title {
  padding-bottom: 80px;
}

.thought__middle {
  background: #e8d379;
}

.thought__line {
  background-color: #cbb364;
  height: 1px;
  width: 100%;
  margin: 24px 0;
}

/* ******************** brand ******************** */
.brandMovie {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.brandMovie__video {
  width: 100%;
  height: 49vw;
  max-height: 246px;
}
.brandCard {
  padding-bottom: 40px;
}
.card__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.brandCard--en .card__wrapper {
    align-items: flex-start;
}
.card {
  width: 100%;
  max-width: 440px;
}

.card__title {
  margin: 24px 0;
}

.card__text {
  margin-bottom: 24px;
}
@media screen and (min-width: 960px) {
  .brandMovie {
    margin: 80px auto 0;
  }
  .card__wrapper {
    flex-direction: row;
  }
  .mbLL {
    margin: 0;
  }
}
/* ******************** brand01,brand02 ******************** */
.brand01 {
  color: #fff;
}

.brand01__logo {
  margin-bottom: 40px;
  width: 180px;
  margin: 0 auto;
}

.brand01__hero {
  width: 100%;
  height: 660px;
  background-image: url(/common/img/bg-anantara.png);
  background-repeat: no-repeat;
  background-position: 67%;
  background-size: cover;
}

.brand01__title {
  padding-top: 40px;
}

.brand01__middle {
  background-color: #8e2258;
}

.brand01__thumbnail {
  display: block;
  margin: 40px 0;
}

.brand01__bottom {
  width: 100%;
  height: 240px;
}

.brand02__title {
  padding-bottom: 40px;
}

.brand02__product {
  margin: 24px 0 40px;
}

/* ******************** information__article ******************** */
.article {
  padding-top: 24px;
}

.informationArticle__title {
  padding-top: 80px;
  line-height: 150%;
  font-weight: bold;
  color: #8e2258;
}

.article__date {
  padding-bottom: 16px;
  border-bottom: 1px solid #8e2258;
}

.article__content {
  padding-top: 16px;
  margin-bottom: 80px;
}

.article__imageBox {
  margin: 16px 0 40px 0;
  width: 100%;
  max-width: 580px;
}

/* ******************** bland ******************** */

.item__wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.item {
  /* 横スクロール用 */
  display: inline-block;
  width: 90%;
  width: 179px;
  height: 240px;
  font-size: 16px;
  background: silver;
}

.item:not(:last-child) {
  margin-right: 16px;
}

/* ******************** company ******************** */
.company {
  padding-bottom: 40px;
}

.company__title {
  padding: 40px 0;
}

.kaisha {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.kaisha th,
.kaisha td {
  /*border: 1px solid #bcbcbc;*/
  /*  border-bottom : solid 1px #dcdcdc ;*/
  padding: 16px;
}
.kaisha td {
  background: #fff;
}
.kaisha tr {
  border-bottom: solid 1px #dcdcdc;
}
.kaisha tr:first-child {
  border-top: solid 1px #dcdcdc;
}
.kaisha th {
  white-space: nowrap;
  background-color: #d6d6d6;
  font-weight: normal;
}

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.compliance--Table {
  padding-top: 24px;
}

.compliance--Th {
  width: 30%;
  text-align: left;
  color: #8e2258;
  padding: 0 0 16px 8px;
  position: relative;
  vertical-align: top;
  line-height: 140%;
  font-size: 14px;
}

.compliance--Th::before {
  position: absolute;
  content: "";
  background: #8e2258;
  width: 4px;
  height: 16px;
  left: 0px;
  top: 0px;
}

.compliance--Td {
  padding: 0 0 16px 16px;
  line-height: 140%;
  font-size: 14px;
  text-align: justify;
}

/* ******************** message ******************** */
.message__text {
  padding-top: 80px;
  padding-bottom: 40px;
}

.message__president {
  display: flex;
  justify-content: flex-end;
}

.message__right {
  padding-left: 40px;
}

.president--s {
  font-size: 12px;
  padding-bottom: 16px;
}

.president--m {
  font-size: 18px;
}

/* ******************** compliance******************** */

.compliance__title {
  display: block;
}

/* ******************** footer ******************** */

.footer__logo {
  position: absolute;
  z-index: 1;
  bottom: 0;
  margin: 0;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer__wrapper {
  display: inline-block;
}

.footerList {
  padding: 40px 0;
}

.footerList td {
  padding: 8px;
}

.footerList__arrow {
  color: #fff;
}

.footerList__link {
  position: relative;
  color: #fff;
  font-size: 14px;
}

.footerIcon {
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
}

.footerIcon__left {
  padding-right: 12px;
}

.footerIcon__right {
  padding-left: 12px;
}

footer small {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  padding-bottom: 80px;
}

.xIcon {
  border-radius:20%;
}
svg img {
  vertical-align: bottom;
}

.mainvisual__hero h2 {
  position: absolute;
  top: 42%;
  font-size: 32px;
  /* font-family: 'TBUDGoshic M'; */
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.mainvisual__bottom {
  height: 144px;
  width: 100%;
  background: #8e2258;
}

.wave-red-top::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 280px;
  bottom: 144px;
  background: url(/common/img/svg/wave-red-top.svg) center / 100% 100% no-repeat;
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
}

.top-img-container {
  position: absolute;
  bottom: 176px;
  width: 143px;
  margin-left: 24px;
}

.top-img-container img {
  bottom: 176px;
  width: 100%;
  height: 100%;
}

.wave-white::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/wave-white.svg) center / 100% 100% no-repeat;
  transform: rotateY(0deg);
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
}

.information__title {
  padding: 8px 0;
  color: #0076ff;
}

.information__title:hover {
  transition: 0.4s;
  opacity: 0.6;
}

.information__wave {
  width: 100%;
  height: 240px;
  position: relative;
  background: #8e2258;
}

.information {
  /*  padding-top: 24px;*/
  padding-bottom: 0px;
}

.information__wave {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/wave-white.svg) center / 100% 100% no-repeat;
  transform: scale(1, -1);
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.information__bottom {
  height: 240px;
  width: 100%;
  background: #8e2258;
  position: relative;
}

.information__buttom {
  padding-top: 24px;
}

.information__buttom a {
  z-index: 3;
}

.information__logo {
  position: absolute;
  bottom: 0;
  width: 240px;
  left: 0;
  right: 0;
  margin: 0 auto 40px;
}

.aboutMovie {
  margin: 40px 0 0;
}
.aboutMovie__video {
  width: 100%;
  height: 51vw;
}
@media screen and (min-width: 960px) {
  .aboutMovie {
    margin: 0;
  }
  .aboutMovie__video {
    max-height: 280px;
  }
}
.aboutMovie img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

.thought {
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: url(/common/img/about_bg_logo.svg) center / 100% 100% no-repeat;
  bottom : 327px ;
  left : -50% ;
  right : -50% ;
  margin : 0 auto ;
}

.about::after {
  content: "";
  width: 100%;
  height: 80px;
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  background: linear-gradient(180deg, rgba(88, 15, 66, 0) 0%, rgba(11, 17, 27, 1) 50%, rgba(11, 15, 20, 1) 100%);
  content: "";
}

.thought::before {
  content: "";
  width: 100%;
  height: 50px;
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  z-index: 1;
}

.wave-red::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  bottom: 0;
  background: url(/common/img/footer-wave.svg) center / 100% 100% no-repeat;
  /* transform: rotateY(180deg); */
  filter: drop-shadow(0 -7px 6px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.btn-container {
  position: absolute;
  bottom: 0;
  right: 37px;
}

.btn-icon-call {
  position: absolute;
  left: -35px;
  top: -5px;
}
.btn-span-call {
  position: relative;
  font-size: 18px;
}

.btn-span-call::before {
  content: "082-427-6208";
  position: absolute;
  font-size: 12px;
  top: -25px;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}
.btn-span-call::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -40px;
  width: 32px;
  height: 32px;
  background: url(/common/img/tell-icon.svg) center / 100% no-repeat;
}
@media screen and (min-width: 960px) {
  .btn-span-call::after {
    bottom: -32px;
    left: 0;
    background: url(/common/img/tell-icon_black.svg) center / 100% no-repeat;
  }
}

.item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
|
|
|
//////////////////////////////
 button
////////////////////////////*/
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 56px;
  max-width: 280px;
  border-radius: 28px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.btn:before {
  position: absolute;
  content: "";
  width: 276px;
  height: 52px;
  max-width: 280px;
  border-radius: 28px;
}

.btn-top {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 36px;
  border-radius: 28px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 0 16px;
}

.btn-top:before {
  position: absolute;
  content: "";
  width: 276px;
  height: 52px;
  border-radius: 28px;
}

.btn-span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.login-icon {
  padding-left: 32px;
}
.login-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: url(/common/img/login-icon.svg) center / auto 100% no-repeat;
}
.login-icon::after {
  content: "ログイン";
  position: absolute;
  bottom: 6px;
  left: 24px;
  margin: auto 0;
  font-size: 10px;
  width: 40px;
  height: 12px;
  line-height: 12px;
  color: #fff;
}
.btn:after {
  position: absolute;
  content: "";
  overflow: hidden;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 0 0 50% 50%;
  background: #fff;
  opacity: 0.3;
}

.btn-top:after {
  position: absolute;
  content: "";
  overflow: hidden;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 0 0 50% 50%;
  background: #fff;
  opacity: 0.3;
}

.btn-gold {
  background: linear-gradient(to bottom, #b59f3e, #a87e1c);
}

.btn-green {
  background: linear-gradient(to bottom, #189095, #066265);
}

.btn-gold:before {
  background: linear-gradient(to bottom, #f8e36e, #906400);
}

.btn-green:before {
  background: linear-gradient(to bottom, #2cc9d0, #037777);
}

/*小さいボタン*/

.btn-s {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 40px;
  max-width: 240px;
  border-radius: 28px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.btn-s:after {
  position: absolute;
  content: "";
  overflow: hidden;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 0 0 50% 50%;
  background: #fff;
  opacity: 0.3;
}

.btn-s-red {
  background: #8e2258;
}

/* 製品名ボタン */
.btn-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 64px;
  max-width: 327px;
  border-radius: 32px;
  background: #8e2258;
  font-size: 20px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* icon */

.arrow__right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  box-sizing: border-box;
  transform: rotate(45deg);
}

.arrow__left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 16px;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  box-sizing: border-box;
  transform: rotate(-135deg);
}

.btn-icon {
  position: absolute;
  left: 24px;
}

.btn-s-span {
  font-size: 14px;
}

/*btn hover*/

.btn:hover,
.btn-s:hover {
  transition: 0.4s;
  opacity: 0.6;
}

/* font-size */
@media screen and (min-width: 960px) {
  .fontsize--S {
    font-size: 16px;
  }

  .fontsize--M {
    font-size: 18px;
  }

  .fontsize--L {
    font-size: 24px;
  }

  .fontsize--LL {
    font-size: 40px;
  }
}

/*余白 */
@media screen and (min-width: 960px) {
  .mb--ML {
    margin-bottom: 40px;
  }

  .mb--L2L {
    margin-bottom: 80px;
  }

  .mb--LL3L {
    margin-bottom: 120px;
  }

  .pb--M {
    padding-bottom: 40px;
  }

  .pb--L {
    padding-bottom: 40px;
  }

  .pb--LL {
    padding-bottom: 120px;
  }

  .py--L2L {
    padding: 80px 0;
  }

  .d-flex {
    display: flex;
  }

  .pc-none {
    display: none !important;
  }

  .d-none {
    display: block;
  }
}

/* top-page */
@media screen and (min-width: 960px) {
  .header__bar {
    flex-direction: row-reverse;
  }

  /* login */
  .login__title {
    padding-top: 120px;
  }

  .aboutUs {
    padding-bottom: 120px;
  }

  .about__wrapper {
    padding: 40px 0;
  }

  .card__wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .card:not(:last-child) {
    margin-right: 120px;
  }

  .brandCard {
    padding-bottom: 80px;
  }

  .brandItem {
    max-width: 1200px;
    margin: 0 auto;
  }
  .mainvisual__hero h2 {
    font-size: 42px;
    right: 30px;
  }
}

/* brand01.brand02 */
@media screen and (min-width: 960px) {
  .brand01__thumbnail {
    display: none;
  }
}

/* information */
@media screen and (min-width: 960px) {
  .section__title {
    padding-top: 120px;
  }

  .informationArticle__title {
    padding-top: 120px;
  }

  .information__box {
    padding-bottom: 16px;
  }

  .information__box:not(:first-child) {
    padding-top: 16px;
  }

  .information__date {
    display: inline;
  }

  .information__title {
    padding: 0 0 0 40px;
  }

  .information {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .article__imageBox {
    margin: 24px 0 80px 0;
  }

  .compliance__title {
    display: none;
  }

  /* compliance */
  .compliance--Table {
    padding-top: 120px;
  }

  .compliance--Th {
    padding-bottom: 24px;
  }

  .compliance--Td {
    padding: 0 0 24px 40px;
  }

  /* footer */
  .footer__wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .footerIcon {
    padding-bottom: 80px;
  }

  .footerList {
    padding: 40px 0;
  }

  footer small {
    padding-bottom: 40px;
  }
  .information__wave {
    transform: scale(1, 1) rotate(180deg);
  }
  .information {
    padding-bottom: 0px;
  }
  .about__wrapper {
    display: flex;
  }
  .about__text > .py--L2L {
    padding: 0rem 0 6rem;
  }
  .aboutMovie {
    z-index: 1;
  }
  .menu__pc {
    display: block;
    position: absolute;
    bottom: -40px;
    z-index: 3;
    background: #fff;
    left: 0;
    right: 0;
    padding: 24px;
  }
  .thought__middle > .section__wrapper h3 {
    position: absolute;
    top: 170px;
    right: 0;
    color: #fff;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 560px;
  }
  .thought__middle {
    padding-bottom: 4rem;
  }
  .pc-br::before {
    content: "\A";
    white-space: pre;
  }
  .brandItem > .fontsize--LL {
    padding: 80px 0;
  }
  .brandItem > .py--L2L {
    padding: 0;
  }
  .item {
    width: 320px;
    height: 240px;
  }
  .item__wrapper {
    border-bottom: 1px solid #dedede;
    padding-bottom: 40px !important;
    height: 300px;
  }
  .brandCard {
    padding-top: 40px;
    position: relative;
  }
  .brand_bg {
    position: relative;
  }
  .brand_bg::before {
    content: "";
    position: absolute;
    width: 1050px;
    height: 1050px;
    background: url(/common/img/brand_bg_rogo.svg) center / 100% 100% no-repeat;
    z-index: -1;
    bottom: 1rem;
    left: -460px;
  }
}

@media screen and (min-width: 560px) {
  .wave-red-top::before {
    width: 100%;
    background: url(/common/img/pc-top-wave.svg) center / 100% 100% no-repeat;
    bottom: 0;
    height: 240px;
  }
  .wave-white::after {
    width: 100%;
    background: url(/common/img/pc-top-wave-white.svg) center / 100% 100% no-repeat;
  }
  .top-img-container {
    display: none;
  }
  .mainvisual__bottom {
    height: 0;
  }
  
}
@media screen and (min-width: 960px) {
  .about::before {
    width : 800px ;
    height : 800px ;
    bottom: 170px;
    left: auto ;
    right: calc( ( 100vw - 1200px )  / 2 - 100px  );
    margin: 0 ;
  }
}

.information {
  position: relative;
}
.information__head {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.mainCopy {
  box-sizing: border-box;
  line-height: 40px;
}
.mainCopy__indent {
  display: inline-block;
  margin-left: 16px;
}
.thought__message {
  text-align: justify;
  line-height: 180%;
  text-indent: -10px;
}
.about__wrapper {
  padding: 0;
}
.information__logo {
  position: static;
}
.about__text {
  margin: 0 0 40px;
}
@media screen and (min-width: 960px) {
  .information__head {
    position: static;
  }
  .mainCopy {
    line-height: 60px;
    top: 220px !important ;
    left: 65% !important;
    right: auto !important ;
  }
  .menu__pc::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -20px;
    bottom: -20px;
    width: calc(100% + 20px * 2);
    height: 60px;
    background: #fff;
  }
  .information {
    box-shadow: 0 -5px 10px rgba(0, -3, 10, 0.1);
  }
  .about__wrapper {
    justify-content: center;
    align-items: center;
  }
  .aboutMovie {
    width: 500px;
    height: 280px;
    margin: 0 80px 0 0;
  }
  .about__text {
    margin: 0;
    width: calc( 100% - 580px);
  }
  .about__text .py--L2L {
    padding: 0 0 40px !important ;
    font-size: 34px;
  }
  .thought__message {
    padding: 0 0 0 44px;
    box-sizing: border-box;
  }
}
.kaisha {
  line-height: 140%;
}
.kaisha__english {
  font-size: 12px !important ;
}
.starArea {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 800px;
  overflow: hidden;
}
.star {
  position: absolute;
  width: 180px;
  height: 20px;
  transform: rotate(45deg);
  transform-origin: center;
}
.star__on .star::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  animation-name: star;
  animation-duration: 0.4s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  background: url(/common/img/star.svg) center / 100% no-repeat;
}
.star__on .star::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  width: 0;
  height: 1px;
  background: #fff;
  animation-name: starLine;
  animation-duration: 0.4s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
.star__on .star:nth-child(2) {
  top: 22%;
  left: auto;
  right: -10%;
}
.star__on .star:nth-child(3) {
  top: 10%;
  left: -10%;
}
.star__on .star:nth-child(4) {
  top: 22%;
  left: 36%;
}
.star__on .star:nth-child(5) {
  top: 6%;
  right: 6%;
}
.star__on .star:nth-child(2)::before,
.star__on .star:nth-child(2)::after {
  animation-delay: 0.2s;
}
.star__on .star:nth-child(3)::before,
.star__on .star:nth-child(3)::after {
  animation-delay: 0.4s;
}
.star__on .star:nth-child(4)::before,
.star__on .star:nth-child(4)::after {
  animation-delay: 0.6s;
}
.star__on .star:nth-child(5)::before,
.star__on .star:nth-child(5)::after {
  animation-delay: 0.8s;
}
@keyframes star {
  0% {
    left: 0;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes starLine {
  0% {
    width: 0;
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    width: calc(100% - 24px);
    opacity: 0;
  }
}
.thought__text {
  margin: 24px auto 0;
  padding: 24px 0 0 0;
  border-top: solid 1px #cbb364;
}
@media screen and (min-width: 960px) {
  .thought__text {
    margin: 0;
    padding: 0;
    border-top: solid 0 transparent;
  }
  .thought .section__wrapper {
    max-width: 840px;
  }
  .wave-yellow::after {
    left: calc((100% - 840px) / 2);
  }
  .company__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*    background : orange ;*/
  }
  .company .btn-green {
    margin: 0;
  }
  .kaisha {
    margin: 0;
    max-width: 500px;
  }
  .company .btn-s-red {
    margin: 24px 0 0;
    left: 120px;
  }
  .company__map {
    position: absolute;
    top: 240px;
    right: 0;
    margin: 0;
    width: calc(50% - 40px);
    max-width: calc(100% - 500px - 80px);
    height: 420px;
  }
  .ggmap {
    height: 100%;
  }
}
@media screen and (min-width: 960px) {
  .telButton {
    width: 500px;
    color: #333;
    max-width: 500px;
    margin: 0 0 24px 0 !important ;
    overflow: visible;
    background: transparent !important ;
    box-shadow: 0 0 0 transparent;
    pointer-events: none;
  }
  .telButton::before {
    background: transparent;
  }
  .btn-span-call {
    position: absolute;
    display: block;
    width: 200px;
    height: 24px;
    line-height: 24px;
    top: 0;
    left: 0;
    font-size: 14px;
  }
  .btn-span-call::before {
    width: 500px;
    font-size: 28px;
    line-height: 36px;
    top: auto;
    left: 40px;
    bottom: -36px;
  }
  .telButton::after {
    background: transparent !important ;
  }
  .btn-icon-call {
    top: 26px;
    left: 0;
  }
  .btn-container {
    position: static;
    width: 100%;
    height: 100%;
  }
}
.slick {
  position: relative;
  width: 100%;
  margin: 0 0 40px 0;
}
.slick__item {
  width: 70%;
  height: 100%;
  overflow: hidden;
  margin: 0 16px;
}
.slic__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slick__img {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .slick::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dedede;
  }
}

/*////////////////////////////////////

  Global Menu

/////////////////////////////////////*/
#menuOpen {
  display: none;
}
.globalMenu {
  z-index: 9999;
  transition: 0.4s;
}
.menubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  padding: 0 0 0 8px;
  box-sizing: border-box;
  transition: 0.4s;
  background: #8e2258;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.menubar__logo {
  width: 120px;
  height: 32px;
  background: url(/common/img/logo.png) center / auto 100% no-repeat;
}
.menubar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 104px - 24px);
  max-width: 220px;
  height: 100%;
}
.menubar__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 56px;
  border-radius: 30px 0 0 30px;
  background: #8e2258;
}
.menubar__button::before {
  content: "メニュー";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  width: 56px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 0 8px;
  box-sizing: border-box;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #fff;
  transition: 0.4s;
}
.menubar__button--en::before {
  content: "MENU";
}
.menubar__button--th::before {
  content: "เมนู";
}
.menubar__button--inner {
  position: relative;
  width: 24px;
  height: 2px;
  margin: 0 0 10px 6px;
  background: #fff;
  transition: 0.4s;
}
.menubar__button--inner::before,
.menubar__button--inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}
.menubar__button--inner::before {
  top: -8px;
}
.menubar__button--inner::after {
  top: 8px;
}
#menuOpen:checked ~ #globalMenu .menubar__button::before {
  content: "閉じる";
}
#menuOpen:checked ~ #globalMenu .menubar__button--en::before {
  content: "CLOSE";
}
#menuOpen:checked ~ #globalMenu .menubar__button--th::before {
  content: "ปิด";
}
#menuOpen:checked ~ #globalMenu .menubar__button--inner {
  background: transparent;
}
#menuOpen:checked ~ #globalMenu .menubar__button--inner::before {
  top: 0;
  transform: rotate(-45deg);
}
#menuOpen:checked ~ #globalMenu .menubar__button--inner::after {
  top: 0;
  transform: rotate(45deg);
}
.menuContent {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 100vw;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 56px 0 0 0;
  box-sizing: border-box;
  background: #8e2258;
  transition: 0.7s;
}
.menuContent::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 24vh;
  background: url(/common/img/wave-white.svg) right bottom / 60% 100% no-repeat;
}
.menuContent::after {
  content: "";
  position: absolute;
  z-index: 11;
  right: 8px;
  bottom: 8px;
  width: 170px;
  height: 40px;
  background: url(/common/img/logo.png) center / auto 100% no-repeat;
}
.menuContent__wrapper {
  width: calc(100% - 32px * 2);
  margin: 80px auto 0;
}
.menuContent__box {
  width: 100%;
  max-width: 280px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  border: solid 1px #fff;
  margin: 0 auto 8px;
}
.menuContent__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  height: 40px;
  line-height: 120%;
  text-decoration: none;
  color: #fff;
}
.angle {
  position: relative;
}
.angle::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
.globalMenu--topStyle {
  transition: 0.4s;
}
.globalMenu--topStyle .menubar {
  height: 64px;
  transition: 0.4s;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  background: transparent;
}
.globalMenu--topStyle .menubar__wrapper {
  align-items: flex-end;
}

.globalMenu--topStyle .menubar__logo {
  display: none;
}
.globalMenu--topStyle .menubar__wrapper {
  width: 100%;
  max-width: 100%;
}
.globalMenu--topStyle .menuContent {
  transition: 0.7s;
}
#menuOpen:checked ~ .globalMenu .menuContent,
#menuOpen:checked ~ .globalMenu--topStyle .menuContent {
  left: 0;
}
@media screen and (min-width: 960px) {
  .globalMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
  }
  .menubar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .menubar__logo {
    width: 160px;
    z-index: 5;
    transition: 0.4s;
  }
  .menuContent {
    position: absolute;
    z-index: 10000000;
    top: -16px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 480px);
    padding: 0;
    max-width: 1200px;
    height: 48px;
    box-sizing: border-box;
    background: transparent;
  }
  .menuContent::before,
  .menuContent::after {
    display: none;
  }
  .menubar {
    height: 64px;
    background: #8e2258;
  }
  .menuContent__wrapper {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
  }
  .menubar__wrapper {
    max-width: 232px;
  }
  .menubar__button {
    display: none;
  }
  .menuContent__box {
    width: calc(100% / 5);
    height: 100%;
    box-sizing: border-box;
    border: none;
    margin: 0;
    border-radius: 0;
  }
  .globalMenu .angle::before {
    border: none;
  }
  .loginButton--inMenu {
    display: none;
  }
  .menuContent__wrapper {
    border-left: solid 1px #fff;
  }
  .menuContent__link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: solid 1px #fff;
    width: 100%;
    height: 100%;
    font-size: 13px;
  }
  .globalMenu--topStyle .menubar__wrapper {
    position: absolute;
    top: 4px;
    right: 8px;
    width: 240px;
    height: 64px;
  }
  .globalMenu--topStyle .menubar__logo {
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 240px;
    height: 64px;
  }
  .globalMenu--topStyle {
    position: relative;
    height: 0;
  }
  .globalMenu--topStyle .menubar {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
  }
  .globalMenu--topStyle .menuContent {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 40px * 2);
    height: 80px;
    max-width: 1200px;
    padding: 0;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: #fff;
  }
  .globalMenu--topStyle .menuContent__wrapper {
    width: calc(100% - 56px);
    max-width: 100%;
    height: 56px;
  }
  .globalMenu--topStyle .menuContent__link {
    color: #8e2258;
    border-right: solid 1px #8e2258;
  }
  .globalMenu--topStyle .menuContent__wrapper::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -20px;
    left: -50%;
    right: -50%;
    margin: 0 auto;
    width: calc(100% + 40px);
    height: 60px;
    background: #fff;
  }
  .globalMenu--topStyle .menuContent__box:first-child {
    border-left: none;
  }
  .globalMenu--topStyle .menuContent__box:last-child .menuContent__link {
    border: none;
  }
}

@media screen and (min-width: 1200px) {
  .menuContent__link {
    font-size: 15px;
  }
}
/*////////////////////////////////////

  Login Button

/////////////////////////////////////*/
.loginButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 148px;
  height: 40px;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  border-radius: 40px;
  padding: 0 0 0 24px;
  box-sizing: border-box;
  color: #fff;
  border: solid 2px #ab8725;
  background: linear-gradient(0deg, #906400, #f8e36e);
  overflow: hidden;
  transition: 0.4s;
  text-decoration: none;
}
.loginButton::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 16px;
  width: 28px;
  height: 28px;
  background: url(/common/img/login-icon.svg) center / auto 100% no-repeat;
}
.loginButton::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -5%;
  width: 110%;
  height: 100%;
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.3);
}
.loginButton--inMenu {
  margin: 24px auto 24px;
  width: 240px;
  height: 48px;
}
.globalMenu--topStyle .loginButton {
  width: 240px;
  height: 56px;
}
.menubar .loginButton {
  padding: 0;
  font-size: 14px;
}
.menubar .loginButton::before {
  display: none;
}
.globalMenu--topStyle .menubar .loginButton {
  padding: 0 0 0 24px;
  font-size: 16px;
}
.globalMenu--topStyle .menubar .loginButton::before {
  display: block;
}
@media screen and (min-width: 960px) {
  .loginButton {
    width: 224px;
  }
  .menubar .loginButton {
    padding: 0 0 0 24px;
    font-size: 16px;
  }
  .menubar .loginButton::before {
    display: block;
  }
  .menuContent .loginButton--inMenu {
    display: none;
  }
}
.category--info .information {
  box-shadow: 0 0 0 transparent;
}
.footer__wrapper {
  width: 100%;
}
.footerList {
  width: 100%;
  max-width: 400px;
}
/* ******************** brand01,brand02 ******************** */
.brand01 {
  color: #fff;
}
.brandImg__box {
  width: 190px;
  margin: 0 auto;
}
.brand01__hero {
  width: 100%;
  height: 760px;
  /*    background-repeat: no-repeat;
    background-position: 67%;
    background-size: cover;*/
}
.anantara-bg {
  background: url(/common/img/top_anantara_sp.jpg) center / cover no-repeat;
}
.iku-bg {
  background: url(/common/img/top_iku_sp.jpg) center / cover no-repeat;
}
@media screen and (min-width: 960px) {
  .anantara-bg {
    background: url(/common/img/top_anantara_pc.jpg) center / 100% no-repeat;
  }
  .iku-bg {
    background: url(/common/img/top_iku_pc.jpg) center / 100% no-repeat;
  }
}
.brand01__title {
  padding: 40px 0;
}
.brand01__thumbnail {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.brand01__middle {
  position: relative;
  background-color: #8e2258;
}
.brand01__bottom {
  width: 100%;
  height: 240px;
}
.brand02__wrapper {
  flex-direction: column;
  padding-bottom: 80px;
}
.brand02__title {
  padding-bottom: 40px;
}
.brand__product {
  max-width: 600px;
  margin: 24px auto 40px;
}
.brand__seihin {
  max-width: 327px;
  height: 64px;
  margin: 0 auto;
  background: #8e2258;
  border-radius: 32px;
  color: #fff;
  text-align: center;
}
.brand__seihin-name {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  /* brand01.brand02 */
  .brand01__thumbnail {
    display: none;
  }
  .brand01__box {
    display: flex;
    align-items: center;
  }
  .brand01__text {
    width: 75%;
  }
  .brand02__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .brandImg__box {
    max-width: 760px;
    margin: 0 80px 0 0;
    width: 40%;
  }
  .brand__product {
    max-width: 760px;
    margin: 0 80px 0 0;
    width: 40%;
  }
  .brand__right {
    width: 60%;
  }
  .brand02__text {
    padding-top: 40px;
  }
  .brand02__title {
    padding-bottom: 80px;
  }
}
.brand__text {
/*  text-align: justify;*/
}
.explanation {
  max-width: 600px;
  margin: 0 auto;
}
.explanation:not(:last-child) {
  margin-bottom: 80px;
}
.explanation__wrapper {
  position: relative;
}
.explanation__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 16px;
  height: 64px;
  border-radius: 32px;
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px 0;
  color: #fff;
  background: #8e2258;
}
.explanation__titleInner {
  position: relative;
  top: -8px;
  height: 24px;
  line-height: 24px;
}
.explanation__titleInner--en {
    position: relative;
    top: 0px;
    height: 24px;
    line-height: 24px;
}
.explanation__translation {
  display: block;
  font-size: 12px;
  height: 16px;
  line-height: 16px;
  margin: 4px 0 0 0;
}
.explanation__text {
  margin: 40px 0 0 0;
  font-size: 14px;
  line-height: 180%;
/*  text-align: justify;*/
}
.explanation__image {
  position: relative;
  width: 100%;
  height: 60vw;
  max-height: 400px;
  overflow: hidden;
}
.explanation__imageInner {
  position: absolute;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  margin: auto;
  width: 105%;
}
@media screen and (min-width: 960px) {
  .explanation {
    max-width: 100%;
  }
  .explanation__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .explanation__image {
    width: 376px;
    height: 240px;
  }
  .explanation__title {
    position: absolute;
    top: 0;
    left: calc(376px + 80px);
    width: 320px;
  }
  .explanation__text {
    width: calc(100% - 376px - 80px);
    margin: 104px 0 0 0;
  }
}
.starPrince {
  padding: 24px 0 0 0;
  font-size: 12px;
}
.starPrince__name {
  font-size: 10px;
}
.thought__text {
/*  text-align: justify;*/
}
.textBox {
/*  text-align: justify;*/
}
@media screen and (min-width: 960px) {
  .starPrince {
    padding: 0 0 24px 0;
  }
}
.form__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#inputSubmit {
  display: none;
}
.notLink {
  color: #aaa !important ;
  pointer-events: none !important;
}
.notFound {
  text-align: center;
  margin-top: 100px;
}
.notFound .center {
  color: #8e2258;
}
.notFound__text {
  margin: 40px 0;
}
.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #8e2258;
}
.loading__wrapper {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loading__text {
  color: #fff;
  animation: loading 1s ease-in-out infinite alternate;
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.loading--del {
  display: none;
}

/*////////////////////////////////////

  2021-04-29 CRANKS OGINO

/////////////////////////////////////*/
.langSwitch__icon {
  width: 20px;
  margin-right: 8px;
}
/*////////////////////////////////////

  2021-05-22 SDGs banner

/////////////////////////////////////*/
.banner{
  position : relative ;
  z-index : 10 ;
  display : block ;
  width : 100% ;
  max-width : 480px ;
  margin : 64px auto ;
  background : #FFF ;
  transition : .4s ;
}
.banner img{
  width : 100% ;
}
.banner:hover{
  opacity : .7 ;
}
@media screen and ( min-width : 960px ){
  .banner {
    max-width : 800px ;
  }
}
/*
.underline--pink {
    color: #8d2258;
    margin: 24px 0;
    display: inline-block;
}
*/
.footerList {
  display : flex ;
  flex-wrap : wrap ;
}
.footerList > li {
  width : 50% ;
  max-width : 200px ;
}
.footerList .footerList__link {
  display : flex ;
  align-items : center ;
  position : relative ;
  width : 100% ;
  height : 32px ;
  padding-left : 24px ;
}
.footerList .footerList__link::before {
  content : '' ;
  position : absolute ;
  top : 0 ;
  left : 0 ;
  bottom : 0 ;
  margin : auto 0 ;
  width : 0 ;
  height : 0 ;
  border-top : solid 5px transparent ;
  border-bottom :solid 5px transparent ;
  border-left : solid 10px #FFF ;
  border-right : solid 0 transparent ;
  transition : .3s ;
}
.footerList > li:hover .footerList__link::before {
  left : 8px ; 
}

.langBox {
  display : flex ;
  justify-content : center ;
  align-items : center ;
  border : none ;
}
.lang_linkBox {
  display : flex ;
  justify-content : space-between ;
  width : 112px ;
  height : 32px ;
}
.lang_link {
  display :block ;
  width : 48px ;
  height : 32px ;
  box-shadow : 0 0 2px rgba(0,0,0,.2);
}
.lang_link--ja {
  background : url(/common/img/ja/lang.svg) center / 100% no-repeat ;
}
.lang_link--en {
  background : url(/common/img/en/lang.svg) center / 100% no-repeat ;
}
.lang_link--th {
  background : url(/common/img/th/lang.svg ) center / 100% no-repeat ;
}
