@charset "UTF-8";

@media print, screen and (min-width: 768px) {
  /*フォーム*/
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
         appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form_div {
    padding-top: 10px;
  }
  .form_div01 {
    margin-bottom: 12px;
  }
  .form_div01 p {
    margin-bottom: 6px;
  }
  .form_div01 .error_span {
    color: #be0000;
    display: block;
    margin-top: 8px;
  }
  .form_div01 .caption {
    font-size: 1.2rem;
    color: #6e6e6e;
  }
  .mark {
    color: #be0000;
    padding-left: 4px;
  }
  input {
    font-size: 1.6rem;
    border: solid 1px #666;
    border-radius: 4px;
  }
  input,
  select {
    padding: 12px;
    width: calc(98% - 20px);
  }
  select {
    font-size: 16px;
    border-radius: 4px;
  }
  .name {
    width: calc(49% - 27px);
  }
  .radiobutton {
    display: none;
  }
  .radiolabel {
    width: calc(50% - 27px);
    padding: 12px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
  }
  .radiobutton:checked + .radiolabel {
    background-color: silver;
    border-radius: 4px;
  }
  .birth_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .birth_list li {
    width: calc(32%);
  }
  .birth_list li select {
    width: 100%;
  }
  .address {
    margin-bottom: 6px;
  }
  .form_name_carddate input {
    width: 39%;
    display: inline-block;
  }
  #a_submit {
    width: 160px;
    margin: auto;
    text-align: center;
    background-color: #e8818d;
    display: block;
    padding: 12px 0;
    margin-top: 40px;
    margin-bottom: 60px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border: none;
    font-weight: bold;
    border-radius: 4px;
  }
  /*メインビジュアル*/
  #main_visual {
    margin-top: 95px;
  }
  /*TOPへ戻るボタン*/
  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 16px;
    bottom: 36px;
    background: #e46c80;
    opacity: 0.7;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  /*ハンバーガーメニュー*/
  .burger-btn {
    display: block;
    width: 30px;
    height: 28px;
    position: relative;
    z-index: 3;
    border: none;
    float: right;
    cursor: pointer;
  }
  .bar {
    width: 21px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #333;
  }
  .bar_top {
    top: 4px;
  }
  .bar_mid {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .bar_bottom {
    bottom: 4px;
  }
  .burger-btn.close .bar_top {
    -webkit-transform: translate(-50%, 10px) rotate(45deg);
            transform: translate(-50%, 10px) rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
            transform: translate(-50%, -8px) rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .nav-wrapper {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 70vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    overflow-y: auto;
    /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }
  .nav-wrapper.slide-in {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.95;
    z-index: 2;
  }
  .header-nav .nav-list {
    padding-top: 60px;
  }
  .header-nav .nav-list .nav-item {
    margin-bottom: 16px;
  }
  .header-nav .nav-list .nav-item>a {
    display: block;
    color: #fff;
    background-color: #e8818d;
    margin: 0 16px;
    padding: 10px;
    position: relative;
    padding-right: 28px;
  }
  .header-nav .nav-list .nav-item>a::after {
    display: block;
    content: ">";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    height: 3rem;
  }
  .header-nav .nav-list .nav-item>a:hover {
    opacity: 0.7;
  }
  .header-nav.nav-list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
  .header-nav.nav-item {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  body {
    position: relative;
    z-index: 2;
    font-size: 1.6em;
  }
  .pc {
    display: none !important;
  }
  /*****************************************

ヘッダー　SP

*****************************************/
  #top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    line-height: 1;
    z-index: 999;
    color: #2380b8;
    border-bottom: solid 1px #ced3d7;
  }
  #top-head a {
    color: #2380b8;
    text-decoration: none;
  }
  #top-head .inner {
    position: relative;
  }
  #top-head h1 img {
    max-width: 250px;
  }
  #top-head .header_left {
    padding-top: 6px;
    padding-left: 10px;
  }
  .img_tel {
    display: none;
  }
  #global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 18px;
    font-size: 14px;
  }
  #global-nav ul li.btn {
    display: block;
    padding: 10px 0;
  }
  #global-nav ul li.btn a {
    display: inline-block !important;
    width: auto !important;
    margin: auto;
  }
  #global-nav ul li.btn a img {
    width: 75%;
  }
  #global-nav ul li.btn .tel {
    margin-bottom: -26px;
  }
  #global-nav ul li a {
    padding-right: 30px;
  }
  #header_btn_web {
    display: none;
  }
  /* Fixed */
  #top-head {
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 60px;
    background: #fff;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
  }
  #top-head #global-nav {
    top: 60px;
  }
  #top-head #global-nav ul li a {
    padding: 0 20px;
  }
  #top-head #header_btn_tel {
    margin-top: 0;
  }
  #top-head #nav-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    background-color: #2380b8;
  }
  #top-head #nav-toggle div {
    position: relative;
  }
  #top-head #nav-toggle div p {
    position: absolute;
    bottom: -54px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    letter-spacing: 2px;
    font-family: font_notosans_bo, sans-serif;
  }
  #top-head #nav-toggle span {
    display: block;
    position: absolute;
    height: 4.5px;
    width: 36px;
    background: #fff;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #top-head #nav-toggle span:nth-child(1) {
    top: 8px;
  }
  #top-head #nav-toggle span:nth-child(2) {
    top: 20px;
  }
  #top-head #nav-toggle span:nth-child(3) {
    top: 32px;
  }
  #top-head.open #nav-toggle span:nth-child(1) {
    top: 20px;
  }
  #top-head.open #nav-toggle span:nth-child(2) {
    width: 0;
  }
  #top-head.open #nav-toggle span:nth-child(3) {
    top: 20px;
  }
  /* Fixed reset */
  #mobile-head {
    background: #fff;
    width: 100%;
    z-index: 999;
    position: relative;
  }
  #top-head.fixed .logo,
  #top-head .logo {
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    font-size: 26px;
  }
  #global-nav {
    position: absolute;
    top: 100px;
    opacity: 0;
    left: 0;
    width: 100%;
    background: #e9f7ff;
    text-align: center;
    visibility: hidden;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
  }
  #global-nav ul li {
    float: none;
    position: static;
    border-bottom: solid 1px #ced3d7;
  }
  #global-nav ul li + .bordernone {
    border-bottom: none;
  }
  #top-head #global-nav ul li a,
  #top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    color: #2380b8;
    padding: 26px 0;
    font-size: 2rem;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 36px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 36px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open #global-nav {
    opacity: 1;
    visibility: visible;
    position: absolute;
    height: 100vh;
    overflow-x: scroll;
  }
  /*****************************************

フッター　SP

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

SPの共通設定はこのファイルに入れる

*****************************************/
  /*共通*/
  #wrapper {
    position: relative;
    min-height: 100%;
  }
  .contents_wrapper {
    max-width: 768px;
    margin: auto;
    padding-bottom: 40px;
  }
  section {
    padding: 8% 0;
  }
  .inner {
    padding: 0 20px;
    margin: 0 auto;
  }
  .ttl_h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  .ttl_h2 img {
    width: 80px;
  }
  h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 14px;
    line-height: 1.6;
  }
  h1::before {
    display: block;
    content: "";
    width: 6px;
    height: 18px;
    background-color: #e8818d;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  p {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .underline_pink {
    border-bottom: solid 2px #e46c80;
  }
  /*ヘッダー*/
  header {
    border-bottom: solid 1px #e8818d;
    margin-bottom: 14px;
    padding: 8px 15px;
  }
  .logo:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
  }
  .logo img {
    float: left;
    max-width: 114px;
    margin-right: 16px;
  }
  .logo p {
    float: left;
  }
  .logo_txt {
    font-size: 1.6rem;
    font-weight: bold;
  }
  /*フッター*/
  footer {
    background-color: #e8818d;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  footer small {
    color: #fff;
    font-size: 1.2rem;
    line-height: 40px;
  }
  /*ボタン*/
  .btn_01 {
    display: block;
    background-color: #e8818d;
    padding: 16px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 18px;
    letter-spacing: 1.6px;
    font-size: 1.4rem;
  }
  .btn_01_sub {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .btn_01_sub a {
    display: block;
    background-color: #818de8;
    padding: 16px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 18px;
    letter-spacing: 1.6px;
    font-size: 1.4rem;
  }

	.reserve_site_lists_style{
		margin-bottom:24px;
	}
	.reserve_site_lists_style li{
		padding:6px 0px 6px 12px;
		list-style:square;
		list-style-position: inside;

	}


  .btn_02 {
    display: block;
    background-color: #e8818d;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 1.2rem;
    padding: 2px 4px;
    cursor: pointer;
  }
  .btn_02:hover {
    opacity: 0.7;
  }
  .btn_03 {
    display: block;
    background-color: #e8818d;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    padding: 12px;
    width: 100%;
    cursor: pointer;
  }
  .btn_03:hover {
    opacity: 0.7;
  }
  .btn_04 {
    display: block;
    background-color: #e8818d;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    padding: 12px;
    width: calc(100% - 24px);
    cursor: pointer;
  }
  .btn_04:hover {
    opacity: 0.7;
  }
  /*TOP*/
  .top_patient_menu {
    margin-top: 20px;
  }
  /*ログイン*/
  #login h1 {
    text-align: center;
    padding-left: 0;
    margin-bottom: 30px;
  }
  #login h1::before {
    display: none;
  }
  #login .login_form {
    max-width: 400px;
	width:80%;
    padding: 40px 10% 0 10%;
  }
  #login .forgot {
    text-align: center;
    color: #d4d4d4;
    line-height: 1;
	max-width: 400px;
	width:80%;
	margin:auto;
  }
  #login .forgot a {
    font-size: 1.2rem;
  }
  /*パスワード再発行*/
  .txt_small {
    font-size: 1.2rem;
    margin-top: 18px;
  }
  /*予約一覧*/
  .table_reserve_lists{
      margin-bottom:32px;
  }
  .table_reserve_lists table,
  .table_reserve_lists td,
  .table_reserve_lists th {
    border-collapse: collapse;
    border: solid 1px #666;
    font-size: 1.1rem;
  }
  .table_reserve_lists table {
    width: 100%;
  }
  .table_reserve_lists td,
  .table_reserve_lists th {
    text-align: center;
    padding: 4px;
    vertical-align: middle;
  }
  .table_reserve_lists th {
    font-weight: normal;
    background-color: #efefef;
  }
  /*予約変更*/
  .table_reserve_edit_lists {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 2000;
    font-size: 1.1rem;
  }
  .table_reserve_edit_lists .bg {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.5;
    z-index: 2001;
  }
  .table_reserve_edit_lists .div01 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2002;
  }
  .table_reserve_edit_lists {
    background: white;
    width: 100%;
    height: 84%;
    max-width: 1080px;
    margin: 24px auto;
    border-radius: 6px;
    padding: 0px 0px 22px 0px;
  }
  .table_reserve_edit_lists h3 {
    padding: 12px 2%;
    border-bottom: 1px solid #d0d0d0;
    position: relative;
  }
  .table_reserve_edit_lists h3 span {
    position: absolute;
    right: 8px;
    top: 8px;
    background: #303030;
    color: white;
    border-radius: 16px;
    padding: 4px 8px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .table_reserve_edit_lists h3 span:hover {
    opacity: 0.7;
  }
  .table_reserve_edit_lists .div03 {
    background: white;
    width: 100%;
    height: 90%;
    overflow-y: scroll;
    padding: 0px;
  }
  .table_reserve_edit_lists table {
    border-collapse: collapse;
    width: 96%;
    margin: 0px 2%;
  }
  .table_reserve_edit_lists table thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 2px;
    left: 0px;
    height: 39px;
    /* tbody内のセルより手前に表示する */
    z-index: 10;
  }
  .table_reserve_edit_lists table thead th:before {
    position: absolute;
    content: " ";
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border: #d0d0d0 2px solid;
  }
  .table_reserve_edit_lists table thead th.next {
    position: -webkit-sticky;
    position: sticky;
    top: 43px;
    height: 30px;
    /* tbody内のセルより手前に表示する */
    z-index: 11;
  }
  .table_reserve_edit_lists table thead th.next div.second_menu {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /* tbody内のセルより手前に表示する */
    z-index: 12;
  }
  .table_reserve_edit_lists table thead th.next span {
    position: absolute;
    right: 0px;
    width: 80px;
    cursor: pointer;
    color: red;
  }
  .table_reserve_edit_lists table thead th.next span:hover {
    color: blue;
  }
  .table_reserve_edit_lists table th {
    color: #303030;
    background: #efefef;
    text-align: center;
    font-weight: normal;
  }
  .table_reserve_edit_lists table th.date_th {
    width: 12%;
  }
  .table_reserve_edit_lists table td {
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    border-left: 2px solid #d0d0d0;
    border-right: 2px solid #d0d0d0;
    text-align: center;
    padding: 8px 0px;
  }
  .table_reserve_edit_lists table tr.min_zero {
    border-top: 2px solid #d0d0d0;
  }
  .table_reserve_edit_lists table tr:nth-last-child(1) {
    border-bottom: 2px solid #d0d0d0;
  }
  .table_reserve_edit_lists table tbody td.available {
    background: #efefff;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .table_reserve_edit_lists table tbody td.available:hover {
    background: #1f2f55;
    color: white;
    opacity: 0.7;
  }
  .table_reserve_edit_lists table tbody td.reserved {
    background: #ffefef;
  }
  .table_reserve_edit_lists div.second_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .table_reserve_edit_lists div.second_menu div {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .table_reserve_edit_lists div.second_menu div:hover {
    opacity: 0.7;
  }
  .table_reserve_edit_lists div.second_menu div.time {
    padding: 2px 0px;
    background: white;
    border-radius: 6px;
    width: 60px;
    margin: 0px 10px;
    cursor: pointer;
  }
  .table_reserve_edit_lists div.second_menu div.previous_week {
    padding: 2px 0px;
    width: 100px;
    border-radius: 6px;
    background: #c0c0c0;
    margin: 0px 4% 0px 8%;
    cursor: pointer;
  }
  .table_reserve_edit_lists div.second_menu div.next_week {
    padding: 2px 0px;
    width: 100px;
    border-radius: 6px;
    background: #c0c0c0;
    margin: 0px 8% 0px 4%;
    cursor: pointer;
  }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
  .table_reserve_edit_lists div.second_menu div.time {
    width: 40px;
    margin: 0px 2px;
  }
  .table_reserve_edit_lists div.second_menu div.previous_week {
    margin: 0px 1% 0px 2%;
  }
  .table_reserve_edit_lists div.second_menu div.next_week {
    margin: 0px 2% 0px 1%;
  }
  .table_reserve_edit_lists {
    border-radius: 0px;
  }
}

@media screen and (max-width: 767px) {
  /*フォーム*/
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
         appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form_div {
    padding-top: 10px;
  }
  .form_div01 {
    margin-bottom: 12px;
  }
  .form_div01 p {
    margin-bottom: 6px;
  }
  .form_div01 .error_span {
    color: #be0000;
    display: block;
    margin-top: 8px;
  }
  .form_div01 .caption {
    font-size: 1.2rem;
    color: #6e6e6e;
  }
  .mark {
    color: #be0000;
    padding-left: 4px;
  }
  input {
    font-size: 1.6rem;
    border: solid 1px #666;
    border-radius: 4px;
  }
  input,
  select {
    padding: 12px;
    width: calc(98% - 20px);
  }
  select {
    font-size: 16px;
    border-radius: 4px;
  }
  .name {
    width: calc(49% - 27px);
  }
  .radiobutton {
    display: none;
  }
  .radiolabel {
    width: calc(50% - 27px);
    padding: 12px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
  }
  .radiobutton:checked + .radiolabel {
    background-color: silver;
    border-radius: 4px;
  }
  .birth_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .birth_list li {
    width: calc(32%);
  }
  .birth_list li select {
    width: 100%;
  }
  .address {
    margin-bottom: 6px;
  }
  .form_name_carddate input {
    width: 39%;
    display: inline-block;
  }
  #a_submit {
    width: 160px;
    margin: auto;
    text-align: center;
    background-color: #e8818d;
    display: block;
    padding: 12px 0;
    margin-top: 40px;
    margin-bottom: 60px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border: none;
    font-weight: bold;
    border-radius: 4px;
  }
  /*メインビジュアル*/
  #main_visual {
    margin-top: 95px;
  }
  /*TOPへ戻るボタン*/
  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 16px;
    bottom: 36px;
    background: #e46c80;
    opacity: 0.7;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  /*ハンバーガーメニュー*/
  .burger-btn {
    display: block;
    width: 30px;
    height: 28px;
    position: relative;
    z-index: 3;
    border: none;
    float: right;
    cursor: pointer;
  }
  .bar {
    width: 21px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #333;
  }
  .bar_top {
    top: 4px;
  }
  .bar_mid {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .bar_bottom {
    bottom: 4px;
  }
  .burger-btn.close .bar_top {
    -webkit-transform: translate(-50%, 10px) rotate(45deg);
            transform: translate(-50%, 10px) rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
            transform: translate(-50%, -8px) rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .nav-wrapper {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 70vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    overflow-y: auto;
    /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }
  .nav-wrapper.slide-in {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.95;
    z-index: 2;
  }
  .header-nav .nav-list {
    padding-top: 80px;
  }
  .header-nav .nav-list .nav-item {
    margin-bottom: 16px;
  }
  .header-nav .nav-list .nav-item>a {
    display: block;
    color: #fff;
    background-color: #e8818d;
    margin: 0 16px;
    padding: 10px;
    position: relative;
    padding-right: 28px;
  }
  .header-nav .nav-list .nav-item>a::after {
    display: block;
    content: ">";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    height: 3rem;
  }
  .header-nav .nav-list .nav-item>a:hover {
    opacity: 0.7;
  }
  .header-nav .nav-list .nav-item .nav-item-sub a {
    margin:0 16px 16px 32px;
    display: block;
    background-color: #818de8;
    padding: 10px;
    color: #fff;
  }
  .header-nav .nav-list .nav-item
  .header-nav.nav-list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
  .header-nav.nav-item {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .btn_02{
      font-size:10px;
  }
}
/*# sourceMappingURL=style.css.map */
