@charset "utf-8";

/*
==============
shared.css
==============
*/

/* -----------------
■ デフォルトリセット
------------------- */
html,
body {
	margin: 0;
	padding: 0;
	font-size: 100%;
}

h1,
h2,
h3,
h4,
p,
dt,
dd {
	margin: 0;
	font-size: 100%;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}




/* -----------------
■ フォント
------------------- */
.wrapper {
	font-family: UDShinGoPr, "UD新ゴ Pr", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%; }

.zenOldMin {
  font-family: "Zen Old Mincho", serif;
}

.cardo {
  font-family: "Cardo", serif;
}




/* -----------------
■ 全体
------------------- */
:root {
	--scrollbar: 0;
  --w: 1512;
  --customW: var(--w) * 100vw;
  --primary-color: #3E3530;
  --color-blue: #006E98;
  --color-gold: #CCA875;
}

body {
	min-height: 0;
}

.brandSiteHeader {
  background-color: #fff;
}

.wrapper {
  color: var(--primary-color);
}

.wrapper a {
  text-decoration: none;
}

.wrapper img {
	max-width: 100%;
	vertical-align: middle;
}

.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1.5s;
}

.js-fadein.is-view {
	opacity: 1;
  transform: translateY(0);
}


@media screen and (max-width: 767px)
{
  :root {
    --w: 375;
    --customW: var(--w) * 100vw;
  }

	body {
		min-height: 1px;
  }

	.wrapper img {
		width: 100%;
  }

	.js-fadein {
	  transform: translateY(calc(30 / var(--customW)));
  }

}


/* -----------------
■ wrapper
------------------- */
.wrapper {
  position: relative;
  background: url(../img/common/bg_mv.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


@media screen and (max-width: 767px)
{
  .wrapper {
    background: none;
  }

  .wrapper::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/common/bg_mv.jpg) no-repeat;
    background-size: cover;
    z-index: -1;
  }

}




/* -----------------
■ ヘッダー
------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 48px;
  box-sizing: border-box;
  z-index: 10;
}

.header.is-fixed {
  position: fixed;
}


/* menu */
.header__menu {
  display: flex;
  gap: 0 36px;
  padding-top: 4px;
}

.header__menu-list {
  align-items: flex-start;
  gap: 0 36px;
  padding-top: 23px;
}

@media screen and (min-width: 768px)
{
  .header__menu-list {
    display: flex!important;
  }
}

.header__menu-list-item {
  position: relative;
  font-size: 16px;
  line-height: 1;
}

.header__menu-list-item:nth-of-type(1) {
  width: 36px;
}

.header__menu-list-item:nth-of-type(2) {
  width: 66px;
}


.header__menu-list-item-link {
  display: block;
  position: relative;
  color: var(--primary-color);
  cursor: pointer;
  transition: color .4s;
}

.header__menu-list-item-link span {
  display: inline-block;
  transition: all .4s;
}

.header__menu-list-item-link span:nth-of-type(1) {
  transform: rotateX(0);
}

.header__menu-list-item-link span:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px) rotateX(90deg);
}

.header__menu-list-item-link:hover span:nth-of-type(1) {
  opacity: 0;
  transform: translateY(-20px) rotateX(90deg);
}

.header__menu-list-item-link:hover span:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.header__menu-list-item:hover .header__menu-list-item-link {
  color: var(--color-blue);
}


/* lineup-menu */
.lineup-menu {
  display: none;
  position: absolute;
  top: calc(100% + 21px);
  right: -15px;
  width: 264px;
  border-radius: 10px;
  background-color: rgba(226, 239, 245, .9);
  box-shadow: 8px 8px 12.9px 0 #abd5e8;
}

.lineup-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 39px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #e2eff5;
  border-top: 0;
}

.lineup-menu__list {
  padding: 28px 24px 30px;
}

.lineup-menu__list-item:nth-of-type(n+2) {
  margin-top: 20px;
}

.lineup-menu__list-item-dl-title {
  position: relative;
  padding-left: 18px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.lineup-menu__list-item-dl-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: url(../img/common/icon_menu_arrow.svg) no-repeat 0 center;
}

.lineup-menu__list-item-dl-text {
  margin-top: 4px;
  padding-left: 18px;
  color: var(--color-blue);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.lineup-menu__list-item a:hover .lineup-menu__list-item-dl-title::before {
  animation: arrowMove 0.4s linear forwards;
}

@keyframes arrowMove {
  0% { left: 0; }
  30% { left: 8px; opacity: 0; }
  40% { left: 8px; opacity: 0; }
  45% { left: -8px; opacity: 0; }
  100% { left: 0; opacity: 1; }
}


/* online */
.header__menu-online {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.header__menu-online-svg {
  transform: rotate(-90deg);
}

.header__menu-online-svg circle {
  fill: none;
  stroke-width: 1px;
  stroke-dasharray: 182;
}

.header__menu-online-svg-circle {
  stroke: var(--primary-color);
  stroke-dashoffset: 0;
  transform: rotate(180deg) scale(-1, 1);
  transform-origin: center center;
  transition: stroke-dashoffset .4s;
}

.header__menu-online-svg-circle2 {
  stroke: var(--color-blue);
  stroke-dashoffset: 182;
  transition: stroke-dashoffset .4s;
}

.header__menu-online-cart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform .4s;
  z-index: 2;
}

.header__menu-online-cart-path {
  transition: fill .4s;
}

.header__menu-online:hover .header__menu-online-svg-circle {
  stroke-dashoffset: 182;
}

.header__menu-online:hover .header__menu-online-svg-circle2 {
  stroke-dashoffset: 0;
}

.header__menu-online:hover .header__menu-online-cart {
  transform: translate(-50%, -50%) scale(1.3);
}

.header__menu-online:hover .header__menu-online-cart-path {
  fill: var(--color-blue);
}


@media screen and (max-width: 767px)
{
  .header {
    padding: calc(12 / var(--customW)) calc(18 / var(--customW));
  }

  .header__logo {
    position: relative;
    width: calc(47 / var(--customW));
    z-index: 1;
  }


  /* menu */
  .header__menu {
    gap: 0 calc(18 / var(--customW));
    align-items: center;
    padding-top: 0;
  }

  .header__menu-list {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: calc(110 / var(--customW)) calc(36 / var(--customW)) calc(68 / var(--customW));
    box-sizing: border-box;
    border-radius: 0 0 calc(20 / var(--customW)) calc(20 / var(--customW));
    background-color: rgba(226, 239, 245, .9);
    backdrop-filter: blur(15px);
  }

  .header__menu-list-item {
    width: auto!important;
    font-size: calc(20 / var(--customW));
  }

  .header__menu-list-item:nth-of-type(n+2) {
    margin-top: calc(24 / var(--customW));
  }

  .header .header__menu-list-item-link,
  .header__menu-list-item:hover .header__menu-list-item-link {
    color: var(--color-blue);
  }

  .header__menu-list-item-link span:nth-of-type(2) {
    display: none;
  }

  .header__menu-list-item-link:hover span:nth-of-type(1) {
    opacity: 1;
    transform: none;
  }

  /* lineup-menu */
  .lineup-menu {
    display: block!important;
    position: static;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    background: none;
  }

  .lineup-menu::before {
    display: none;
  }

  .lineup-menu__list {
    padding: calc(20 / var(--customW)) calc(0 / var(--customW)) calc(20 / var(--customW));
  }

  .lineup-menu__list-item:nth-of-type(n+2) {
    margin-top: calc(14 / var(--customW));
  }

  .lineup-menu__list-item-dl-title {
    padding-left: calc(18 / var(--customW));
    font-size: calc(13 / var(--customW));
  }

  .lineup-menu__list-item-dl-title::before {
    width: calc(6 / var(--customW));
  }

  .lineup-menu__list-item-dl-text {
    margin-top: calc(4 / var(--customW));
    padding-left: calc(18 / var(--customW));
    font-size: calc(16 / var(--customW));
  }

  .lineup-menu__list-item a:hover .lineup-menu__list-item-dl-title::before {
    animation: none;
  }


  /* online */
  .header__menu-online {
    width: calc(34 / var(--customW));
    height: calc(34 / var(--customW));
  }

  .header__menu-online-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .header__menu-online-svg circle {
    fill: none;
    stroke-width: 1px;
    stroke-dasharray: 182;
  }

  .header__menu-online-svg-circle2 {
    display: none;
  }

  .header__menu-online-cart {
    width: calc(17 / var(--customW));
    height: calc(17 / var(--customW));
  }

  .header__menu-online:hover .header__menu-online-svg-circle {
    stroke-dashoffset: 0;
  }

  .header__menu-online:hover .header__menu-online-cart {
    transform: translate(-50%, -50%);
  }

  .header__menu-online:hover .header__menu-online-cart-path {
    fill: var(--primary-color);
  }


  /* btn */
  .header__menu-btn {
    position: relative;
    padding-right: calc(32 / var(--customW));
    color: var(--primary-color);
    font-size: calc(14 / var(--customW));
    line-height: 1.5;
  }

  .header__menu-btn-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .header__menu-btn-wrap::before,
  .header__menu-btn-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    width: calc(20 / var(--customW));
    height: 1px;
    transition: transform .4s, top .4s;
    background-color: var(--primary-color);
  }

  .header__menu-btn-wrap::before {
    top: calc(-3 / var(--customW));
  }

  .header__menu-btn-wrap::after {
    top: calc(3 / var(--customW));
  }
  
  .header__menu-btn.is-open .header__menu-btn-wrap::before {
    top: 0;
    transform: translateY(-50%) rotate(150deg);
  }

  .header__menu-btn.is-open .header__menu-btn-wrap::after {
    top: 0;
    transform: translateY(-50%) rotate(-150deg);
  }

}




/* -----------------
■ btn
------------------- */
.c-btn {
  width: clamp(152px, 17.196vw, 260px);
  text-align: center;
}

.c-btn-link {
  overflow: hidden;
  display: block;
  position: relative;
  padding: 13px 0 12px;
  color: #fff;
  font-size: clamp(14px, 1.19vw, 18px);
  line-height: 1.5;
  transition: background .4s;
  border-radius: 30px;
  background-color: var(--color-blue);
}

.c-btn-none {
  opacity: 0.3;
}

.c-btn-link span {
  display: inline-block;
  transition: all .4s;
}

.c-btn-link span:nth-of-type(1) {
  transform: rotateX(0);
}

.c-btn-link span:nth-of-type(2) {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) rotateX(90deg);
}

.c-btn:not(.c-btn-none):hover span:nth-of-type(1) {
  opacity: 0;
  transform: translateY(-20px) rotateX(90deg);
}

.c-btn:not(.c-btn-none):hover span:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.c-btn-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  width: 6px;
  height: 100%;
  background: url(../img/common/icon_btn_arrow.svg) no-repeat 0 center;
}

.c-btn:not(.c-btn-none) .c-btn-link:hover {
  background-color: var(--color-gold);
}

.c-btn:not(.c-btn-none) .c-btn-link:hover::after {
  animation: btnArrowMove 0.4s linear forwards;
}

@keyframes btnArrowMove {
  0% { right: 24px; opacity: 1; }
  30% { right: 16px; opacity: 0; }
  40% { right: 16px; opacity: 0; }
  45% { right: 40px; opacity: 0; }
  100% { right: 24px; opacity: 1; }
}


@media screen and (max-width: 767px)
{
  .c-btn {
    width: calc(152 / var(--customW));
  }

  .c-btn-link {
    padding: calc(10 / var(--customW)) 0 calc(10 / var(--customW));
    font-size: calc(14 / var(--customW));
    line-height: 1.5;
    border-radius: calc(30 / var(--customW));
  }

  .c-btn-link span {
    padding-right: calc(8 / var(--customW));
  }

  .c-btn-link span:nth-of-type(2) {
    display: none;
  }

  .c-btn-link:hover span:nth-of-type(1) {
    opacity: 1!important;
    transform: none!important;
  }

  .c-btn-link::after {
    right: calc(14 / var(--customW));
    width: calc(6 / var(--customW));
  }

  .c-btn .c-btn-link:hover {
    background-color: var(--color-blue)!important;
  }

  .c-btn .c-btn-link:hover::after {
    animation: none!important;
  }
}




/* -----------------
■ modal
------------------- */
.modal {
	display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 99;
}

.modal::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-inner {
	display: inline-block;
  position: relative;
  vertical-align: middle;
  text-align: left;
}

.modal-inner2 {
	position: relative;
	width: 89.417vw;
  margin: 0 auto;
  padding: 70px 20px;
  background-color: #F3F4F4;
}

.modal__close {
	position: absolute;
	top: 24px;
	right: 24px;
  width: 44px;
  height: 26px;
	cursor: pointer;
	z-index: 1;
}

.modal__close span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.modal__close span::before,
.modal__close span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 44px;
  height: 2px;
  transition: background .4s;
  background-color: var(--primary-color);
}

.modal__close span::before {
  transform: rotate(30deg);
}

.modal__close span::after {
  transform: rotate(-30deg);
}

.modal__close:hover span::before,
.modal__close:hover span::after {
  background-color: var(--color-blue);
}

.modal__head {
	text-align: center;
}

.modal__head-title {
  color: var(--color-blue);
  font-size: 40px;
  font-weight: normal;
  line-height: 1.5;
}

.modal__body {
	margin-top: 75px;
}

.modal__body-list {
	display: flex;
	justify-content: center;
	gap: 0 32px;
}

.modal__body-list a {
  transition: opacity .4s;
}

.modal__body-list a:hover {
  opacity: 0.6;
}

.modal__body-text {
	margin-top: 80px;
	color: #3E3A39;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}


@media screen and (max-width: 767px)
{
  .modal-inner2 {
    position: relative;
    width: calc(273 / var(--customW));
    margin: 0 auto;
    padding: calc(55 / var(--customW)) 0 calc(24 / var(--customW));
  }

  .modal__close {
    top: calc(12 / var(--customW));
    right: calc(12 / var(--customW));
    width: calc(24 / var(--customW));
    height: calc(20 / var(--customW));
  }


  .modal__close span::before,
  .modal__close span::after {
    width: calc(24 / var(--customW));
    height: 1px;
  }

  .modal__close:hover span::before,
  .modal__close:hover span::after {
    background-color: var(--primary-color);
  }

  .modal__head-title {
    font-size: calc(24 / var(--customW));
  }

  .modal__body {
    margin-top: calc(30 / var(--customW));
  }

  .modal__body-list {
    display: block;
    width: calc(216 / var(--customW));
    margin: 0 auto;
  }

  .modal__body-list-item:nth-of-type(n+2) {
    margin-top: calc(16 / var(--customW));
  }

  .modal__body-text {
    margin-top: calc(50 / var(--customW));
    font-size: calc(12 / var(--customW));
  }
  
}


/* -----------------
■ フッター
------------------- */
footer {
  font-family: "メイリオ", sans-serif;
}



/* -----------------
■ 汎用
------------------- */
.clearfix:after{
	content: ".";
	display: block; 
	clear: both; 
	height: 0; 
	font-size:0;	
	visibility:hidden;
}

.spEle,
.spEleIn {
	display: none;
}


@media screen and (max-width: 767px)
{
	.pcEle,
	.pcEleIn {
		display: none;
  }

	.spEle {
		display: block;
  }

	.spEleIn {
		display: inline-block;
  }
}

