@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');

html{
	scroll-behavior: smooth;
}
body {
  font-family: 'M PLUS 1p', sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  color: #555;
  font-size:15px;
}
ul,li{
	list-style: none;
}
.text_erea ul li{
	list-style: disc;
}
.text_erea ol li{
	list-style: decimal;
}
.text_erea ul,
.text_erea ol{
	padding: 10px 0 10px 30px;
}
a{
	text-decoration: none;
	color: #424242;
}

/* ログインページ */
fieldset {
	width: 400px;
	padding: 130px 50px 50px 50px;
	margin: 0 auto;
	border-radius: 10px;
	border: none;
	box-shadow: 0px 0px 20px 0px rgba(136, 136, 136, 0.4)
}
legend{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    top: 120px;
}
.button_div .buttons{
    display: block;
    background: #64d6cb;
    width: 100%;
    border-radius: 5px;
    padding: 15px 0;
    color: #fff;
    margin: 3px 0 0 0;
}
.div_text input.username,
.div_text input.password,
#siteguard_captcha{
    border: solid 1px #bdbdbd;
    width: 100%;
    padding: 8px;
    margin: 0 0 10px 0;
    border-radius: 3px;
}
#siteguard_captcha{
	margin:0 0 40px 0;
}
.title_logo img{
	position: relative;
	top: 115px;
}
p.login_status{
	display: block;
	width: 400px;
	margin: 0 auto;
	text-align: center;
}
p.login_status a{
	
}
/* ログインページのログインできなかった時のメッセージ「パスワードをお忘れですか？」を消す */
.wpmem_msg a[href*="action=lostpassword"] {
    display: none !important;
}
.wpmem_msg{
	position: absolute;
	text-align: center;
	display: block;
	top: 650px;
	left: 50%;
	transform: translateX(-50%);
	color:#ff4e4e;
}


/* メインページ */
main{}

/* ======================== */
/* 一覧ページ（ホーム） */
/* ======================== */
/* 上部ナビゲーション */
nav a{
	text-decoration: none;
	display: grid;
	border: 2px solid #d2d2d2;
	border-radius: 5px;
	background: rgb(246, 246, 246);
	padding: 15px 0;
}
nav a:hover{
	background: rgb(223, 223, 223);
}
nav ul{
	max-width: 600px;
	padding: 30px 0;
	margin: 0 auto;
	text-align: center;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
nav ul li{
	/*（全体の幅 - gapでつけた余白の合計）をカラム数で割る */
	width: calc((100% - 40px) / 5);
}

/* 店舗リスト */
.shop_list{
	max-width:600px;
	margin:0 auto;
}
h2{
    padding: .5em .7em;
    border-left: 5px solid #2589d0;
    background-color: #f2f2f2;
}
.shop_list ul{
	padding: 20px 0;
}
.shop_list ul li a.shop_link{
	width:71%;
}
/* 店舗ボタン */
.shop_list ul li a {
	display: inline-flex;

	align-items: center;
	position: relative;

	margin: 5px;
	padding: .9em 2em;
	overflow: hidden;
	border: 1px solid #2589d0;
	border-radius: 30px;
	background-color: #fff;
	color: #2589d0;
	font-size: 1em;
}
.shop_list ul li a:hover {
	background-color: transparent;
	color: #fff;
}
.shop_list ul li a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 0;
	height: 100%;
	background-color: #2589d0;
	content: '';
	transition: width .3s ease;
}
.shop_list ul li a:hover::before {
	width: 100%;
}



/* ======================== */
/* 店舗ページ（詳細） */
/* ======================== */
main.shop{
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* サイドメニュー */
.side-menu {
  flex: 0 0 18%;
  position: sticky;
  top: 20px;
}
.side-menu a{
	display: block;
	background: #fff;
	border: solid 1px #ccc;
	padding: 15px 0 15px 10px;
	margin: 0 0 5px 0;
}


/* テーブル内基本ボタン */
a.blue_btn {
	background: #2589d0;
	color: #fff;
}
a.blue_btn:hover{
	background:#217fc2;
}

.single-shop section{
	width:83%;
	margin: 0 1% 0 0;
	background:#f6f6f6;
	padding:20px;
}
.shop_name{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px 5px 0;
}
.single-shop h1{
	font-size:40px;
	margin: 0 20px 0 0;
}
.shop_furigana{
	font-size:20px;
}
/* 店舗詳細テーブル */
.single-shop table{
	border-collapse:collapse;
	background: #fff;
	width: 100%;
	margin: 0 0 30px 0;
}
.single-shop table.course_table{
	margin:0 0 30px 0;
}
.single-shop table caption,
p.table_title {
	text-align: left;
	margin: 0 0 10px 5px;
	font-size: 18px;
	font-weight: 500;
}
.single-shop td, th {
	padding: 10px;
	border: solid 1px #595959;
}
.single-shop th{
	/*letter-spacing: 3px;*/
	text-indent: 3px;
	width: 25%;
	background:#e9f6ff;
	font-weight: 400;
	text-align: left;
    padding: 10px;
}
.single-shop .max {
	padding: 20px;
}

.single-shop td.sub_item {
	width: 30%;
	background: #fffeee;
}

.single-shop a.t_btn{
	padding: 10px 30px;
	margin: 5px 10px;
	border-radius: 30px;
	font-size: 15px;
	display: inline-block;
}

.single-shop .home{
	width:100%;
	padding:10px 0;
	text-align: center;
}
.single-shop .home a{
	padding: 50px;
	border-radius: 10px;
	display: block;
	letter-spacing: 10px;
    margin: 0 0 15px 0;
}

p.line_p{
	padding:5px 0;
}
.item_tag{
	border-radius: 4px;
	padding: 2px 10px;
	margin: 5px 2px;
	display: inline-block;
	background: #d4e7ff;
	font-size: 14px;
}
.heading {
	font-weight: 700;
    margin: 0 0 7px;
    display: inline-block;
}
hr {
	height: 0;
	padding: 0;
	border: 0;
	border-top: 2px dotted #c4c4c4;
	margin: 0.7em 0;
}

/* td内ボタン */
.btn_group {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.btn_group_item {
	width: calc(94% / 3);
	padding: 10px 1%;
}

a.link_btn {
	border: solid 2px #2589d0;
    border-radius: 50px;
    text-align: center;
    margin: 10px 1%;
}

a.link_btn:hover {
    background: #2589d0;
    color: #fff;
}

.link_off {
	filter: grayscale(100%);
	opacity: 0.6;
	pointer-events: none;
}

/* ======================== */
/* ネットシステム */
/* ======================== */
.system_group_item {
	width: calc(98% / 3);
	padding: 10px 1%;
}

.copy-link {
  position: relative;
  border: 1px solid #ddd;
  display: flex;

  .link_in {
	margin: 10px 0 10px 10px;
	font-size: 18px;
  }
  input {
    color: #555;
    border: none;
    outline: none;
    width: 100%;
  }

  button {
    padding: 10px;
    background: #2589d0;
    font-size: 18px;
    outline: none;
    border: none;
    cursor: pointer;
	color: #fff;

    &:active {
      background: #2589d0;
    }

    &::before {
      content: "コピーしました";
      position: absolute;
      top: -50px;
      right: 0px;
      background: #2589d0;
      border-radius: 20px;
      padding: 9px 15px;
      font-size: 14px;
      display: none;
    }

    &::after {
      content: "";
      position: absolute;
      top: -20px;
      right: 25px;
      width: 10px;
      height: 10px;
      background: #2589d0;
      transform: rotate(45deg);
      display: none;
    }
  }

  &.active button::after,
  &.active button::before {
    display: block;
  }
}


/* ======================== */
/* ifreamを画面サイズに */
/* ======================== */
.iframe-wrapper {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ======================== */
/* トップへ戻るボタン */
/* ======================== */
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 14px;
	line-height: 1;
	z-index: 99;
}
#page-top a {
	background: #2589d0;
	text-decoration: none;
	color: #fff;
	width: 70px;
	padding: 28px 0;
	text-align: center;
	display: block;
	border-radius: 100%;
	opacity: 0.9;
	transition: all .3s ease;
	height: 70px;
}
#page-top a:hover {
	text-decoration: none;
	opacity: .5;
}























