@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=M+PLUS+Rounded+1c:wght@500;800;900&family=Open+Sans:wght@300;400;500;700&display=swap");

:root {
  --theme-color-lightest: #fcecf0;
  --theme-color-lighter: #f7bfcd;
  --theme-color-light: #f192a9;
  --theme-color: #ed6788;
  --theme-color-dark: #e32051;
  --theme-color-darker: #a31437;
  --theme-color-darkest: #5f0b20;

  --theme-color-pair-lightest: #defbf2;
  --theme-color-pair-lighter: #b0f6e1;
  --theme-color-pair-light: #57edc0;
  --theme-color-pair: #15c590;
  --theme-color-pair-dark: #10976f;
  --theme-color-pair-darker: #0b694d;
  --theme-color-pair-darkest: #063b2b;
}

/* -------------------- 共通ルール ------------------------ */
body {
  font-family: "Open Sans", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "游ゴシック", "メイリオ", YuGothic, Meiryo, sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
}

.content {
  margin-top: 0;
}

.d-none {
  display: none;
}

.w-800 {
  max-width: 800px;
}

.w-700 {
  max-width: 700px;
}

.w-600 {
  max-width: 600px;
}

.w-500 {
  max-width: 500px;
}

.block-center {
  display: block;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.d-grid {
  display: flex;
}

.flex-center {
  place-items: center;
  place-content: center;
}

/* 見出し リセット */
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6,
.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5,
.sidebar h6 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: normal;
  color: #333;
  border-radius: initial;
  background: none;
  border: none;
}

.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5,
.sidebar h6 {
  margin-top: 2rem;
  padding: 6px 10px;
  font-family: "UD新ゴ コンデンス90 M";
  color: white;
  background-color: var(--theme-color-pair);
}

.article .before-v-bar {
  position: relative;
  padding-top: 0;
  margin-top: 7rem;
}

.before-v-bar::before {
  content: "";
  width: 1px;
  height: 50px;
  background: #aaa;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto 0;
}

.desc {
  font-size: 0.92rem;
}

.border-gray {
  border: 1px solid gray;
}

.border-radius {
  border-radius: 10px;
}

.heading-top {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.button-wrap {
  margin-top: 30px;
  text-align: center;
}

.link-button {
  display: inline-block;
  min-width: 280px;
  min-height: 60px;
  padding: 15px 10px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background-color: var(--theme-color-dark);
  transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  transition-duration: 0.5s;
  transition-property: background-color;
}

.link-button:hover {
  background-color: var(--theme-color-pair);
  color: white;
}

a[href$=".pdf"]::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-size: 1.2rem;
  margin-right: 8px;
  display: inline-block;
}

header.article-header,
footer.article-footer,
.breadcrumb-item .fa-file {
  display: none;
}

.rich_font {
  font-family: "リュウミン R-KL" !important;
}

.rich_font_bold {
  font-family: "リュウミン B-KL" !important;
}

.text-center {
  text-align: center;
}

.sp_show {
  display: none;
}

.text-red {
  color: var(--theme-color-dark);
}

.bold-red {
  color: var(--theme-color-dark);
  font-weight: bold;
}

.full-wide {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  padding: 0;
  margin: 50px -50vw;
  background-repeat: no-repeat;
  background-position: center center;
}

/* h1 ~ h6 装飾 */
.catch_en {
  display: block;
  font-size: 1rem;
  color: var(--theme-color-dark);
}

.catch_jp {
  font-size: 2.1rem;
  color: #333;
  margin-top: 20px;
}

/* 本文リストを"Font Awesome 5 Free"で飾る */
ul {
  list-style: none;
  padding-left: 1em;
}

ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 3px;
  color: var(--theme-color-pair);
}

ul.check-circle li::before {
  content: "\f058";
  /* アイコンのunicode */
}

ul.check-circle li {
  padding-left: 1em;
  text-indent: -1.1em;
}

/*丸付きナンバーリスト*/
ol.num-list {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

ol.num-list li {
  margin: 1em 0;
  padding-left: 2.6rem;
  text-indent: -1.9rem;
}

ol.num-list>li::before {
  counter-increment: item;
  content: counter(item) "";
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
  text-align: center;
  text-indent: 0;
  background: var(--theme-color);
  color: white;
  border-radius: 50%;
  margin-right: 0.5em;
}

/* グリッドボックス */
.home .grid-box {
  display: flex;
  gap: 20px;
}

.about .grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-box * {
  flex: 1;
  box-sizing: border-box;
  transition: all 0.35s ease;
}

.grid-box .grid-item {
  position: relative;
  width: auto;
  height: auto;
  overflow: hidden;
  color: #000000;
  background-image: linear-gradient(to bottom, #ffffff 0%, #000000 70%);
}

.grid-box .square-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 正円トリミング */
.circle {
  border-radius: 50%;
}

/* 補足　注意　参考　ポイント */
.hosoku-box {
  position: relative;
  padding: 0.6rem;
  margin: 3rem 0 1rem 0;
  text-indent: 0;
  font-size: 0.9rem;
  line-height: 1.5rem;
  border-radius: 0 0 40px 15px / 0 0 40px 15px;
}

.hosoku-box::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 0.4em 1em 0.4em 0.8em;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.attention {
  border-top: solid 2px #a13131;
  background: #ffdede;
}

.attention::after {
  content: "\f06a\ ご注意";
  background: #db4a4a;
}

.point {
  border-top: solid 2px #ff5b0f;
  background: #ffedde;
}

.point::after {
  content: "\f058\ POINT";
  background: #ff7d49;
}

.hosoku {
  border-top: solid 2px #80c8d1;
  background: #d4f1e9;
}

.hosoku::after {
  content: "\f0eb\ 補足";
  background: #80c8d1;
}

.sanko {
  border-top: solid 2px #363f9e;
  background: #e1ecfc;
}

.sanko::after {
  content: "\f02d\ 参考";
  background: #3558ca;
}

/* 固定ページにつくヘッダ */
#header-box {
  position: relative;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

img.header-img {
  width: 100vw;
}

#header-box #header-text-milk {
  position: absolute;
  font-family: "M pLUS Rounded 1c";
  font-weight: 800;
  font-size: 5.6vw;
  bottom: 2.5vw;
  line-height: 1.5;
  color: var(--theme-color);
  -webkit-text-stroke: 6px var(--theme-color);
  text-shadow: 0 0 7px var(--theme-color-darker);
}

#header-box #header-text-milk::before {
  content: attr(data-text);
  position: absolute;
  color: var(--theme-color);
  -webkit-text-stroke: 2px #fff;
}

#header-box #header-text-desc {
  position: absolute;
  font-family: "Jun 501";
  font-size: 1.55vw;
  bottom: 1vw;
  line-height: 1.5;
  color: var(--theme-color);
}

.milk-title {
  max-width: 600px;
  height: auto;
}

.drop-shadow {
  filter: drop-shadow(2px 2px 2px rgb(0, 0, 0, 0.25));
}

/* ヘッダー（テキスト）jsでページ最上部に移動 */
#header {
  background-color: #ed6788;
}

#header .tagline {
  font-weight: bold;
  margin: 4px 0;
  color: white;
}

/* ナビメニュー */
/* メニュー幅最適値 */
#navi .navi-in>ul>li>a {
  padding: 0;
  font-weight: bold;
}

#navi .navi-in>ul>li {
  min-width: 80px;
}

.navi-in a:hover .sub-caption {
  color: white;
}

.navi-in a:hover {
  background-color: #fac2cd;
  transition: all 0.5s ease;
  color: white;
}

.navi-in a:hover .sub-caption {
  /* color: white; */
  opacity: 1;
}

/* ヘッダ内／サイトネーム */
#header-in .logo-header {
  display: none;
}

.site-name-text-link {
  font-family: "Jun 201";
}

/* サイドバー */
.widget_recent_entries ul li {
  text-align: right;
  border-bottom: 1px dotted gray;
}

.widget_recent_entries ul li a {
  text-align: left;
}

.widget_recent_entries ul li .post-date {
  position: relative;
  padding: 4px 6px;
  background-color: #efefef;
}

/* footer ---------------------------------------------*/
#footer {
  margin-top: 0;
  padding: 0;
  background-color: black;
}

.footer-bottom {
  padding: 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin: 24px -50vw 0;
}

.navi-footer {
  background-color: #efefef;
}

#footer .copyright {
  color: white;
  padding: 18px 0;
  margin: 0;
}

#footer li {
  margin: 18px 0;
  border-left: none;
}

#footer a {
  color: #555;
  padding: 0 20px;
  transition: 0.5s linear;
}

#footer a:hover {
  transform: scale(1.1);
}

/* -------------------------- アクセス --------------------------- */
.map {
  position: relative;
  padding-top: 300px;
  height: 450px;
  overflow: hidden;
}

.map iframe {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 150px + 150px);
  pointer-events: none;
}

.map--gray iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

.balloon-pin {
  position: absolute;
  top: calc(50% - 128px);
  left: calc(50% - 55px);
  display: flex;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  font-family: Jost;
  font-size: 1.4rem;
  color: white;
  z-index: 1;
}

.home .balloon-pin {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-name: bounce-light-fast;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

.balloon-pin:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: calc(50% - 10px);
  bottom: -20px;
  border-style: solid;
  border-width: 30px 8px 0 8px;
  border-color: var(--theme-color) transparent transparent transparent;
}

.balloon-pin .miru-chan,
.balloon-pin .qoo-chan {
  width: 65px;
  height: auto;
  z-index: 9;
  filter: drop-shadow(0 0 4px white);
}

.balloon-pin .qoo-chan {
  width: 57px;
}

@keyframes bounce-light-slow {

  /* これを使うときは animation-duration を 2s で */
  0% {
    transform: scale(1, 1) translateY(0);
  }

  /* scale(横,縦) */
  10% {
    transform: scale(1.1, 0.9) translateY(5px);
  }

  /* translateY +下方向 -上方向 */
  30% {
    transform: scale(0.9, 1.1) translateY(-50px);
  }

  50% {
    transform: scale(1.2, 0.95) translateY(0);
  }

  57% {
    transform: scale(1, 1) translateY(-7px);
  }

  64% {
    transform: scale(1, 1) translateY(0);
  }

  100% {
    transform: scale(1, 1) translateY(0);
  }
}

@keyframes bounce-light-fast {
  0% {
    transform: scale(1, 1) translateY(0);
  }

  /* scale(横,縦) */
  5% {
    transform: scale(1.1, 0.9) translateY(5px);
  }

  /* translateY +下方向 -上方向 */
  15% {
    transform: scale(0.9, 1.1) translateY(-50px);
  }

  25% {
    transform: scale(1.2, 0.95) translateY(0);
  }

  27% {
    transform: scale(1, 1) translateY(-7px);
  }

  32% {
    transform: scale(1, 1) translateY(0);
  }

  50% {
    transform: scale(1, 1) translateY(0);
  }
}

@keyframes purupuru {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  20% {
    transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }

  50% {
    transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }

  65% {
    transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }

  80% {
    transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }

  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

/* フッター手前の情報ボックス */
.footer-info-box {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  font-family: "新ゴ R";
}

.footer-info-box img.footer_logo {
  width: 13vw;
  height: auto;
  margin-bottom: 3px;
}

.footer-info-box .jp {
  font-family: "M pLUS Rounded 1c";
  font-size: 1.6rem;
  color: #4c3733;
}

.footer-info-box .address {
  font-size: 1rem;
  margin: 15px 0;
}

.badge {
  color: black;
  background-color: var(--theme-color-lightest);
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 3px 8px;
}

.price,
a.phone {
  font-size: 1.6rem;
  font-family: Jost;
  font-weight: 600;
}

a.phone {
  display: block;
  text-decoration: none;
}

/* アクセス */
.park-box {
  margin: 80px 0;
  padding: 60px 80px;
  justify-content: space-between;
  border: 1px solid #ccc;
}

.park-box .item {
  width: calc(50% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.park-box h2.title {
  font-family: "新ゴ R";
  color: #333;
  margin: 20px 0;
  padding: 0;
  font-size: 1.3rem;
}

.park-box img {
  width: 100%;
  height: 300px;
  margin-top: auto;
  object-fit: cover;
}

/* 本文内 dl */
/*記事内 dl dt dd*/
.article dl {
  background-color: rgba(0, 153, 204, 0.08);
  /*#0099CC*/
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 20px 0;
}

.article dt {
  padding: 20px 15px 0 15px;
  border-top: 1px solid #ccc;
  width: 30%;
  float: left;
}

.article dd {
  padding: 20px 15px 0 20px;
  border-top: 1px solid #ccc;
  background: #fff;
  margin-left: 30%;
  padding-bottom: 15px;
  border-left: 1px solid #ccc;
  text-align: left;
}

.article dd::after {
  content: "";
  display: block;
  clear: both;
}

/*必要ならばここにコードを書く*/
dl,
dt,
dd {
  box-sizing: border-box;
}

dl {
  width: 100%;
}

dt {
  float: left;
}

/* みるくについて > ご利用料金など */
.use-box dt {
  width: 220px;
}

.use-box dd {
  margin-left: 220px;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
@media screen and (max-width: 1333px) {}

/*1023px以下*/
@media screen and (max-width: 1023px) {

  /*必要ならばここにコードを書く*/
  #header-box #header-text-desc {
    font-size: 2vw;
  }
}

/*834px以下*/
@media screen and (max-width: 834px) {}

@media screen and (max-width: 640px) {
  main.main {
    padding: 8px 16px;
  }

  #header-box #header-text-milk {
    font-size: 7.4vw;
    /* font-weight: 900; */
    bottom: 4vw;
    color: var(--theme-color-dark);
    text-shadow: 0 0 2px white;
    -webkit-text-stroke: 3px var(--theme-color);
  }

  #header-box #header-text-desc {
    font-size: 3vw;
    bottom: 1vw;
  }

  #header-box #header-text-milk::before {
    -webkit-text-stroke: 1px #fff;
  }

  .article h2 .catch_jp {
    font-size: 1.4rem;
  }

  .archive-news {
    line-height: 24px;
  }

  .news-item {
    height: 24px;
    padding: 0 15px;
  }

  .sp_hide {
    display: none;
  }

  .sp_justify {
    text-align: justify;
  }

  .no_br {
    text-align: justify;
  }

  .no_br br {
    display: none;
  }

  .home .grid-box {
    gap: 1rem;
  }

  #footer-box .item {
    margin-bottom: 1rem;
  }

  #footer-box .item.mifune {
    margin-top: 2rem;
  }

  #footer-box .box {
    flex-direction: column;
  }

  #footer-box .footer-map {
    width: 100vw !important;
  }
}

/*480px以下*/
@media screen and (max-width: 480px) {
  #header .tagline {
    font-weight: normal;
    font-size: 10.5px;
  }

  #header-box .character {
    width: 40px !important;
  }

  .no_br br {
    display: none;
  }

  .sp_show {
    display: block;
  }

  .article ul {
    padding-left: 0;
  }

  .timeline-box {
    border: none;
  }
}