@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}
body {
  position: relative;
  min-height: 100vh;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  background-color: #ffffff;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}
a img {
  transition: all 200ms 0s ease;
}
@media screen and (min-width: 900px) {
a:hover {
  opacity: 0.7;
}
}

.sp {
  display: none;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
}

.link_button {
  display: inline-block;
  margin-left: 1.4em;
  margin: 0 1.4em;
  padding: 0.4em 0.8em;
  font-weight: 700;
  background-color: #ffffff;
  border-radius: 6px;
  filter: drop-shadow(1px 1px 0 rgba(0,0,0,1));
  transition: all 0.2s;
}
@media screen and (min-width: 900px) {
.link_button:hover {
  padding: 0.5em 0.7em 0.3em 0.9em;
  filter: drop-shadow(-1px -1px 0 rgba(0,0,0,1));
}
}

@media screen and (max-width: 900px) {
.sp {
  display: inline;
}
}
@media screen and (max-width: 600px) {
body {
  font-size: 0.7rem;
}
}


/**********
ヘッダ
**********/
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
}
header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_logo {
  max-width: 200px;
}
header .header_logo img {
  vertical-align: middle;
  width: 100%;
}
header .header_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 65%;
}
@media screen and (max-width: 600px) {
  header .header_link {
    width: 55%;
  }
}
@media screen and (max-width: 350px) {
  header .header_link {
    width: 50%;
  }
}
header .member_name {
  margin: 0 1.5em;
  line-height: 1.2;
  font-weight: 700;
}

header .menu_button {
  flex-shrink: 0;
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
header .menu_open {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
header .menu_open span {
  display: block;
  width: 100%;
  height: 6px;
  background-color: #000000;
}
header .menu_close {
  float: right;
  padding-right: 20px;
}
header .menu_close span {
  display: block;
  width: 103%;
  height: 6px;
  background-color: #000000;
}
header .menu_close span:first-of-type {
  position: absolute;
  left: 0;
  top: 40%;
  transform: rotate(45deg);
}
header .menu_close span:last-of-type {
  position: absolute;
  right: 0;
  top: 40%;
  transform: rotate(-45deg);
}

.header_modal {
  position: absolute;
  z-index: 20;
  right: -500px;
  top: 0;
  width: 90vw;
  max-width: 500px;
  height: 100vh;
  padding: 20px 30px;
  background-color: #ffffff;
  transition: all 0.5s;
}
.header_modal_open {
  right: 0;
}
.header_modal .modal_menu {
  margin: 0;
}
.header_modal .modal_menu ul {
  list-style-type: none;
  width: 100%;
  border-top: solid 2px #000000
}
.header_modal .modal_menu ul li a {
  display: block;
  position: relative;
  width: 100%;
  background-position: 0.7em center;
  background-repeat: no-repeat;
  background-size: auto 1.4em;
}
.header_modal .modal_menu ul li a:after {
  position: absolute;
  right: 1em;
}
.header_modal .modal_menu .menu_mymenu   { background-image: url("../images/icon_mymenu.png"); }
.header_modal .modal_menu .menu_favorite { background-image: url("../images/icon_favorite.png"); }
.header_modal .modal_menu .menu_plan     { background-image: url("../images/icon_plan.png"); }
.header_modal .modal_menu .menu_history  { background-image: url("../images/icon_history.png"); }
.header_modal .modal_menu .menu_logout   { background-image: url("../images/icon_logout.png"); }

.header_modal_back {
  position: absolute;
  z-index: 15;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.header_modal_back_wide {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.3);
}

@media screen and (max-width: 600px) {
header {
  padding: 0.7em 10px;
}
header .menu_open span, 
header .menu_close span {
  height: 0.6vw;
}
}

/**********
フッタ
**********/
footer {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  background-color: #ffffff;
  filter: drop-shadow(0 -5px 5px rgba(0,0,0,0.3));
}
footer .footer_logo {
  margin: 1.5em 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
footer .footer_copyright {
  margin: 1.5em 0;
  text-align: center;
  font-size: 0.74em;
}
footer nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5em 0;
  padding: 0 1.5em;
  font-weight: 700;
  transition: all 0.5s;
}
footer nav ul li:after {
  content: '|';
  padding: 0 0.4em;
}
footer nav ul li:last-of-type:after {
  display: none;
}

footer nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
footer nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s;
  transform: scale(0, 1);

  transform-origin: left top;
}
@media screen and (min-width: 900px) {
footer nav ul li a:hover:after {
  transform: scale(1, 1);
}
}
@media screen and (max-width: 560px) {
footer .footer_logo img {
  max-width: 50%;
}
}


/**********
パンくずリスト
**********/
.area_breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1em 20px;
}
.area_breadcrumb ol {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  font-size: 0.8em;
}
.area_breadcrumb ol li:after {
  content: '＞';
  padding: 0 0.5em 0 0.3em;
}
.area_breadcrumb ol li:last-of-type:after {
  display: none;
}
.area_breadcrumb ol li a {
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
.area_breadcrumb { 
  display: none;
}
}


/**********
メイン
**********/
main {
  padding: 80px 0 30px 0;
}
@media screen and (max-width: 900px) {
  main {
    padding-top:60px;
  }
}
@media screen and (max-width: 600px) {
main {
  padding-top: 50px;
}
}
