/*!
Theme Name: ticket-festa
Theme URI: http://underscores.me/
Author: sosotown
Author URI: http://underscores.me/
Description: Description
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ticket-festa
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ticket-festa is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
}
body {
  color: #000;
  font-size: 1.4rem;
  font-family: "Lato", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #f7f7f7;
  margin: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
a:link,
a:hover {
  color: #000;
  text-decoration: none;
}
a:hover {
  transition: 0.3s;
  opacity: 0.7;
}
iframe {
  max-width: 100%;
}

/* --------------------------------
 * layout
 * -------------------------------- */
.l-header {
  background: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
.l-header h1,
.l-header .l-header__inner {
  padding: 1.5rem 0;
}

.custom-logo {
  width: auto;
  height: 55px;
  object-fit: contain;
}

.l-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.l-wrap {
  display: flex;
  display: -webkit-box;
  align-items: flex-start;
  -webkit-box-align: start;
  justify-content: space-between;
  -webkit-box-pack: justify;
}

.l-main {
  width: 840px;
  margin-right: 3rem;
  background: #fff;
  border: solid 3px #000;
  padding: 4rem;
  border-radius: 10px;
  overflow: hidden;
}

.l-sidebar {
  width: 270px;
}
.l-sidebar .c-heading--main {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.l-sidebar .c-heading--main span {
  font-size: 1.5rem;
}

.l-section {
  margin-bottom: 5rem;
}
.l-section:last-of-type {
  margin-bottom: 0;
}

.l-footer {
  background: #000;
  padding: 2.5rem 0;
  color: #fff;
  margin-top: 6rem;
}
.l-footer ul {
  display: flex;
  justify-content: center;
}
.l-footer .links,
.l-footer ul > li > a {
  color: #fff;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* ----layput スマホーー---- */
@media (max-width: 767px) {
  .l-header {
    position: relative;
    margin-bottom: 0;
  }
  .l-header img {
    height: 40px;
  }

  .custom-logo {
    width: auto;
    height: 40px;
    object-fit: contain;
  }

  .l-container {
    width: 100%;
    padding: 0;
  }
  .l-wrap {
    display: block;
  }

  .l-main {
    width: 100%;
    margin-right: 0;
    border: none;
    border-top: solid 2px #000;
    border-bottom: solid 2px #000;
    padding: 2rem;
    border-radius: 0;
  }

  .l-section {
    margin-bottom: 3rem;
  }

  .l-box {
    padding: 2rem;
  }

  .l-footer {
    padding: 1rem 0 2.5rem;
    margin-top: 0;
  }
  .l-footer .links,
  .l-footer ul > li > a {
    font-size: 1.2rem;
  }
  .l-footer small {
    font-size: 1rem;
  }
  .l-footer__logo {
    text-align: center;
    border-top: #fff 1px solid;
    margin: 0 2rem;
    padding: 2rem 0 2.5rem;
  }
}

/* --------------------------------
 * component
 * -------------------------------- */

/* ----検索バーー---- */
.c-search-box {
  text-align: center;
  font-size: 0;
  display: inline-block;
  position: relative;
  margin-bottom: 5rem;
}
.c-search-box .material-icons {
  position: absolute;
  left: 20px;
  font-size: 3rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.c-search-box .area {
  vertical-align: top;
  width: 600px;
  height: 65px;
  padding-left: 6rem;
  border-radius: 35px 0 0 35px;
  border: solid 3px #000;
  font-size: 1.6rem;
}
.c-search-box .button {
  width: 130px;
  text-align: center;
  color: #fff;
  height: 65px;
  border-radius: 0 35px 35px 0;
  background: #000;
  font-size: 2rem;
  letter-spacing: 3px;
}
.c-search-box .area:focus,
.c-search-box .button:focus {
  outline: 0;
}
.c-search-box .button:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* nav内の検索バー */
.c-search-box.in-nav {
  margin-bottom: 0;
  display: block;
}
.c-search-box.in-nav .area {
  width: 270px;
  height: 35px;
  padding-left: 5rem;
  border-radius: 35px;
  border: none;
  font-size: 1.2rem;
}
.c-search-box.in-nav .button {
  width: 20px;
  color: #000;
  height: 35px;
  border-radius: 0;
  background: none;
  font-size: 2rem;
  letter-spacing: 0;
}
/* ----見出しー---- */
.c-heading--main {
  display: flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  align-items: baseline;
  -webkit-box-align: baseline;
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 3rem;
  border-bottom: solid 3px #000;
  padding-bottom: 1rem;
}
.c-heading--main span {
  font-size: 1.8rem;
}

.c-heading--link {
  position: relative;
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  border: 3px #000 solid;
}
.c-heading--link a {
  display: block;
}
.c-heading--link .tit {
  font-weight: bold;
  font-size: 1.8rem;
  display: inline-block;
  letter-spacing: 2px;
  vertical-align: middle;
}
.c-heading--link .tit_2 {
  font-weight: bold;
  font-size: 1.5rem;
  display: inline-block;
  letter-spacing: 1px;
  vertical-align: middle;
  padding-right: 1.1rem;
}
.c-heading--link .material-icons {
  color: #eb3e23;
  vertical-align: middle;
}
.c-heading--link .more {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

/* ----ボタンー---- */
.widget .c-btn {
  margin-top: 0;
  width: 90%;
}

.c-btn {
  position: relative;
  text-align: center;
  display: block;
  line-height: 60px;
  background: #fff;
  border: solid 3px #000;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  width: 500px;
  margin: 3rem auto;
  letter-spacing: 1px;
}
.c-btn:hover {
  background: #c4c4c4;
  opacity: 1;
}
.c-btn span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.c-btn a {
  display: block;
}

/* ----記事関連ー---- */
.c-article-meta {
  display: flex;
  display: -webkit-box;
  align-items: center;
  -webkit-box-align: center;
  margin-top: 0.5rem;
  line-height: 100%;
}
.c-article-meta .category {
  font-size: 1.3rem;
}

.c-article-meta .category a {
  color: #eb3e23;
  font-weight: bold;
  background-color: white;
}

.c-article-meta .date {
  color: #666666;
  font-size: 1.2rem;
  margin-left: 1rem;
  position: relative;
}

.c-article-meta .date .material-icons {
  color: #666666;
  font-size: 1.4rem;
  position: absolute;
  top: 0.1rem;
  left: 0.2rem;
}

.c-article-meta .date .entry-time {
  padding: 0 0 0 1.7rem;
}

.c-article-meta .header_category {
  font-size: 1.3rem;
}

.c-article-meta .header_category a {
  color: #eb3e23;
  font-weight: bold;
  background-color: white;
  white-space: normal;
}

.c-article-meta .header_date {
  color: #666666;
  font-size: 1.2rem;
  position: relative;
}

.c-article-meta .header_date .material-icons {
  color: #666666;
  font-size: 1.4rem;
  position: absolute;
  top: 0.1rem;
  left: 0.2rem;
}

.c-article-meta .header_date .entry-time {
  padding: 0 0 0 1.7rem;
}
/* ----カテゴリー---- */
.c-cat-box {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  margin-bottom: 3rem;
}
.cat-item {
  text-align: center;
  width: 50%;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  font-weight: bold;
  background: #fff;
}
.cat-item a {
  display: block;
  line-height: 45px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.cat-item a:hover {
  background: #c4c4c4;
  opacity: 1;
}

/* ----パンくずリストー---- */
.c-breadcrumb {
  margin-bottom: 2rem;
}
.c-breadcrumb li::after {
  content: "＞";
  margin: 0 5px 0 3px;
}
.c-breadcrumb li:last-of-type {
  font-weight: bold;
}
.c-breadcrumb li:last-of-type::after {
  display: none;
}

/* ----ページングー---- */
.pagination > ul {
  margin: 3rem 0;
}
.pagination > ul > li {
  text-align: center;
}
.pagination > ul > li > a > span.material-icons {
  line-height: unset;
}

.pagination > ul > li > a,
.pagination > ul > li > span {
  display: block;
  width: 35px;
  height: 35px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 29px;
  margin: 0 1rem;
  background: #fff;
  border: 3px solid #000;
}
.pagination > ul > li > span.current {
  pointer-events: none;
  background: #c4c4c4;
}
.pagination > ul > li > a:hover {
  background: #c4c4c4;
  opacity: 1;
}

/* ----component スマホーー---- */
@media (max-width: 767px) {
  .pagination > ul > li > a,
  .pagination > ul > li > span {
    margin: 0 0.5rem;
  }

  .c-search-box {
    margin-bottom: 2rem;
  }
  .p-hidden-box .c-search-box {
    margin-bottom: 0;
  }
  .c-search-box .material-icons {
    font-size: 2rem;
  }
  .c-search-box .area {
    width: 77vw;
    height: 50px;
    padding-left: 4rem;
    font-size: 1.3rem;
    border: solid 2px #000;
  }
  .c-search-box .button {
    width: 70px;
    height: 50px;
    font-size: 1.6rem;
  }

  .c-heading--main {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: solid 2px #000;
    padding-bottom: 5px;
  }
  .c-heading--main span {
    font-size: 1.4rem;
  }

  .c-heading--link {
    padding: 1.5rem;
  }
  .c-heading--link .tit {
    font-size: 1.6rem;
  }
  .c-heading--link .more {
    font-size: 1.2rem;
  }

  .c-btn {
    line-height: 50px;
    border: solid 2px #000;
    font-size: 1.6rem;
    width: 90%;
    margin: 2rem auto 3rem;
  }

  .c-article-meta .category a {
    font-size: 1.2rem;
  }
  .c-article-meta .date {
    margin: 0 0 0 1rem;
  }

  .c-cat-box {
    border-top: 2px solid #000;
    border-left: 2px solid #000;
  }
  .c-cat-box__item {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
  }
  .c-breadcrumb {
    font-size: 1.2rem;
    margin: 1.6rem;
  }
}

/* --------------------------------
 * project
 * -------------------------------- */

 /* ----カバー---- */
 .p-top-cover {
  background: #fff;
  width: 100%;
  padding: 4rem 2rem;
  /* border-top: solid 3px #000;
  border-bottom: solid 3px #000; */
  margin-bottom: 5rem ;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.p-top-cover .p-article-list__item {
  margin: 0 1rem;
  width: 230px;
}

/* ----記事リスト---- */
.p-article-list a {
  display: block;
}
.p-article-list__item {
  margin-bottom: 2rem;
}
.p-article-list__item h3,
.p-article-list__item .p-article-list__item_title {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem;
  line-height: 1.6;
  text-overflow: ellipsis;
  overflow: hidden;
}
.p-article-list__item p {
  line-height: 1.8;
}

.p-article-list__item article > a > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.head_p_section {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0;
}

.p-article-list__link {
  position: absolute;
  padding: 0 2rem;
  bottom: 0;
  right: 0;
}

.p-article-list__link a {
  font-weight: bold;
  border: 2px solid #000000;
  border-radius: 10px;
  padding: 0.5rem 1rem;
}

/* ----記事リスト 縦並び---- */
.p-article-list.vertical .p-article-list__item {
  position: relative;
}
.p-article-list.vertical .p-article-list__item article > a {
  display: flex;
  display: -webkit-box;
  align-items: flex-start;
  -webkit-box-align: start;
  justify-content: space-between;
  -webkit-box-pack: justify;
}
.p-article-list.vertical .p-article-list__item article > a > img {
  width: 150px;
}
.p-article-list.vertical .p-article-list__item h3,
.p-article-list.vertical .p-article-list__item .p-article-list__item_title {
  width: calc(100% - 170px);
  margin: 1.5rem 0 0 20px;
  line-height: 1.5;
}
.p-article-list.vertical .c-article-meta {
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-article-list .c-search-box {
  width: 100%;
  text-align: inherit;
}
.p-article-list .c-search-box .area {
  width: 72%;
}

/* ----ランキング---- */
.p-ranking {
  counter-reset: wpp-ranking;
}
.p-ranking li {
  list-style-type: none;
  padding: 5px 0 0 0;
  position: relative;
}
.p-ranking li:before {
  border: solid 3px #000;
  background: #fff;
  border-radius: 50%;
  content: counter(wpp-ranking, decimal);
  counter-increment: wpp-ranking;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  padding: 8px 12px;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 9;
}

/* ----サイドバー---- */
.p-sidebar-sns {
  background: #000;
  padding: 2rem;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
}
.p-sidebar-sns h2 {
  margin-bottom: 2rem;
}
.p-sidebar-sns .p-sidebar-sns__icon {
  display: inline-block;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

/* ----カテゴリーリスト---- */
.p-cat-list a {
  display: block;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* クリックしたら検索バーが表示 */
.p-hidden-box {
  padding: 0;
}
.p-hidden-box label {
  padding: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 8px;
}
.p-hidden-box input[type="checkbox"] {
  display: none;
}
.p-hidden-box .p-hidden-box__show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}
.p-hidden-box input:checked ~ .p-hidden-box__show {
  padding: 2rem 0 1rem;
  height: auto;
  opacity: 1;
}

.p-article-list__item.u-flex__half article > a > img {
  height: 254px;
}

/* ----project スマホーー---- */
@media (max-width: 767px) {
  .p-top-cover {
    width: 100%;
    height: inherit;
    padding: 5rem 1rem;
    justify-content: space-between;
    margin-bottom: 2rem;
    overflow-x: auto;
  }

  .p-top-cover .p-article-list__item {
    margin: 0 1rem;
    width: 200px;
  }

  .p-article-list__link {
    left: 0;
    bottom: 0;
    padding: 0rem 5rem;
    width: 100%;
    text-align: center;
  }

  .p-article-list__item {
    position: relative;
  }
  .p-article-list__item article > a {
    display: flex;
    display: -webkit-box;
    align-items: flex-start;
    -webkit-box-align: start;
    justify-content: space-between;
    -webkit-box-pack: justify;
  }
  .p-article-list__item.u-flex__half article > a > img,
  .p-article-list__item article > a > img {
    margin-bottom: 0;
    width: 120px;
    height: 83px;
    object-fit: contain;
  }
  .p-article-list__item h3,
  .p-article-list__item .p-article-list__item_title {
    font-size: 1.3rem;
    width: calc(100% - 130px);
    margin: 0;
  }

  .p-article-list .c-article-meta {
    position: relative;
    bottom: auto;
    right: auto;
  }

  .p-article-list.vertical .p-article-list__item article > a > img {
    width: 120px;
    height: 83px;
  }
  .p-article-list.vertical .p-article-list__item h3,
  .p-article-list.vertical .p-article-list__item .p-article-list__item_title {
    font-size: 1.3rem;
    width: calc(100% - 130px);
    margin: 0;
    line-height: 1.5;
  }

  .p-top-cover .p-article-list__item .p-article-list__item_component {
    display: block;
  }
  .p-top-cover .p-article-list__item .p-article-list__item_component img {
    width: 230px;
    height: 159px;
  }
  .p-top-cover.p-article-list .p-article-list__item h3,
  .p-top-cover.p-article-list .p-article-list__item .p-article-list__item_title {
    width: 100%;
  }
  .p-top-cover.p-article-list .c-article-meta {
    position: inherit;
    bottom: inherit;
    right: inherit;
  }
}

/* --------------------------------
 * utility
 * -------------------------------- */
.u-only-pc {
  display: block;
}
.u-only-sp {
  display: none;
}

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

.u-flex {
  display: flex;
  display: -webkit-box;
  align-items: flex-start;
  -webkit-box-align: start;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-flex--pc {
  display: -webkit-box;
  display: flex;
  align-items: flex-start;
  -webkit-box-align: start;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-flex--start {
  display: flex;
  display: -webkit-box;
  align-items: flex-start;
  -webkit-box-align: start;
  justify-content: flex-start;
  -webkit-box-pack: start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.u-flex--center {
  display: flex;
  align-items: flex-start;
  -webkit-box-align: start;
  justify-content: center;
  -webkit-box-pack: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.u-flex__full {
  width: 100%;
}
.u-flex__half {
  width: 49%;
}
.u-flex__onethird {
  width: 32%;
}
.u-flex__quarter {
  width: 25%;
}

/* ----文字サイズ---- */
.u-font-size-xs {
  font-size: 1rem !important;
}
.u-font-size-sm {
  font-size: 1.2rem !important;
}
.u-font-size-md {
  font-size: 1.4rem !important;
}
.u-font-size-lg {
  font-size: 1.8rem !important;
}
.u-font-size-xl {
  font-size: 2.4rem !important;
}
.u-font-size-xxl {
  font-size: 2.8rem !important;
}

@media (max-width: 767px) {
  .u-only-pc {
    display: none;
  }

  .u-only-sp {
    display: block;
  }

  .u-flex--pc {
    display: block;
  }
  .u-flex--pc .u-flex__full {
    width: 100%;
  }
  .u-flex--pc .u-flex__half {
    width: 100%;
  }
  .u-flex__onethird {
    width: 100%;
  }
}

/* ----SNS シェアボタン---- */
.sns-btn {
  margin-bottom: 2rem;
}

.sns-btn ul {
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
}

.sns-btn .sns-btn__item {
  margin: 0 4px;
}

.sns-btn .sns-btn__item.amp {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.sns-btn .sns-btn__item.tw a {
  background-color: #3ab4ff;
}
.sns-btn .sns-btn__item.fb a {
  background-color: #4267b2;
}
.sns-btn .sns-btn__item.line a {
  background-color: #06c755;
}

.sns-btn .sns-btn__item amp-social-share {
  background-position: 8%;
  padding: 0 0 0 46px;
}

.sns-btn .sns-btn__item a,
.sns-btn .sns-btn__item amp-social-share {
  border-radius: 10px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.sns-btn .sns-btn__item a img {
  width: auto;
  height: 22px;
  line-height: 22px;
  margin: 8px;
  margin-left: 0;
}

/*--------------------------------------
アイキャッチキャプションのデザイン調整
--------------------------------------*/
.caption-spaceasam {
  position: relative;
}
.caption-spaceasam p {
  position: absolute;
  bottom: 1%;
  left: 2%;
  background: #eaedf2; /*枠の色だよ*/
  color: #b0b0b0; /*文字の色だよ*/
  font-size: 8px;
  font-weight: bold;
  border-radius: 20px;
  line-height: 1.3;
  letter-spacing: 1px;
  padding: 7px 13px;
  z-index: 1;
  margin-bottom: 3rem;
}
.caption-spaceasam img {
  width: 100%;
}

.fixed-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  padding: 0 2rem;
  z-index: 10;
}
.fixed-footer img.balloon_img {
  width: 70px;
  height: 70px;
  background-color: white;
}
.fixed-footer .p-article__balloon .balloon {
  padding: 1rem 2rem;
}

.fixed-footer .p-article__balloon .balloon p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.fixed-footer .p-article__balloon .balloon a {
  text-decoration: underline;
}
.fixed-footer-inner {
  position: relative;
  width: 50%;
  margin-left: auto;
}
.p-article .fixed-footer-inner img {
  margin-bottom: 0;
}
.fix-footer-delete-button {
  position: absolute;
  background-color: white;
  color: #eb3e23;
  right: -9px;
  top: -9px;
  width: 24px;
  height: 24px;
  border: solid 3px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 11;
}
.fix-footer-delete-button .material-icons {
  font-size: 15px;
}
@media (max-width: 767px) {
  .fixed-footer-inner {
    width: 100%;
  }
}
/* ----会話スタイルー---- */
.p-article__balloon {
  flex-wrap: nowrap;
  align-items: center !important;
  -webkit-box-align: center !important;
  margin: 3rem 0;
}
.p-article__balloon .balloon_img {
  width: 100px;
  height: 100px;
  border: solid 3px #000;
  border-radius: 50%;
  margin-bottom: 0;
}
.p-article__balloon .balloon {
  position: relative;
  padding: 2rem;
  flex-grow: 1;
  color: #444;
  background: #f7f7f7;
  border-radius: 10px;
  margin: 0 0 0 2rem;
  width: calc(100% - 120px);
}
.p-article__balloon .balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #f7f7f7;
}
.p-article__balloon .balloon p {
  line-height: 1.8;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
.p-article__balloon.reverse {
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.p-article__balloon.reverse .balloon {
  margin: 0 2rem 0 0;
}
.p-article__balloon.reverse .balloon:before {
  left: inherit;
  right: -30px;
  border-right: 15px solid transparent;
  border-left: 15px solid #f7f7f7;
}

@media (max-width: 767px) {
  .p-article__balloon .balloon_img {
    width: 60px;
    height: 60px;
    border: solid 3px #000;
    border-radius: 50%;
    margin-bottom: 0;
  }
}

.lightbox {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
}
.cansle {
  font-size: 26px;
  position: relative;
  right: -22px;
  margin: -25px auto;
  text-align: right;
  cursor: pointer;
  color: #000;
}
.setUpForm {
  max-width: 450px;
  margin: 150px auto;
  min-height: 350px;
  padding: 30px;
  background-color: #fff;
  border-top: 1px solid #eb3e23;
}
.setUpForm h2 {
  color: #eb3e23;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.setUpForm p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.setUpForm form input,
.setUpForm form textarea {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  padding: 7px 0px 7px 2px;
  border: 2px black solid;
}
.setUpForm form input {
  height: 35px;
}
input.button.button-primary {
  width: 100%;
  color: #fff;
  background: #eb3e23;
  border: 1px solid #eb3e23;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
}
input.button.button-primary:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/*--------------------------------------
オーバーレイ広告
--------------------------------------*/
.amp-sticky-ad-close-button {
  display: none;
}
.amp-sticky-ad-top-padding {
  padding: 0;
  height: 0;
}
amp-sticky-ad {
  background: #fff;
}

/* ----グローバルナビーー---- */
.c-global-nav {
  background: #000;
  height: 65px;
}
.nav-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  align-items: center !important;
  -webkit-box-align: center !important;
  height: 100%;
}
.nav-list li {
  margin-right: 4rem;
}
.nav-list a {
  color: #fff;
  display: block;
  line-height: 100%;
  font-size: 1.8rem;
  line-height: 100%;
}
.nav-list a .fas {
  margin-right: 3px;
}
.nav-list a .fa-music {
  color: #19BE65;
}
.nav-list a .fa-book {
  color: #FCD447;
}
.nav-list a .fa-youtube {
  color: #EB3E23;
}
