@charset "UTF-8";
/*!
Theme Name: ltb
Theme URI: http://ltb.me/
Author: ltb.me
Author URI: http://ltb.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ltb
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.

ltb is based on ltb https://ltb.me/, (C) 2012-2020 Automattic, Inc.
ltb is distributed under the terms of the GNU GPL v2 or later.
*/
/*-----------------------------
変数読み込み
------------------------------*/
/*-----------------------------
ブレークポイント設定
@include mq(md) {  }
"sm": "screen and (max-width: 400px)",
"md": "screen and (max-width: 768px)",
"lg": "screen and (max-width: 1000px)",
"xl": "screen and (max-width: 1200px)",
------------------------------*/
/*-----------------------------
ベースフォントサイズ指定
------------------------------*/
/* =================================
フォントサイズ　ベースセッティング
================================== */
html {
  /* ベースのフォントサイズを10pxとする */
  font-size: 62.5%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body {
  font-size: 1.3rem;
  /* calcサポート外をフォールバック */
  font-size: calc(1.03331rem + 0.5556vw);
  /* viewportが480px以上1200px以下可変 */
  min-height: 0vw;
  /* Safari用バグフィックス */
  line-height: 1.8;
  /* Noto Sansフォント */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: hsl(0, 0%, 94%);
}

h1 {
  font-size: 3rem;
  /* calcサポート外をフォールバック */
  font-size: calc(2.73331rem + 0.5556vw);
  /* viewportが480px以上1200px以下可変 */
  min-height: 0vw;
  /* Safari用バグフィックス */
  line-height: 1.8;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

h2 {
  font-size: 2.4rem;
  /* calcサポート外をフォールバック */
  font-size: calc(1.93331rem + 0.5556vw);
  /* viewportが480px以上1200px以下可変 */
  min-height: 0vw;
  /* Safari用バグフィックス */
  line-height: 1.6;
  font-weight: bold;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 2rem;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

h3 {
  font-size: 1.8rem;
  /* calcサポート外をフォールバック */
  font-size: calc(1.53331rem + 0.5556vw);
  /* viewportが480px以上1200px以下可変 */
  min-height: 0vw;
  /* Safari用バグフィックス */
  line-height: 1.5;
  font-weight: 800;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

h4 {
  font-size: 1.6rem;
  /* calcサポート外をフォールバック */
  font-size: calc(1.33331rem + 0.5556vw);
  /* viewportが480px以上1200px以下可変 */
  min-height: 0vw;
  /* Safari用バグフィックス */
  line-height: 2;
  font-weight: 500;
  font-family: #000;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

/*------ メディアクエリ --------*/
/* デバイス幅が1200px以上 */
@media screen and (min-width: 1200px) {
  body {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.6rem;
  }
}
/* デバイス幅が480px以下 */
@media screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  h4 {
    font-size: 1.6rem;
  }
}
/*-----------------------------
ltbベーススタイル
------------------------------*/
/*
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 */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}

a:visited {
  color: #800080;
}

a:hover,
a:focus,
a:active {
  color: #191970;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, .8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*-----------------------------
レイアウト
------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #FFF;
  padding: 2rem 1rem;
  z-index: 888;
}
.site-header a {
  color: #000000;
}
@media screen and (min-width: 1000px) {
  .site-header {
    padding: 1rem;
    position: relative;
  }
  .site-header.on_fixed {
    position: fixed;
    opacity: 0;
    -webkit-animation-name: header01;
    animation-name: header01;
    /*←@keyframesにも同じ名前を記述*/
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
@-webkit-keyframes header01 {
  /*←animation-nameにも同じ名前を記述*/
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes header01 {
  /*←animation-nameにも同じ名前を記述*/
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.header-top {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-top {
    display: block;
  }
}

.site-branding {
  display: block;
  max-width: 140px;
  width: 100%;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.ph_logo_img {
  max-width: 140px;
  margin-bottom: 2rem;
}
.ph_logo_img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .ph_logo_img {
    display: none;
  }
}

.site-description {
  padding: 5px;
  font-size: 1.2rem;
}

.header_right_btn {
  height: 43px;
  display: none !important;
}
@media screen and (min-width: 1000px) {
  .header_right_btn {
    display: inline-block !important;
  }
}

.nav_download_box {
  background: #E8EDF6;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
.nav_download_box h4 {
  color: #123E87;
  font-weight: bold;
  font-size: 2rem;
}
.nav_download_box a {
  color: #FFF;
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #164EA9;
  padding: 1rem 2rem;
  border-radius: 6rem;
  display: inline-block;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .nav_download_box {
    display: none;
  }
}

.nav_contact_box {
  background: #EAF5EF;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.7rem;
}
.nav_contact_box h4 {
  color: #00833F;
  font-weight: bold;
  font-size: 2rem;
}
.nav_contact_box a {
  color: #FFF;
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #00833F;
  padding: 1rem 2rem;
  border-radius: 6rem;
  display: inline-block;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .nav_contact_box {
    display: none;
  }
}

.nav_copyright {
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 1000px) {
  .nav_copyright {
    display: none;
  }
}

.nav_hr {
  display: block;
  background-color: #FFF;
  opacity: 0.3;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .nav_hr {
    display: none;
  }
}

/*=============================
ヘッダーナビゲーション
=============================*/
.main-navigation {
  display: block;
}
.main-navigation ul {
  list-style: none;
}
.main-navigation li {
  position: relative;
}

.main-navigation.toggled .global-menu ul ul,
.main-navigation .global-menu ul ul {
  position: static;
  top: 100%;
  left: -999em;
  z-index: 99999;
  padding: 1.2rem;
  display: none;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .main-navigation.toggled .global-menu ul ul,
.main-navigation .global-menu ul ul {
    width: 25vw;
    font-size: 1.4rem;
    position: absolute;
    background: #FFF;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .144);
            box-shadow: 0 3px 3px rgba(0, 0, 0, .144);
    right: 0;
  }
}

.global-menu {
  position: absolute;
  z-index: 1;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #99CDB2;
  font-size: 1.8rem;
  margin: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: auto;
}
.global-menu ul {
  margin: 0;
}
.global-menu ul li {
  margin-right: 1rem;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transform: rotate(0.05deg);
          transform: rotate(0.05deg);
  text-align: left;
}
.global-menu ul a {
  color: #000000;
}
.global-menu ul a:hover {
  color: #333333;
}
.global-menu ul a:visited {
  color: #000000;
}
.global-menu ul a:visited:hover {
  color: #333333;
}
@media screen and (min-width: 1000px) {
  .global-menu {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    min-height: 0;
    background: none;
    font-size: 1.6rem;
    -webkit-transition: unset;
    transition: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .global-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
  }
  .global-menu li {
    margin: 0 1.5rem;
    padding: 0;
    font-size: 1.4rem;
  }
}

.sub_global_menu {
  display: block;
  margin-bottom: 1.5rem !important;
}
@media screen and (min-width: 1000px) {
  .sub_global_menu {
    display: none !important;
  }
}

/* メニュー開閉 */
.main-navigation.toggled .global-menu {
  display: block;
  left: 0;
}

.menu-toggle {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

/*=============================
#btn01 ハンバーガーボタン
=============================*/
.btn-trigger {
  position: relative;
  right: 0;
  z-index: 999;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  .btn-trigger {
    display: none;
  }
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1C1B1F;
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 11px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.toggled #btn01 span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
  background-color: #1C1B1F;
}

.toggled #btn01 span:nth-of-type(2) {
  opacity: 0;
}

.toggled #btn01 span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
          transform: translateY(-11px) rotate(45deg);
  background-color: #1C1B1F;
}

.toggled #btn01 {
  display: block;
}

@media screen and (min-width: 1000px) {
  #btn01 {
    display: none;
    position: relative;
    z-index: 1;
  }
}
.site-footer {
  background-color: #FFF;
  padding: 2rem 3rem;
}

.footer_menu_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .footer_menu_wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer_logo {
  max-width: 140px;
}
.footer_logo img {
  width: 100%;
  height: auto;
}

.footer_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .footer_menu {
    gap: 2.5rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: none;
  }
}
.footer_menu li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
}
@media screen and (min-width: 768px) {
  .footer_menu li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.footer_menu li a {
  color: #000;
  font-size: 1.6rem;
}
.footer_menu li a:hover {
  color: #333;
}

.footer_info {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1rem;
  font-size: 1.4rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .footer_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
.footer_info .footer_sub_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.footer_info .footer_sub_menu li a {
  color: #000;
}
.footer_info .footer_sub_menu li a:hover {
  color: #333;
}

.download_box {
  background: #E8EDF6;
  padding: 2.5rem 3rem;
  border-radius: 2.5rem 2.5rem 0 0;
  font-size: 1.7rem;
}
.download_box h4 {
  color: #123E87;
  font-weight: bold;
  font-size: 3rem;
}
.download_box a {
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #164EA9;
  padding: 1.2rem 2rem;
  border-radius: 6rem;
  margin-top: 2rem;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .download_box a {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .download_box {
    padding: 3rem 5rem;
    border-radius: 3rem 3rem 0 0;
  }
}

.contact_box {
  background: #EAF5EF;
  padding: 2.5rem 3rem;
  border-radius: 0;
  font-size: 1.7rem;
}
.contact_box h4 {
  color: #00833F;
  font-weight: bold;
  font-size: 3rem;
}
.contact_box a {
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #00833F;
  padding: 1.2rem 2rem;
  border-radius: 6rem;
  display: inline-block;
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .contact_box a {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .contact_box {
    padding: 3rem 5rem;
    border-radius: 3rem 3rem 0 0;
  }
}

.pagination div {
  margin: 3rem auto;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: 1.6rem;
  margin: 0;
}
.pagination ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5px;
}
.pagination ul li .page-numbers {
  display: block;
  padding: 3px 12px;
  color: #000000;
}
.pagination ul li span {
  background: #F2F2F2;
  border-radius: 50vh;
  display: block;
}
.pagination ul li a {
  border-radius: 50vh;
  display: block;
  padding: 3px 10px;
  color: #000000;
}
.pagination ul li a:hover {
  background-color: #F2F2F2;
  color: #000000;
}
.pagination ul li a:visited {
  color: #000000;
}
.pagination ul li:last-child {
  margin-right: 0;
}

/*----------------------------
サイトごとのオリジナルのスタイル
------------------------------*/
/*=============================
どのテンプレファイルか確認するためのもの
=============================*/
.pageinfomation {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
}

#page {
  padding-top: 65px;
}
@media screen and (min-width: 1000px) {
  #page {
    padding-top: 0;
  }
}

body.admin-bar #page {
  padding-top: 10px;
}

.level {
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
}

.post, .page {
  margin-bottom: 0;
}

.page-content, .entry-content, .entry-summary {
  margin: 0 0 0;
}

.post-wrap a {
  color: #111;
}
.post-wrap a:hover, .post-wrap a:visited {
  color: #111;
}
.post-wrap a h5 {
  color: #99CDB2;
  font-weight: bold;
}
.post-wrap a h5:hover, .post-wrap a h5:visited {
  color: #99CDB2;
}
.post-wrap a .side-post-list-title {
  color: #111;
  font-weight: 600;
  font-size: 1.4rem;
}
.post-wrap a .side-post-list-title:hover, .post-wrap a .side-post-list-title:visited {
  color: #111;
}
.post-wrap .side-category-text {
  font-size: 1.2rem;
}

.font-size-variable {
  font-size: 4.5vw;
}

/*=============================
フロントページ
=============================*/
.section_title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section_title {
    font-size: 4rem;
  }
}

.ltb-big-btn {
  text-align: center;
  max-width: 900px;
}
.ltb-big-btn img {
  width: 100%;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .ltb-big-btn img {
    width: 95%;
  }
}

.reverse-on-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .reverse-on-mobile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.ltb_button {
  display: inline-block;
  background-color: #000000;
  color: #FFF;
  padding: 1.2rem 2.5rem;
  border-radius: 50vh;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
.ltb_button:hover {
  background-color: #333333;
  color: #FFF;
  text-decoration: none;
}
.ltb_button:visited {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .ltb_button {
    margin: 0;
  }
}

.peregre_wrap {
  background-color: #E8EDF6;
  border-radius: 2rem;
  min-height: 350px;
  padding-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .peregre_wrap {
    padding-top: 1rem;
  }
}

.product_icon {
  width: 60px;
  height: auto;
  margin-bottom: 2rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .product_icon {
    margin: 0;
  }
}

.product_title {
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .product_title {
    font-size: 4rem;
    text-align: left;
  }
}

.product_text {
  margin-bottom: 4rem;
  line-height: 1.8;
  text-align: center;
  font-weight: bold;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .product_text {
    font-size: 2rem;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
}

.peregre_check_img {
  display: none;
}
@media screen and (min-width: 768px) {
  .peregre_check_img {
    display: block;
    width: 100%;
  }
}

.ph_peregre_check_img {
  display: block;
}
@media screen and (min-width: 768px) {
  .ph_peregre_check_img {
    display: none;
  }
}

.wrap_break {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.about_wrap {
  background-color: #FDF1E5;
  padding: 2rem;
}

.abount_dl {
  max-width: 950px;
  margin: auto;
}
.abount_dl dt {
  font-size: 1.5rem;
  color: #605D60;
  font-weight: 700;
}
.abount_dl dd {
  font-size: 1.5rem;
  color: #000;
}
.abount_dl dd strong {
  font-weight: bold;
  color: #000;
  font-size: 1.8rem;
}

.info_box {
  background: #FFF;
  padding: 2rem 3rem;
  border-radius: 2rem;
  max-width: 950px;
  margin: auto;
  border: solid 1px #E3E3E3;
}
.info_box dl {
  border-bottom: solid 1px #E3E3E3;
  padding: 1rem 0;
}
.info_box dl:last-child {
  border-bottom: none;
}
.info_box dt {
  margin-bottom: 0;
  font-weight: bold;
  color: #605D60;
}
@media screen and (min-width: 768px) {
  .info_box dt {
    font-weight: 400;
  }
}
.info_box dd {
  margin: 0;
}

.owabi_box {
  background: #FAFAFA;
  padding: 4rem;
  border-radius: 2rem;
  max-width: 950px;
  margin: auto;
}
.owabi_box h3 {
  color: #000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 2rem;
}
.owabi_box div {
  font-size: 1.7rem;
  color: #000;
  line-height: 1.8;
}

/*=============================
FAQページ
=============================*/
.faq-card {
  padding-left: 8rem !important;
  background: #F2F2F2;
  border-radius: 8px;
}
.faq-card h3, .faq-card p {
  position: relative;
}
.faq-card .icon {
  position: absolute;
  top: 0;
  width: 2.5rem;
  height: auto;
  left: -4rem;
}

/*=============================
タイポグラフィセッティング
=============================*/
.entry-s_title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.entry-meta {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.entry-meta .avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  top: 5px;
  display: inline-block;
  margin: 0 5px;
}

.tag-cat-title {
  min-width: 80px;
}

.tag-cat-wrap {
  min-width: 200px;
}

.tags-links a, .cat-links a {
  background: #EFEFEF;
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 1.2rem;
}

.page-category {
  padding-top: 1rem;
  padding-bottom: 5rem;
}
.page-category a {
  color: #000;
}
.page-category a:hover {
  color: #99CDB2;
}

/*=============================
画像表示比率セッティング
=============================*/
.page-headline-img {
  display: block;
  position: relative;
  width: 100%;
  max-height: 650px;
  margin-bottom: 6rem;
  margin-top: -1px;
}
.page-headline-img::before {
  content: "";
  display: block;
  padding-top: 75%;
}
@media screen and (min-width: 768px) {
  .page-headline-img::before {
    padding-top: 66.66%;
    /* 3:2 */
  }
}

.page-headline-img > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* 正方形のサムネイル */
.square-post-thumbnail {
  display: block;
  position: relative;
  width: 100%;
}
.square-post-thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.square-post-thumbnail > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* 投稿キャッチビジュアル及びサムネイル */
.post-thumbnail {
  display: block;
  position: relative;
  width: 100%;
}
.post-thumbnail::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}

.post-thumbnail > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.corner-setting .corner-decoration {
  border-radius: 10px;
}

/* =========================
ユーザープロフィール（author）
============================ */
.prof-avatar img {
  border-radius: 50%;
}

.prof-info {
  margin-left: 2rem;
}
.prof-info h1 {
  margin: 0;
  font-size: 2.5rem;
}
.prof-info a {
  display: inline-block;
  margin-right: 1.2rem;
  font-size: 2rem;
  color: #000;
}

/* =========================
関連記事一覧スタイル
============================ */
.related_post {
  background: #F2F2F2;
}

/* =========================
各種ブロックスタイル
============================ */
p {
  margin-bottom: 2rem;
}

/* =========================
widgetスタイル
============================ */
.wp-block-group__inner-container ul, .widget_block ul {
  padding: 0;
  margin: 0;
}
.wp-block-group__inner-container li, .widget_block li {
  padding: 10px 5px;
  border-bottom: solid 1px #ccc;
  list-style: none;
}

.wp-block-search__button {
  background: #f7f7f7;
  border: 1px solid #ccc;
  padding: 0.375em 0.625em;
  color: #32373c;
  margin-left: 0.625em;
  word-break: normal;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  display: block;
  min-width: 80px;
}

.wp-block-search__input {
  padding: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
  border: 1px solid #949494;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  width: 100%;
}

/* =========================
カテゴリーwidget　と　その他のページ内ウィジェットリスト
============================ */
.wp-block-categories-list,
.categories-list-btn {
  padding: 0;
  margin: 0;
}
.wp-block-categories-list li,
.categories-list-btn li {
  display: inline-block;
  margin-bottom: 0.5rem;
  border: none;
  background-color: #FFF;
  border: solid 1px #404040;
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 5px 10px;
}
.wp-block-categories-list a,
.categories-list-btn a {
  color: #111;
}
.wp-block-categories-list a:hover, .wp-block-categories-list a:visited,
.categories-list-btn a:hover,
.categories-list-btn a:visited {
  color: #111;
}

/* =========================
検索ボックス（searchform）
============================ */
.search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 500px;
}

.search-box input[type=text] {
  padding: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
  border: 1px solid #949494;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  width: 100%;
}

/*=========================
メインビジュアル
=========================*/
.mainvisual {
  background-color: #99CDB2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .mainvisual {
    padding: 5rem 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mainvisual .main_text {
  display: none;
}
@media screen and (min-width: 768px) {
  .mainvisual .main_text {
    display: block;
    width: 50%;
    max-width: 600px;
    margin-right: 8rem;
  }
}
.mainvisual .main_text img {
  width: 100%;
}
.mainvisual .main_image {
  display: none;
}
@media screen and (min-width: 768px) {
  .mainvisual .main_image {
    width: 50%;
    max-width: 600px;
    display: block;
  }
}
.mainvisual .main_image img {
  width: 100%;
}
.mainvisual .ph_main_text {
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .mainvisual .ph_main_text {
    display: none;
  }
}
.mainvisual .ph_main_text img {
  width: 100%;
}
.mainvisual .ph_main_image {
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .mainvisual .ph_main_image {
    display: none;
  }
}
.mainvisual .ph_main_image img {
  width: 100%;
}

/*=========================
各種ブロック　カスタムスタイル
=========================*/
.wp-block-coblocks-alert {
  background-color: #d6efee;
  border-radius: 4px;
  color: #094264;
  padding: 2em;
  overflow: hidden;
  margin-bottom: 1rem;
}

.wp-block-coblocks-alert__title {
  display: block;
  margin-bottom: 0.5em;
  margin-top: -2em;
  margin-left: -2em;
  margin-right: -2em;
  background: #1EC8AA;
  padding: 0 1.5em;
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  height: 55px;
  line-height: 60px;
}

@media screen and (min-width: 768px) {
  .liquid-speech-balloon-avatar {
    width: 100px;
    height: 100px;
  }
  .liquid-speech-balloon-avatar::after {
    top: 110px;
  }
}

.ltb-table td {
  min-width: 60px;
}

.wp-block-spacer {
  height: 50px !important;
}
@media screen and (min-width: 768px) {
  .wp-block-spacer {
    height: 80px !important;
  }
}

.wp-image-136 {
  width: 20px !important;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .coach-box {
    width: 85%;
    margin: 0 auto;
  }
}

/*=========================
お問い合わせフォーム
=========================*/
.contact-box {
  margin: 0 auto;
  padding: 1rem;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .contact-box {
    width: 60%;
  }
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 textarea {
  background-color: #fff;
  color: #000;
  width: 100%;
  padding: 10px;
}

.send-btn {
  text-align: center;
}
.send-btn .wpcf7-submit {
  border-radius: 50vh !important;
  border: solid 1px #F03886 !important;
  color: #f03886 !important;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #FFF !important;
  padding: 14px !important;
  margin: 0 auto;
  display: block;
  width: 100%;
}
.send-btn .send-btn-inner {
  width: 70%;
  display: inline-block;
  position: relative;
}
.send-btn .send-btn-inner::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  display: block;
  color: #F03886;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.send-btn .send-btn-inner .wpcf7-spinner {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .send-btn .send-btn-inner {
    width: 40%;
  }
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}