@charset "UTF-8";
@import url("/content/lib/css/normalize.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Spartan:wght@300;400;500;600;700;800;900&display=swap");
/*---------------reset-----------------------------*/
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.5);
}

p {
  margin: 0;
}

ul, ol {
  margin-left: 0;
  padding-left: 0;
}

h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

h1 small {
  font-size: 0.8rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

h2 small {
  font-size: 0.8rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

h3 small {
  font-size: 0.8rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

h4 small {
  font-size: 0.8rem;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

h5 small {
  font-size: 0.8rem;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: 'Spartan','Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  width: 100vw;
  color: #000000;
  min-height: 100vh;
}

/*----------------------共通パーツ---------------------------*/
header.header {
  z-index: 1;
  background: #ffffff;
  border-bottom: solid 1px #b3b3b3;
  height: calc( calc(var(--vh, 1vh) * 100) * 0.07);
  min-height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
}

main {
  z-index: 0;
}

@media screen and (min-width: 601px) {
  html, body, header, main {
    max-width: 600px;
    margin: 0 auto;
  }
  header.header {
    left: auto;
  }
}

/*ドロワー*/
.drawer {
  position: relative;
  width: calc(100vw * 0.3);
  min-width: 250px;
  max-width: 320px;
  display: block;
  padding-left: 3.3%;
  z-index: 99;
}

.drawer__checkbox {
  display: none;
}

.drawer__icon {
  cursor: pointer;
  display: block;
  width: 31px;
  height: 60px;
  max-width: 320px;
  position: fixed;
  left: 3%;
  top: 0;
}

.drawer__icon-parts, .drawer__icon-parts:before, .drawer__icon-parts:after {
  background-color: #000;
  display: block;
  width: 31px;
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
}

.drawer__icon-parts:before, .drawer__icon-parts:after {
  content: " ";
}

.drawer__icon-parts:before {
  top: 1rem;
}

.drawer__icon-parts:after {
  top: -1rem;
}

.drawer__icon .drawer__text {
  opacity: 0;
  color: #000000;
  font-size: 0.5rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
}

.drawer__overlay {
  background: #000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

.drawer__menu {
  background: #ffffff;
  color: #000;
  max-width: 320px;
  width: calc(100vw * 0.3);
  min-width: 250px;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: -100%;
}

.drawer__menu .img-row {
  padding: 3.3%;
  text-align: center;
  margin: 3rem auto 1rem auto;
}

.drawer__menu ul {
  list-style: none;
  margin: 0;
  padding: 3.3%;
}

.drawer__menu ul li {
  border-bottom: solid 1px #333333;
}

.drawer__menu ul li a {
  color: #333333;
  padding: 1rem 0.5rem;
  display: block;
  width: 100%;
  height: 100%;
}

.drawer__icon {
  z-index: 4;
}

.drawer__menu {
  z-index: 3;
}

.drawer__overlay {
  z-index: 2;
}

.drawer__checkbox:checked ~ .drawer__icon {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all .7s;
  transition: all .7s;
}

.drawer__checkbox:checked ~ .drawer__icon .drawer__icon-parts {
  background: transparent;
}

.drawer__checkbox:checked ~ .drawer__icon .drawer__icon-parts:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

.drawer__checkbox:checked ~ .drawer__icon .drawer__icon-parts:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

.drawer__checkbox:checked ~ .drawer__icon .drawer__text {
  opacity: 1;
}

.drawer__checkbox:checked ~ .drawer__overlay {
  opacity: 0.3;
  pointer-events: auto;
}

.drawer__checkbox:checked ~ .drawer__menu {
  left: 0;
  overflow-x: hidden;
}

.drawer__checkbox:checked ~ .drawer__menu a.btn-blue {
  max-width: 80%;
  margin: 1rem auto;
}

.drawer__checkbox:checked ~ .drawer__menu a.btn-blue > * {
  display: inline-block;
  vertical-align: middle;
}

.drawer__icon-parts, .drawer__icon-parts:after, .drawer__icon-parts:before, .drawer__overlay, .drawer__menu {
  -webkit-transition: all .7s;
  transition: all .7s;
}

@media screen and (min-width: 601px) {
  .drawer__icon {
    left: calc(50% - 280px);
  }
  .drawer__icon .drawer__icon-parts {
    background: transparent;
  }
}

/*--------------------text----------------------------*/
.text-small {
  font-size: 0.8rem;
}

.text-blue {
  color: #007ac6;
  font-weight: 500;
}

.text-center {
  text-align: center;
}

.popoverlay {
  background: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0.3;
  pointer-events: auto;
  z-index: 80;
}

.btn-container {
  width: 80%;
  margin: 3rem auto 1rem auto;
}

.btn-blue {
  background: #00b3d0;
  background: -webkit-gradient(linear, left top, right top, color-stop(18%, #00b3d0), color-stop(71%, #006bb7));
  background: linear-gradient(90deg, #00b3d0 18%, #006bb7 71%);
  color: #ffffff;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  border: none;
  display: block;
  width: auto;
  padding: 1.35rem 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
}

.btn-gray {
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  display: block;
  width: 100%;
  line-height: 1.5;
  padding: 0.25rem;
  background: #ffffff;
  text-align: center;
  border: solid 2px #999999;
  color: #999999;
  font-weight: 500;
  font-size: 1.1rem;
}

.btn-dgray {
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  display: block;
  width: 100%;
  padding: 1.35rem 1rem;
  text-align: center;
  background-color: #b3b3b3;
  color: #ffffff;
  border: none;
}

.btn-containers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

.btn-containers .btn-gray {
  margin-left: 1%;
  margin-right: 1%;
  line-height: 1;
}

.bnt-close {
  position: fixed;
  right: -0.5rem;
  margin-top: -2.8rem;
}

.bnt-close:hover {
  cursor: pointer;
}

.bnt-close img {
  width: 70%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

input[type="submit"] {
  width: 100%;
}

.img-row {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.img-row img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.radio-group .row {
  margin: 0.5rem;
}

.radio-group .row input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-group .row input[type="radio"] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.radio-group .row input[type="radio"] + label:before {
  content: '';
  border-radius: 100%;
  background-color: #f4f4f4;
  border: 1px solid #b4b4b4;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  top: 0;
  margin-right: 5px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio-group .row input[type="radio"] + label span {
  max-width: 90%;
}

.radio-group .row input[type="radio"]:checked + label:before {
  background-color: #3197EE;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio-group .row input[type="radio"]:focus + .label:before {
  outline: none;
  border-color: #3197EE;
}

.radio-group .row input[type="radio"]:disabled + label:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio-group .row input[type="radio"] + label:empty:before {
  margin-right: 0;
}

.arrow-gray {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  background-color: #e6e6e6;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #333333;
  font-weight: 300;
  font-size: 2.5rem;
}

.text-large {
  font-size: 1.6rem;
}

.mtb-10 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mtb-20 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/*----------------------ページ別----------------------------*/
/*--------------トップページ------------------*/
.front header.header {
  background: transparent !important;
  border-bottom: none;
}

.front #tabmenu {
  display: none;
}

.front main {
  display: block;
  width: 100%;
  height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background: #00b3d0;
  background: -webkit-gradient(linear, left top, left bottom, from(#00b3d0), to(#006bb7));
  background: linear-gradient(180deg, #00b3d0 0%, #006bb7 100%);
  padding: 0;
  overflow: hidden;
  color: #ffffff;
}

.front main article {
  width: 100%;
  float: left;
}

.front main .topmenuarea {
  background-image: url("/content/lib/images/topmenu.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(var(--vh, 1vh) * 100);
  max-height: 100%;
  width: 100%;
  overflow: hidden;
  display: block;
}

.front main .topmenuarea .container {
  display: block;
  position: relative;
  padding: 0 3.3%;
}

.front main .topmenuarea .container section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc((calc(var(--vh, 1vh) * 100) / 4) - 3rem);
}

.front main .topmenuarea .container section a {
  display: block;
  height: 120px;
  width: 120px;
  padding: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

.front main .topmenuarea .container section a:hover {
  background-color: #ffffff;
  opacity: 0.3;
}

.front main .topmenuarea .container section .inner {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 100%;
}

.front main .topmenuarea .container section .inner h2 {
  line-height: 1;
  color: #fff600;
  border-bottom: solid 1px #fff600;
  margin-bottom: 0;
  font-weight: 500;
  padding-bottom: 0.35rem;
  margin-top: 1.5rem;
}

.front main .topmenuarea .container section .inner p {
  line-height: 1.35;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem;
}

@media screen and (max-width: 320px) {
  .front main .topmenuarea .container section .inner h2 {
    margin-top: 1rem;
  }
  .front main .topmenuarea .container section .inner p {
    font-size: 0.8rem;
  }
}

.front main .topmenuarea .container section:nth-child(odd) .btn-swipe {
  margin-left: 14%;
}

.front main .topmenuarea .container section:nth-child(odd) .inner {
  padding-left: 3%;
  padding-right: 3%;
}

.front main .topmenuarea .container section:nth-child(even) .btn-swipe {
  margin-right: 14%;
}

.front main .topmenuarea .container section:nth-child(even) .inner {
  padding-right: 3%;
  padding-left: 3%;
}

@media screen and (max-width: 320px) {
  .front main .topmenuarea .container section {
    height: calc((calc(var(--vh, 1vh) * 100) / 4) - 2.7rem);
  }
}

@media screen and (min-height: 800px) {
  .front main .topmenuarea .container section {
    height: calc((calc(var(--vh, 1vh) * 100) / 4) - 3.5rem);
  }
}

.front main .topmenuarea .container .step1 {
  margin-top: calc(calc(var(--vh, 1vh) * 100) * 0.20);
}

.front main .topmenuarea .container .step2 {
  margin-top: -0.5rem;
}

.front main .topmenuarea .container .tips + p {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0rem;
}

@media screen and (min-width: 601px) {
  .front main .topmenuarea {
    max-width: 600px;
    position: relative;
  }
}

/*-------------子ページ*全体------------------*/
body.notfront header.header {
  height: 10%;
  z-index: 70;
}

body.notfront header.header .mainlogo {
  text-align: center;
}

body.notfront header.header .mainlogo img {
  max-height: 40px;
  margin-top: 1rem;
}

body.notfront header.header .tabmenu {
  margin: 0.25rem 0 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.notfront header.header .tabmenu li {
  width: calc(100% /3);
  height: 100%;
  display: block;
  font-size: 1rem;
  padding-left: 2%;
  padding-right: 2%;
}

body.notfront header.header .tabmenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #333333;
}

body.notfront header.header .tabmenu li a:hover, body.notfront header.header .tabmenu li a.active {
  border-bottom: solid 5px #0071bc;
}

body.notfront .content {
  margin-top: calc((var(--vh, 1vh) * 100) * 0.1);
}

body.notfront .content .container {
  padding: 10% 3.3%;
}

body.notfront .content .title {
  text-align: center;
  min-height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #007ac6;
  position: relative;
  z-index: 30;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  font-weight: 600;
}

body.notfront .content .title-2 {
  background-image: url("/content/lib/images/title-2.webp");
}

body.notfront .content .title-3 {
  background-image: url("/content/lib/images/title-3.webp");
}

body.notfront .content .title-4 {
  background-image: url("/content/lib/images/title-4.webp");
}

body.notfront .content .title-5 {
  background-image: url("/content/lib/images/title-5.webp");
}

body.notfront .content .title-6 {
  background-image: url("/content/lib/images/title-6.webp");
  background-repeat: no-repeat;
  min-height: 6rem;
}

body.notfront .content .title + p {
  margin-top: 2rem;
}

body.notfront .content .sub-desc {
  background-image: url("/content/lib/images/sub-desc.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  margin: 0 5%;
  position: relative;
  height: 100%;
  min-height: 120px;
}

body.notfront .content .sub-desc p {
  height: 70px;
  position: absolute;
  left: calc(50% - 125px);
  top: 21%;
  font-size: 1.1rem;
  color: #f7931e;
  font-weight: 600;
}

body.notfront .content .question-area {
  margin: 1.5rem auto;
}

body.notfront .content .question-area h4 {
  color: #007ac6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 1rem 0 0.25rem 0;
}

body.notfront .content .question-area h4::before {
  font-family: 'Spartan';
  font-size: 1.35rem;
  margin-right: 0.5rem;
}

body.notfront .content .question-area .q1 h4:before {
  content: "Q1";
}

body.notfront .content .question-area .q2 h4:before {
  content: "Q2";
}

body.notfront .content .question-area .q3 h4:before {
  content: "Q3";
}

body.notfront .content .question-area .q4 h4:before {
  content: "Q4";
}

body.notfront .content .question-area .radio-group {
  margin-left: 10%;
}

body.notfront .content .question-area .radio-group .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.notfront .content .question-area .radio-group .row input[type="radio"] {
  margin-right: 5px;
}

body.notfront .content .question-area .radio-group .row + .row {
  margin-top: 0.7rem;
}

/*------------ホテル一覧ページ-------------------*/
.hotel-list h2 {
  margin-bottom: 2rem !important;
}

.hotel-list .row {
  display: block;
  position: relative;
  border-top: solid 1px #999999;
}

.hotel-list .row .row-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.hotel-list .row .row-inner .hoteld-desc {
  margin-left: 0.8rem;
}

.hotel-list .row .row-inner .hoteld-desc h3 + h3 {
  font-size: 130%;
  margin-top: 1rem;
}

.hotel-list .row .row-inner .hoteld-desc p {
  margin: 0;
}

.hotel-list .row a.btn-content {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.hotel-list .row a.btn-content:hover, .hotel-list .row a.btn-content:focus, .hotel-list .row a.btn-content:active {
  background-color: #333333;
  cursor: pointer;
  opacity: 0.3;
}

.hotel-list .row:last-child {
  border-bottom: solid 1px #999999;
}

/*----------------すいみんDataページ---------------*/
#mydata {
  /*------------popupの設定-------------------*/
}

#mydata .current-data {
  margin: 20px 0;
  padding: 1.35rem 0.75rem;
  text-align: center;
  background-color: #e8f5fd;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
}

#mydata .current-data .next-button {
  position: absolute;
  width: 88%;
  top: 40%;
  display: block;
  height: auto;
}

#mydata .current-data .next-button #prev {
  position: absolute;
  left: 0;
  top: 0;
}

#mydata .current-data .next-button #next {
  position: absolute;
  right: 0;
  top: 0;
}

#mydata .current-data .date {
  font-weight: 600;
}

#mydata .current-data .date span {
  font-size: 2.35rem;
  font-weight: 600;
}

#mydata .current-data .hotal-name {
  font-weight: 600;
}

#mydata .current-data .pagenation {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  margin-top: 1.5rem;
}

#mydata .current-data .pagenation li {
  width: 3rem;
  height: 3rem;
  margin: 0 0.25rem;
}

#mydata .current-data .pagenation li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1.8;
  font-size: 2rem;
  padding: 1px;
  text-align: center;
  background: #00b3d0;
  background: -webkit-gradient(linear, left top, right top, color-stop(18%, #00b3d0), color-stop(71%, #006bb7));
  background: linear-gradient(90deg, #00b3d0 18%, #006bb7 71%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #ffffff;
}

#mydata .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5%;
}

#mydata .type .type-desc {
  text-align: center;
}

#mydata .type .type-desc strong {
  font-weight: 500;
}

#mydata .type .type-image {
  border-radius: 50%;
  width: 125px;
  height: 125px;
  border: solid 2px #b3b3b3;
  overflow: hidden;
}

#mydata .type .type-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  margin-left: 0;
  height: 100%;
}

#mydata .chart {
  width: 100%;
  height: 200px;
}

#mydata .totaltime {
  margin: 20px 0;
  background: #fffbcd;
  border-top: solid 3px #0071bc;
  border-bottom: solid 3px #0071bc;
  padding: 1rem 0;
  text-align: center;
  color: #007ac6;
}

#mydata .totaltime p {
  font-size: 1.35rem;
  font-weight: 500;
}

#mydata .totaltime p strong {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
}

#mydata .graph-1 {
  padding: 30px 0;
  border-top: dashed 1px #333333;
  text-align: center;
}

#mydata .graph-1 h3 {
  margin: 1rem 0;
}

#mydata .graph-1 .starge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#mydata .graph-1 .starge p {
  text-align: center;
  font-size: 0.8rem;
}

#mydata .graph-1 .starge p img {
  max-width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

#mydata .graph-1 .starge p .rate {
  font-size: 2rem;
  font-weight: 500;
}

#mydata .graph-1 .starge p .rate::after {
  content: "%";
  font-size: 1rem;
}

#mydata .graph-2 {
  padding: 30px 0;
  border-top: dashed 1px #333333;
  text-align: center;
}

#mydata .graph-2 .icon-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#mydata .graph-2 .icon-area p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#mydata .graph-2 .icon-area p img {
  max-width: 30%;
}

#mydata .score {
  margin: 30px 0;
}

#mydata .score .table {
  width: 100%;
}

#mydata .score .table th {
  color: #007ac6;
  border: solid 1px #0071bc;
  font-weight: 500;
  width: 30%;
  padding: 5px;
}

#mydata .score .table td {
  text-align: left;
  padding: 5px;
}

#mydata .score .table td:last-child {
  text-align: right;
  width: 20%;
}

#mydata .score .score-detail {
  margin: 1rem 0;
  border: solid 1px #0071bc;
  padding: 0.75rem;
}

#mydata .score .score-detail h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#mydata .score .score-detail h3 span {
  font-weight: 500;
  font-size: 1rem;
  margin-right: 5px;
}

#mydata .score .btn-gray {
  width: auto;
  max-width: 45%;
  margin-left: auto;
}

#mydata .diary {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  padding: 1rem;
  text-align: center;
}

#mydata .diary p {
  margin: 1rem auto;
}

#mydata .diary .btn-container {
  margin: 1rem auto 0 auto;
}

#mydata .diary .btn-blue {
  width: 100%;
}

#mydata #editcomment, #mydata #edit-data, #mydata #edit-delete {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0px 0px 10px 1px rgba(50, 50, 50, 0.3);
  padding: 0;
  position: fixed;
  bottom: 15%;
  width: 98%;
  left: 1%;
  right: 1%;
  z-index: 90;
  margin-left: auto;
  margin-right: auto;
}

#mydata #editcomment .container, #mydata #edit-data .container, #mydata #edit-delete .container {
  width: auto;
  padding: 3rem 3.3%;
}

#mydata #editcomment .title + P, #mydata #edit-data .title + P, #mydata #edit-delete .title + P {
  font-weight: 500;
}

#mydata #editcomment .btn-containers button, #mydata #edit-data .btn-containers button, #mydata #edit-delete .btn-containers button {
  width: 100%;
}

#mydata #editcomment .radio-group, #mydata #edit-data .radio-group, #mydata #edit-delete .radio-group {
  margin-left: 10%;
  margin-right: 10%;
}

#mydata #edit-data {
  bottom: 5%;
  max-height: 90vh;
  overflow: scroll;
}

#mydata #edit-data p {
  font-weight: 500;
}

#mydata #edit-data .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

#mydata #edit-data .radio-group input[type="radio"] {
  display: none;
}

#mydata #edit-data .radio-group label {
  border: solid 1px #808080;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  width: 29%;
  margin-left: 5px;
  margin-bottom: 10px;
  padding: 0.75rem 0.25rem;
  text-align: center;
}

#mydata #edit-data .radio-group label:before {
  display: none;
}

#mydata #edit-data .radio-group label.active {
  background-color: rgba(50, 50, 50, 0.5);
  color: #ffffff;
}

#mydata #edit-data .radio-group + label {
  width: 100%;
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

#mydata #edit-data textarea {
  border: solid 1px #333333;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  width: 96%;
  height: 5rem;
}

#mydata #edit-data .btn-container {
  margin-top: 1rem;
}

#mydata #edit-data .btn-blue {
  width: 100%;
}

#mydata #edit-delete .current-data {
  background: #ffffff;
  border-top: solid 1px #333333;
  border-bottom: solid 1px #333333;
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

#mydata #edit-delete .btn-blue {
  width: 100%;
}

main[id^="type-"] .container {
  padding: 10% 3.3% 0 3.3% !important;
}

/*---------過去データページ----------------*/
#mylog h3 strong {
  font-size: 2.35rem;
  font-weight: 500;
}

#calendar {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

#calendar table {
  width: 100%;
  border-collapse: collapse;
  border-left: solid 1px #b3b3b3;
}

#calendar table th:first-child {
  border-left: solid 1px #ffffff;
}

#calendar table td {
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  border-right: solid 1px #b3b3b3;
  text-align: center;
  vertical-align: middle;
  font-size: 1.5rem;
  padding: 0.5rem;
}

#calendar table td a.archive {
  display: block;
  width: 3rem;
  height: 3rem;
  line-height: 2.3;
  background-color: #5ac2df;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #ffffff;
}
/*# sourceMappingURL=main.css.map */