@charset "UTF-8";
/*!
Theme Name: u_origin
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: my
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 with others.

u_origin is based on Underscores https://underscores.me/, (C) 2012-2017 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:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
.pc-hide {
  display: block;
}

.smp-hide {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc-hide {
    display: none;
  }
  .smp-hide {
    display: block;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes imageWipe {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@keyframes imageWipe {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | 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;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  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;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* 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;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  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;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* 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;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

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

ul:not(.smb-list ul) {
  list-style: none;
  padding-left: 0;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

a:visited {
  color: #333333;
}

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

a:focus {
  outline: thin dotted;
}

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

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

video {
  max-width: 100%;
}

figure {
  margin: 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

figure img {
  vertical-align: bottom;
}

.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;
}

.gallery {
  margin-bottom: 1.5em;
}

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

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

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

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

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

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

/* 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;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

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

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

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

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-footer:after {
  clear: both;
}

/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Atoms
--------------------------------------------------------------*/
p {
  margin: 30px 0;
  line-height: 1.7;
}

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;
  font-size: 15px;
  font-size: 0.9375rem;
  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;
  font-size: 15px;
  font-size: 0.9375rem;
}

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

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

big {
  font-size: 125%;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.block-center {
  margin-right: auto;
  margin-right: auto;
}

.label-arrow {
  font-size: 13px;
  background: #1976D2;
  color: #fff;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  font-weight: normal;
}

.label-arrow:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 10px;
  border-color: transparent transparent transparent #1976D2;
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blue {
  color: #1976D2 !important;
}

.yellow {
  color: #FFEB3B !important;
}

.white {
  color: #fff;
}

.oswold {
  font-family: 'Oswald', sans-serif;
}

.damion {
  font-family: 'Damion', cursive;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.iconfont {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.catchcopy2 {
  max-width: 730px;
}

.catchcopy3 {
  max-width: 667px;
}

.required {
  color: #fff;
  font-size: 13px;
  background: #FF5722;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  margin-left: 10px;
}

.balloon-small {
  text-align: center;
  width: 100%;
}

.balloon-small span {
  position: relative;
  font-size: 14px;
  border-radius: 4px;
  background: #04264D;
  color: #fff;
  padding: 8px;
}

.balloon-small span:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #04264D transparent transparent transparent;
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

br.pc {
  display: none;
}

.sm {
  font-size: 0.75em;
}

.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-bottom: 30px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb-sm {
  margin-bottom: 30px !important;
}

.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 560px) {
  p {
    margin: 40px 0;
  }
  br.smp {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  br.pc {
    display: inline;
  }
  p {
    margin: 50px 0;
    font-size: 16px;
  }
  .lg-text-center {
    text-align: center;
  }
}

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

h1,
h2,
h3,
h4 {
  font-size: 20px;
  margin: 30px 0;
}

h1 .under-line,
h2 .under-line {
  border-bottom: 1px solid #1976D2;
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1;
}

h1 .under-line-orange,
h2 .under-line-orange {
  border-bottom: 8px solid #FF5722;
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1;
}

h3,
.h3 {
  color: #1976D2;
  border-left: 3px solid #1976D2;
  padding-left: 18px;
}

.page-title {
  margin-top: 0;
  text-align: center;
}

h2.belt {
  background: #04264D;
  font-size: 18px;
  padding: 14px 8vw;
  color: #fff;
  text-align: center;
  margin-left: -4vw;
  margin-right: -4vw;
}

h3.simple {
  color: #333333;
  border: none;
  padding-left: 0;
}

.heading-unit {
  text-align: center;
}

.heading-unit h2.recommend + p {
  margin-bottom: 20px;
}

.heading-unit h2 {
  color: #1976D2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}

.heading-unit h2:before, .heading-unit h2:after {
  content: "";
  width: 1px;
  height: 1.5em;
  background: #1976D2;
}

.heading-unit h2:before {
  -webkit-transform: skewX(45deg);
      -ms-transform: skewX(45deg);
          transform: skewX(45deg);
  margin-right: 25px;
}

.heading-unit h2:after {
  -webkit-transform: skewX(-45deg);
      -ms-transform: skewX(-45deg);
          transform: skewX(-45deg);
  margin-left: 25px;
}

.heading-unit p {
  margin-top: 10px;
  font-weight: bold;
}

h1.hero,
h2.hero,
h3.hero,
h1.arikui,
h2.arikui,
h3.arikui {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0;
  text-align: center;
  padding: 10px;
  border: 3px solid #1976D2;
  -webkit-box-shadow: 10px 10px 0 #04264D;
          box-shadow: 10px 10px 0 #04264D;
  margin-right: 10px;
  color: #04264D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navy-bg {
  border: none;
  color: #fff;
  font-size: 16px;
  background: #04264D;
  padding: 12px 12px 12px 40px;
  position: relative;
  margin-bottom: 20px;
}

.navy-bg span {
  position: absolute;
  font-size: 30px;
  top: -4px;
  left: 12px;
}

.type-post h2 {
  color: #1976D2;
}

.type-post h3 {
  padding-left: 0.5em;
  border-left: 0.25em solid #1976D2;
}

.lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1976D2;
  text-align: center;
  padding: 0 0.5em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25em;
}

.lines::before, .lines::after {
  content: "";
  width: 1px;
  height: 1.5em;
  background: #1976D2;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.lines::after {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

@media screen and (min-width: 560px) {
  h1,
  h2 {
    font-size: 24px;
    margin: 40px 0;
  }
  h3,
  h4 {
    font-size: 20px;
    margin: 40px 0;
  }
  h2.belt {
    font-size: 24px;
    padding: 12px 14px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 1;
  }
  h2.belt:before {
    content: "";
    background: inherit;
    position: absolute;
    width: calc(100vw);
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
  h1.hero,
  h2.hero,
  h3.hero,
  h1.arikui,
  h2.arikui,
  h3.arikui {
    max-width: 450px;
    padding: 20px 40px;
    position: relative;
    margin: 60px auto;
    height: 108px;
  }
  h1.hero:before,
  h2.hero:before,
  h3.hero:before {
    content: "";
    width: 120px;
    height: 175px;
    background: url(./images/hero.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -90px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  h1.arikui:before,
  h2.arikui:before,
  h3.arikui:before {
    content: "";
    width: 100px;
    height: 118px;
    background: url(./images/arikui.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: -50px;
    bottom: -40px;
  }
  .type-post h2 {
    padding-bottom: 0.25em;
    border-bottom: 1px solid #1976D2;
  }
}

@media screen and (min-width: 1024px) {
  h1,
  h2 {
    font-size: 32px;
    margin: 50px 0;
  }
  h2.belt {
    font-size: 32px;
  }
  h3,
  h4 {
    margin: 50px 0;
  }
  h1.hero,
  h2.hero,
  h3.hero,
  h1.arikui,
  h2.arikui,
  h3.arikui {
    max-width: 600px;
    padding: 20px 40px;
    position: relative;
    margin: 80px auto;
    height: 140px;
  }
  h1.hero:before,
  h2.hero:before,
  h3.hero:before {
    content: "";
    width: 140px;
    height: 204px;
    left: -110px;
  }
  h1.arikui:before,
  h2.arikui:before,
  h3.arikui:before {
    content: "";
    width: 120px;
    height: 142px;
    right: -80px;
    bottom: -40px;
  }
  h3.lg-text-center {
    border: none;
    padding-left: 0;
  }
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

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

h1,
h2,
h3,
h4 {
  font-size: 20px;
  margin: 30px 0;
}

h1 .under-line,
h2 .under-line {
  border-bottom: 1px solid #1976D2;
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1;
}

h1 .under-line-orange,
h2 .under-line-orange {
  border-bottom: 8px solid #FF5722;
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1;
}

h3,
.h3 {
  color: #1976D2;
  border-left: 3px solid #1976D2;
  padding-left: 18px;
}

.page-title {
  margin-top: 0;
  text-align: center;
}

h2.belt {
  background: #04264D;
  font-size: 18px;
  padding: 14px 8vw;
  color: #fff;
  text-align: center;
  margin-left: -4vw;
  margin-right: -4vw;
}

h3.simple {
  color: #333333;
  border: none;
  padding-left: 0;
}

.heading-unit {
  text-align: center;
}

.heading-unit h2.recommend + p {
  margin-bottom: 20px;
}

.heading-unit h2 {
  color: #1976D2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}

.heading-unit h2:before, .heading-unit h2:after {
  content: "";
  width: 1px;
  height: 1.5em;
  background: #1976D2;
}

.heading-unit h2:before {
  -webkit-transform: skewX(45deg);
      -ms-transform: skewX(45deg);
          transform: skewX(45deg);
  margin-right: 25px;
}

.heading-unit h2:after {
  -webkit-transform: skewX(-45deg);
      -ms-transform: skewX(-45deg);
          transform: skewX(-45deg);
  margin-left: 25px;
}

.heading-unit p {
  margin-top: 10px;
  font-weight: bold;
}

h1.hero,
h2.hero,
h3.hero,
h1.arikui,
h2.arikui,
h3.arikui {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0;
  text-align: center;
  padding: 10px;
  border: 3px solid #1976D2;
  -webkit-box-shadow: 10px 10px 0 #04264D;
          box-shadow: 10px 10px 0 #04264D;
  margin-right: 10px;
  color: #04264D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navy-bg {
  border: none;
  color: #fff;
  font-size: 16px;
  background: #04264D;
  padding: 12px 12px 12px 40px;
  position: relative;
  margin-bottom: 20px;
}

.navy-bg span {
  position: absolute;
  font-size: 30px;
  top: -4px;
  left: 12px;
}

.type-post h2 {
  color: #1976D2;
}

.type-post h3 {
  padding-left: 0.5em;
  border-left: 0.25em solid #1976D2;
}

.lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1976D2;
  text-align: center;
  padding: 0 0.5em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25em;
}

.lines::before, .lines::after {
  content: "";
  width: 1px;
  height: 1.5em;
  background: #1976D2;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.lines::after {
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

@media screen and (min-width: 560px) {
  h1,
  h2 {
    font-size: 24px;
    margin: 40px 0;
  }
  h3,
  h4 {
    font-size: 20px;
    margin: 40px 0;
  }
  h2.belt {
    font-size: 24px;
    padding: 12px 14px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 1;
  }
  h2.belt:before {
    content: "";
    background: inherit;
    position: absolute;
    width: calc(100vw);
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
  h1.hero,
  h2.hero,
  h3.hero,
  h1.arikui,
  h2.arikui,
  h3.arikui {
    max-width: 450px;
    padding: 20px 40px;
    position: relative;
    margin: 60px auto;
    height: 108px;
  }
  h1.hero:before,
  h2.hero:before,
  h3.hero:before {
    content: "";
    width: 120px;
    height: 175px;
    background: url(./images/hero.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -90px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  h1.arikui:before,
  h2.arikui:before,
  h3.arikui:before {
    content: "";
    width: 100px;
    height: 118px;
    background: url(./images/arikui.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: -50px;
    bottom: -40px;
  }
  .type-post h2 {
    padding-bottom: 0.25em;
    border-bottom: 1px solid #1976D2;
  }
}

@media screen and (min-width: 1024px) {
  h1,
  h2 {
    font-size: 32px;
    margin: 50px 0;
  }
  h2.belt {
    font-size: 32px;
  }
  h3,
  h4 {
    margin: 50px 0;
  }
  h1.hero,
  h2.hero,
  h3.hero,
  h1.arikui,
  h2.arikui,
  h3.arikui {
    max-width: 600px;
    padding: 20px 40px;
    position: relative;
    margin: 80px auto;
    height: 140px;
  }
  h1.hero:before,
  h2.hero:before,
  h3.hero:before {
    content: "";
    width: 140px;
    height: 204px;
    left: -110px;
  }
  h1.arikui:before,
  h2.arikui:before,
  h3.arikui:before {
    content: "";
    width: 120px;
    height: 142px;
    right: -80px;
    bottom: -40px;
  }
  h3.lg-text-center {
    border: none;
    padding-left: 0;
  }
}

p {
  margin: 30px 0;
  line-height: 1.7;
}

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;
  font-size: 15px;
  font-size: 0.9375rem;
  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;
  font-size: 15px;
  font-size: 0.9375rem;
}

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

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

big {
  font-size: 125%;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.block-center {
  margin-right: auto;
  margin-right: auto;
}

.label-arrow {
  font-size: 13px;
  background: #1976D2;
  color: #fff;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  font-weight: normal;
}

.label-arrow:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 10px;
  border-color: transparent transparent transparent #1976D2;
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blue {
  color: #1976D2 !important;
}

.yellow {
  color: #FFEB3B !important;
}

.white {
  color: #fff;
}

.oswold {
  font-family: 'Oswald', sans-serif;
}

.damion {
  font-family: 'Damion', cursive;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.iconfont {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.catchcopy2 {
  max-width: 730px;
}

.catchcopy3 {
  max-width: 667px;
}

.required {
  color: #fff;
  font-size: 13px;
  background: #FF5722;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  margin-left: 10px;
}

.balloon-small {
  text-align: center;
  width: 100%;
}

.balloon-small span {
  position: relative;
  font-size: 14px;
  border-radius: 4px;
  background: #04264D;
  color: #fff;
  padding: 8px;
}

.balloon-small span:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #04264D transparent transparent transparent;
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

br.pc {
  display: none;
}

.sm {
  font-size: 0.75em;
}

.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-bottom: 30px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb-sm {
  margin-bottom: 30px !important;
}

.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 560px) {
  p {
    margin: 40px 0;
  }
  br.smp {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  br.pc {
    display: inline;
  }
  p {
    margin: 50px 0;
    font-size: 16px;
  }
  .lg-text-center {
    text-align: center;
  }
}

#nav-btn {
  width: 56px;
  height: 56px;
  display: block;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  right: 0;
  z-index: 1005;
}

#nav-btn:before, #nav-btn:after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background: #333333;
  position: absolute;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#nav-btn:before {
  top: 19px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

#nav-btn:after {
  bottom: 19px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

#nav-btn span {
  width: 30px;
  height: 2px;
  display: block;
  background: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#nav-btn:before, #nav-btn:after,
#nav-btn span {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#nav-btn.active span {
  opacity: 0;
}

#nav-btn.active:before, #nav-btn.active:after,
#nav-btn.active span {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
}

#nav-btn.active:before {
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-50%) rotate(225deg);
      -ms-transform: translateX(-50%) rotate(225deg);
          transform: translateX(-50%) rotate(225deg);
}

#nav-btn.active:after {
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-50%) rotate(-225deg);
      -ms-transform: translateX(-50%) rotate(-225deg);
          transform: translateX(-50%) rotate(-225deg);
}

#pageTop a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background: #1976D2;
  color: #fff;
  opacity: .7;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#pageTop a:hover {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn {
  width: 100%;
  max-width: 350px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.btn:before {
  content: "";
  height: 1px;
  width: 100%;
  background: #333333;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.btn:after {
  content: "";
  height: 100%;
  width: 1px;
  background: #333333;
  position: absolute;
  right: 0;
  top: -100%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.btn a {
  display: block;
  color: #fff;
  padding: 1rem;
  background: #333333;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.btn a:before {
  content: "";
  height: 1px;
  width: 100%;
  background: #333333;
  position: absolute;
  bottom: 0;
  right: -100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn a:after {
  content: "";
  height: 100%;
  width: 1px;
  background: #333333;
  position: absolute;
  left: 0;
  bottom: -100%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.btn:hover:before {
  left: 0;
}

.btn:hover:after {
  top: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.btn:hover a {
  background: #fff;
  color: #333333;
}

.btn:hover a:before {
  right: 0;
}

.btn:hover a:after {
  bottom: 0;
}

.more {
  display: block;
  color: #fff;
  padding: 1rem;
  background: #333333;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}

.more span {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.more:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ddd;
  position: absolute;
  top: 0;
  left: -100%;
}

.more:after {
  z-index: 1;
  width: 2px;
}

.more:hover {
  color: #333333;
}

.more:hover:before {
  left: 0;
}

.more:hover span {
  letter-spacing: 0.3em;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-arrow {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.btn-arrow a {
  display: block;
  width: 100%;
  background: #fff;
  padding: 13px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #333333;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-arrow a:before {
  content: "chevron_right";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-arrow a:hover {
  background: #333333;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-arrow-blue {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.btn-arrow-blue a {
  display: block;
  width: 100%;
  background: #1976D2;
  padding: 14px;
  font-size: 14px;
  text-align: center;
  position: relative;
  color: #fff;
  border: 1px solid;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-arrow-blue a:before {
  content: "chevron_right";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-arrow-blue a:hover {
  background: #fff;
  color: #1976D2;
  border: 1px solid #1976D2;
}

.btn-beginner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-beginner a {
  display: block;
  width: 100%;
  background: #D4E157;
  color: #333333 !important;
  padding: 12px;
  font-size: 18px;
  border-radius: 4px;
  position: relative;
  font-weight: bold;
  overflow: hidden;
}

.btn-beginner a:before {
  content: "";
  width: 28px;
  height: 40px;
  background: url(./images/beginner.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-beginner a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: skewX(-45deg) translateX(-120px);
      -ms-transform: skewX(-45deg) translateX(-120px);
          transform: skewX(-45deg) translateX(-120px);
}

.btn-beginner a:hover {
  -webkit-filter: contrast(1.2);
          filter: contrast(1.2);
}

.btn-beginner a:hover:after {
  -webkit-transform: skewX(-45deg) translateX(720px);
      -ms-transform: skewX(-45deg) translateX(720px);
          transform: skewX(-45deg) translateX(720px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-line a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #00B900;
  color: #fff;
  padding: 13px;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-line a:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(./images/icon-line.png) no-repeat center center;
  background-size: contain;
}

.btn-tel a {
  display: block;
  width: 100%;
  background: #FF5722;
  color: #fff;
  padding: 14px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 560px) {
  .btn-beginner a {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .btn a {
    padding: 21px;
  }
  .btn-arrow a,
  .btn-arrow-blue a {
    padding: 18px 12px;
  }
  .btn-beginner a {
    font-size: 32px;
    width: 600px;
    padding: 23px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F0FF63), color-stop(50%, #F0FF63), color-stop(50%, #D4E157), to(#D4E157));
    background-image: -webkit-linear-gradient(top, #F0FF63 0, #F0FF63 50%, #D4E157 50%, #D4E157 100%);
    background-image: -o-linear-gradient(top, #F0FF63 0, #F0FF63 50%, #D4E157 50%, #D4E157 100%);
    background-image: linear-gradient(to bottom, #F0FF63 0, #F0FF63 50%, #D4E157 50%, #D4E157 100%);
  }
  .btn-beginner a:before {
    right: 20px;
  }
}

.site-branding .site-title {
  margin: 0;
}

.site-branding .site-title a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
}

.site-branding .site-title a img {
  height: 32px;
  width: auto;
}

.footer-logo {
  display: block;
}

.footer-logo img {
  height: 36px;
  width: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 1024px) {
  .site-branding .site-title a {
    height: 80px;
  }
  .site-branding .site-title a img {
    height: 44px;
  }
  .footer-logo img {
    height: 44px;
  }
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  outline: none;
}

figure {
  margin: 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

figure img {
  vertical-align: bottom;
}

.no-image {
  width: 100%;
  height: 100%;
  background: #ddd;
  position: absolute;
  left: 0;
  top: 0;
}

.no-image:before {
  content: "no image";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

figure {
  margin: 30px auto;
}

figure a {
  display: block;
}

figure.long-sideways {
  position: relative;
  width: 100%;
  padding-top: 34.7826086%;
  overflow: hidden;
}

figure.long-sideways img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

figure.circle {
  position: relative;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

figure.circle img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: none;
  height: 100%;
  width: auto;
}

figure.ceo-photo {
  width: 120px;
  height: auto;
}

figure.rounded {
  border-radius: 8px;
}

.youtube {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 560px) {
  figure {
    margin: 40px auto;
  }
  figure.ceo-photo {
    width: 180px;
    height: auto;
  }
}

@media screen and (min-width: 1024px) {
  figure {
    margin: 50px auto;
  }
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  border-radius: 4px;
  background: #333333;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px;
  font-weight: bold;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
  outline: none;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  height: 46px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.26);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.26);
  -webkit-filter: contrast(1.1);
          filter: contrast(1.1);
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 0px 2px black;
          box-shadow: 0 0px 2px black;
  -webkit-filter: contrast(0.8);
          filter: contrast(0.8);
}

.search-form {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-form label input {
  margin: 0;
}

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,
select {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  max-width: 100%;
  background: #fff;
  margin: 10px 0;
  width: 100%;
}

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,
select:focus {
  color: #111;
}

input.has-unit {
  width: calc(100% - 3em);
}

span.unit {
  margin-left: 1em;
}

.select-wrap {
  position: relative;
  margin: 10px 0 20px;
}

.select-wrap:before {
  content: "unfold_more";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-columns: #000;
     -moz-columns: #000;
          columns: #000;
  z-index: 1;
}

.select-wrap select {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  margin: 0;
  padding-right: 44px;
  width: 100%;
}

select[name="pref"] option {
  background: #ddd;
  color: #999;
}

select[name="pref"] option:nth-child(1), select[name="pref"] option:nth-child(2), select[name="pref"] option:nth-child(3), select[name="pref"] option:nth-child(4) {
  background: #fff;
  color: #333333;
}

.file-wrap {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 20px 0;
}

textarea {
  width: 100%;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 20px 0 20px 20px;
}

.wpcf7-radio input {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.wpcf7-radio .wpcf7-list-item-label {
  vertical-align: middle;
}

.error {
  border: 1px solid #d50000;
  color: #d50000;
  padding: 8px;
}

form.wpcf7-form {
  padding: 30px 0;
}

form.wpcf7-form p {
  margin: 10px 0;
}

form.wpcf7-form p.small {
  font-size: 13px;
  color: #FFC107;
  margin: 0;
}

form.wpcf7-form p.btn-arrow {
  margin: 30px auto;
}

form.wpcf7-form input[type="submit"] {
  padding: 20px 20px;
  height: 60px;
  background: #D4E157;
  color: #333333;
  width: 100%;
}

form.wpcf7-form input[type="reset"] {
  padding: 20px 20px;
  height: 60px;
  background: #9E9E9E;
  width: 100%;
}

form.wpcf7-form.sent p, form.wpcf7-form.sent div.select-wrap {
  display: none;
}

div.wpcf7-response-output {
  background: #fff;
  padding: 15px !important;
}

div.wpcf7-response-output {
  margin: 50px 0;
  padding: 30px !important;
}

@media screen and (min-width: 560px) {
  form.wpcf7-form {
    padding: 10px 0 40px;
  }
  form.wpcf7-form p {
    margin-top: 30px;
  }
  form.wpcf7-form p.small + p {
    margin-top: 10px;
  }
  form.wpcf7-form p.btn-arrow {
    margin: 40px auto;
  }
}

@media screen and (min-width: 1024px) {
  form.wpcf7-form {
    padding: 20px 0 50px;
  }
  form.wpcf7-form p.btn-arrow {
    margin: 50px auto;
  }
  input[name="zipcode"],
  input[name="area"] {
    width: 50%;
  }
}

figure a {
  overflow: hidden;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

figure a img {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

figure a:hover img {
  -webkit-filter: contrast(1.2);
          filter: contrast(1.2);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a.arrow {
  color: #1976D2;
  vertical-align: middle;
}

a.arrow:after {
  content: "chevron_right";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  vertical-align: middle;
}

a.text-link {
  color: #1976D2;
  text-decoration: underline;
}

a.text-link:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  margin: 30px auto;
}

table th, table td {
  padding: 14px 12px;
  border: 1px solid #ddd;
  background: #fff;
}

table.price {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

table.price th {
  font-weight: normal;
  text-align: left;
  padding-right: 0;
  border-right: none;
}

table.price td {
  text-align: right;
  padding-left: 0;
  border-left: none;
  white-space: nowrap;
}

table.th-nowrap th {
  white-space: nowrap;
  text-align: left;
}

.wp-block-table table {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 560px) {
  table {
    margin: 40px auto;
  }
}

@media screen and (min-width: 1024px) {
  table {
    margin: 50px auto;
  }
  table.price {
    font-size: 18px;
  }
}

.content-wrap {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
  width: 100%;
}

.content-wrap .column {
  margin-top: 30px;
}

.dot-bg {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0;
}

.light-dot-bg {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 15px 15px;
  background-position: 0 0;
}

.deep-dot-bg {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 5px 5px;
  background-position: 0 0;
}

.stripe-bg {
  background-image: url(./images/stripe-bg.svg);
  background-size: 20px 20px;
}

.light-gray-bg {
  background: #F5F5F5;
}

@media screen and (min-width: 560px) {
  .content-wrap {
    padding: 10px 0;
  }
  .content-wrap .column {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .content-wrap .column {
    margin-top: 50px;
  }
}

.blue-slash-bg {
  position: relative;
  overflow: hidden;
  background: #1976d2;
}

.blue-slash-bg > * {
  position: relative;
  z-index: 1;
}

.blue-slash-bg::before {
  content: "";
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 600px;
  max-width: 600px;
  position: absolute;
  right: 0;
  top: 0;
  background: -webkit-linear-gradient(45deg, rgba(25, 118, 210, 0) 50%, #1764af 50%, #1976d2 100%);
  background: -o-linear-gradient(45deg, rgba(25, 118, 210, 0) 50%, #1764af 50%, #1976d2 100%);
  background: linear-gradient(45deg, rgba(25, 118, 210, 0) 50%, #1764af 50%, #1976d2 100%);
}

.blue-slash-bg::after {
  content: "";
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 600px;
  max-width: 600px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(45deg, #1976d2 0%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
  background: -o-linear-gradient(45deg, #1976d2 0%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
  background: linear-gradient(45deg, #1976d2 0%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
}

/*--------------------------------------------------------------
# Molecules
--------------------------------------------------------------*/
.main-navigation-pc {
  display: none;
}

.main-menu-container {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1004;
  color: #fff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
  display: none;
}

.main-menu-container a {
  color: #fff;
}

.main-menu-container .reform-icons {
  gap: 0;
}

.main-menu-container .reform-icons a {
  width: auto;
  -webkit-flex-basis: calc(100% / 6);
      -ms-flex-preferred-size: calc(100% / 6);
          flex-basis: calc(100% / 6);
}

.main-menu-container .reform-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
}

.main-menu-container .nav-logo {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 60px;
  background: #000;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main-menu-container .nav-logo a {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 174px;
  height: auto;
}

.main-menu-container .main-navigation {
  margin-top: 60px;
  padding: 20px 4% 80px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.main-menu-container .main-navigation p {
  margin: 20px 0;
}

.main-menu-container .main-navigation > p:first-child {
  margin-top: 0;
}

.main-menu-container .main-navigation .btn-beginner {
  max-width: none;
}

.main-menu-container .main-navigation table {
  width: 100%;
  table-layout: fixed;
}

.main-menu-container .main-navigation table th,
.main-menu-container .main-navigation table td {
  border: 1px solid #fff;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  padding: 0;
}

.main-menu-container .main-navigation table th a,
.main-menu-container .main-navigation table td a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px;
}

.main-menu-container .main-navigation table th {
  padding: 14px;
  background: #fff;
  color: #333333;
}

.main-menu-container .main-navigation table td.contact {
  border-color: #FFC107;
  background: #FFC107;
}

.main-menu-container .tel-block p:first-child a span:first-child {
  background: #fff;
  color: #333333;
}

.pagination {
  width: 100%;
}

.post-navigation {
  padding: 0 4%;
}

.post-navigation .nav-links {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-links,
.page-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-links .nav-previous a,
.nav-links .nav-next a,
.page-links .nav-previous a,
.page-links .nav-next a {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  background: #333333;
  color: #fff;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-links .nav-archive,
.page-links .nav-archive {
  width: calc(50% - 100px);
  min-width: 160px;
}

.nav-links .nav-archive a,
.page-links .nav-archive a {
  background: #333333;
  color: #fff;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-links .page-numbers,
.nav-links .post-page-numbers,
.page-links .page-numbers,
.page-links .post-page-numbers {
  background: #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 50px;
  margin: 0 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-links .page-numbers:hover,
.nav-links .post-page-numbers:hover,
.page-links .page-numbers:hover,
.page-links .post-page-numbers:hover {
  background: #bbb;
}

.nav-links .current,
.page-links .current {
  background: #1976D2;
  color: #fff;
}

.nav-links .current:hover,
.page-links .current:hover {
  background: #1976D2;
}

.nav-links .page-numbers.next,
.nav-links .page-numbers.prev,
.page-links .page-numbers.next,
.page-links .page-numbers.prev {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  background: #333333;
  color: #fff;
  height: 50px;
  width: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px;
}

.nav-links .page-numbers.next:hover,
.nav-links .page-numbers.prev:hover,
.page-links .page-numbers.next:hover,
.page-links .page-numbers.prev:hover {
  background: #000;
}

nav.breadcrumbs {
  padding: 20px 4%;
  font-size: 13px;
  color: #9e9e9e;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

nav.breadcrumbs a {
  color: #9e9e9e;
}

nav.breadcrumbs .iconfont {
  font-size: 13px;
}

@media screen and (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
  .main-navigation-pc {
    display: block;
  }
  .main-navigation-pc .mega-menu {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    background: none;
    padding-bottom: 0;
    margin: 0;
  }
  .main-navigation-pc .mega-menu li > a {
    color: #333333;
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    height: 80px;
    overflow: hidden;
    position: relative;
    font-size: 14px;
  }
  .main-navigation-pc .mega-menu li > a:before {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    background: #04264D;
    top: auto;
    left: 0;
    bottom: -3px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  .main-navigation-pc .mega-menu li > a:hover:before {
    bottom: 0;
    opacity: 1;
  }
  .main-navigation-pc .mega-menu li.has-child {
    color: #333333;
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    height: 80px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    font-size: 14px;
  }
  .main-navigation-pc .mega-menu li.has-child:hover .child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeIn 0.5s forwards;
            animation: fadeIn 0.5s forwards;
  }
  .main-navigation-pc .mega-menu li.has-child:before {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    background: #04264D;
    top: auto;
    left: 0;
    bottom: -3px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  .main-navigation-pc .mega-menu li.has-child:hover:before {
    bottom: 0;
    opacity: 1;
  }
  .main-navigation-pc .mega-menu .child {
    position: fixed;
    left: 0;
    top: 80px;
    width: 100vw;
    background-color: #fafafa;
    padding: 50px 0;
    opacity: 0;
    display: none;
  }
  .main-navigation-pc .mega-menu .child .column {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    padding: 0 30px;
  }
  .main-navigation-pc .mega-menu .child .title-block {
    background: #1976D2;
    width: 240px !important;
    height: 240px !important;
    padding: 30px;
    color: #fff;
  }
  .main-navigation-pc .mega-menu .child .title-block .title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    margin: 0;
    position: relative;
  }
  .main-navigation-pc .mega-menu .child .title-block .title:before {
    content: "";
    width: 40px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -20px;
  }
  .main-navigation-pc .mega-menu .child .title-block + .menu-block {
    margin-left: -50px !important;
  }
  .main-navigation-pc .mega-menu .child .menu-block {
    -webkit-flex-basis: 220px;
        -ms-flex-preferred-size: 220px;
            flex-basis: 220px;
    margin-left: 20px;
    max-width: 200px;
  }
  .main-navigation-pc .mega-menu .child .menu-block figure img {
    width: 100%;
  }
  .main-navigation-pc .mega-menu .child .menu-block figure,
  .main-navigation-pc .mega-menu .child .menu-block p {
    margin: 0;
  }
  .main-navigation-pc .mega-menu .child .menu-block p {
    text-align: center;
    background: #fff;
    padding: 14px 0;
    font-size: 14px;
    color: #1976D2;
  }
  .main-navigation-pc .mega-menu .child .menu-block a p {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main-navigation-pc .mega-menu .child .menu-block a:hover p {
    color: #fff;
    background: #04264D;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main-navigation-pc .mega-menu .contact a {
    background: #1976D2;
    color: #fff;
    padding: 0 30px;
    margin-left: 15px;
  }
  .main-navigation-pc .mega-menu .reform-icons {
    gap: 0.5rem;
    max-width: 540px;
  }
  .main-navigation-pc .mega-menu .reform-icons a {
    -webkit-flex-basis: calc((100% - 2.5rem) / 6);
        -ms-flex-preferred-size: calc((100% - 2.5rem) / 6);
            flex-basis: calc((100% - 2.5rem) / 6);
  }
  nav.breadcrumbs {
    padding: 20px 2.6041666vw;
  }
  .post-navigation {
    padding: 0;
  }
}

#slider {
  width: 100%;
  position: relative;
  margin: 0;
  overflow-x: hidden;
  margin-top: -20px;
}

#slider .slick-list {
  padding-top: 20px;
}

#slider .slide-bg {
  position: relative;
}

#slider .slide-bg:before {
  content: "";
  background-color: transparent;
  background-image: -webkit-radial-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1px);
  background-image: -o-radial-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1px);
  background-image: radial-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#slider .slide-bg-inner {
  position: relative;
  height: 75vw;
  max-height: 430px;
  background-size: cover;
  background-position: center;
}

#slider .slide-bg-inner figure {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  z-index: 2;
}

#slider .slide1 .slide-bg-inner {
  background-image: url(./images/slide1-smp.png);
}

#slider .slide1 figure {
  width: 336px;
  height: 82px;
}

#slider .slide1 figure:before {
  content: "";
  width: 110px;
  height: 160px;
  background: url(./images/hero.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: -20px;
  top: -115px;
}

#slider .slide1 figure:after {
  content: "";
  width: 90px;
  height: 106px;
  background: url(./images/arikui.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: -100px;
}

#slider .slide2 figure,
#slider .slide3 figure {
  width: auto;
  height: 33.333333%;
  text-align: center;
}

#slider .slide2 figure img,
#slider .slide3 figure img {
  width: auto;
  height: 100%;
}

#slider .slide2 .slide-bg-inner {
  background-image: url(./images/slide2-smp.png?20240613);
}

#slider .slide3 .slide-bg-inner {
  background-image: url(./images/slide3-smp.png?20240613);
}

.blue-carousel-area {
  background: #1976D2;
  color: #fff;
  padding: 30px 0;
}

.blue-carousel-area h2 {
  margin-top: 0;
}

.blue-carousel-area h3 {
  color: #fff;
}

.blue-carousel-area .slider-wrap {
  width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}

.blue-carousel-area .slide-item {
  border: 1px solid #fff;
  margin: 0 15px;
  max-width: 300px;
}

.carousel-area {
  margin: 30px 0;
}

.carousel-area .slider-wrap {
  width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}

.carousel-area .slide-item {
  border: 1px solid #1976D2;
  margin: 0 15px;
  max-width: 300px;
}

.responsive-slider .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.responsive-slider .slick-track .slick-slide {
  height: auto;
}

.responsive-slider figure {
  margin: 0;
}

.responsive-slider h3 {
  text-align: center;
  padding-left: 0;
  border: none;
  font-size: 18px;
  margin: 20px 0;
  padding: 0 20px;
}

.responsive-slider p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 14px;
}

.slick-slider {
  margin: 0;
}

.slick-slider span.prev,
.slick-slider span.next {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  font-size: 36px;
  width: 40px;
  height: 40px;
  background: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  color: #fff;
  cursor: pointer;
}

.slick-slider span.prev {
  left: -25px;
}

.slick-slider span.next {
  right: -25px;
}

.customer-slider .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.customer-slider .container figure {
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.customer-slider .container figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.customer-slider .container .text {
  width: calc(100% - 60px);
}

.customer-slider .container .text h3 {
  border: none;
  padding-left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: 16px;
  color: #04264D;
  text-align: left;
}

.customer-slider .container .text p {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: 14px;
}

@media screen and (min-width: 560px) {
  #slider .slide-bg-inner figure {
    position: absolute;
    left: 50%;
    top: 100px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin: 0;
  }
  #slider .slide1 figure {
    width: 500px;
    height: 123px;
  }
  #slider .slide1 figure:before {
    width: 132px;
    height: 193px;
    left: -50px;
    top: -115px;
  }
  #slider .slide1 figure:after {
    content: "";
    width: 108px;
    height: 128px;
    right: -60px;
    bottom: -100px;
  }
  #slider .slide2 figure img,
  #slider .slide3 figure img {
    width: auto;
    height: 120px;
  }
  .carousel-area {
    margin: 40px 0;
  }
}

@media screen and (min-width: 1024px) {
  #slider {
    margin-top: 0;
  }
  #slider .slide-bg-inner {
    max-height: none;
    height: 31.25vw;
  }
  #slider .slide-bg-inner figure {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #slider .slick-list {
    padding: 0;
  }
  #slider .slide1 figure {
    width: 60%;
    height: 33.333333%;
  }
  #slider .slide1 figure:before {
    width: 25%;
    height: 146%;
    left: 0;
    top: -95%;
  }
  #slider .slide1 figure:after {
    width: 22.5%;
    height: 106%;
    right: -17.5%;
    bottom: -50%;
  }
  #slider .slide2 figure,
  #slider .slide3 figure {
    width: auto;
    height: 33.333333%;
    text-align: center;
  }
  #slider .slide2 figure img,
  #slider .slide3 figure img {
    width: auto;
    height: 100%;
  }
  #slider .slide2 .slide-bg-inner {
    background-image: url(./images/slide2.png);
  }
  #slider .slide3 .slide-bg-inner {
    background-image: url(./images/slide3.png);
  }
  .carousel-area {
    margin: 50px 0;
  }
  .carousel-area .slide-item {
    background: #1976D2;
    border: none;
    padding: 20px;
    color: #fff;
  }
  .carousel-area .slide-item h3 {
    color: #fff;
    padding: 0;
  }
  .carousel-area .slide-item p {
    padding: 0;
  }
  .customer-slider .container figure {
    width: 80px;
    height: 80px;
  }
  .customer-slider .container .text {
    width: calc(100% - 80px);
  }
}

@media screen and (min-width: 1600px) {
  .blue-carousel-area {
    padding: 50px 0 !important;
    position: relative;
  }
  .blue-carousel-area:before, .blue-carousel-area:after {
    content: "";
    position: absolute;
    width: 570px;
    height: 100%;
    top: 0;
  }
  .blue-carousel-area:before {
    left: 0;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(25, 118, 210, 0)), color-stop(50%, #1764af), color-stop(50%, rgba(25, 118, 210, 0)));
    background: -webkit-linear-gradient(bottom left, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: -o-linear-gradient(bottom left, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: linear-gradient(to top right, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
  }
  .blue-carousel-area:after {
    right: 0;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(30%, rgba(25, 118, 210, 0)), color-stop(50%, #1764af), color-stop(50%, rgba(25, 118, 210, 0)));
    background: -webkit-linear-gradient(top right, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: -o-linear-gradient(top right, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: linear-gradient(to bottom left, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
  }
  .blue-carousel-area .slide-item {
    border: none;
    background: #fff;
    color: #333333;
    padding: 20px;
  }
  .blue-carousel-area .slide-item h3 {
    color: #1976D2;
  }
  .blue-carousel-area .slider-wrap,
  .carousel-area .slider-wrap {
    position: relative;
    z-index: 1;
    max-width: 1320px;
  }
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.column figure {
  margin-top: 0;
}

.column > div:not(:first-child) {
  margin-left: 14px;
}

.column .col2 {
  -webkit-flex-basis: calc(50% - 7px);
      -ms-flex-preferred-size: calc(50% - 7px);
          flex-basis: calc(50% - 7px);
  max-width: calc(50% - 7px);
}

.column .col3 {
  -webkit-flex-basis: calc(33.33333% - 28px / 3);
      -ms-flex-preferred-size: calc(33.33333% - 28px / 3);
          flex-basis: calc(33.33333% - 28px / 3);
  max-width: calc(33.33333% - 28px / 3);
}

.column .col4 {
  -webkit-flex-basis: calc(50% - 7px);
      -ms-flex-preferred-size: calc(50% - 7px);
          flex-basis: calc(50% - 7px);
  max-width: calc(50% - 7px);
  margin-bottom: 14px;
}

.column .col4:nth-child(3) {
  margin-left: 0;
}

.column.column-smp-all {
  display: block;
}

.column.column-smp-all > div {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
  margin-left: 0;
}

.wp-block-columns figure,
.column figure {
  margin-top: 0;
  margin-bottom: 20px;
}

.wp-block-columns figure + p,
.column figure + p {
  margin-top: 20px;
}

.wp-block-columns figure + h3,
.column figure + h3 {
  margin-top: 20px;
}

.wp-block-columns figure + h4,
.column figure + h4 {
  margin-top: 20px;
}

.wp-block-columns figure + div p,
.column figure + div p {
  margin-top: 20px;
}

.wp-block-columns h3,
.column h3 {
  margin-bottom: 20px;
}

.wp-block-columns h3:first-child,
.column h3:first-child {
  margin-top: 0;
}

.wp-block-columns h3 + p,
.column h3 + p {
  margin-top: 20px;
}

.wp-block-columns h4,
.column h4 {
  margin-bottom: 20px;
}

.wp-block-columns h4:first-child,
.column h4:first-child {
  margin-top: 0;
}

.wp-block-columns h4 + p,
.column h4 + p {
  margin-top: 20px;
}

@media screen and (min-width: 560px) {
  .column > div {
    position: relative;
  }
  .column > div:not(:first-child) {
    margin-left: 30px;
  }
  .column .col2 {
    -webkit-flex-basis: calc(50% - 15px);
        -ms-flex-preferred-size: calc(50% - 15px);
            flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .column .col3 {
    -webkit-flex-basis: calc(33.33333% - 60px / 3);
        -ms-flex-preferred-size: calc(33.33333% - 60px / 3);
            flex-basis: calc(33.33333% - 60px / 3);
    max-width: calc(33.33333% - 60px / 3);
  }
  .column .col4 {
    -webkit-flex-basis: calc(50% - 15px);
        -ms-flex-preferred-size: calc(50% - 15px);
            flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .column .col4:nth-child(3) {
    margin-left: 0;
  }
  .column.column-smp-all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .column.column-smp-all .col2 {
    -webkit-flex-basis: calc(50% - 15px);
        -ms-flex-preferred-size: calc(50% - 15px);
            flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .column.column-smp-all .col3 {
    -webkit-flex-basis: calc(33.33333% - 60px / 3);
        -ms-flex-preferred-size: calc(33.33333% - 60px / 3);
            flex-basis: calc(33.33333% - 60px / 3);
    max-width: calc(33.33333% - 60px / 3);
  }
  .column.column-smp-all .col4 {
    -webkit-flex-basis: calc(50% - 15px);
        -ms-flex-preferred-size: calc(50% - 15px);
            flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .column.column-smp-all .col4:nth-child(3) {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .column > div:not(:first-child) {
    margin-left: 50px;
  }
  .column .col2 {
    -webkit-flex-basis: calc(50% - 25px);
        -ms-flex-preferred-size: calc(50% - 25px);
            flex-basis: calc(50% - 25px);
    max-width: calc(50% - 25px);
  }
  .column .col3 {
    -webkit-flex-basis: calc(33.33333% - 100px / 3);
        -ms-flex-preferred-size: calc(33.33333% - 100px / 3);
            flex-basis: calc(33.33333% - 100px / 3);
    max-width: calc(33.33333% - 100px / 3);
  }
  .column .col4 {
    -webkit-flex-basis: calc(25% - 150px / 4);
        -ms-flex-preferred-size: calc(25% - 150px / 4);
            flex-basis: calc(25% - 150px / 4);
    max-width: calc(25% - 150px / 4);
  }
  .column .col4:nth-child(3) {
    margin-left: 50px;
  }
  .column.column-smp-all .col2 {
    -webkit-flex-basis: calc(50% - 25px);
        -ms-flex-preferred-size: calc(50% - 25px);
            flex-basis: calc(50% - 25px);
    max-width: calc(50% - 25px);
  }
  .column.column-smp-all .col3 {
    -webkit-flex-basis: calc(33.33333% - 100px / 3);
        -ms-flex-preferred-size: calc(33.33333% - 100px / 3);
            flex-basis: calc(33.33333% - 100px / 3);
    max-width: calc(33.33333% - 100px / 3);
  }
  .column.column-smp-all .col4 {
    -webkit-flex-basis: calc(25% - 50px);
        -ms-flex-preferred-size: calc(25% - 50px);
            flex-basis: calc(25% - 50px);
    max-width: calc(25% - 50px);
  }
  .column.column-smp-all .col4:nth-child(3) {
    margin-left: 50px;
  }
}

ul:not(.smb-list ul) {
  margin: 30px auto;
}

ol li {
  margin-bottom: 20px;
  line-height: 1.7;
}

ol li:last-child {
  margin-bottom: 0;
}

.news-list li {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.news-list li:first-child {
  padding-top: 0;
}

.news-list li time {
  margin-right: 20px;
  font-size: 13px;
}

.news-list li a {
  font-size: 14px;
}

.post-list-with-thumbnail li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.post-list-with-thumbnail li:first-child {
  padding-top: 0;
}

.post-list-with-thumbnail li figure {
  width: 30%;
  margin: 0;
}

.post-list-with-thumbnail li figure a {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.post-list-with-thumbnail li figure a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: none;
  height: 100%;
  width: auto;
}

.post-list-with-thumbnail li .text {
  width: calc(100% - 30% - 15px);
}

.post-list-with-thumbnail li .text h3 {
  font-size: 16px;
  margin: 0;
}

.post-list-with-thumbnail li .text p {
  margin: 15px 0 0;
}

ul.faq-list {
  margin: 0;
  padding: 30px 0;
  position: relative;
}

ul.faq-list li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
}

ul.faq-list li:before {
  position: absolute;
  top: -8px;
  left: 0;
  content: "Q";
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: #1976D2;
}

ul.faq-list li:nth-child(even):before {
  content: "A";
  color: #FF5722;
}

ul.single-column-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ddd;
  text-align: left;
}

ul.single-column-list li figure {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}

ul.single-column-list li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: none;
}

ul.single-column-list li a {
  display: block;
  width: calc(100% - 95px);
  margin-left: 15px;
}

ul.single-column-list li a h3 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #333333;
  border: none;
  padding-left: 0;
}

ul.single-column-list li a p {
  margin: 0 !important;
  font-size: 14px;
}

ul.works-list li,
ul.works-list article,
body.category-report .wrap li,
body.category-report .wrap article {
  position: relative;
  margin-bottom: 50px;
  max-width: 350px;
}

ul.works-list li:first-of-type,
ul.works-list article:first-of-type,
body.category-report .wrap li:first-of-type,
body.category-report .wrap article:first-of-type {
  margin-top: 30px;
}

ul.works-list li > p,
ul.works-list article > p,
body.category-report .wrap li > p,
body.category-report .wrap article > p {
  margin: 0;
}

ul.works-list li > p a,
ul.works-list article > p a,
body.category-report .wrap li > p a,
body.category-report .wrap article > p a {
  position: absolute;
  background: #fff;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 10px;
  line-height: 30px;
  height: 30px;
  top: -15px;
  left: 20px;
  margin: 0;
  border: 1px solid #333333;
  font-weight: bold;
}

ul.works-list li .control a,
ul.works-list article .control a,
body.category-report .wrap li .control a,
body.category-report .wrap article .control a {
  color: #1976D2;
  border-color: #1976D2;
}

ul.works-list li .prevent a,
ul.works-list article .prevent a,
body.category-report .wrap li .prevent a,
body.category-report .wrap article .prevent a {
  color: #FFC107;
  border-color: #FFC107;
}

ul.works-list li .research a,
ul.works-list article .research a,
body.category-report .wrap li .research a,
body.category-report .wrap article .research a {
  color: #FF5722;
  border-color: #FF5722;
}

ul.works-list li .foundation a,
ul.works-list article .foundation a,
body.category-report .wrap li .foundation a,
body.category-report .wrap article .foundation a {
  color: #00B900;
  border-color: #00B900;
}

ul.works-list li .dehumidify a,
ul.works-list article .dehumidify a,
body.category-report .wrap li .dehumidify a,
body.category-report .wrap article .dehumidify a {
  color: #04264D;
  border-color: #04264D;
}

ul.works-list li .column a,
ul.works-list article .column a,
body.category-report .wrap li .column a,
body.category-report .wrap article .column a {
  color: #FF5722;
  border-color: #FF5722;
  background: #fff;
}

ul.works-list li > a,
ul.works-list article > a,
body.category-report .wrap li > a,
body.category-report .wrap article > a {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 50px;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  padding: 0 15px;
}

ul.works-list li > a h3,
ul.works-list article > a h3,
body.category-report .wrap li > a h3,
body.category-report .wrap article > a h3 {
  margin: 0;
  color: #fff;
  line-height: 50px;
  border: none;
  padding-left: 0;
  font-size: 16px;
  text-decoration: underline;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

ul.works-list li figure,
ul.works-list article figure,
body.category-report .wrap li figure,
body.category-report .wrap article figure {
  margin: 0;
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
}

ul.works-list li figure img,
ul.works-list article figure img,
body.category-report .wrap li figure img,
body.category-report .wrap article figure img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

ul.number li h3 {
  border: none;
  color: #fff;
  font-size: 16px;
  background: #04264D;
  padding: 12px 12px 12px 40px;
  position: relative;
  margin-bottom: 20px;
}

ul.number li h3:before {
  font-family: 'Damion', cursive;
  position: absolute;
  top: 0;
  left: 12px;
  font-size: 30px;
  color: #FFEB3B;
}

ul.number li:nth-child(1) h3:before {
  content: "1.";
}

ul.number li:nth-child(2) h3:before {
  content: "2.";
}

ul.number li:nth-child(3) h3:before {
  content: "3.";
}

ul.number li:nth-child(4) h3:before {
  content: "4.";
}

ul.number li:nth-child(5) h3:before {
  content: "5.";
}

ul.number li:nth-child(6) h3:before {
  content: "6.";
}

ul.number li p {
  margin-top: 20px;
}

ul.checksheet {
  margin-left: auto;
  margin-right: auto;
}

ul.checksheet li {
  margin-bottom: 20px;
  font-weight: bold;
  padding-left: 40px;
  position: relative;
}

ul.checksheet li:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(./images/icon-check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

ul.trust figure.circle {
  width: 150px;
  height: 150px;
}

ul.step li figure {
  margin-bottom: 20px;
}

ul.step li h3 {
  margin: 20px 0;
}

ul.step li p {
  margin-top: 20px;
}

@media screen and (min-width: 560px) {
  ul:not(.smb-list ul) {
    margin: 40px auto;
  }
  .post-list-with-thumbnail li .text {
    width: calc(100% - 30% - 20px);
  }
  ul.works-list,
  body.category-report .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
  }
  ul.works-list li,
  ul.works-list article,
  body.category-report .wrap li,
  body.category-report .wrap article {
    -webkit-flex-basis: calc(50% - 15px);
        -ms-flex-preferred-size: calc(50% - 15px);
            flex-basis: calc(50% - 15px);
    max-width: 300px;
  }
  ul.works-list li:first-of-type,
  ul.works-list article:first-of-type,
  body.category-report .wrap li:first-of-type,
  body.category-report .wrap article:first-of-type {
    margin-top: 0;
  }
  ul.works-list li:nth-last-of-type(1), ul.works-list li:nth-last-of-type(2),
  ul.works-list article:nth-last-of-type(1),
  ul.works-list article:nth-last-of-type(2),
  body.category-report .wrap li:nth-last-of-type(1),
  body.category-report .wrap li:nth-last-of-type(2),
  body.category-report .wrap article:nth-last-of-type(1),
  body.category-report .wrap article:nth-last-of-type(2) {
    margin-bottom: 0;
  }
  ul.works-list li:nth-child(even),
  ul.works-list article:nth-child(even),
  body.category-report .wrap li:nth-child(even),
  body.category-report .wrap article:nth-child(even) {
    margin-left: 30px;
  }
  ul.number-lg li {
    padding-left: 150px;
    position: relative;
  }
  ul.number-lg li:before {
    content: "01";
    position: absolute;
    left: 0;
    top: -50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300 !important;
    font-size: 120px;
    color: #9e9e9e;
    display: block;
  }
  ul.number-lg li:nth-child(1):before {
    content: "01";
  }
  ul.number-lg li:nth-child(2):before {
    content: "02";
  }
  ul.number-lg li:nth-child(3):before {
    content: "03";
  }
  ul.number-lg li h3 {
    padding: 12px 20px;
  }
  ul.number-lg li h3:before {
    content: none !important;
  }
  ul.trust {
    margin-left: -4%;
    margin-right: -4%;
  }
  ul.trust li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 4%;
  }
  ul.trust li:nth-child(even) {
    background-image: url(./images/stripe-bg.svg);
    background-size: 20px 20px;
  }
  ul.trust li figure {
    margin-left: 0;
    margin-right: 0;
  }
  ul.trust li .text {
    width: calc(100% - 180px);
  }
  ul.step li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
  }
  ul.step li:last-child {
    margin-bottom: 40px;
  }
  ul.step li:last-child:before {
    content: none;
  }
  ul.step li:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -50px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 15px 0 15px;
    border-color: #1976D2 transparent transparent transparent;
  }
  ul.step li figure {
    position: static;
    padding-top: 0;
    width: 300px;
    margin: 0;
  }
  ul.step li figure img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  ul.step li .text {
    width: calc(100% - 330px);
  }
  ul.step li .text h3 {
    margin-top: 0;
  }
  ul.step li .text p {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  ul:not(.smb-list ul) {
    margin: 50px auto;
  }
  .post-list-with-thumbnail {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .post-list-with-thumbnail li {
    width: calc(100% / 4);
    padding: 0 2.118644%;
    display: block;
    border: none;
  }
  .post-list-with-thumbnail li figure {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .post-list-with-thumbnail li figure a {
    position: relative;
    padding-top: 66.666666%;
  }
  .post-list-with-thumbnail li figure a img {
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%;
    height: auto;
  }
  .post-list-with-thumbnail li .text {
    width: 100%;
  }
  ul.works-list {
    max-width: none;
  }
  ul.works-list li {
    -webkit-flex-basis: calc(25% - 90px / 4);
        -ms-flex-preferred-size: calc(25% - 90px / 4);
            flex-basis: calc(25% - 90px / 4);
    max-width: 300px;
    margin-bottom: 0;
  }
  ul.works-list li:nth-child(even) {
    margin-left: 30px;
  }
  ul.works-list li:nth-child(3) {
    margin-left: 30px;
  }
  body.category-report .wrap {
    max-width: 1100px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body.category-report .wrap article {
    -webkit-flex-basis: calc(33.33333% - 100px / 3);
        -ms-flex-preferred-size: calc(33.33333% - 100px / 3);
            flex-basis: calc(33.33333% - 100px / 3);
    max-width: 340px;
    margin: 40px 0 !important;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-bottom: 0;
  }
  ul.number-lg li {
    padding-left: 270px;
  }
  ul.number-lg li:before {
    font-size: 200px;
    top: -80px;
  }
  ul.trust {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
  ul.trust li {
    -webkit-flex-basis: calc(33.33333% - 100px / 3);
        -ms-flex-preferred-size: calc(33.33333% - 100px / 3);
            flex-basis: calc(33.33333% - 100px / 3);
    padding: 0;
    display: block;
  }
  ul.trust li:nth-child(even) {
    background: none;
  }
  ul.trust li figure.circle {
    width: 250px;
    height: 250px;
    margin: 50px auto 20px;
  }
  ul.trust li .text {
    width: 100%;
  }
  ul.trust li .text h3 {
    margin-top: 20px;
  }
  ul.single-column-list a {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  ul.single-column-list a:hover {
    opacity: .7;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
}

.widget {
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
}

.widget h2 {
  color: #fff;
  text-align: center;
  background: #04264D;
  padding: 8px 16px;
  font-size: 18px;
  margin: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.widget h2 + div {
  padding: 0 7.4074074%;
}

.widget .reform-icons {
  gap: 0.25rem;
  padding: 20px 0;
}

.widget .reform-icons a {
  width: auto;
  -webkit-flex-basis: calc(33.33% - (0.5rem / 3));
      -ms-flex-preferred-size: calc(33.33% - (0.5rem / 3));
          flex-basis: calc(33.33% - (0.5rem / 3));
}

.search-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.search-form label {
  width: calc(100% - 82px);
  display: block;
  margin-right: 10px;
}

.search-form label input {
  width: 100%;
}

.wrap {
  padding: 0 4%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.box {
  padding: 30px;
  margin: 30px auto;
}

.box .wp-block-image {
  margin-bottom: 0;
}

.box figure {
  margin-top: 0;
  margin-bottom: 0;
}

.box ul {
  margin: 0;
}

.box p:first-of-type, .box h2:first-of-type, .box h3:first-of-type, .box h4:first-of-type {
  margin-top: 0;
}

.box p:last-child, .box h2:last-child, .box h3:last-child, .box h4:last-child {
  margin-bottom: 0;
}

.box-blue-line {
  background: #fff;
  padding: 20px;
  border: 1px solid #1976D2;
  margin: 30px auto;
  max-width: 500px;
}

.box-blue-line > h3:first-child,
.box-blue-line > h2:first-child,
.box-blue-line > p:first-child {
  margin-top: 0;
}

.box-blue-line > p:last-child,
.box-blue-line > a:last-child {
  margin-bottom: 0;
}

.tel-block {
  text-align: center;
}

.tel-block p:first-child {
  margin-bottom: 0;
}

.tel-block p:first-child a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.tel-block p:first-child a span:first-child {
  display: block;
  line-height: 1.2;
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #333333;
  color: #fff;
  height: 38px;
  width: 38px;
  margin-right: 10px;
  font-weight: bold;
}

.tel-block p:first-child a span.oswold {
  font-size: 40px;
}

.tel-block .comment {
  font-size: 20px;
  font-weight: bold;
  color: #d50000;
  margin: 0;
  margin-bottom: 10px;
}

.tel-block .time {
  margin-top: 0;
  font-size: 14px;
}

.trouble-block > div {
  border: 3px solid #1976D2;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.trouble-block > div a {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 132px;
  font-weight: bold;
  text-align: center;
  position: relative;
  font-size: 20px;
  overflow: hidden;
}

.trouble-block > div a span {
  z-index: 1;
}

.trouble-block > div a span:first-letter {
  font-size: 30px;
  background: #FFEB3B;
  padding: 0 0.2em;
}

.trouble-block > div a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.trouble-block > div a:after {
  content: "";
  background: #1976D2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: .8;
}

.trouble-block > div a:hover span:first-letter {
  color: #333333;
}

.trouble-block > div a:hover span {
  color: #fff;
}

.trouble-block > div a:hover:after {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.trouble-block > div:nth-child(1) a:before {
  background: url(./images/trouble1.svg) no-repeat center center;
  background-size: 120px 112px;
}

.trouble-block > div:nth-child(2) a:before {
  background: url(./images/trouble2.svg) no-repeat center center;
  background-size: 102px 100px;
}

.trouble-block > div:nth-child(3) a:before {
  background: url(./images/trouble3.svg) no-repeat center center;
  background-size: 83px 100px;
}

.trouble-block > div:nth-child(4) a:before {
  background: url(./images/trouble4.svg) no-repeat center center;
  background-size: 89px 100px;
}

.trouble-block p {
  margin: 0;
  font-size: 14px;
}

.trouble-block p i {
  color: #1976D2;
  vertical-align: middle;
  -webkit-animation: upDown 1.5s infinite;
          animation: upDown 1.5s infinite;
}

.secure-block .col2 {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

.secure-block .col2 > p {
  margin: 20px 0;
  font-size: 18px;
}

.review-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.review-block figure {
  margin: 0;
}

.review-block .text {
  width: calc(100% - 90px);
  margin-bottom: 20px;
}

.review-block .text p {
  margin: 0;
}

.review-block .text .title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.review-block .review-comment {
  border-top: 1px solid #ddd;
}

.review-block .review-comment p {
  margin-top: 20px;
  margin-bottom: 0;
}

.review-block .review-star .star-5:before {
  content: "\002605\002605\002605\002605\002605";
  color: #FFC107;
}

.review-block .review-star .star-4:before {
  content: "\002605\002605\002605\002605";
  color: #FFC107;
}

.review-block .review-star .star-3:before {
  content: "\002605\002605\002605";
  color: #FFC107;
}

.review-block .review-star .star-2:before {
  content: "\002605\002605";
  color: #FFC107;
}

.review-block .review-star .star-1:before {
  content: "\002605";
  color: #FFC107;
}

.cta-block {
  background: #f5f5f5;
  position: relative;
  padding: 1.5rem 4vw;
}

.cta-block::before {
  content: "";
  height: 100%;
  aspect-ratio: 1 / 1;
  background: -webkit-linear-gradient(315deg, #f5f5f5 0%, #eee 50%, rgba(255, 255, 255, 0) 50%);
  background: -o-linear-gradient(315deg, #f5f5f5 0%, #eee 50%, rgba(255, 255, 255, 0) 50%);
  background: linear-gradient(135deg, #f5f5f5 0%, #eee 50%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  top: 0;
  left: 0;
}

.cta-block::after {
  content: "";
  height: 100%;
  aspect-ratio: 1 / 1;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, #eee 50%, #f5f5f5 100%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, #eee 50%, #f5f5f5 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, #eee 50%, #f5f5f5 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block .heading-unit p {
  margin-bottom: 0;
}

.cta-block .tel-block p {
  margin-top: 0;
}

dl.title-box {
  max-width: 700px;
  margin: 30px auto;
}

dl.title-box dt {
  text-align: center;
  padding: 13px;
  background: #1976D2;
  color: #fff;
  font-size: 18px;
}

dl.title-box dd {
  border: 1px solid #1976D2;
  padding: 30px 15px;
  background: #fff;
}

dl.title-box dd p:first-child {
  margin-top: 0;
}

dl.title-box dd p:last-of-type {
  margin-bottom: 0;
}

dl.title-box ul.faq-list:before {
  content: "";
  width: calc(100% + 30px);
  height: 1px;
  background: #ddd;
  position: absolute;
  bottom: 0;
  left: -15px;
}

dl.title-box ul.faq-list:first-child {
  padding-top: 0;
}

dl.title-box ul.faq-list:last-of-type {
  padding-bottom: 0;
}

dl.title-box ul.faq-list:last-of-type:before {
  content: none;
}

.max-500 {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.max-700 {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.recommend-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 42px 10px 10px;
  position: relative;
  margin: 20px auto 30px;
  max-width: 400px;
}

.recommend-block:before {
  content: "chevron_right";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.recommend-block a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.recommend-block figure {
  margin: 0;
}

.recommend-block span {
  display: block;
  width: calc(100% - 90px);
  text-decoration: underline;
}

.recommend-block span:hover {
  text-decoration: none;
}

.checksheet-block {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
}

.balloon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.balloon:after {
  content: "";
  width: 90px;
  height: 106px;
  background: url(./images/arikui.png) no-repeat center center;
  background-size: contain;
}

.balloon p {
  background: #04264D;
  color: #fff;
  padding: 12px;
  margin-right: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.balloon p:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #04264D;
}

.service-area-block {
  text-align: center;
}

.service-area-block figure {
  margin-bottom: 20px;
}

.service-area-block figure + p {
  margin: 20px auto;
}

.service-area-block .btn-arrow {
  margin-top: 20px;
}

.estimate-block {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.estimate-block .cost-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.estimate-block .cost-input p {
  margin: 20px 0 10px;
}

.estimate-block .cost-input > div {
  width: calc(50% - 30px);
}

.estimate-block .cost-input > div dl {
  background: #FCE4EC;
}

.estimate-block .cost-input > div:first-child dl {
  position: relative;
}

.estimate-block .cost-input > div:first-child dl:after {
  content: "or";
  font-size: 20px;
  position: absolute;
  font-weight: bold;
  right: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.estimate-block .cost-output p {
  margin: 20px 0 10px;
}

.estimate-block dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.estimate-block dl dt {
  width: calc(100% - 3em);
}

.estimate-block dl dt input {
  background: none;
  border: none;
  width: 100%;
  text-align: right !important;
  font-weight: bold;
  font-size: 20px;
  outline: none;
}

.estimate-block dl dd {
  width: 3em;
  text-align: right;
  padding-right: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #9e9e9e;
}

.estimate-block dl dd span {
  font-size: 0.5em;
}

.estimate-block dl + p {
  margin-top: 10px !important;
  text-align: right;
}

.estimate-block .taxin input {
  border: none;
  padding: 0;
  width: auto;
  text-align: right;
  font-size: 18px;
  background: transparent;
}

.wp-block-columns.review {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: -4%;
  margin-right: -4%;
  padding: 0 4%;
}

.wp-block-columns.review .wp-block-column {
  margin: 0;
}

.special-news {
  border: 4px solid #ff0000;
  margin: 30px auto !important;
  padding: 20px;
  max-width: 700px;
}

.special-news h2 {
  color: #ff0000;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.special-news p {
  font-size: 16px !important;
  font-weight: normal !important;
  margin-top: 20px !important;
}

.special-news > *:nth-child(1) {
  margin-top: 0 !important;
}

.special-news > *:nth-last-child(1) {
  margin-bottom: 0 !important;
}

.skyscraper {
  margin: 30px auto !important;
  max-width: 750px;
}

.skyscraper > figure {
  margin: 0;
}

.skyscraper > figure a :hover {
  -webkit-filter: none;
          filter: none;
  opacity: .7;
}

.skyscraper > p {
  margin: 15px 0 0 !important;
}

.cta-line-btn-block {
  padding: 30px;
}

.cta-line-btn-block p {
  margin: 0 0 20px;
  line-height: 1.5 !important;
}

.media {
  background: #04264D;
  padding: 30px 4%;
}

.media .media-inner .video-wrap {
  display: block;
  margin: 0 auto;
}

.media .media-inner .video-wrap figure {
  margin: 0;
}

.media .media-inner .description > * {
  text-align: center;
}

.media .youtube {
  margin: 0 auto;
  max-width: 480px;
  position: relative;
}

.media .youtube::after {
  content: "";
  width: 100px;
  height: 100px;
  background: url(./images/media-elem2.svg) no-repeat center center/contain;
  position: absolute;
  top: -30px;
  right: -4%;
}

.media h2 {
  color: #f1ff65;
  margin: 10px 0;
}

.media h2 + p {
  margin: 0 0 10px;
  color: #fff;
}

.media .customer-area {
  background: #fff;
  padding: 15px 10px;
}

.media .customer-area .elem {
  display: none;
}

.feature-price {
  background: #f1ff65;
}

.feature-price img {
  vertical-align: bottom;
}

.feature-price .price {
  padding: 15px 4%;
  max-width: 500px;
  margin: 0 auto 20px;
}

.feature-price .price p {
  font-size: 13px;
  padding-left: 15px;
  margin: 10px 0 20px;
}

.feature-price .cost-performance {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.feature-price-cta {
  background: #fff;
}

.feature-price-cta > div {
  padding: 20px 4%;
}

.feature-price-cta > div:nth-child(1) {
  border-bottom: 1px solid #333;
}

.feature-price-cta > div h2 {
  margin: 0 0 10px;
  color: #1976D2;
  text-align: center;
}

.feature-price-cta > div .num {
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  font-size: 50px;
  color: #1976D2;
  display: block;
}

.feature-price-cta > div p {
  margin: 0;
}

.feature-price-cta > div .tel-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.feature-price-cta > div .tel-line span:not(.num) {
  width: 40px;
  height: 40px;
  background: #04264D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

.feature-price-cta > div .tel-line .num {
  color: #333;
}

.feature-price-cta > div .tel-line + p {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.feature-price-cta > div .frame {
  background: #1976D2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  margin: 0 auto 10px;
}

.feature-price-cta > div .frame + .num {
  text-align: center;
}

.media-feature-price-for-post {
  margin-left: calc((50vw - 50%) * -1);
  width: 100vw;
}

.media-feature-price-for-post h2 {
  padding: 0;
  border: none;
}

.media-feature-price-for-post .media .customer-area {
  display: none;
}

.media-feature-price-for-post .media h2 + p {
  margin-bottom: 0;
}

.media-feature-price-for-post .media .video-wrap {
  max-width: 375px;
  position: relative;
}

.media-feature-price-for-post .media .video-wrap::after {
  content: "";
  width: 100px;
  height: 100px;
  background: url(./images/media-elem2.svg) no-repeat center center/contain;
  position: absolute;
  top: -30px;
  right: -4%;
}

.media-feature-price-for-post .feature-price .price {
  max-width: 400px;
}

.media-feature-price-for-post .feature-price .price p {
  margin-bottom: 0;
}

.media-feature-price-for-post .feature-price .feature-price-cta > div:nth-child(1) {
  border: none;
  background: #fafafa;
}

.smb-media-text__caption {
  margin-top: 0;
}

.wp-block-separator {
  border: none;
  background: #ccc;
  margin: 30px 0;
}

.smb-media-text.paint-type .smb-media-text__figure {
  text-align: center;
}

.smb-media-text.paint-type .smb-media-text__figure img {
  max-width: 170px;
}

@media screen and (min-width: 560px) {
  .wp-block-separator {
    border: none;
    background: #ccc;
    margin: 80px 0;
  }
  .box {
    margin: 40px auto;
  }
  .box-blue-line {
    padding: 30px;
  }
  .box-blue-line > h3,
  .box-blue-line > h2 {
    text-align: center;
    border: none;
    margin-bottom: 20px;
  }
  .box-blue-line > p {
    margin: 20px auto;
  }
  .card {
    position: relative;
    padding-bottom: 91px;
  }
  .card .btn-arrow:last-child {
    position: absolute;
    bottom: 0;
  }
  .tel-block p:first-child a span:first-child {
    height: 50px;
    width: 50px;
  }
  .tel-block p:first-child a span.oswold {
    font-size: 60px;
  }
  .review-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .review-container .review-block {
    -webkit-flex-basis: calc(50% - 30px);
        -ms-flex-preferred-size: calc(50% - 30px);
            flex-basis: calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin-bottom: 0;
  }
  .review-container .review-block:last-child {
    margin-left: 30px;
  }
  dl.title-box {
    margin: 40px auto;
  }
  dl.title-box dd {
    border: 1px solid #1976D2;
    padding: 50px 30px;
  }
  dl.title-box ul.faq-list:before {
    width: calc(100% + 60px);
    left: -30px;
  }
  .trouble-block {
    max-width: 475px;
    margin-left: auto;
    margin-right: auto;
  }
  .trouble-block > .col4 {
    -webkit-flex-basis: calc(50% - 14px);
        -ms-flex-preferred-size: calc(50% - 14px);
            flex-basis: calc(50% - 14px);
    max-width: calc(50% - 14px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .trouble-block > .col4:not(:first-child) {
    margin-left: 14px;
  }
  .trouble-block > .col4:nth-child(3) {
    margin-left: 0;
  }
  .trouble-block > .col4 a {
    height: 184px;
    font-size: 27px;
  }
  .trouble-block > .col4 a span:first-letter {
    font-size: 41px;
  }
  .trouble-block > .col4 a br {
    display: inline;
  }
  .trouble-block > .col4:nth-child(1) a:before {
    background-size: 168px 156px;
  }
  .trouble-block > .col4:nth-child(2) a:before {
    background-size: 142px 140px;
  }
  .trouble-block > .col4:nth-child(3) a:before {
    background-size: 115px 140px;
  }
  .trouble-block > .col4:nth-child(4) a:before {
    background-size: 162px 132px;
  }
  .balloon:after {
    content: "";
    width: 100px;
    height: 118px;
  }
  .balloon p {
    padding: 25px;
  }
  .recommend-block {
    margin: 20px auto 40px;
  }
  .checksheet-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .checksheet-block ul {
    margin: 0 20px;
    min-width: 350px;
  }
}

@media screen and (min-width: 1024px) {
  .wrap {
    padding: 0 2.6041666vw;
  }
  .box {
    margin: 50px auto;
  }
  .box-blue-line {
    margin: 50px auto;
  }
  .tel-block p:first-child a span:first-child {
    height: 80px;
    width: 80px;
    font-size: 18px;
    margin-right: 15px;
  }
  .tel-block p:first-child a span.oswold {
    font-size: 80px;
  }
  .review-container {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .review-container:before, .review-container:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    border: 1px solid #1976D2;
    top: 0;
  }
  .review-container:before {
    left: -100px;
    border-right: none;
  }
  .review-container:after {
    right: -100px;
    border-left: none;
  }
  .review-container .review-block {
    -webkit-flex-basis: 350px;
        -ms-flex-preferred-size: 350px;
            flex-basis: 350px;
    max-width: 350px;
  }
  .review-container .review-block:last-child {
    margin-left: 50px;
  }
  .trouble-block > .col4:not(:first-child) {
    margin-left: 14px;
  }
  .trouble-block > .col4:nth-child(3) {
    margin-left: 0;
  }
  .trouble-block > .col4 a {
    height: 9.375vw;
    font-size: 1.40625vw;
  }
  .trouble-block > .col4 a span:first-letter {
    font-size: 2.1354166vw;
  }
  .trouble-block > .col4 a br {
    display: inline;
  }
  .trouble-block > .col4:nth-child(1) a:before {
    background-size: 82.7152169% 84.7826086%;
  }
  .trouble-block > .col4:nth-child(2) a:before {
    background-size: 63.8345695% 76.0869565%;
  }
  .trouble-block > .col4:nth-child(3) a:before {
    background-size: 51.6970105% 76.0869565%;
  }
  .trouble-block > .col4:nth-child(4) a:before {
    background-size: 72.825354%x 71.7391304%;
  }
  .recommend-block {
    margin: 20px auto 50px;
  }
  dl.title-box {
    margin: 50px auto;
  }
  .balloon p {
    font-size: 28px;
    padding: 42px 25px;
  }
  .checksheet-block {
    padding: 50px;
  }
  .checksheet-block ul li:last-child {
    margin-bottom: 0;
  }
  .wp-block-columns.review {
    margin-left: 0;
    margin-right: 0;
  }
  .media {
    padding: 50px 2.6041666vw !important;
  }
  .media .youtube::after {
    content: none;
  }
  .media .media-inner {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3.8%;
  }
  .media .media-inner .video-wrap {
    width: 36.3636%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .media .media-inner .video-wrap img, .media .media-inner .video-wrap video, .media .media-inner .video-wrap iframe {
    vertical-align: bottom;
  }
  .media .media-inner .description {
    width: calc(100% - 36.3636% - 3.8%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .media .media-inner .description::after {
    content: "";
    width: 100px;
    height: 100px;
    background: url(./images/media-elem2.svg) no-repeat center center/contain;
    position: absolute;
    top: 0;
    right: 0;
  }
  .media .media-inner .description > * {
    text-align: left;
  }
  .media h2 {
    margin: 0;
    max-width: 85%;
  }
  .media h2 + p {
    font-size: 20px;
    margin: 0;
  }
  .media .customer-area {
    padding: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media .customer-area .elem {
    display: block;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 160px;
  }
  .media .customer-area .elem img {
    width: 160px;
    height: auto;
  }
  .media .customer-area .customer-slider-container {
    width: calc(100% - 170px);
  }
  .feature-price {
    padding: 30px 2.6041666vw !important;
  }
  .feature-price .feature-price-inner {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2.6041666vw;
  }
  .feature-price .feature-price-inner
> div {
    width: calc(50% - 1.3020833vw);
  }
  .feature-price .price {
    margin: 0;
    padding: 0;
    margin-top: -20px;
  }
  .feature-price .price p {
    font-size: 14px;
  }
  .feature-price .price, .feature-price .cost-performance {
    max-width: none;
  }
  .feature-price-cta-section {
    background: #ebeff2;
    padding: 30px 0;
  }
  .feature-price-cta {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .feature-price-cta > div {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 20px;
  }
  .feature-price-cta > div:nth-child(1) {
    border-bottom: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .feature-price-cta > div:nth-child(2) .num {
    font-size: 42px;
  }
  .feature-price-cta > div h2 {
    font-size: 24px;
  }
  .feature-price-cta > div .tel-line span:not(.num) {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .feature-price-cta > div .tel-line .num {
    font-size: 70px;
    white-space: nowrap;
  }
  .feature-price-cta > div .tel-line + p {
    font-size: 16px;
  }
  .media-feature-price-for-post {
    margin-left: 0;
    width: 100%;
  }
  .media-feature-price-for-post .media {
    position: relative;
    padding: 30px !important;
  }
  .media-feature-price-for-post .media::after {
    content: "";
    width: 100px;
    height: 100px;
    background: url(./images/media-elem2.svg) no-repeat center center/contain;
    position: absolute;
    top: -20px;
    right: -20px;
  }
  .media-feature-price-for-post .media h2 {
    font-size: 20px !important;
    max-width: 100%;
    line-height: 1.25;
  }
  .media-feature-price-for-post .media h2 + p {
    font-size: 16px;
  }
  .media-feature-price-for-post .media .media-inner .video-wrap {
    width: 240px;
  }
  .media-feature-price-for-post .media .media-inner .video-wrap::after {
    content: none;
  }
  .media-feature-price-for-post .media .media-inner .description {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .media-feature-price-for-post .media .media-inner .description::after {
    content: none;
  }
  .media-feature-price-for-post .media .customer-area {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
  }
  .media-feature-price-for-post .media .customer-area .elem {
    width: 120px;
  }
  .media-feature-price-for-post .media .customer-area .elem img {
    width: 120px;
  }
  .media-feature-price-for-post .media .customer-area .customer-slider-container {
    width: calc(100% - 130px);
  }
  .media-feature-price-for-post .media .customer-area .customer-slider .container figure {
    width: 50px;
    height: 50px;
  }
  .media-feature-price-for-post .feature-price {
    padding: 0 !important;
  }
  .media-feature-price-for-post .feature-price .feature-price-inner {
    gap: 0;
  }
  .media-feature-price-for-post .feature-price .price {
    margin: 0;
    padding: 15px;
    width: 50%;
  }
  .media-feature-price-for-post .feature-price .feature-price-cta h2 {
    font-size: 16px;
  }
  .media-feature-price-for-post .feature-price .feature-price-cta .tel-line span:not(.num) {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .media-feature-price-for-post .feature-price .feature-price-cta .tel-line .num {
    font-size: 45px;
  }
  .media-feature-price-for-post .feature-price .feature-price-cta .tel-line + p {
    font-size: 14px;
  }
}

.entry-header,
.page-header {
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
  background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
  background-image: radial-gradient(#ddd 1px, transparent 1px);
  background-size: 5px 5px;
  background-position: 0 0;
  padding: 20px 4%;
  text-align: center;
}

.entry-header .entry-title,
.entry-header .page-title,
.page-header .entry-title,
.page-header .page-title {
  text-align: center;
  margin: 0;
  font-size: 24px;
}

.entry-header .sub-title,
.entry-header .archive-description p,
.page-header .sub-title,
.page-header .archive-description p {
  font-family: 'Oswald', sans-serif;
  margin: 0 !important;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  font-size: 13px;
  padding: 0 8px;
  color: #FF5722;
  background: #FFC107;
  min-width: 110px;
}

.cat-links {
  display: block;
  margin: 15px 0;
}

.tags-links {
  display: block;
  margin: 15px 0;
  vertical-align: middle;
}

.tags-links a {
  font-size: 13px;
  color: #999;
  border: 1px solid #999;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  border-radius: 12px;
  padding: 0 8px;
  margin: 0 0 10px 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.tags-links a:hover {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #333;
  border-color: #333;
}

@media screen and (min-width: 560px) {
  .entry-header .entry-title,
  .entry-header .page-title,
  .page-header .entry-title,
  .page-header .page-title {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .entry-header,
  .page-header {
    padding: 50px;
  }
  .entry-header .entry-title,
  .entry-header .page-title,
  .page-header .entry-title,
  .page-header .page-title {
    font-size: 48px;
  }
}

/*--------------------------------------------------------------
# Organisms
--------------------------------------------------------------*/
.site-header {
  height: 56px;
  width: 100%;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  background: #fff;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site-header #nav-btn {
  position: absolute;
  right: 0;
  top: 0;
}

.site-header-emergency {
  height: 116px;
}

.site-header-emergency .emergency-num {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eb6ea0), to(#e73562));
  background-image: -webkit-linear-gradient(#eb6ea0, #e73562);
  background-image: -o-linear-gradient(#eb6ea0, #e73562);
  background-image: linear-gradient(#eb6ea0, #e73562);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 100vw;
  margin-left: -4vw;
  padding: 6px;
  text-align: center;
}

.site-header-emergency .emergency-num span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  position: relative;
}

.site-header-emergency .emergency-num span::before {
  content: "";
  width: 60px;
  height: 34px;
  position: absolute;
  background: url(./images/emergency-number-elem.svg) no-repeat center center;
  background-size: contain;
  top: -6px;
  right: -15vw;
  -webkit-animation: upDown infinite 2s ease-in-out;
          animation: upDown infinite 2s ease-in-out;
}

@media screen and (min-width: 560px) {
  .site-header-emergency .emergency-num span::before {
    content: none;
  }
}

@media screen and (min-width: 1024px) {
  .site-header {
    height: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0  0 30px;
  }
  .site-header #nav-btn {
    display: none;
  }
  .site-header .main-navigation {
    position: static;
  }
  .site-header .main-navigation #primary-menu {
    width: auto;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .site-header-emergency .emergency-num {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0 1.3vw;
    width: auto;
    height: 100%;
    padding: 8px 1vw;
  }
  .site-header-emergency .emergency-num span {
    height: 100%;
  }
  .site-header-emergency .emergency-num img {
    height: 100%;
    width: auto;
  }
}

.site-footer {
  width: 100%;
  position: relative;
  text-align: center;
}

.site-footer #pageTop {
  position: fixed;
  right: 4%;
  bottom: calc(40px + 4%);
  display: none;
  z-index: 1002;
}

.site-footer .site-info {
  padding: 30px 0;
  font-size: 14px;
  background: #004374;
  color: #fff;
}

.site-footer .site-info p {
  margin: 0;
}

.site-footer .site-info .tel-block a {
  color: #fff;
}

.site-footer .site-info .tel-block a span.oswold {
  font-size: 24px !important;
}

.site-footer .site-info .footer-logo {
  margin-bottom: 20px;
}

.site-footer .site-info .footer-logo span {
  display: block;
  color: #fff;
  margin-top: 5px;
}

.site-footer .site-info .belongs-line span {
  display: inline-block;
  margin: 0 5px;
}

.site-footer .site-info ul {
  margin: 20px 0;
}

.site-footer .site-info ul li {
  display: inline-block;
  margin: 0 10px 10px;
  color: #C5CAE9;
}

.site-footer .site-info ul li:last-child {
  margin-bottom: 0;
}

.site-footer .sitemap {
  display: none;
}

.site-footer #copyright {
  color: #fff;
}

.site-footer .area-info {
  background: #666;
  padding: 15px 0;
}

.site-footer .area-info .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer .area-info h2 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 10px;
  display: inline-block;
  margin: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.site-footer .area-info .slide-container {
  width: calc(100% - 105px);
}

.site-footer .area-info ul {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.site-footer .area-info ul li {
  margin: 0 5px;
}

.site-footer .area-info ul li a {
  color: #ddd;
  font-size: 15px;
  white-space: nowrap;
}

.site-footer .banner-area {
  background: #1976D2;
  padding: 15px 0 0;
}

.site-footer .banner-area .column {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.site-footer .banner-area .column h2 {
  width: 100%;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  margin-bottom: 10px;
}

.site-footer .banner-area .column a {
  display: block;
  width: 50%;
}

.site-footer .banner-area .column a img {
  vertical-align: bottom;
}

#footer-cta {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 6px 4% 6px 0;
  z-index: 2;
}

#footer-cta .footer-cta-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer-cta .footer-cta-inner p {
  margin: 0;
  width: 50%;
  padding-left: 4%;
}

#footer-cta .footer-cta-inner p a {
  padding: 10px 14px;
}

#copyright {
  padding-bottom: 56px;
  background-color: #002C4D;
}

#copyright p {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  margin: 0;
}

#footer-cta-pc {
  display: none;
}

@media screen and (min-width: 560px) {
  #footer-cta .btn-tel {
    display: none;
  }
  #footer-cta .btn-line {
    padding-left: 0;
  }
  .site-footer .area-info .slide-container {
    width: 300px;
  }
  .site-footer .banner-area .column {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-footer .banner-area .column a {
    width: auto;
  }
}

@media screen and (min-width: 1024px) {
  .site-footer .sitemap {
    display: block;
    background: #E6EAE6;
    color: #333333;
    text-align: left;
    padding: 50px 0;
    font-size: 14px;
  }
  .site-footer .sitemap .sitemap-inner {
    padding: 0 50px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .sitemap p {
    margin: 0 0 20px;
    font-weight: bold;
  }
  .site-footer .sitemap ul {
    margin: 0;
  }
  .site-footer .sitemap ul li {
    display: block;
    margin: 0 0 10px;
  }
  .site-footer .sitemap ul li:last-child {
    margin-bottom: 0;
  }
  .site-footer .banner-area {
    padding: 0;
  }
  .site-footer .banner-area .column {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .site-footer .banner-area .column h2 {
    display: none;
  }
  .site-footer .banner-area .column a {
    width: auto;
    -webkit-filter: brightness(1.1) contrast(0.9);
            filter: brightness(1.1) contrast(0.9);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .site-footer .banner-area .column a:hover {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-filter: brightness(1) contrast(1);
            filter: brightness(1) contrast(1);
  }
  #copyright {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1600px) {
  #footer-cta-pc {
    position: fixed;
    width: 220px;
    left: auto;
    bottom: 0;
    right: 0;
    background: none;
    padding: 0;
    display: block;
    z-index: 1000;
  }
  #footer-cta-pc .footer-cta-inner {
    display: none;
  }
  #footer-cta-pc .footer-cta-inner > div {
    margin: 10px 0;
  }
  #footer-cta-pc .footer-cta-inner > div a {
    opacity: .8;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    padding: 14px 12px;
    font-weight: bold;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #footer-cta-pc .footer-cta-inner > div a:hover {
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #footer-cta-pc .footer-cta-inner #pageTopPc a {
    width: 220px;
    border-radius: 0;
    background: #333333;
    position: relative;
    background: #333333;
    color: #fff;
  }
  #footer-cta-pc .footer-cta-inner #pageTopPc a i {
    position: absolute;
    top: 50%;
    left: 12px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #footer-cta-pc .footer-cta-inner .estimate a {
    background: #4DD0E1;
  }
  #footer-cta-pc .footer-cta-inner .estimate a:before {
    content: "";
    width: 18px;
    height: 24px;
    background: url(./images/icon-estimate.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #footer-cta-pc .footer-cta-inner .beginner a {
    background: #D4E157;
  }
  #footer-cta-pc .footer-cta-inner .beginner a:before {
    content: "";
    width: 18px;
    height: 24px;
    background: url(./images/beginner.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #footer-cta-pc .footer-cta-inner .mail a {
    padding: 0;
  }
  #footer-cta-pc .footer-cta-inner figure {
    margin: 0;
  }
  #footer-cta-pc .footer-cta-inner p {
    margin: 0;
    width: 50%;
    padding-left: 4%;
  }
  #footer-cta-pc .footer-cta-inner p a {
    padding: 10px 14px;
  }
}

.widget-area {
  margin-top: 59px;
}

.widget-area .widget-area-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.widget-area .widget {
  margin: 30px 0;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget ul.security {
  margin: 0;
}

.widget-area .widget ul.security li a {
  display: block;
  padding: 20px 40px 20px 7.4074074%;
  font-size: 14px;
  border-bottom: 1px dashed #ddd;
  margin-left: -7.4074074%;
  margin-right: -7.4074074%;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.widget-area .widget ul.security li a:before {
  content: "chevron_right";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget ul.security li a:hover {
  color: #999;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.widget-area .widget ul.security li:last-child a {
  border: none;
}

.widget-area .widget .review-block {
  background: #fff;
  margin: 15px 0;
  padding: 0 4.5%;
  margin-left: -7.4074074%;
  margin-right: -7.4074074%;
}

.widget-area .widget .review-block:first-child {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 15px;
}

.widget-area .widget .review-block .text {
  margin-bottom: 0;
}

.widget-area .widget .review-block p {
  font-size: 14px;
}

.widget-area .widget .review-block + P {
  margin: 0;
  padding: 0 0 30px;
}

.widget-area .widget .review-block + P a {
  text-decoration: underline;
}

.widget-area .widget .review-block + P a:hover {
  text-decoration: none;
}

.widget-area .widget_search {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}

/*--------------------------------------------------------------
# Templates
--------------------------------------------------------------*/
.home .site-main .service-area p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

.home .site-main .service-area p span {
  font-size: 13px;
}

.home .site-main .beginner-lg {
  display: none;
}

.home .site-main .fv {
  padding: 0;
}

.home .site-main .col2,
.home .site-main .col3,
.home .site-main .col4 {
  max-width: 350px;
}

.home .site-main .feature-area .catchcopy1 {
  max-width: 256px;
}

.home .site-main .column-area > div {
  margin-top: 30px;
}

.home .campaign {
  background-image: -webkit-gradient(linear, left top, right top, from(#fbc93b), to(#f7931e));
  background-image: -webkit-linear-gradient(left, #fbc93b, #f7931e);
  background-image: -o-linear-gradient(left, #fbc93b, #f7931e);
  background-image: linear-gradient(to right, #fbc93b, #f7931e);
  text-align: center;
  padding: 0 0 20px;
}

.home .campaign img {
  -webkit-animation: upDown 2s infinite ease;
          animation: upDown 2s infinite ease;
  margin-top: -40px;
}

.home .campaign .belongs-line {
  margin: 0;
  color: #fff;
  line-height: 1.5;
}

.home .campaign .belongs-line span {
  display: inline-block;
  margin: 0 5px;
}

.home .campaign .licence-line {
  margin: 10px auto 0;
  font-weight: bold;
  line-height: 2;
  background: #fff;
  padding: 15px;
  max-width: 680px;
}

.home .campaign .licence-line span {
  display: inline-block;
}

.home .campaign .licence-line .em {
  background: #c1272d;
  padding: 0 0.5em;
  margin-right: 0.25em;
  font-size: 1.2em;
  color: #fff;
}

.home .campaign .licence-line .lg {
  font-size: 1.4em;
  border-bottom: 3px solid #c1272d;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0.25em;
}

.home .campaign.sm-hide {
  display: none;
}

.home .media-lg {
  display: none;
}

@media screen and (min-width: 560px) {
  .home .site-main {
    overflow-x: hidden;
  }
  .home .site-main .intro .btn-beginner {
    margin-top: 0;
  }
  .home .site-main .secure-block .col2 {
    margin-bottom: 40px;
  }
  .home .site-main .feature-area .catchcopy1 {
    max-width: 400px;
  }
  .home .site-main .column-area > div {
    margin-top: 40px;
  }
  .home .site-main ul.works-list li:last-of-type {
    margin-bottom: 0;
  }
  .home .site-main ul.works-list li:nth-child(3) {
    margin-bottom: 0;
  }
  .home .single-column-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
  }
  .home .single-column-list li {
    width: 48%;
  }
  .home .single-column-list li:nth-child(even) {
    margin-left: 4%;
  }
  .home .campaign.md-hide {
    display: none;
  }
  .home .campaign.sm-hide {
    display: block;
    margin-top: 30px;
  }
  .home .media-sm {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .home .site-main .wrap {
    max-width: none;
  }
  .home .site-main section {
    padding: 30px 0;
  }
  .home .site-main .fv-container-lg {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .home .site-main .service-area {
    padding: 0;
  }
  .home .site-main .service-area p {
    margin: 30px 0;
  }
  .home .site-main .service-area p span {
    font-size: 18px;
  }
  .home .site-main .fv {
    -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
            flex-basis: 70%;
    max-width: 70%;
  }
  .home .site-main .intro {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
    padding: 2.6041666vw 0;
    margin-top: 0;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    height: 31.25vw;
    background: #F5F5F5;
  }
  .home .site-main .intro .btn-beginner {
    display: none;
  }
  .home .site-main .intro h2 {
    margin-top: 0;
    font-size: 1.25vw;
    margin-bottom: 1.5625vw;
  }
  .home .site-main .intro h2 .under-line {
    border-width: 8px;
  }
  .home .site-main .intro .trouble-block .col4 {
    margin-bottom: 0.7291666vw;
  }
  .home .site-main .beginner-lg {
    display: block;
    padding: 50px;
    background-color: #fff;
    background-image: -webkit-radial-gradient(#ddd 1px, transparent 1px);
    background-image: -o-radial-gradient(#ddd 1px, transparent 1px);
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: 0 0;
  }
  .home .site-main .beginner-lg p {
    margin: 0 auto;
  }
  .home .site-main .beginner-lg + section {
    padding-top: 0;
  }
  .home .site-main .beginner-lg + section h2 {
    margin-top: 0;
  }
  .home .site-main .secure-block {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .home .site-main .secure-block:before {
    content: "";
    width: 220px;
    height: 320px;
    background: url(./images/hero.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: -270px;
    bottom: 50px;
  }
  .home .site-main .secure-block:after {
    content: "";
    width: 220px;
    height: 236px;
    background: url(./images/arikui.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: -270px;
    bottom: 50px;
  }
  .home .site-main .secure-block .col2 {
    margin-bottom: 50px;
  }
  .home .site-main .feature-area {
    padding-bottom: 0;
  }
  .home .site-main .feature-area .col4 {
    max-width: 300px;
  }
  .home .site-main .feature-area figure {
    position: static;
    padding: 0;
  }
  .home .site-main .feature-area figure img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .home .site-main .column-area > div {
    margin-top: 50px;
  }
  .home .campaign.sm-hide {
    margin-top: 0;
    padding: 0 0 30px;
  }
  .home .campaign.sm-hide img {
    margin-top: -60px;
  }
  .home .campaign.sm-hide .belongs-line {
    font-size: 18px;
  }
  .home .campaign.sm-hide .licence-line {
    font-size: 18px;
  }
  .home .media-sm {
    display: none;
  }
  .home .media-lg {
    display: block;
  }
}

@media screen and (min-width: 1600px) {
  .feature-area {
    padding: 0;
  }
  .feature-area .wrap {
    padding: 0;
  }
  .feature-area .feature-block {
    background: #1976D2;
    padding: 50px 0;
    position: relative;
  }
  .feature-area .feature-block:before, .feature-area .feature-block:after {
    content: "";
    position: absolute;
    width: 570px;
    height: 100%;
    top: 0;
  }
  .feature-area .feature-block:before {
    left: 0;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(30%, rgba(25, 118, 210, 0)), color-stop(50%, #1764af), color-stop(50%, rgba(25, 118, 210, 0)));
    background: -webkit-linear-gradient(bottom left, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: -o-linear-gradient(bottom left, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: linear-gradient(to top right, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
  }
  .feature-area .feature-block:after {
    right: 0;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(30%, rgba(25, 118, 210, 0)), color-stop(50%, #1764af), color-stop(50%, rgba(25, 118, 210, 0)));
    background: -webkit-linear-gradient(top right, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: -o-linear-gradient(top right, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
    background: linear-gradient(to bottom left, rgba(25, 118, 210, 0) 30%, #1764af 50%, rgba(25, 118, 210, 0) 50%);
  }
  .feature-area .feature-block .col4 {
    background: #fff;
    padding: 20px 20px 60px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .feature-area .feature-block .col4 .btn-arrow {
    margin-bottom: 0;
    bottom: 20px;
    max-width: calc(100% - 40px);
  }
}

.single .site-main .entry-header {
  background: none;
  text-align: left;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.single .site-main .entry-header h1 {
  text-align: left;
  font-size: 20px;
  color: #1976D2;
}

.single .site-main .entry-header time {
  color: #999;
  font-size: 13px;
}

.single .site-main .entry-footer {
  padding: 5px 4%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.single .entry-content {
  padding-bottom: 30px !important;
}

.single .entry-content p {
  line-height: 2;
}

.single .nav-links,
.single .page-links {
  margin: 30px 0;
}

.single article.recent-post {
  padding: 0 4%;
  border-top: 1px solid #ddd;
}

@media screen and (min-width: 560px) {
  .single .site-main .entry-header h1 {
    font-size: 24px;
  }
  .single .site-main .entry-content {
    padding-bottom: 40px !important;
  }
}

@media screen and (min-width: 1024px) {
  .single .site-main .entry-header {
    padding-bottom: 40px;
  }
  .single .site-main .entry-header h1 {
    font-size: 32px;
  }
  .single .site-main .entry-content {
    padding-bottom: 50px !important;
  }
  .single .site-main .entry-footer {
    padding-top: 25px;
    border-bottom: none;
  }
  .single article.recent-post {
    padding: 50px 6.4102564% !important;
    border-top: none;
  }
  .single article.recent-post h3 {
    margin-top: 0;
    margin-bottom: 15px !important;
  }
  .single article.recent-post .btn-arrow {
    margin-bottom: 0;
  }
}

.page .site-main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page .entry-content {
  padding: 0 4%;
}

.page .review-block {
  background: #f5f5f5;
}

.site-main.full-screen, body.category-report .site-main {
  overflow-x: hidden;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: #fff;
}

.site-main.full-screen .content-area, body.category-report .site-main .content-area {
  width: 100%;
}

.site-main.full-screen .entry-content, body.category-report .site-main .entry-content {
  padding: 0;
}

@media screen and (min-width: 560px) {
  .site-main.full-screen h2.belt:first-of-type, body.category-report .site-main h2.belt:first-of-type {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .site-main.full-screen, body.category-report .site-main {
    padding-bottom: 0;
  }
}

.site-main.company-page .box {
  padding: 0;
}

.site-main.company-page figure.ceo-photo {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .site-main.company-page h2.belt {
    margin: 0;
  }
  .site-main.company-page h2.hero, .site-main.company-page h2.arikui {
    background: none;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #1976D2;
    padding: 0;
    margin: 50px auto;
    height: auto;
  }
  .site-main.company-page h2.hero:before, .site-main.company-page h2.arikui:before {
    content: "";
    width: 50px;
    height: 1px;
    background: #1976D2;
    left: 50%;
    top: auto;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .site-main.company-page .philosophy h2.hero,
  .site-main.company-page .philosophy h2.arikui,
  .site-main.company-page .greeting h2.hero,
  .site-main.company-page .greeting h2.arikui {
    background: #1976D2;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
    width: 200px;
    height: 200px;
    padding: 30px;
    position: absolute;
    margin: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .site-main.company-page .philosophy h2.hero:before,
  .site-main.company-page .philosophy h2.arikui:before,
  .site-main.company-page .greeting h2.hero:before,
  .site-main.company-page .greeting h2.arikui:before {
    content: "";
    width: 50px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .site-main.company-page .philosophy-area {
    width: 100%;
    background: url(./images/company-img.png) no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  .site-main.company-page .philosophy-area:before {
    content: '';
    background: inherit;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
  }
  .site-main.company-page .philosophy-area .wrap {
    padding: 150px 100px 100px;
  }
  .site-main.company-page .philosophy {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .site-main.company-page .philosophy .hero {
    left: -100px;
    top: -100px;
  }
  .site-main.company-page .philosophy .box {
    padding: 80px;
    background: #fff;
  }
  .site-main.company-page .philosophy .box p {
    margin: 0;
    font-size: 24px;
  }
  .site-main.company-page .greeting {
    background: #f5f5f5;
  }
  .site-main.company-page .greeting .wrap {
    padding: 100px;
    max-width: 1000px;
    position: relative;
  }
  .site-main.company-page .greeting figure.ceo-photo {
    width: 250px;
    position: absolute;
    margin: 0;
    left: 0;
    top: 50px;
  }
  .site-main.company-page .greeting .arikui {
    right: 0;
    top: -50px;
  }
  .site-main.company-page .greeting .box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 80px 200px;
  }
  .site-main.company-page .greeting .box p {
    margin: 0;
  }
  .site-main.company-page .company-outline-area {
    background: #f5f5f5;
    content: "";
    display: table;
    table-layout: fixed;
    clear: both;
    width: 100%;
  }
}

.site-main.management-page .management-blocks .box {
  padding: 0;
}

@media screen and (min-width: 560px) {
  .site-main.management-page h2.belt {
    margin-bottom: 0;
  }
  .site-main.management-page .full-screen-img {
    width: 100%;
    position: relative;
    padding-top: 35%;
    background: url(./images/management-img.png) no-repeat center center;
    background-size: cover;
  }
  .site-main.management-page .full-screen-img + section {
    margin-top: -100px;
  }
  .site-main.management-page .management-blocks {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 40px 0;
  }
  .site-main.management-page .management-blocks h2 {
    width: 100%;
    margin: 0 0 40px;
  }
  .site-main.management-page .management-blocks figure.long-sideways {
    position: static;
    padding: 0;
    width: 42%;
    height: auto;
    margin: 0;
  }
  .site-main.management-page .management-blocks figure.long-sideways img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .site-main.management-page .management-blocks .box {
    max-width: calc(58% - 30px);
    margin: 0;
  }
  .site-main.management-page .management-blocks .box p {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .site-main.management-page .full-screen-img {
    height: 360px;
    padding: 0;
  }
  .site-main.management-page .full-screen-img + section {
    margin-top: -150px;
  }
  .site-main.management-page .manner,
  .site-main.management-page .training {
    background: #f5f5f5;
    padding-bottom: 290px;
  }
  .site-main.management-page .manner .box,
  .site-main.management-page .training .box {
    background: #fff;
    padding: 130px 150px 100px;
  }
  .site-main.management-page .manner .box:after,
  .site-main.management-page .training .box:after {
    font-family: 'Roboto', sans-serif;
    font-weight: 100 !important;
    font-size: 150px;
    color: #fff;
    position: absolute;
    left: -150px;
    bottom: -200px;
  }
  .site-main.management-page .manner figure,
  .site-main.management-page .training figure {
    right: -30px;
    bottom: -210px;
  }
  .site-main.management-page .manner h2,
  .site-main.management-page .training h2 {
    left: 150px;
    top: 85px;
  }
  .site-main.management-page .etiquette,
  .site-main.management-page .security {
    padding-bottom: 280px;
  }
  .site-main.management-page .etiquette .box,
  .site-main.management-page .security .box {
    background: #f5f5f5;
    padding: 130px 150px 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-main.management-page .etiquette .box:after,
  .site-main.management-page .security .box:after {
    font-family: 'Roboto', sans-serif;
    font-weight: 100 !important;
    font-size: 150px;
    color: #f5f5f5;
    position: absolute;
    left: 365px;
    bottom: -200px;
  }
  .site-main.management-page .etiquette figure,
  .site-main.management-page .security figure {
    left: -30px;
    bottom: -200px;
  }
  .site-main.management-page .etiquette h2,
  .site-main.management-page .security h2 {
    left: 50%;
    top: 85px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .site-main.management-page .manner .box:before {
    content: "01";
  }
  .site-main.management-page .manner .box:after {
    content: "Manner";
  }
  .site-main.management-page .etiquette .box:before {
    content: "02";
  }
  .site-main.management-page .etiquette .box:after {
    content: "Etiquette";
  }
  .site-main.management-page .training .box:before {
    content: "03";
  }
  .site-main.management-page .training .box:after {
    content: "Training";
  }
  .site-main.management-page .security .box {
    padding-top: 180px;
  }
  .site-main.management-page .security .box:before {
    content: "04";
  }
  .site-main.management-page .security .box:after {
    content: "Security";
  }
  .site-main.management-page .management-blocks {
    display: block;
    position: relative;
    margin: 0;
  }
  .site-main.management-page .management-blocks .box {
    max-width: 800px;
    position: relative;
  }
  .site-main.management-page .management-blocks .box:before {
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    color: #1976D2;
    position: absolute;
    top: -10px;
    left: 30px;
  }
  .site-main.management-page .management-blocks .box p {
    margin: 0;
  }
  .site-main.management-page .management-blocks h2 {
    background: none;
    color: #333333;
    text-align: center;
    font-size: 20px;
    padding: 0;
    position: absolute;
    z-index: 1;
    width: 500px;
    margin: 0;
  }
  .site-main.management-page .management-blocks h2 span {
    display: none;
  }
  .site-main.management-page .management-blocks figure.long-sideways {
    position: absolute;
    width: auto;
    z-index: 2;
  }
}

.page-template-default .site-main,
.single-post .site-main,
.archive .site-main,
.search .site-main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-template-default .entry-content,
.single-post .entry-content,
.archive .entry-content,
.search .entry-content {
  padding: 0 4%;
}

.page-template-default .entry-content h2.belt,
.single-post .entry-content h2.belt,
.archive .entry-content h2.belt,
.search .entry-content h2.belt {
  position: static;
  margin-left: 0;
  margin-right: 0;
}

.page-template-default .entry-content h2.belt:before,
.single-post .entry-content h2.belt:before,
.archive .entry-content h2.belt:before,
.search .entry-content h2.belt:before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .page-template-default .site-content,
  .single-post .site-content,
  .archive .site-content,
  .search .site-content {
    background: #ECEFF1;
  }
  .page-template-default .breadcrumbs,
  .single-post .breadcrumbs,
  .archive .breadcrumbs,
  .search .breadcrumbs {
    padding: 20px 0;
  }
  .page-template-default .site-main,
  .single-post .site-main,
  .archive .site-main,
  .search .site-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 2.6041666vw 100px;
  }
  .page-template-default .site-main .entry-content,
  .single-post .site-main .entry-content,
  .archive .site-main .entry-content,
  .search .site-main .entry-content {
    padding: 0 6.4102564%;
  }
  .page-template-default .site-main .entry-title,
  .single-post .site-main .entry-title,
  .archive .site-main .entry-title,
  .search .site-main .entry-title {
    font-size: 32px;
  }
  .page-template-default .site-main article,
  .single-post .site-main article,
  .archive .site-main article,
  .search .site-main article {
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
    padding-bottom: 50px;
  }
  .page-template-default .site-main article h3,
  .single-post .site-main article h3,
  .archive .site-main article h3,
  .search .site-main article h3 {
    margin-bottom: 30px;
  }
  .page-template-default .site-main article h3 + p,
  .single-post .site-main article h3 + p,
  .archive .site-main article h3 + p,
  .search .site-main article h3 + p {
    margin-top: 30px;
  }
  .page-template-default .site-main article h3 + table,
  .single-post .site-main article h3 + table,
  .archive .site-main article h3 + table,
  .search .site-main article h3 + table {
    margin-top: 30px;
  }
  .page-template-default .site-main article h2,
  .single-post .site-main article h2,
  .archive .site-main article h2,
  .search .site-main article h2 {
    font-size: 24px;
  }
  .page-template-default .site-main article h1.hero,
  .page-template-default .site-main article h2.hero,
  .page-template-default .site-main article h3.hero,
  .page-template-default .site-main article h1.arikui,
  .page-template-default .site-main article h2.arikui,
  .page-template-default .site-main article h3.arikui,
  .single-post .site-main article h1.hero,
  .single-post .site-main article h2.hero,
  .single-post .site-main article h3.hero,
  .single-post .site-main article h1.arikui,
  .single-post .site-main article h2.arikui,
  .single-post .site-main article h3.arikui,
  .archive .site-main article h1.hero,
  .archive .site-main article h2.hero,
  .archive .site-main article h3.hero,
  .archive .site-main article h1.arikui,
  .archive .site-main article h2.arikui,
  .archive .site-main article h3.arikui,
  .search .site-main article h1.hero,
  .search .site-main article h2.hero,
  .search .site-main article h3.hero,
  .search .site-main article h1.arikui,
  .search .site-main article h2.arikui,
  .search .site-main article h3.arikui {
    max-width: 450px;
    margin: 60px auto;
    min-height: 110px;
  }
  .page-template-default .site-main .content-area,
  .single-post .site-main .content-area,
  .archive .site-main .content-area,
  .search .site-main .content-area {
    width: 70.9090909%;
  }
  .page-template-default .site-main .widget-area,
  .single-post .site-main .widget-area,
  .archive .site-main .widget-area,
  .search .site-main .widget-area {
    width: 24.5454545%;
  }
  .page-template-default .nav-links,
  .page-template-default .page-links,
  .single-post .nav-links,
  .single-post .page-links,
  .archive .nav-links,
  .archive .page-links,
  .search .nav-links,
  .search .page-links {
    margin: 50px 0;
  }
}

.archive .site-main article,
.search .site-main article {
  border-top: 1px dotted #ddd;
}

.archive .site-main article:first-child,
.search .site-main article:first-child {
  border-top: none;
}

.archive .site-main .link-area,
.search .site-main .link-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

.archive .site-main .link-area figure,
.search .site-main .link-area figure {
  width: 30%;
  height: 0;
  margin: 0;
  position: relative;
  padding-top: 30%;
  overflow: hidden;
}

.archive .site-main .link-area figure img,
.search .site-main .link-area figure img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
}

.archive .site-main .link-area .text,
.search .site-main .link-area .text {
  width: 65%;
}

.archive .site-main .link-area .text time,
.search .site-main .link-area .text time {
  font-size: 13px;
}

.archive .site-main .link-area .text h2,
.search .site-main .link-area .text h2 {
  font-size: 16px;
  text-align: left;
  margin: 0 0 10px;
}

.archive .site-main .link-area .text .discription,
.search .site-main .link-area .text .discription {
  font-size: 14px;
  margin: 10px 0;
}

.archive .site-main .link-area .text .more,
.search .site-main .link-area .text .more {
  margin-bottom: 0;
  display: none;
}

.archive .site-main .nav-links,
.search .site-main .nav-links {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  margin: 50px 0;
}

@media screen and (min-width: 1024px) {
  .archive .site-main .link-area .text .more,
  .search .site-main .link-area .text .more {
    display: block;
  }
  .archive .site-main .nav-links,
  .search .site-main .nav-links {
    margin: 50px 0;
  }
}

body.post-type-archive-review .site-content {
  background-color: transparent;
}

body.post-type-archive-review .site-content .content-wrap {
  padding: 0;
}

body.post-type-archive-review .site-main {
  background-color: transparent;
  max-width: none;
  padding: 0;
}

body.post-type-archive-review .site-main .content-area {
  width: 100%;
}

body.post-type-archive-review .site-main article {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border-top: none;
  background: #f5f5f5;
  padding-bottom: 20px;
  margin-bottom: 30px;
  padding: 4.347826% 4.347826% 20px;
}

body.post-type-archive-review .site-main article:last-child {
  margin-bottom: 0;
}

body.post-type-archive-review .site-main article .work-sheet figure {
  margin: 0;
}

body.post-type-archive-review .site-main article .review-block {
  margin-top: 20px;
  margin-bottom: 0;
}

body.post-type-archive-review .site-main article .balloon-small {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  margin-bottom: 20px;
}

body.post-type-archive-review .site-main article .company-comment {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
}

body.post-type-archive-review .site-main article .company-comment p {
  margin: 0;
}

body.post-type-archive-review .stripe-bg {
  background: none;
}

@media screen and (min-width: 560px) {
  body.post-type-archive-review .stripe-bg {
    background-image: url(./images/stripe-bg.svg);
    background-size: 20px 20px;
  }
  body.post-type-archive-review .site-main article {
    padding: 30px;
    margin-bottom: 40px;
  }
  body.post-type-archive-review .site-main article:last-child {
    margin-bottom: 40px;
  }
  body.post-type-archive-review .site-main article .review-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  body.post-type-archive-review .site-main article .review-container .work-sheet {
    -webkit-flex-basis: calc(50% - 20px);
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
    max-width: 300px;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  body.post-type-archive-review .site-main article .review-container .work-sheet figure {
    margin: 0;
    position: static;
    padding: 0;
  }
  body.post-type-archive-review .site-main article .review-container .work-sheet figure img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  body.post-type-archive-review .site-main article .review-container .review-block {
    padding: 0;
    -webkit-flex-basis: calc(50% - 20px);
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 0;
    margin-left: 40px;
  }
  body.post-type-archive-review .site-main article .review-container .balloon-small {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
  body.post-type-archive-review .site-main article .review-container .company-comment {
    width: 100%;
    margin: 0;
    padding: 30px;
  }
  body.post-type-archive-review .site-main article .review-container .company-comment p {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  body.post-type-archive-review .site-main .breadcrumbs {
    padding: 20px 2.6041666vw;
  }
  body.post-type-archive-review .site-main article {
    margin-bottom: 50px;
  }
  body.post-type-archive-review .site-main article:last-child {
    margin-bottom: 50px;
  }
  body.post-type-archive-review .site-main article .review-container {
    padding: 50px;
    margin: 0;
    width: 100%;
  }
  body.post-type-archive-review .site-main article .review-container:before, body.post-type-archive-review .site-main article .review-container:after {
    content: none;
  }
  body.post-type-archive-review .site-main article .review-container .review-block {
    padding: 0;
    -webkit-flex-basis: calc(100% - 350px);
        -ms-flex-preferred-size: calc(100% - 350px);
            flex-basis: calc(100% - 350px);
    max-width: calc(100% - 350px);
    margin: 0;
    margin-left: 50px;
  }
  body.post-type-archive-review .site-main article .review-container .balloon-small {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
  body.post-type-archive-review .site-main article .review-container .company-comment {
    width: 100%;
    margin: 0;
    padding: 30px;
  }
  body.post-type-archive-review .site-main article .review-container .company-comment p {
    margin: 0;
  }
}

.error-440 .search-form, .not-found .search-form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
