@charset "UTF-8";

/*//////////////////////////////////////////////////
/* ==== blue-overrides (calm tone) : load AFTER main_pc.css ==== */
:root{
  /* 落ち着いた青（標準 / ホバー / ソフト背景） */
  /*--blue:      #2b5c9a;  /* ややくすみのあるコバルト系 */
  /*--blue-dark: #1f4170;  /* 低明度の紺寄り */
  /*--blue-soft: #eef3fb;  /* 薄い青みのグレー */
  --blue:      #57AB79;  /* #A5B3D7 ややくすみのあるコバルト系 */
  --blue-dark: #57AB79;  /* #1f4170 低明度の紺寄り */
  --blue-soft: #57AB79;  /* #eef3fb 薄い青みのグレー */
}

/* 見出し・ナビ */
body h1{ background-color: var(--blue) !important; }
body h2.sendh2{ color: var(--blue) !important; }
body ul#nav li a{ background: var(--blue) !important; color:#fff !important; }
body ul#nav li a:hover{ background: var(--blue-dark) !important; }

/* 予約フロー上部の丸ボタン hover */
#pc a.maru:hover{ background-color: var(--blue) !important; }

/* カレンダー：時間帯などの hover */
#pc #calarea .daygroupe p a:hover,
#pc #calarea .todaygroupe p a:hover,
#pc #calarea .daygroupe_new p a:hover,
#pc #calarea .todaygroupe_new p a:hover{
  background: var(--blue) !important;
  color:#fff !important;
}

/* カレンダー内ツールチップ */
#pc #calarea .daygroupe p a span,
#pc #calarea .todaygroupe p a span,
#pc #calarea .daygroupe_new p a span,
#pc #calarea .todaygroupe_new p a span{
  background-color: var(--blue) !important;
}

/* フォーム上部リンク */
#of .fbox p#datemsg a{ color: var(--blue) !important; }
#of .fbox p#datemsg a:hover{ color: var(--blue-dark) !important; }

/* ラジオ：選択時 */
#of .fbox p.radioarea input[type="radio"]:checked + .switch-radio1,
#of .fbox p.radioarea input[type="radio"]:checked + .switch-radio2,
#of .fbox p.radioarea input[type="radio"]:checked + .switch-radio3,
#of .fbox p.radioarea2 input[type="radio"]:checked + .switch-people1,
#of .fbox p.radioarea2 input[type="radio"]:checked + .switch-people2,
#of .fbox p.radioarea2 input[type="radio"]:checked + .switch-people3,
#of .fbox p.radioarea2 input[type="radio"]:checked + .switch-people4,
#of .fbox p.radioarea2 input[type="radio"]:checked + .switch-people5,
#of .fbox p.radioarea3 input[type="radio"]:checked + .switch-plan1,
#of .fbox p.radioarea3 input[type="radio"]:checked + .switch-plan2,
#of .fbox p.radioarea3 input[type="radio"]:checked + .switch-plan3,
#of .fbox p.radioarea3 input[type="radio"]:checked + .switch-plan4{
  background-color: var(--blue) !important;
  color:#fff !important;
  border-color:#fff !important;
}

/* 送信ボタン */
#of .fbox p.submit input[type="submit"]{
  background: var(--blue) !important;
  color:#fff !important;
}

/* メール確認帯 */
#yourmail{ background-color: var(--blue) !important; }

/* エラーの強調色（必要なら） */
#of .fbox p span.err{ color: var(--blue) !important; }

/* 触感向上（任意）：ホバーにだけ穏やかなトランジション */
a, button, input[type="submit"]{
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}


/*//////////////////////////////////////////////////
/*sass*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100&family=Noto+Serif+JP:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@800&display=swap");
@media screen and (max-width: 640px) {
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; } }

/*-- Layout --*/
html {
  background-color: #fff;
  overflow-x: hidden; }

body {
  background-color: #fff;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  text-align: center;
  margin: 0;
  padding: 0; }
  body div.bnr {
    margin: 0 0 40px 0; }
    @media screen and (max-width: 640px) {
      body div.bnr a img {
        width: 80%;
        height: auto;
        border: 0; } }
  body div#page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    width: 100%; }
    @media screen and (max-width: 640px) {
      body div#page .tableLayout {
        width: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch; } }
    body div#page .tableLayout table {
      margin: 0 auto; }
      body div#page .tableLayout table tr th {
        padding: 10px;
        background-color: #ccc;
        font-size: 12px;
        font-weight: normal;
        color: #333; }
        @media screen and (max-width: 640px) {
          body div#page .tableLayout table tr th {
            white-space: nowrap; } }
      body div#page .tableLayout table tr td {
        padding: 10px;
        text-align: left;
        background-color: #f5f5f5;
        font-size: 12px;
        font-weight: normal;
        color: #333; }
        @media screen and (max-width: 640px) {
          body div#page .tableLayout table tr td {
            white-space: nowrap; } }
      body div#page .tableLayout table tr td:nth-child(3) {
        text-align: center; }
      body div#page .tableLayout table tr td:nth-child(4) {
        text-align: center; }
      body div#page .tableLayout table tr:nth-child(even) td {
        background-color: #f5f5f5; }
      body div#page .tableLayout table tr:nth-child(odd) td {
        background-color: #e4e4e4; }
  body ul#nav {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
    overflow: hidden; }
    body ul#nav li {
      display: inline-block;
      margin: 20px;
      padding: 0;
      text-align: center;
      overflow: hidden; }
      body ul#nav li a {
        display: block;
        padding: 40px;
        width: 200px;
        background: #e67168;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px; }
        body ul#nav li a:hover {
          background: #ccc; }
  body h1 {
    margin: 0 0 20px 0;
    padding: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #e67168;
    overflow: hidden;
    font-family: 'Noto Serif JP', serif; }
    @media screen and (min-width: 641px) {
      body h1 {
        font-size: 20px; } }
    @media screen and (max-width: 640px) {
      body h1 {
        font-size: 15px; } }
  body h2 {
    font-family: 'Noto Serif JP', serif; }
  body h2.tel_pc {
    font-size: 22px;
    margin: 40px 0 0 0; }
    @media screen and (max-width: 640px) {
      body h2.tel_pc {
        display: none; } }
  @media screen and (min-width: 641px) {
    body h2.tel_sp {
      display: none; } }
  @media screen and (max-width: 640px) {
    body h2.tel_sp img {
      width: 100%; } }
  body h2.sendh2 {
    font-weight: bold;
    color: #e67168;
    font-family: 'Noto Serif JP', serif; }
    @media print, screen and (min-width: 641px) {
      body h2.sendh2 {
        font-size: 32px;
        margin: 60px 0; } }
    @media screen and (max-width: 640px) {
      body h2.sendh2 {
        font-size: 18px; } }
  body .textmaru {
    margin: 50px auto 0 auto;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-family: 'Shippori Mincho B1', serif; }
  body .plancolor1 {
    background: #00703E; }
  body .plancolor2 {
    background: #3CAA31; }
  body .plancolor3 {
    background: #E00121; }
  body .plancolor4 {
    background: #c1ab05; }
  body p.sendp {
    padding: 10px;
    color: #333; }
    @media print, screen and (min-width: 641px) {
      body p.sendp {
        font-size: 20px; } }
    @media screen and (max-width: 640px) {
      body p.sendp {
        font-size: 14px; } }
    @media screen and (max-width: 640px) {
      body p.sendp {
        text-align: left; } }
  body div#kakuninbox {
    margin: 0;
    padding: 60px 20px;
    text-align: center;
    background-color: #f1e8e8;
    overflow: hidden; }
    body div#kakuninbox dl {
      margin: 0 auto;
      padding: 0;
      width: 400px;
      text-align: left;
      overflow: hidden; }
      body div#kakuninbox dl dt {
        margin: 0;
        padding: 0 0 0 5px;
        border-left: 3px solid #999;
        overflow: hidden; }
        @media screen and (min-width: 641px) {
          body div#kakuninbox dl dt {
            font-size: 12px; } }
        @media screen and (max-width: 640px) {
          body div#kakuninbox dl dt {
            font-size: 10px; } }
      body div#kakuninbox dl dt.fl {
        float: left;
        display: inline; }
      body div#kakuninbox dl dd {
        margin: 0;
        padding: 10px 0 20px 16px;
        font-weight: bold;
        overflow: hidden;
        font-family: 'Noto Serif JP', serif; }
        @media screen and (min-width: 641px) {
          body div#kakuninbox dl dd {
            font-size: 16px; } }
        @media screen and (max-width: 640px) {
          body div#kakuninbox dl dd {
            font-size: 9px; } }
      body div#kakuninbox dl dd.fld {
        margin-bottom: 20px;
        padding: 0 0 0 16px;
        font-family: 'Noto Serif JP', serif; }
    body div#kakuninbox p {
      color: #c03; }
      @media screen and (min-width: 641px) {
        body div#kakuninbox p {
          font-size: 14px; } }
      @media screen and (max-width: 640px) {
        body div#kakuninbox p {
          font-size: 9px; } }
  body div#of {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 100; }
    @media screen and (min-width: 641px) {
      body div#of {
        padding: 20px; } }
    @media screen and (max-width: 640px) {
      body div#of {
        padding: 3px 0; } }
    body div#of div.fbox {
      margin: 0 auto;
      padding: 0;
      background-color: #fff;
      overflow: hidden; }
      @media screen and (min-width: 641px) {
        body div#of div.fbox {
          width: 800px;
          border: 1px solid #ccc; } }
      @media screen and (max-width: 640px) {
        body div#of div.fbox {
          width: 90%;
          border: 0 1px solid #ccc; } }
      body div#of div.fbox p#datemsg {
        margin: 0;
        background-color: #cccccc;
        text-align: center;
        font-weight: normal;
        color: #333; }
        @media screen and (min-width: 641px) {
          body div#of div.fbox p#datemsg {
            padding: 20px 0;
            font-size: 16px; } }
        @media screen and (max-width: 640px) {
          body div#of div.fbox p#datemsg {
            padding: 5px 0;
            font-size: 12px; } }
        body div#of div.fbox p#datemsg a {
          color: #E67168;
          text-decoration: none;
          font-size: 40px; }
          body div#of div.fbox p#datemsg a:hover {
            color: red; }
      body div#of div.fbox p {
        margin: 0;
        width: 100%;
        text-align: left;
        overflow: hidden;
        border-bottom: 1px dotted #ccc; }
        @media screen and (min-width: 641px) {
          body div#of div.fbox p {
            padding: 20px; } }
        @media screen and (max-width: 640px) {
          body div#of div.fbox p {
            padding: 10px 20px; } }
        body div#of div.fbox p span {
          margin: 0;
          padding: 0 0 0 10px;
          overflow: hidden;
          color: #333;
          border-left: 4px solid #ccc; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p span {
              font-size: 16px; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p span {
              font-size: 12px; } }
        body div#of div.fbox p span.err {
          display: block;
          margin: 0;
          padding: 10px 0 0 10px;
          overflow: hidden;
          color: #e67168;
          border-left: 0;
          font-size: 10px; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p span.err {
              font-size: 16px; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p span.err {
              font-size: 12px; } }
        body div#of div.fbox p input[type="text"], body div#of div.fbox p input[type="tel"], body div#of div.fbox p input[type="email"], body div#of div.fbox p input[type="date"] {
          margin: 10px 0 0 0;
          font-size: 16px; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p input[type="text"], body div#of div.fbox p input[type="tel"], body div#of div.fbox p input[type="email"], body div#of div.fbox p input[type="date"] {
              width: 40%;
              height: 30px; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p input[type="text"], body div#of div.fbox p input[type="tel"], body div#of div.fbox p input[type="email"], body div#of div.fbox p input[type="date"] {
              width: 70%;
              height: 26px; } }
        body div#of div.fbox p .w.error {
          background-color: #EFD8D7; }
        body div#of div.fbox p .w.error .input {
          border-color: #C8A5A5;
          background: #fff url("icon_error.png") no-repeat right center; }
        body div#of div.fbox p .w.valid {
          background-color: #A4EFAE; }
        body div#of div.fbox p .w.valid .input {
          border-color: #A5C8A6;
          background: #fff url("icon_valid.png") no-repeat right center; }
        body div#of div.fbox p .w.valid span {
          display: none; }
      body div#of div.fbox p.radioarea {
        width: 100%; }
        body div#of div.fbox p.radioarea span {
          display: block;
          margin: 0 0 10px 0; }
        body div#of div.fbox p.radioarea span.vl {
          display: block;
          margin: 0;
          padding: 20px 0 0 0;
          position: relative;
          @media screen and (min-width: 641px) {
          		left: 46%;
          		width: 45%;
          		}
          @media screen and (max-width: 640px) {
          		width: 100%;
          		}
          text-align: center;
          color: #c03;
          font-size: 12px;
          border: none; }
          body div#of div.fbox p.radioarea span.vl span.bigsize {
            color: #333333;
            font-weight: bold;
            border: none;
            @media screen and (min-width: 641px) {
            	font-size: 17px; }
            @media screen and (max-width: 640px) {
            	font-size: 21px; }
            }
          body div#of div.fbox p.radioarea span.vl span.bigsize span.m {
	        display: inline-block;
	        border: none;
	        position: relative;
	        top: 13px;
	        left: 0;
	        padding: 0;
	        font-weight: bold;
            @media screen and (min-width: 641px) {
            	font-size: 14px; }
            @media screen and (max-width: 640px) {
            	font-size: 12px; }
            }
          body div#of div.fbox p.radioarea span.vl a {
	        display: inline-block;
	        border-radius: 10px;
	        padding: 10px;
            color: #ffffff;
            font-weight: bold;
            background: #d94c4c;
            text-decoration: none;
            border: none;
            @media screen and (min-width: 641px) {
            	font-size: 18px; }
            @media screen and (max-width: 640px) {
            	font-size: 18px; }
            }
          body div#of div.fbox p.radioarea span.vl a:hover {
            background: #cc0033; }
        body div#of div.fbox p.radioarea input {
          display: none; }
        body div#of div.fbox p.radioarea label {
          display: block;
          float: left;
          cursor: pointer;
          margin: 0;
          background: #bdc3c7;
          color: #869198;
          text-align: center;
          line-height: 1;
          transition: .2s;
          border: 1px solid #fff; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p.radioarea label {
              padding: 10px;
              width: 43%;
              font-size: 11px; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p.radioarea label {
              padding: 10px 5px;
              width: 50%;
              font-size: 11px;
              font-weight: bold; } }
        body div#of div.fbox p.radioarea label:first-of-type {
          border-radius: 3px 0 0 3px; }
        body div#of div.fbox p.radioarea label:last-of-type {
          border-radius: 0 3px 3px 0; }
        body div#of div.fbox p.radioarea input[type="radio"]:checked + .switch-radio1 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea input[type="radio"]:checked + .switch-radio2 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea input[type="radio"]:checked + .switch-radio3 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
      body div#of div.fbox p.radioarea2 {
        width: 100%; }
        body div#of div.fbox p.radioarea2 span {
          display: block;
          margin: 0 0 10px 0; }
        body div#of div.fbox p.radioarea2 span.vl {
          display: block;
          margin: 0;
          padding: 20px 0 0 0;
          width: 100%;
          text-align: center;
          color: #e67168;
          font-size: 12px;
          border: none; }
        body div#of div.fbox p.radioarea2 input {
          display: none; }
        body div#of div.fbox p.radioarea2 label {
          display: block;
          float: left;
          cursor: pointer;
          margin: 0;
          background: #bdc3c7;
          color: #869198;
          text-align: center;
          line-height: 1;
          transition: .2s;
          border: 1px solid #fff; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p.radioarea2 label {
              padding: 10px;
              /*width: 27.8%; */
              width: 15.5%;
              font-size: 11px; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p.radioarea2 label {
              padding: 10px 5px;
              width: 20%;
              font-size: 10px;
              font-weight: bold; } }
        body div#of div.fbox p.radioarea2 label:first-of-type {
          border-radius: 3px 0 0 3px; }
        body div#of div.fbox p.radioarea2 label:last-of-type {
          border-radius: 0 3px 3px 0; }
        body div#of div.fbox p.radioarea2 input[type="radio"]:checked + .switch-people1 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea2 input[type="radio"]:checked + .switch-people2 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea2 input[type="radio"]:checked + .switch-people3 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea2 input[type="radio"]:checked + .switch-people4 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea2 input[type="radio"]:checked + .switch-people5 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
      body div#of div.fbox p.radioarea3 {
        width: 100%; }
        body div#of div.fbox p.radioarea3 span {
          display: block;
          margin: 0 0 10px 0; }
        body div#of div.fbox p.radioarea3 span.vl {
          display: block;
          margin: 0;
          padding: 20px 0 0 0;
          width: 100%;
          text-align: center;
          color: #e67168;
          font-size: 12px;
          border: none; }
        body div#of div.fbox p.radioarea3 input {
          display: none; }
        body div#of div.fbox p.radioarea3 label {
          display: block;
          float: left;
          cursor: pointer;
          margin: 0;
          background: #bdc3c7;
          color: #869198;
          text-align: center;
          line-height: 1;
          transition: .2s;
          border: 1px solid #fff; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p.radioarea3 label {
              padding: 10px;
              width: 20%;
              font-size: 11px; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p.radioarea3 label {
              padding: 10px 5px;
              width: 20%;
              font-size: 10px;
              font-weight: bold; } }
        body div#of div.fbox p.radioarea3 label:first-of-type {
          border-radius: 3px 0 0 3px; }
        body div#of div.fbox p.radioarea3 label:last-of-type {
          border-radius: 0 3px 3px 0; }
        body div#of div.fbox p.radioarea3 input[type="radio"]:checked + .switch-plan1 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea3 input[type="radio"]:checked + .switch-plan2 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea3 input[type="radio"]:checked + .switch-plan3 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
        body div#of div.fbox p.radioarea3 input[type="radio"]:checked + .switch-plan4 {
          background-color: #e67168;
          border: 1px solid #fff;
          color: #fff; }
      body div#of div.fbox p.submit {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center; }
        body div#of div.fbox p.submit input[type="submit"] {
          background: #e67168;
          letter-spacing: 1px;
          border: none;
          color: #fff;
          cursor: pointer;
          font-size: 22px;
          font-weight: normal;
          border-radius: 10px;
          -moz-border-radius: 10px;
          -webkit-border-radius: 10px;
          -webkit-appearance: none; }
          @media screen and (min-width: 641px) {
            body div#of div.fbox p.submit input[type="submit"] {
              width: 400px;
              margin: 30px 0;
              padding: 10px 0; } }
          @media screen and (max-width: 640px) {
            body div#of div.fbox p.submit input[type="submit"] {
              width: 90%;
              margin: 15px 0;
              padding: 5px 0; } }
      body div#of div.fbox p.close {
        width: 150px;
        background: rgba(65, 81, 116, 0.94);
        color: #fff;
        cursor: pointer;
        font-size: 10px;
        text-align: center;
        border-radius: 10px;
        /* CSS3草案 */
        -webkit-border-radius: 10px;
        /* Safari,Google Chrome用 */
        -moz-border-radius: 10px;
        /* Firefox用 */ }
        @media screen and (min-width: 641px) {
          body div#of div.fbox p.close {
            margin: 50px auto 30px auto;
            padding: 10px 0; } }
        @media screen and (max-width: 640px) {
          body div#of div.fbox p.close {
            margin: 10px auto 10px auto;
            padding: 5px 0; } }
  body div.sample {
    display: none; }
  body div#yourmail {
    margin: 0;
    padding: 30px 0 100px 0;
    width: 100%;
    height: 100%;
    background-color: #e67168;
    text-align: center;
    top: 0;
    z-index: 100; }
    body div#yourmail div.fbox {
      margin: 0 auto;
      padding: 0;
      border: 4px solid #ccc;
      background-color: #fff;
      overflow: hidden; }
      body div#yourmail div.fbox p {
        margin: 0;
        padding: 20px;
        width: 100%;
        text-align: left;
        overflow: hidden;
        border-bottom: 1px dotted #ccc; }
        body div#yourmail div.fbox p span {
          margin: 0;
          padding: 0 0 0 10px;
          font-size: 16px;
          overflow: hidden;
          color: #333;
          border-left: 4px solid #ccc; }
        body div#yourmail div.fbox p span.err {
          display: block;
          margin: 10px 0 0 0;
          padding: 0 0 0 10px;
          font-size: 14px;
          overflow: hidden;
          color: #c03;
          border-left: 0;
          line-height: 10px; }
        body div#yourmail div.fbox p input[type="text"], body div#yourmail div.fbox p input[type="tel"], body div#yourmail div.fbox p input[type="email"] {
          margin: 10px 0 0 0;
          height: 30px;
          font-size: 14px; }
          @media screen and (min-width: 641px) {
            body div#yourmail div.fbox p input[type="text"], body div#yourmail div.fbox p input[type="tel"], body div#yourmail div.fbox p input[type="email"] {
              width: 80%; } }
          @media screen and (max-width: 640px) {
            body div#yourmail div.fbox p input[type="text"], body div#yourmail div.fbox p input[type="tel"], body div#yourmail div.fbox p input[type="email"] {
              width: 70%; } }
        body div#yourmail div.fbox p .w.error {
          background-color: #EFD8D7; }
        body div#yourmail div.fbox p .w.error .input {
          border-color: #C8A5A5;
          background: #fff url("icon_error.png") no-repeat right center; }
        body div#yourmail div.fbox p .w.valid {
          background-color: #A4EFAE; }
        body div#yourmail div.fbox p .w.valid .input {
          border-color: #A5C8A6;
          background: #fff url("icon_valid.png") no-repeat right center; }
        body div#yourmail div.fbox p .w.valid span {
          display: none; }
      body div#yourmail div.fbox p.submit {
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center; }
        body div#yourmail div.fbox p.submit input[type="submit"] {
          background: #F39801;
          margin: 30px 0;
          padding: 10px 0;
          letter-spacing: 1px;
          border: none;
          color: #fff;
          cursor: pointer;
          font-size: 22px;
          font-weight: bold;
          border-radius: 10px;
          -moz-border-radius: 10px;
          -webkit-border-radius: 10px;
          -webkit-appearance: none; }
          @media screen and (min-width: 641px) {
            body div#yourmail div.fbox p.submit input[type="submit"] {
              width: 400px; } }
          @media screen and (max-width: 640px) {
            body div#yourmail div.fbox p.submit input[type="submit"] {
              width: 90%; } }
  body div.fbox {
    width: 800px; }
  body div#pc {
    margin: 0;
    padding: 20px 20px 50px 20px;
    overflow: hidden; }
    body div#pc a.maru {
      position: relative;
      display: block;
      width: 50px;
      height: 50px;
      -webkit-border-radius: 25px;
      /* width,heightの半分 */
      -moz-border-radius: 25px;
      border-radius: 25px;
      background-color: #999;
      color: #fff;
      font-size: 10px;
      text-decoration: none;
      line-height: 75px; }
      body div#pc a.maru span.triangle-left:before {
        position: absolute;
        display: block;
        top: 10px;
        left: 18px;
        content: "";
        width: 0;
        height: 0;
        border-right: 10px solid #fff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent; }
      body div#pc a.maru span.triangle-right:before {
        position: absolute;
        display: block;
        top: 10px;
        left: 22px;
        content: "";
        width: 0;
        height: 0;
        border-left: 10px solid #fff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent; }
      body div#pc a.maru:hover {
        background-color: #e67168; }
    body div#pc a.prev {
      float: left; }
    body div#pc a.next {
      float: right; }
    body div#pc div.kara {
      float: left;
      position: relative;
      display: block;
      width: 50px;
      height: 50px; }
    @media screen and (max-width: 640px) {
      body div#pc div.scroll {
        overflow: auto;
        white-space: nowrap;
        width: 100%; }
        body div#pc div.scroll:-webkit-scrollbar {
          height: 5px; }
        body div#pc div.scroll:-webkit-scrollbar-track {
          background: #F1F1F1; }
        body div#pc div.scroll:-webkit-scrollbar-thumb {
          background: #BCBCBC; } }
    @media print, screen and (min-width: 641px) {
      body div#pc div.scrollwidth {
        margin: 0 auto; } }
    @media screen and (max-width: 640px) {
      body div#pc div.scrollwidth {
        width: 980px; } }
    body div#pc div#calarea {
      position: relative;
      margin: 0 auto 50px auto;
      padding: 0 0 0 0;
      overflow: hidden;
      text-align: center; }
      @media print, screen and (min-width: 641px) {
        body div#pc div#calarea {
          width: 980px; } }
      @media screen and (max-width: 640px) {
        body div#pc div#calarea {
          width: 100%; } }
      body div#pc div#calarea div.daygroupe, body div#pc div#calarea div.todaygroupe {
        float: left;
        margin: 20px 0 0 0;
        padding: 1px;
        background-color: #d3d3d3;
        overflow: hidden;
        width: calc(20% - 2px); }
        body div#pc div#calarea div.daygroupe h3, body div#pc div#calarea div.todaygroupe h3 {
          margin: 0;
          padding: 10px;
          background: #cccccc;
          font-size: 12px;
          font-weight: normal;
          color: #333;
          text-align: center;
          overflow: hidden; }
        body div#pc div#calarea div.daygroupe h3.h3del a, body div#pc div#calarea div.todaygroupe h3.h3del a {
          text-decoration: none;
          background-color: #fff;
          padding: 5px 10px;
          color: #333;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px; }
          body div#pc div#calarea div.daygroupe h3.h3del a:hover, body div#pc div#calarea div.todaygroupe h3.h3del a:hover {
            background-color: #ccc;
            color: #fff; }
        body div#pc div#calarea div.daygroupe h3.h3delr a, body div#pc div#calarea div.todaygroupe h3.h3delr a {
          text-decoration: none;
          background-color: #fff;
          padding: 5px 10px;
          color: #333;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px; }
          body div#pc div#calarea div.daygroupe h3.h3delr a:hover, body div#pc div#calarea div.todaygroupe h3.h3delr a:hover {
            background-color: #ccc;
            color: #fff; }
        body div#pc div#calarea div.daygroupe p, body div#pc div#calarea div.todaygroupe p {
          margin: 0;
          padding: 0;
          overflow: hidden; }
          body div#pc div#calarea div.daygroupe p a, body div#pc div#calarea div.todaygroupe p a {
            display: block;
            margin: 2px 0;
            padding: 10px 0;
            width: 100%;
            height: 22px;
            background: #f5f5f5;
            font-size: 12px;
            color: #333;
            text-align: center;
            text-decoration: none; }
            body div#pc div#calarea div.daygroupe p a:hover, body div#pc div#calarea div.todaygroupe p a:hover {
              background: #ccc;
              color: #fff; }
          body div#pc div#calarea div.daygroupe p a span, body div#pc div#calarea div.todaygroupe p a span {
            position: absolute;
            opacity: 0;
            top: 50px;
            left: 0;
            width: 100%;
            padding: 15px 10px;
            border-radius: 2px;
            background-color: #e67168;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            line-height: 1;
            -webkit-transition: all 1s;
            -moz-transition: all 1s;
            -ms-transition: all 1s;
            -o-transition: all 1s;
            transition: all 1s;
            z-index: 999; }
          body div#pc div#calarea div.daygroupe p a:hover span, body div#pc div#calarea div.todaygroupe p a:hover span {
            opacity: 1; }
        body div#pc div#calarea div.daygroupe p.acb, body div#pc div#calarea div.todaygroupe p.acb {
          height: 24px; }
        body div#pc div#calarea div.daygroupe label.acblabel, body div#pc div#calarea div.todaygroupe label.acblabel {
          display: inline-block;
          height: 22px;
          cursor: pointer;
          width: 100%; }
          body div#pc div#calarea div.daygroupe label.acblabel input[type='checkbox'], body div#pc div#calarea div.todaygroupe label.acblabel input[type='checkbox'] {
            cursor: pointer; }
        @media print, screen and (min-width: 641px) {
          body div#pc div#calarea div.daygroupe p.admin a, body div#pc div#calarea div.todaygroupe p.admin a {
            height: 32px; } }
        @media screen and (max-width: 640px) {
          body div#pc div#calarea div.daygroupe p.admin a, body div#pc div#calarea div.todaygroupe p.admin a {
            height: 58px; } }
        body div#pc div#calarea div.daygroupe p.ar a, body div#pc div#calarea div.todaygroupe p.ar a {
          background: #ccc; }
          @media screen and (max-width: 640px) {
            body div#pc div#calarea div.daygroupe p.ar a, body div#pc div#calarea div.todaygroupe p.ar a {
              height: 58px; } }
        body div#pc div#calarea div.daygroupe p.del, body div#pc div#calarea div.todaygroupe p.del {
          margin: 0;
          padding: 0;
          overflow: hidden; }
          body div#pc div#calarea div.daygroupe p.del span, body div#pc div#calarea div.todaygroupe p.del span {
            display: block;
            margin: 2px 0;
            padding: 10px 0;
            width: 100%;
            overflow: hidden;
            background-color: #ccc;/*#fff*/
            font-size: 12px;
            color: #afafaf; }/*#9aacff*/
            @media print, screen and (min-width: 641px) {
              body div#pc div#calarea div.daygroupe p.del span, body div#pc div#calarea div.todaygroupe p.del span {
                height: 32px; } }
            @media screen and (max-width: 640px) {
              body div#pc div#calarea div.daygroupe p.del span, body div#pc div#calarea div.todaygroupe p.del span {
                height: 59px; } }
      body div#pc div#calarea div.daygroupe_new, body div#pc div#calarea div.todaygroupe_new {
        float: left;
        padding: 1px;
        background-color: #d3d3d3;
        overflow: hidden;
        width: 100%; }
        @media print, screen and (min-width: 641px) {
          body div#pc div#calarea div.daygroupe_new, body div#pc div#calarea div.todaygroupe_new {
            margin: 0 5px 0 0; } }
        @media screen and (max-width: 640px) {
          body div#pc div#calarea div.daygroupe_new, body div#pc div#calarea div.todaygroupe_new {
            margin: 20px 0 0 0; } }
        body div#pc div#calarea div.daygroupe_new h3, body div#pc div#calarea div.todaygroupe_new h3 {
          margin: 0;
          padding: 10px;
          background: #cccccc;
          font-size: 12px;
          font-weight: normal;
          color: #333;
          text-align: center;
          overflow: hidden;
          width: 100%; }
        body div#pc div#calarea div.daygroupe_new h3.h3del a, body div#pc div#calarea div.todaygroupe_new h3.h3del a {
          text-decoration: none;
          background-color: #fff;
          padding: 5px 10px;
          color: #333;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px; }
          body div#pc div#calarea div.daygroupe_new h3.h3del a:hover, body div#pc div#calarea div.todaygroupe_new h3.h3del a:hover {
            background-color: #ccc;
            color: #fff; }
        body div#pc div#calarea div.daygroupe_new h3.h3delr a, body div#pc div#calarea div.todaygroupe_new h3.h3delr a {
          text-decoration: none;
          background-color: #fff;
          padding: 5px 10px;
          color: #333;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          -moz-border-radius: 10px; }
          body div#pc div#calarea div.daygroupe_new h3.h3delr a:hover, body div#pc div#calarea div.todaygroupe_new h3.h3delr a:hover {
            background-color: #ccc;
            color: #fff; }
        body div#pc div#calarea div.daygroupe_new p, body div#pc div#calarea div.todaygroupe_new p {
          margin: 0;
          padding: 0;
          overflow: hidden;
          border-left: 1px solid #ccc;
          border-right: 1px solid #ccc;
          float: left;
          width: calc(25% - 3px); }
          @media screen and (max-width: 640px) {
            body div#pc div#calarea div.daygroupe_new p, body div#pc div#calarea div.todaygroupe_new p {
              width: calc(25%); } }
          body div#pc div#calarea div.daygroupe_new p a, body div#pc div#calarea div.todaygroupe_new p a {
            display: block;
            margin: 2px 0;
            padding: 10px 0;
            width: 100%;
            background: #f5f5f5;
            font-size: 12px;
            color: #333;
            text-align: center;
            text-decoration: none; }
            @media print, screen and (min-width: 641px) {
              body div#pc div#calarea div.daygroupe_new p a, body div#pc div#calarea div.todaygroupe_new p a {
                height: 22px; } }
            @media screen and (max-width: 640px) {
              body div#pc div#calarea div.daygroupe_new p a, body div#pc div#calarea div.todaygroupe_new p a {
                height: 60px; } }
            body div#pc div#calarea div.daygroupe_new p a:hover, body div#pc div#calarea div.todaygroupe_new p a:hover {
              background: #ccc;
              color: #fff; }
          body div#pc div#calarea div.daygroupe_new p a span, body div#pc div#calarea div.todaygroupe_new p a span {
            position: absolute;
            opacity: 0;
            top: 50px;
            left: 0;
            width: 100%;
            padding: 15px 10px;
            border-radius: 2px;
            background-color: #e67168;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            line-height: 1;
            -webkit-transition: all 1s;
            -moz-transition: all 1s;
            -ms-transition: all 1s;
            -o-transition: all 1s;
            transition: all 1s;
            z-index: 999; }
          body div#pc div#calarea div.daygroupe_new p a:hover span, body div#pc div#calarea div.todaygroupe_new p a:hover span {
            opacity: 1; }
        body div#pc div#calarea div.daygroupe_new p.admin a, body div#pc div#calarea div.todaygroupe_new p.admin a {
          height: 42px; }
        body div#pc div#calarea div.daygroupe_new p.ar a, body div#pc div#calarea div.todaygroupe_new p.ar a {
          background: #ccc; }
        body div#pc div#calarea div.daygroupe_new p.del, body div#pc div#calarea div.todaygroupe_new p.del {
          margin: 0;
          padding: 0;
          overflow: hidden; }
          body div#pc div#calarea div.daygroupe_new p.del span, body div#pc div#calarea div.todaygroupe_new p.del span {
            display: block;
            margin: 2px 0;
            padding: 10px 0;
            width: 100%;
            overflow: hidden;
            background-color: #fff;
            font-size: 12px;
            color: #57AB79; }
            @media print, screen and (min-width: 641px) {
              body div#pc div#calarea div.daygroupe_new p.del span, body div#pc div#calarea div.todaygroupe_new p.del span {
                height: 22px; } }
            @media screen and (max-width: 640px) {
              body div#pc div#calarea div.daygroupe_new p.del span, body div#pc div#calarea div.todaygroupe_new p.del span {
                height: 60px; } }
