@charset "utf-8";

body {
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  font-family: 'Shippori Mincho';
  color: #000;
  background-color: #fff;
}
  main {
	padding: 5.33em 3em;	
  }

/* ---- header_title --- */
.header_title {
  display: block;
  font-family: 'EB Garamond','Shippori Mincho';
  text-shadow: #fff 0.06em 0.06em 0.33em;
  font-size: 130%;
}
.header_title div {
  display: flex;
  align-items: flex-end;
}
.header_title > span {
  padding-left: 0.33em;
  font-size: 0.8em;
  color: #5A5958;
}
.header_title span:nth-child(1) {
  font-size: 1.66em;
}
.header_title span:nth-child(2) {
  display: block;
  font-size: 0.66em;
  font-weight: 500;
}

/* ---- header --- */
header {
  position: fixed;
  width: 100%;
  height: 5.33em;
  z-index: 50;
  background-color: #fff;
}
#section_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 3em;
  
}
.pc_menu {
  display: none;
}

/* ---- sns_link--- */
.sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_link span {
  margin-right: 0.66em;
}
.sns_link span:last-child {
  margin-right: 0;
}
.sns_link a {
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 1.42em;
  height: 1.42em;
  line-height: 1.42em;
  border-radius: 50%;
  text-align: center;
  font-size: 2.33em;
  color: #404040;
  background-color: #fff;
}

/* ---- link_btn --- */
.link_btn {
  display: block;
  padding: 1em 0;
  margin: 0 auto;
  border: solid #707070 0.13em;
  text-align: center;
  background-color: #fff;
  color: #707070;
  font-size: 1.2em;
  font-weight: 500;
  font-family: 'EB Garamond','Shippori Mincho';
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.btn {
  position: fixed;
  top: 1.06em;
  right: 2em;
  width: 2.66em;
  height: 3.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 40;
}

.btn-line {
  width: 100%;
  height: 0.26em;
  background-color: transparent;
  position: relative;
  transition: .2s;
}

.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: .2s;
}


.btn-line::before {
  transform: translateY(-0.66em);
}


.btn-line::after {
  transform: translateY(0.66em);
}

/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  transition: .2s;
}

.btn-line.open::before {
  transform: rotate(45deg);
}

.btn-line.open::after {
  transform: rotate(-45deg);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.sp_menu {
  position: fixed;
  top: 0;
  transform : translateX(100%);
  padding: 15%;
  z-index: 30;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #000;
  background-color: rgb(255 255 255 / 50%);
  backdrop-filter: blur(0.33em);
  transition: transform .3s;
  justify-content: center;
}

.sp_menu > li {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.5em;
  text-shadow: #fff 0.06em 0.06em 0.33em;
  padding: 1em 0;
}
.sp_menu > li:last-child {
  font-size: 1.2em;
}
.sp_menu > li :hover {
  color: #ef4573;
  cursor: pointer;
}
.sp_menu.open {
  transform: translateX(0%);
  top: 0;
  left: 0;
}
.sp_menu .sns_link {
  justify-content: flex-start;
}



/*----------------------------
* アニメーション部分
*----------------------------*/
.sp_menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
.sp_menu.is-active{
  transform: translateX(0);
}




/* ---- aside --- */
aside > a {
  display: inline-flex;
  position: fixed;
  bottom: 5%;
  right: 5%;
  min-width: 1.71em;
  min-height: 1.71em;
  line-height: 1.71em;
  align-items: center;
  justify-content: center;
  background: #EF4573;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 2.33em;
  cursor: pointer;
}
aside > a :hover {
  opacity: .5;
}

/* ---- footer --- */

footer {
  color: #fff;
  background-color: #404040;
}
#footer_inner {
  padding: 3em 2em;
}

#section_footer_title {
  padding: 2em 0;
}
#section_footer_title a {
  display: block;
  font-family: 'EB Garamond','Shippori Mincho';
  color: #fff;
}
#section_footer_title div {
  display: flex;
  align-items: flex-end;
}
#section_footer_title span:nth-child(1) {
  font-size: 2.66em
}
#section_footer_title span:nth-child(2) {
  font-weight: 500;
}

#section_footer_info {
  border-top: solid #fff 2px;
  border-bottom: solid #fff 2px;
}
#section_footer_info dl {
  padding: 3em 0;
}
#section_footer_info dt {
  margin-bottom: 1.33em;
  font-weight: 400;
}
#section_footer_info dd {
  margin-bottom: 1.33em;
}
#section_footer_info dd:last-child {
  margin-bottom: 0;
}
#section_footer_menu {
  display: none;
}

#section_footer_sns {
  padding: 3em 0;
}

footer > a {
  display: block;
  text-align: center;
  font-size: 0.8em;
  margin: 0 auto;
}

#section_footer_copy {
  display: block;
  padding: 1em 2.5em;
  margin: 1em calc(50% - 50vw) 0;
  width: 100vw;
  text-align: center;
  color: #fff;
  font-size: 0.73em;
  background-color: #000;
}




/* ---- 360px ---- */ 

@media screen and (max-width:374px) {
  body {
    font-size: 4vw;
  }
}

/* ---- TAB ---- */ 

@media screen and (min-width:768px) {
  .sp, .pc {
    display: none;
  }

  body {
    font-size: 16px;
  }
  .menu {
    padding: 3em;
    font-size: 1.33em;
  }
  .menu.open {
    transform: translateX(50%);
  }

  .link_btn {
    font-size: 1.5em;
	max-width: 500px;
  }
  #footer_inner {
	display: flex;
    justify-content: space-between;
  }
  #footer_inner > div {
	width: 45%;
  }
  #section_footer_menu {
	display: block;
  }
  #section_footer_menu {
	padding-bottom: 3.5em;
  }
  #section_footer_menu li {
	padding: 1em;
	position: relative;
  }
  #section_footer_menu li::before {
    content: "";
	position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    background-color: #343434;
    border-radius: 50%;
    width: 0.7em;
    height: 0.7em;
  }
  #section_footer_menu li a {
    margin-left: 1em;
  }
  #section_footer_sns {
    border-top: solid #fff 2px;
  }
  #section_footer_sns .sns_link {
    justify-content: flex-start;
  }
}
/* ---- PC ---- */ 

@media screen and (min-width:1024px) {
  .sp {
    display: none;
  }

  body {
    font-size: 16px;
  }
  main {
    padding: 96px 60px;
  }

  .btn {
    display: none;
  }
  .sp_menu {
    display: none;
  }
  .pc_menu {
    display: block;
  }
  header {
     height: 96px;
   }
  #section_header {
     max-width: 1200px;
     padding: 20px 50px;
     margin: 0 auto;
   }
  .header_title {
    font-size: 150%;
  }
  #section_header > div {
    width: 70%;
  }
  .pc_menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .pc_menu > ul {
    display: flex;
    justify-content: space-between;
    font-size: 1.125em;
    font-weight: 600;
	width: 100%;
    max-width: 700px;
  }
  .pc_menu > ul > li {
    display: block;
  }
  #footer_inner {
    max-width: 1200px;
    padding: 50px 50px 0;
    margin: 0 auto;
  }
}