﻿@charset "utf-8";

/*====================================================================================================

  Parts

====================================================================================================*/

/*----------------------------------------------------------------------------------------------------

  診療時間　Table
  
----------------------------------------------------------------------------------------------------*/

.p-hrsTbl {
  width: 100%;
  /*max-width: 540px;*/
  border-collapse: collapse;
}

.p-hrsTbl th,
.p-hrsTbl td {
  padding: 0.6em;
  vertical-align: middle;
  text-align: center;
}

/* .p-hrsTbl tbody .line-am th,
.p-hrsTbl tbody .line-pm th {
} */

.p-hrsTbl tbody .line-am {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.p-hrsTbl tbody .line-pm {
  border-bottom: 1px solid #e5e5e5;
}

/* .p-hrsTbl tbody .line-am td:last-child,
.p-hrsTbl tbody .line-pm td:last-child {
} */

.p-hrsTbl thead th {
  border-top: 1px solid #e5e5e5;
}

/* .p-hrsTbl thead th:last-child {
} */

.p-hrsTbl tbody td {
  color: #585656;
}

/*.p-hrsTbl thead th,*/

/* .p-hrsTbl tbody th {
  color: #019801;
} */

.p-hrsTbl thead th {
  padding-bottom: 0.8em;
}

.p-hrsTbl tbody td {
  line-height: 1;
  /*font-size:0.8em;*/
  padding: 1em 0.2em;
  white-space: nowrap;
}

.p-hrsTbl .ampm {
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.p-hrsTbl .am,
.p-hrsTbl .pm {
  display: inline-block;
  text-align: center;
  width: 8em;
  letter-spacing: -0.05em;
}

.p-hrsTbl .to {
  display: block;
  text-align: center;
  font-size: 0.6em;
  padding-top: 0.4em;
}

.p-hrsTbl .to__item {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 560px) {
  .p-hrsTbl {
    font-size: 3.3vw;
  }
}

/*--------------------------------------------------------------------------------
  マーク
--------------------------------------------------------------------------------*/

.hrs-mk {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  position: relative;
}

/* 診療 ----------------------------------------*/

.hrs-mk1 {
  width: 16px;
  height: 16px;
  background-color: #20a39e;
  border-radius: 100%;
}

/* 休診 ----------------------------------------*/

.hrs-mk0:before,
.hrs-mk0:after {
  display: block;
  content: "";
  width: 2px;
  border-radius: 1px;
  height: 100%;
  background-color: #8a858f;
  position: absolute;
  top: 0;
  left: 50%;
}

.hrs-mk0:before {
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hrs-mk0:after {
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 560px) {

  .hrs-mk,
  .hrs-mk1 {
    width: 14px;
    height: 14px;
  }
}

/*----------------------------------------------------------------------------------------------------

  Site title
  
----------------------------------------------------------------------------------------------------*/

.p-siteTtl a {
  display: block;
}

.p-siteTtl a,
.p-siteTtl a:visited,
.p-siteTtl a:hover {
  color: inherit;
  text-decoration: none;
}

.p-siteTtl {
  position: relative;
}

.p-siteTtl a {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 100;
}

header h1 {
  position: relative;
  margin-bottom: 5px;
  z-index: 100;
  /*white-space: nowrap;*/
}

.p-siteTtl a .logo {
  color: #fff;
  line-height: 1.2;
  font-weight: 900;
}

.p-siteTtl a .logo-desc {
  color: #127c56;
  line-height: 1.6;
  font-weight: 900;
}

.p-siteTtl a .logo span {
  position: relative;
  display: block;
  width: 186px;
  transform: rotate(0.05deg);
  margin-left: auto;
  margin-right: auto;
}

.p-siteTtl a .logo span::before,
.p-siteTtl a .logo span::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}

.p-siteTtl a .logo span::before {
  left: 0;
}

.p-siteTtl a .logo span::after {
  right: 0;
}

/*.p-siteTtl a::after {
  content:"";
  width:66px;
  height:42px;
  background:url(../image/logo.svg) no-repeat center center;
  background-size:contain;
  display:inline-block;
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}

.l-ft .p-siteTtl a::after {
  background:url(../image/logo_white.svg) no-repeat center center;
}*/

@media screen and (min-width: 641px) {
  .p-siteTtl {
    height: 100px;
  }

  .p-siteTtl a .logo {
    /*padding: 18px;*/
    height: 100%;
    width: 100%;
    max-width: 313px;
  }

  .p-siteTtl a .logo-desc {
    white-space: nowrap;
    margin-left: 20px;
  }

  .p-siteTtl a .logo span {
    font-size: 0.5em;
  }
}

@media screen and (max-width: 640px) {
  header h1 {
    display: none;
  }

  .p-siteTtl {
    height: 87px;
    width: calc(100% - 87px);
  }

  .p-siteTtl a .logo {
    font-size: 2em;
    padding: 15px;
    height: 100%;
    width: 100%;
    height: 87px;
  }

  .p-siteTtl a .logo-desc {
    display: none;
  }

  .p-siteTtl a .logo span {
    font-size: 0.5em;
    width: 150px;
  }

  .p-siteTtl a .logo span::before,
  .p-siteTtl a .logo span::after {
    width: 30px;
  }
}

@media screen and (max-width: 480px) {
  .p-siteTtl {
    text-align: center;
  }
}

/*
.p-siteTtl .ttl-en {
  font-size:13px;
  font-weight:300;
  margin-left:0.25em;
}

.p-siteTtl .ttl-jp {
  font-size:36px;
  font-weight:700;
}
*/

/*@media screen and (max-width:640px) {
  .p-siteTtl a {
    padding-left:62px;
  }
	
  .p-siteTtl a span{
  font-size: 0.77em;
  }

  .p-siteTtl a:before {
    width:54px;
    height:57px;
  }

  .p-siteTtl .ttl-en {
    font-size:12px;
  }
  
  .p-siteTtl .ttl-jp {
    font-size:34px;
  }
}

@media screen and (max-width:480px) {
  .p-siteTtl a {
    padding-left:52px;
  }

  .p-siteTtl a:before {
    width:44px;
    height:47px;
  }

  .p-siteTtl .ttl-en {
    font-size:10px;
  }
  
  .p-siteTtl .ttl-jp {
    font-size:28px;
  }
}*/

/*--------------------------------------------------------------------------------
  Headline
--------------------------------------------------------------------------------*/

.p-hdLine {
  /*font-family:"M PLUS Rounded 1c","M PLUS Rounded 1c locl";*/
  line-height: 1;
  font-size: 2.22em;
  font-weight: 500;
  color: #12aaa5;
}

.p-hdLine__dot {
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.6em;
  border-bottom: 4px dotted #2fbfbb;
}

@media print, screen and (min-width: 641px) {
  .p-hdLine {
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 640px) {
  .p-hdLine {
    font-size: 2em;
  }
}

@media screen and (max-width: 480px) {
  .p-hdLine {
    font-size: 1.88em;
  }
}

/*----------------------------------------------------------------------------------------------------

  Button
  
----------------------------------------------------------------------------------------------------*/

.p-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  border: none;
  margin: 0;
  outline: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  padding: 0.77em 1.66em;
  box-sizing: border-box;
  /*width:234px;*/
  height: auto;
  border-radius: 20px;
}

.p-btn[btn-txt="left"] {
  text-align: left;
  padding-left: 1em;
}

.ua-pc .p-btn {
  transition: border 0.2s ease-out, background 0.2s ease-out,
    color 0.2s ease-out;
}

.p-btn,
.p-btn:visited,
.p-btn:hover,
.ua-pc .p-btn:hover,
.p-btn a,
.p-btn a:visited,
.p-btn a:hover,
.ua-pc .p-btn a:hover {
  color: inherit;
  text-decoration: none;
}

/* 矢印 */

/* .p-btn--txt .p-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
} */

/*.p-btn--txt:not([btn-arrow="prev"]) { padding-right:3em; }
.p-btn--txt[btn-arrow="prev"] { padding-left:3em; }

.p-btn--txt:not([btn-arrow="prev"]) .p-arrow { right:0.5em; }
.p-btn--txt[btn-arrow="prev"] .p-arrow { left:0.5em; }

.ua-pc .p-btn--txt:not([btn-arrow="prev"]):hover .p-arrow,
.ua-pc .p-btn--txt:not([btn-arrow="prev"]) a:hover .p-arrow { right:0.35em; }
.ua-pc .p-btn--txt[btn-arrow="prev"]:hover .p-arrow,
.ua-pc .p-btn--txt[btn-arrow="prev"] a:hover .p-arrow { left:0.35em; }*/

.ua-pc .p-btn--txt .p-arrow {
  transition: right 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    left 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.ua-pc .p-btn--txt .p-arrow:before {
  transition: border-color 0.2s ease-out;
}

/*--------------------------------------------------------------------------------
  Color
--------------------------------------------------------------------------------*/

/* 黒線
----------------------------------------------------------------------*/

.p-btn[p-btn-color="line"],
.p-btn[p-btn-color="line"]:visited,
.p-btn[p-btn-color="line"]:hover,
.p-btn[p-btn-color="line"] a,
.p-btn[p-btn-color="line"] a:visited,
.p-btn[p-btn-color="line"] a:hover {
  color: #0f1e3c;
  background-color: transparent;
  border: 1px solid rgba(10, 20, 40, 0.8);
}

.ua-pc .p-btn[p-btn-color="line"]:hover,
.ua-pc .p-btn[p-btn-color="line"] a:hover,
.ua-pc a:hover .p-btn[p-btn-color="line"] {
  color: #fff;
  background-color: #0f1e3c;
  border-color: #0f1e3c;
}

/* 矢印アイコン */

.ua-pc .p-btn[p-btn-color="line"]:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="line"] a:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before {
  border-color: transparent transparent transparent #fff;
}

.ua-pc .p-btn[p-btn-color="line"]:hover .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="line"] a:hover .p-arrow[arrow="prev"]:before {
  border-color: transparent #fff transparent transparent;
}

.ua-pc .p-btn[p-btn-color="line"]:hover .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="line"] a:hover .p-arrow[arrow="down"]:before {
  border-color: #fff transparent transparent transparent;
}

/* 金
----------------------------------------------------------------------*/

.p-btn[p-btn-color="gold"],
.p-btn[p-btn-color="gold"]:visited,
.p-btn[p-btn-color="gold"]:hover,
.p-btn[p-btn-color="gold"] a,
.p-btn[p-btn-color="gold"] a:visited,
.p-btn[p-btn-color="gold"] a:hover {
  color: #fff;
  background-color: #caa068;
}

.ua-pc .p-btn[p-btn-color="gold"]:hover,
.ua-pc .p-btn[p-btn-color="gold"] a:hover,
.ua-pc a:hover .p-btn[p-btn-color="gold"] {
  color: #fff;
  background-color: #835f2f;
}

/* 矢印アイコン */

.p-btn[p-btn-color="gold"] .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="gold"]:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="gold"] a:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before {
  border-color: transparent transparent transparent #fff;
}

.p-btn[p-btn-color="gold"] .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="gold"]:hover .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="gold"] a:hover .p-arrow[arrow="prev"]:before {
  border-color: transparent #fff transparent transparent;
}

.p-btn[p-btn-color="gold"] .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="gold"]:hover .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="gold"] a:hover .p-arrow[arrow="down"]:before {
  border-color: #fff transparent transparent transparent;
}

/* 赤
----------------------------------------------------------------------*/

.p-btn[p-btn-color="red"],
.p-btn[p-btn-color="red"]:visited,
.p-btn[p-btn-color="red"]:hover,
.p-btn[p-btn-color="red"] a,
.p-btn[p-btn-color="red"] a:visited,
.p-btn[p-btn-color="red"] a:hover {
  color: #fff;
  background-color: #aa0500;
}

.ua-pc .p-btn[p-btn-color="red"]:hover,
.ua-pc .p-btn[p-btn-color="red"] a:hover,
.ua-pc a:hover .p-btn[p-btn-color="red"] {
  color: #fff;
  background-color: #cb1d17;
}

/* 矢印アイコン */

.p-btn[p-btn-color="red"] .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="red"]:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="red"] a:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before {
  border-color: transparent transparent transparent #fff;
}

.p-btn[p-btn-color="red"] .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="red"]:hover .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="red"] a:hover .p-arrow[arrow="prev"]:before {
  border-color: transparent #fff transparent transparent;
}

.p-btn[p-btn-color="red"] .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="red"]:hover .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="red"] a:hover .p-arrow[arrow="down"]:before {
  border-color: #fff transparent transparent transparent;
}

/* pink
----------------------------------------------------------------------*/

.p-btn[p-btn-color="green"],
.p-btn[p-btn-color="green"]:visited,
.p-btn[p-btn-color="green"]:hover,
.p-btn[p-btn-color="green"] a,
.p-btn[p-btn-color="green"] a:visited,
.p-btn[p-btn-color="green"] a:hover {
  color: #fff;
  background-color: #20a39e;
}

.ua-pc .p-btn[p-btn-color="green"]:hover,
.ua-pc .p-btn[p-btn-color="green"] a:hover,
.ua-pc a:hover .p-btn[p-btn-color="green"] {
  color: #fff;
  background-color: #63b5b2;
}

/* 矢印アイコン */

.p-btn[p-btn-color="green"] .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="green"]:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="green"] a:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before {
  border-color: transparent transparent transparent #fff;
}

.p-btn[p-btn-color="green"] .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="green"]:hover .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="green"] a:hover .p-arrow[arrow="prev"]:before {
  border-color: transparent #fff transparent transparent;
}

.p-btn[p-btn-color="green"] .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="green"]:hover .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="green"] a:hover .p-arrow[arrow="down"]:before {
  border-color: #fff transparent transparent transparent;
}

/* 文字pink
----------------------------------------------------------------------*/

.p-btn[p-btn-color="txt-pink"],
.p-btn[p-btn-color="txt-pink"]:visited,
.p-btn[p-btn-color="txt-pink"]:hover,
.p-btn[p-btn-color="txt-pink"] a,
.p-btn[p-btn-color="txt-pink"] a:visited,
.p-btn[p-btn-color="txt-pink"] a:hover {
  color: #eb5f73;
  background-color: #fff;
}

.ua-pc .p-btn[p-btn-color="txt-pink"]:hover,
.ua-pc .p-btn[p-btn-color="txt-pink"] a:hover,
.ua-pc a:hover .p-btn[p-btn-color="txt-pink"] {
  color: #f98697;
  background-color: #fff;
}

/* 矢印アイコン */

.p-btn[p-btn-color="txt-pink"] .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="txt-pink"]:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before,
.ua-pc .p-btn[p-btn-color="txt-pink"] a:hover .p-arrow:not([arrow="prev"]):not([arrow="down"]):before {
  border-color: transparent transparent transparent #eb5f73;
}

.p-btn[p-btn-color="txt-pink"] .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="txt-pink"]:hover .p-arrow[arrow="prev"]:before,
.ua-pc .p-btn[p-btn-color="txt-pink"] a:hover .p-arrow[arrow="prev"]:before {
  border-color: transparent #eb5f73 transparent transparent;
}

.p-btn[p-btn-color="txt-pink"] .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="txt-pink"]:hover .p-arrow[arrow="down"]:before,
.ua-pc .p-btn[p-btn-color="txt-pink"] a:hover .p-arrow[arrow="down"]:before {
  border-color: #eb5f73 transparent transparent transparent;
}

/*----------------------------------------------------------------------------------------------------

  Icon
  
----------------------------------------------------------------------------------------------------*/

.p-icon:before,
.p-icon[p-icon-ps="R"]:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 0.2em;
}

.p-icon[p-icon-ps="R"]:before {
  display: none;
}

.p-icon--mgR:before,
.p-icon--mgR:after {
  margin-right: 0.4rem;
}

.p-icon--mgL:before,
.p-icon--mgL:after {
  margin-left: 0.4rem;
}

.p-icon--mgR-x2:before,
.p-icon--mgR-x2:after {
  margin-right: 0.6em;
}

.p-icon--mgL-x2:before,
.p-icon--mgL-x2:after {
  margin-left: 0.6em;
}

/* 左向き */

.p-icon[p-arrow="prev"]:before,
.p-icon[p-arrow="prev"]:after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* 下向き */

.p-icon[p-arrow="down"]:before,
.p-icon[p-arrow="down"]:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Map pin */

.p-icon[p-icon="mappin"]:before,
.p-icon[p-icon="mappin"]:after {
  background-image: url(../image/icon/mappin.svg);
}

/* TEL */

.p-icon[p-icon="tel"]:before,
.p-icon[p-icon="tel"]:after {
  width: 40px;
  height: 40px;
  background-image: url(../image/icon/tel.svg);
}

.p-icon[p-icon="tel"][p-icon-color="white"]:before,
.p-icon[p-icon="tel"][p-icon-color="white"]:after {
  width: 40px;
  height: 40px;
  background-image: url(../image/icon/tel_white.svg);
}

/* 矢印（緑円） */

.p-icon[p-icon="ar-green"]:before,
.p-icon[p-icon="ar-green"]:after {
  background-image: url(../image/icon/ar_green.svg);
}

/* 矢印（白円・線緑） */

.p-icon[p-icon="ar-green_on"]:before,
.p-icon[p-icon="ar-green_on"]:after {
  background-image: url(../image/icon/ar_green_on.svg);
}

/* download */

.p-icon[p-icon="dl"]:before,
.p-icon[p-icon="dl"]:after {
  width: 1.2em;
  height: 1.2em;
  background-image: url(../image/icon/dl.svg);
}

/* download（水色） */

.p-icon[p-icon="dl-blue"]:before,
.p-icon[p-icon="dl-blue"]:after {
  width: 1.2em;
  height: 1.2em;
  background-image: url(../image/icon/dl_blue.svg);
}

/*----------------------------------------------------------------------------------------------------

  
  
----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------
  線無
--------------------------------------------------------------------------------*/

.p-arrow {
  left: 3px;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  top: 50%;
  margin-left: 0.25em;
}

.p-arrow:not([arrow="prev"]):not([arrow="down"]) {
  transform: translateY(-25%) rotate(45deg);
}

.p-a-border {
  display: inline-block;
  border-radius: 10px;
  border: 2px solid #fff;
  padding-right: 0.5em;
  margin-left: 0.5em;
}

/*.p-arrow {
  width:1.2em;
  height:1.2em;
  display:inline-block;
  position:relative;
  vertical-align:middle;
}

.p-arrow:before {
  content:"";
  width:0;
  height:0;
  border-style:solid;
  display:inline-block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.p-arrow:not([arrow="prev"]):not([arrow="down"]):before {
  border-width:3px 0 3px 6px;
  border-color:transparent transparent transparent #fff;
}

.p-arrow[arrow="prev"]:before {
  border-width:3px 6px 3px 0;
  border-color:transparent #fff transparent transparent;
}

.p-arrow[arrow="down"]:before {
  border-width:6px 4px 0 4px;
  border-color:#fff transparent transparent transparent;
}*/

/*--------------------------------------------------------------------------------
  線有
--------------------------------------------------------------------------------*/

.p-lineArrow {
  width: 2em;
  min-height: 1em;
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

a.p-lineArrow--txt,
a.p-lineArrow--txt:visited,
a.p-lineArrow--txt:hover,
.p-lineArrow--txt a,
.p-lineArrow--txt a:visited,
.p-lineArrow--txt a:hover {
  color: inherit;
  text-decoration: none;
}

.ua-pc a.p-lineArrow--txt:hover,
.ua-pc .p-lineArrow--txt a:hover {
  color: #2c4683;
}

.p-lineArrow--txt .p-lineArrow {
  margin-bottom: 0.25em;
}

.p-lineArrow--txt .p-lineArrow:not([arrow="prev"]) {
  margin-left: 0.5em;
}

.p-lineArrow--txt .p-lineArrow[arrow="prev"] {
  margin-right: 0.5em;
}

.p-lineArrow:before,
.p-lineArrow:after {
  content: "";
}

.p-lineArrow:before {
  width: 1.75em;
  height: 1px;
  background-color: #0a1428;
  position: absolute;
  bottom: 0;
}

.p-lineArrow:not([arrow="prev"]):before {
  right: 0;
}

.p-lineArrow[arrow="prev"]:before {
  left: 0;
}

.ua-pc .p-lineArrow:before {
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ua-pc .p-lineArrow--txt:hover .p-lineArrow:before,
.ua-pc .p-lineArrow-link:hover .p-lineArrow:before,
.ua-pc .p-lineArrow--ic:hover.p-lineArrow:before {
  width: 1.5em;
}

.p-lineArrow:after {
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.p-lineArrow:not([arrow="prev"]):after {
  border-width: 0.4rem 0 0 0.7rem;
  border-color: transparent transparent transparent #0a1428;
  right: -1px;
}

.p-lineArrow[arrow="prev"]:after {
  border-width: 0.4rem 0.7rem 0 0;
  border-color: transparent #0a1428 transparent transparent;
  left: -1px;
}

.p-lineArrow--ic:before,
.p-lineArrow--ic:after {
  bottom: 50%;
  margin-bottom: -0.2rem;
}

/*----------------------------------------------------------------------------------------------------

  新しいウインドウ Icon
  
----------------------------------------------------------------------------------------------------*/

.p-gLink:after {
  content: url(../image/icon/gLink.svg);
  display: inline-block;
  vertical-align: top;
  margin-left: 0.3em;
  margin-right: 0.3em;
  margin-top: -0.25em;
}

/*----------------------------------------------------------------------------------------------------

  List
  
----------------------------------------------------------------------------------------------------*/

.p-list--in {
  margin-left: 2.2rem;
}

.p-list--in li {
  line-height: 1.5;
}

.p-list--in li:not(:first-child) {
  margin-top: 0.4em;
}

/*--------------------------------------------------------------------------------
  マーク
--------------------------------------------------------------------------------*/

.p-listMk {
  list-style: none;
}

.p-listMk li {
  line-height: 1.5;
  padding-left: 1.4em;
}

.p-listMk li:not(:first-child) {
  margin-top: 0.4em;
}

.p-listMk li:before {
  margin-left: -1.4em;
  margin-right: 0.4em;
  display: inline-block;
}

.p-listMk[p-list="maru"] li:before {
  content: "●";
  color: #12aaa5;
  font-size: 0.8em;
}

.p-listMk[p-list="dot"] li:before {
  content: "・";
}

.p-listMk[p-list="check"] li:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../image/icon/check.svg) no-repeat center center;
  background-size: contain;
}

/* No */

.p-listMk[p-list="no"] {
  counter-reset: s-number;
}

.p-listMk[p-list="no"] li {
  position: relative;
  counter-increment: s-number;
  padding-left: 2em;
}

.p-listMk[p-list="no"] li:before {
  margin-left: 0;
  margin-right: 0;
  content: counter(s-number);
  font-weight: 500;
  font-style: normal;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0.1em;
  background-color: #12aaa5;
  color: #fff;
  line-height: 1;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  border-radius: 100%;
  font-size: 0.8em;
  z-index: 2;
}

/*----------------------------------------------------------------------------------------------------

  波線
  
----------------------------------------------------------------------------------------------------*/

.p-namisen {
  color: #12aaa5;
  font-weight: 500;
  margin: 0 0.5rem;
  padding-bottom: 1em;
  background: url(../image/pattern/namisen.svg?v=5) repeat-x left bottom 0.8em;
  background-size: auto 4px;
}

@media screen and (max-width: 480px) {
  .p-namisen {
    background-size: auto 3px;
  }
}

/*----------------------------------------------------------------------------------------------------

  ページネーション
  
----------------------------------------------------------------------------------------------------*/

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

.p-pagination__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-pagination__list li {
  padding: 0 4px;
  line-height: 1;
}

.p-pagination__list li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.p-pagination__list li a {
  display: block;
}

.p-pagination__list li a,
.p-pagination__list li a:visited,
.p-pagination__list li a:hover {
  color: #ff9b42;
  text-decoration: none;
}

.p-pagination__list li span.active {
  color: #fff;
  background-color: #ff9b42;
}

.p-pagination__list li span {
  line-height: 1;
  border-radius: 4px;
  width: 2em;
  height: 2em;
  padding-top: 0.4em;
  display: block;
  color: inherit;
  border: 1px solid #ff9b42;
  box-sizing: border-box;
}

.ua-pc .p-pagination__list li a span {
  -webkit-transition: background ease 0.1s, border ease 0.1s, color ease 0.1s;
  transition: background ease 0.1s, border ease 0.1s, color ease 0.1s;
}

.ua-pc .p-pagination__list li a span:hover {
  background-color: rgba(245, 131, 33, 0.1);
}

@media print, screen and (min-width: 641px) {
  .p-pagination {
    padding-top: 64px;
  }
}

@media screen and (max-width: 640px) {
  .p-pagination {
    padding-top: 2.25em;
  }
}

/*----------------------------------------------------------------------------------------------------

  ブログパターン
  
----------------------------------------------------------------------------------------------------*/

.p-glog {
  text-align: left;
  word-break: break-all;
}

.p-glog:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.p-glog ul,
.p-glog ol {
  margin-left: 1.2em;
}

.p-glog__img--left,
.p-glog__img--right {
  display: inline-block;
}

.p-glog__img--center {
  display: block;
  text-align: center;
}

.p-glog__img__cp {
  display: block;
  font-size: 0.9em;
  line-height: 1.5;
  color: #999;
  padding-top: 0.8em;
  text-align: center;
}

.p-glog__datafile--left,
.p-glog__datafile--right,
.p-glog__datafile--center {
  padding-bottom: 1em;
}

.p-glog__datafile--right {
  text-align: left;
}

.p-glog__datafile--right {
  text-align: right;
}

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

.p-glog__datafile {
  display: inline-block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

@media print, screen and (min-width: 641px) {
  .p-glog {
    padding-top: 40px;
    line-height: 2;
  }

  .p-glog__img--left {
    float: left;
    margin-right: 2.5em;
  }

  .p-glog__img--right {
    float: right;
    margin-left: 2.5em;
  }

  .p-glog__img--left,
  .p-glog__img--right {
    margin-bottom: 1em;
  }

  .p-glog__img--center {
    padding-bottom: 2em;
  }
}

@media screen and (max-width: 640px) {
  .p-glog {
    padding-top: 2em;
  }

  .p-glog__img--left {
    float: left;
    margin-right: 1.25em;
  }

  .p-glog__img--right {
    float: right;
    margin-left: 1.25em;
  }

  .p-glog__img--left,
  .p-glog__img--right {
    margin-bottom: 1em;
    width: 45% !important;
  }

  .p-glog__img--center {
    padding-bottom: 1.5em;
  }
}

@media screen and (max-width: 560px) {

  .p-glog__img--left,
  .p-glog__img--right {
    float: none;
    display: block;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5em;
    margin-left: 0;
    margin-right: 0;
  }

  .p-glog__img--left,
  .p-glog__img--right {
    max-width: 400px;
    width: 100% !important;
  }
}

/*--------------------------------------------------------------------------------
  非公開
--------------------------------------------------------------------------------*/

.private-alert {
  text-align: center;
  border: 2px solid #f85660;
  background-color: #ffeeee;
  border-radius: 10px;
  line-height: 1.4;
  color: #eb3c46;
  padding: 1.2em 1em;
}

.private-alert b {
  font-size: 1.2em;
}

.private-alert small {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1.4;
  margin-top: 0.2em;
}

@media print, screen and (min-width: 641px) {
  .private-alert {
    font-size: 1.2em;
    margin-top: -18px;
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 640px) {
  .private-alert {
    font-size: 1.1em;
    margin-bottom: 1.75em;
  }
}

@media screen and (max-width: 560px) {
  .private-alert small {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 480px) {
  .private-alert {
    font-size: 4vw;
  }
}

/*----------------------------------------------------------------------------------------------------

 
  
----------------------------------------------------------------------------------------------------*/

span.jp-ttl {
  display: block;
  position: relative;
}

span.jp-ttl::after {
  position: absolute;
  content: "";
  width: 85px;
  height: 1px;
  background-color: #ddc5c5;
  top: 50%;
  transform: translateY(-50%);
}

@media print, screen and (min-width: 641px) {
  span.jp-ttl::after {
    margin-left: 20px;
  }
}

@media print, screen and (max-width: 640px) {
  span.jp-ttl::after {
    margin-left: 20px;
  }
}

/*----------------------------------------------------------------------------------------------------

 
  
----------------------------------------------------------------------------------------------------*/

.white-back {
  background-color: #fff;
  /*box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.2);*/
}

/*
.pink-back {
  background-color: #c9f5ff;
}

.pink-back02 {
  background-color: #fff8f8;
}

.pink-back03 {
  background-color: #ffe8ea;
}
*/

/*.flower-back {
  background-image: url("../image/flower-back.jpg");
  background-size: cover;
}*/

/*----------------------------------------------------------------------------------------------------

 
  
----------------------------------------------------------------------------------------------------*/

.pink-shadow {
  box-shadow: 0 10px 25px 0 rgba(255, 115, 135, 0.1);
}

/*----------------------------------------------------------------------------------------------------

 
  
----------------------------------------------------------------------------------------------------*/

.pink-grade {
  background: -moz-radial-gradient(#ffe5dc 50%, #ffcbd9);
  background: -webkit-radial-gradient(#ffe5dc 50%, #ffcbd9);
  background: radial-gradient(#ffe5dc 50%, #ffcbd9);
}

/*----------------------------------------------------------------------------------------------------

 
  
----------------------------------------------------------------------------------------------------*/

.sp-none {
  display: block;
}

.pc-none {
  display: none;
}

@media print, screen and (max-width: 640px) {
  .sp-none {
    display: none !important;
  }

  .pc-none {
    display: block !important;
  }
}

/*----------------------------------------------------------------------------------------------------



----------------------------------------------------------------------------------------------------*/

.annotation {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/*----------------------------------------------------------------------------------------------------



----------------------------------------------------------------------------------------------------*/

.anim {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */

.anim.is-active {
  transition: 0.6s;
  transform: translateY(0);
  opacity: 1;
}

.slide-skew.is-animated.is-active {
  animation: slide-skew 0.4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slide-skew {
  0% {
    transform: translate(180px, 30px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
  }

  20%,
  100% {
    opacity: 1;
  }
}

.anim-box.poyo:hover {
  animation: poyopoyo 1.5s ease-in-out infinite;
  opacity: 0.9;
}

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }

  50%,
  70% {
    transform: scale(0.95);
  }
}

/*----------------------------------------------------------------------------------------------------



----------------------------------------------------------------------------------------------------*/

.sns-list {
  list-style: none;
  width: 90px;
  /*width:200px;*/
}

.sns-list {
  position: absolute;
  right: 374px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
}

.sns-list-sp {
  display: none;
}

@media print, screen and (max-width: 1000px) {
  .sns-list {
    display: none;
  }

  .sns-list-sp {
    display: flex;
    list-style: none;
    justify-content: space-between;
    width: 70px;
    /*width: 160px;*/
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
  }

  .sns-list-sp img {
    width: 30px;
  }
}

/*@media print,screen and (max-width:640px) {

}*/

/*----------------------------------------------------------------------------------------------------



----------------------------------------------------------------------------------------------------*/

.arrow_box {
  position: relative;
  /*    width:500px;
    height:80px;*/
  width: 100%;
  background: #ffffff;
  /*padding:10px;*/
  text-align: center;
  border-top: 2px solid #127c56;
  border-bottom: 2px solid #127c56;
  color: #ffffff;
  /*    font-size:30px;
    font-weight:bold;*/
}

.arrow_box:after,
.arrow_box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}

.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #ffffff;
}

.arrow_box:before {
  border-color: rgba(18, 124, 86, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-left: -11px;
  margin-top: 2px;
  border-top-color: #127c56;
}

/*----------------------------------------------------------------------------------------------------

タイトル

----------------------------------------------------------------------------------------------------*/

.top-page h2 {
  font-family: "FOT-Humming";
  font-weight: 600;
  color: #20a39e;
  margin-bottom: 30px;
  line-height: 1.4;
}

.top-page h2 span {
  display: block;
  color: #06aed5;
}

.top-page h3 {
  position: relative;
  color: #20a39e;
  padding-left: 100px;
  margin-bottom: 30px;
}

.top-page h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media print, screen and (max-width: 640px) {
  .top-page h2 {
    text-align: center;
  }
}

.linetag-hd {
  position: relative;
  padding: 20px 30px 20px 40px;
  border-radius: 10px;
}

.linetag-hd::before {
  position: absolute;
  top: 25%;
  left: 20px;
  width: 6px;
  height: 50%;
  content: "";

  border-radius: 3px;
}

.linetag-hd[txt-color="white"] {
  color: #fff;
  background: #06aed5;
}

.linetag-hd[txt-color="white"]::before {
  background: #fff;
  opacity: 0.8;
  -ms-filter: "alpha(opacity=80)";
}

.linetag-hd[txt-color="blue"] {
  color: #003459;
  background: #fff;
}

.linetag-hd[txt-color="blue"]::before {
  background: #5f7276;
  opacity: 0.2;
  -ms-filter: "alpha(opacity=20)";
}

.tag-hd {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem 1rem 4rem;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  background: #fa4141;
}

.tag-hd:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
}

.tag-hd[txt-color="white"] {
  color: #fff;
  background: #06aed5;
  border: 1px solid #06aed5;
}

.tag-hd[txt-color="white"]::before {
  background: #fff;
}

.tag-hd[txt-color="blue"] {
  color: #003459;
  background: #fff;
  border: 1px solid rgba(243, 243, 243, 1);
}

.tag-hd[txt-color="blue"]::before {
  background: #003459;
}

.uline-hd {
  position: relative;
  padding: 1rem 2rem;
}

.uline-hd:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  border-radius: 6px;
}

.uline-hd:after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: "";
  border-radius: 6px;
}

.uline-hd[back-color="blue"]:before {
  background: #c9f5ff;
}

.uline-hd[back-color="blue"]:after {
  background: #06aed5;
}

.uline-hd[back-color="pink"]:before {
  background: #f5cac3;
}

.uline-hd[back-color="pink"]:after {
  background: #f28482;
}

/*.uline-hd[back-color="green"]:before {
  background: #84a59d;

}

.uline-hd[back-color="green"]:after {
  background: #54867A;
}*/

/*.uline-hd[back-color="blue"]:before {
  background: #9bbccf;
}

.uline-hd[back-color="blue"]:after {
  background: #7183a9;
}*/

.textshadow {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
    1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

.m-red {
  background: linear-gradient(rgba(255, 255, 255, 0) 55%, #ffd3c7 55%);
  font-weight: bold;
}

.m-blue {
  background: linear-gradient(rgba(255, 255, 255, 0) 55%, #caede2 55%);
  font-weight: bold;
}

.m-green {
  background: linear-gradient(rgba(255, 255, 255, 0) 55%, #81e69f 55%);
  font-weight: bold;
}

/*----------------------------------------------------------------------------------------------------

  ブログパターン
  
----------------------------------------------------------------------------------------------------*/

.p-glog {
  text-align: left;
  word-break: break-all;
}

.p-glog:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.p-glog ul,
.p-glog ol {
  margin-left: 1.2em;
}

.p-glog__img--left,
.p-glog__img--right {
  display: inline-block;
}

.p-glog__img--center {
  display: block;
  text-align: center;
}

.p-glog__img__cp {
  display: block;
  font-size: 0.9em;
  line-height: 1.5;
  color: #999;
  padding-top: 0.8em;
  text-align: center;
}

.p-glog__datafile--left,
.p-glog__datafile--right,
.p-glog__datafile--center {
  padding-bottom: 1em;
}

.p-glog__datafile--right {
  text-align: left;
}

.p-glog__datafile--right {
  text-align: right;
}

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

.p-glog__datafile {
  display: inline-block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

@media print, screen and (min-width: 641px) {
  .p-glog {
    padding-top: 40px;
    padding-bottom: 40px;
    line-height: 2;
  }

  .p-glog__img--left {
    float: left;
    margin-right: 2.5em;
  }

  .p-glog__img--right {
    float: right;
    margin-left: 2.5em;
  }

  .p-glog__img--left,
  .p-glog__img--right {
    margin-bottom: 1em;
  }

  .p-glog__img--center {
    padding-bottom: 2em;
  }
}

.p-hvPhoto__img {
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit:cover;";
}

@media print, screen and (min-width: 641px) {
  .ua-pc .p-hvPhoto--arrow-link:hover .p-hvPhoto--arrow:after {
    background-color: rgba(20, 20, 20, 0.4);
  }

  .ua-pc .p-hvPhoto-link:hover .p-hvPhoto__img,
  .ua-pc .p-hvPhoto--arrow-link:hover .p-hvPhoto__img,
  .ua-pc .p-hvPhoto-link.is-hover .p-hvPhoto__img {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 640px) {
  .p-glog {
    padding-top: 0.5em;
    padding-bottom: 2em;
  }

  .p-glog__img--left {
    float: left;
    margin-right: 1.25em;
  }

  .p-glog__img--right {
    float: right;
    margin-left: 1.25em;
  }

  .p-glog__img--left,
  .p-glog__img--right {
    margin-bottom: 1em;
    width: 45% !important;
  }

  .p-glog__img--center {
    padding-bottom: 1.5em;
  }
}

@media screen and (max-width: 560px) {

  .p-glog__img--left,
  .p-glog__img--right {
    float: none;
    display: block;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5em;
    margin-left: 0;
    margin-right: 0;
  }

  .p-glog__img--left,
  .p-glog__img--right {
    max-width: 400px;
    width: 100% !important;
  }
}

/*--------------------------------------------------------------------------------
  非公開
--------------------------------------------------------------------------------*/

.private-alert {
  text-align: center;
  border: 2px solid #f85660;
  background-color: #ffeeee;
  border-radius: 10px;
  line-height: 1.4;
  color: #eb3c46;
  padding: 1.2em 1em;
}

.private-alert b {
  font-size: 1.2em;
}

.private-alert small {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1.4;
  margin-top: 0.2em;
}

@media print, screen and (min-width: 641px) {
  .private-alert {
    font-size: 1.2em;
    margin-top: -18px;
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 640px) {
  .private-alert {
    font-size: 1.1em;
    margin-bottom: 1.75em;
  }
}

@media screen and (max-width: 560px) {
  .private-alert small {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 480px) {
  .private-alert {
    font-size: 4vw;
  }
}




.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #5DA9E9;
  text-decoration: none;
  padding: 10px 20px;
}
.btn--blue:hover,
a.btn--blue:hover {
  color: #fff;
  background: #01BAEF;
  text-decoration:underline;
}