/*!
Theme Name: THAT'S ALL RIGHT
Theme URI: http://underscores.me/
Author: INNOCENT INC.
Author URI: http://www.innocent.ne.jp/
Description: THAT'S ALL RIGHT Wordpress Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: thatsallright
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.

THAT'S ALL RIGHT is based on Underscores http://underscores.me/, (C) 2012-2016 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 http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

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

*::-moz-selection {
  background-color: yellow;
}

*::selection {
  background-color: yellow;
}

/* html */
html {
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

/* body */
body {
  overflow-x: hidden;
  background-color: white;
  font-family: sans-serif;
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.6;
  color: black;
}

section + section {
  margin-top: 12em;
}

.site {
  width: 100%;
  max-width: 100em;
  margin: 0 auto;
}

.wrapper {
  position: relative;
}
.wrapper:after {
  clear: both;
  content: "";
  display: table;
}

/* blockquote */
blockquote {
  border-left: 0.3rem solid #e0e0e0;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}
blockquote *:last-child {
  margin-bottom: 0;
}

/* button */
.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  position: relative;
  background-color: transparent;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  border: 1px solid black;
  padding: 1em 3rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-appearance: none;
}
.button .label,
button .label,
input[type=button] .label,
input[type=reset] .label,
input[type=submit] .label {
  position: relative;
}
.button:before,
button:before,
input[type=button]:before,
input[type=reset]:before,
input[type=submit]:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #3d3d3d;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button:focus, .button:hover,
button:focus,
button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:focus,
input[type=submit]:hover {
  background-color: transparent;
  border-color: #3d3d3d;
  color: #3d3d3d;
}
.button:focus .label, .button:hover .label,
button:focus .label,
button:hover .label,
input[type=button]:focus .label,
input[type=button]:hover .label,
input[type=reset]:focus .label,
input[type=reset]:hover .label,
input[type=submit]:focus .label,
input[type=submit]:hover .label {
  color: white;
}
.button:focus:before, .button:hover:before,
button:focus:before,
button:hover:before,
input[type=button]:focus:before,
input[type=button]:hover:before,
input[type=reset]:focus:before,
input[type=reset]:hover:before,
input[type=submit]:focus:before,
input[type=submit]:hover:before {
  top: 0;
  height: 100%;
}
.button[disabled],
button[disabled],
input[type=button][disabled],
input[type=reset][disabled],
input[type=submit][disabled] {
  cursor: default;
  opacity: 0.25;
}
.button[disabled]:focus, .button[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type=button][disabled]:focus,
input[type=button][disabled]:hover,
input[type=reset][disabled]:focus,
input[type=reset][disabled]:hover,
input[type=submit][disabled]:focus,
input[type=submit][disabled]:hover {
  border-color: inherit;
  color: black;
}
.button.button-fill,
button.button-fill,
input[type=button].button-fill,
input[type=reset].button-fill,
input[type=submit].button-fill {
  border: 0;
  background-color: black;
  color: white;
}
.button.button-fill:focus, .button.button-fill:hover,
button.button-fill:focus,
button.button-fill:hover,
input[type=button].button-fill:focus,
input[type=button].button-fill:hover,
input[type=reset].button-fill:focus,
input[type=reset].button-fill:hover,
input[type=submit].button-fill:focus,
input[type=submit].button-fill:hover {
  background-color: #3d3d3d;
  border-color: #3d3d3d;
  color: white;
  outline: 0;
}
.button.button-fill[disabled]:focus, .button.button-fill[disabled]:hover,
button.button-fill[disabled]:focus,
button.button-fill[disabled]:hover,
input[type=button].button-fill[disabled]:focus,
input[type=button].button-fill[disabled]:hover,
input[type=reset].button-fill[disabled]:focus,
input[type=reset].button-fill[disabled]:hover,
input[type=submit].button-fill[disabled]:focus,
input[type=submit].button-fill[disabled]:hover {
  background-color: black;
  border-color: black;
}
.button.button-clear,
button.button-clear,
input[type=button].button-clear,
input[type=reset].button-clear,
input[type=submit].button-clear {
  background-color: transparent;
  border-color: transparent;
  color: black;
}
.button.button-clear:focus, .button.button-clear:hover,
button.button-clear:focus,
button.button-clear:hover,
input[type=button].button-clear:focus,
input[type=button].button-clear:hover,
input[type=reset].button-clear:focus,
input[type=reset].button-clear:hover,
input[type=submit].button-clear:focus,
input[type=submit].button-clear:hover {
  background-color: transparent;
  border-color: transparent;
  color: #3d3d3d;
}
.button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
button.button-clear[disabled]:focus,
button.button-clear[disabled]:hover,
input[type=button].button-clear[disabled]:focus,
input[type=button].button-clear[disabled]:hover,
input[type=reset].button-clear[disabled]:focus,
input[type=reset].button-clear[disabled]:hover,
input[type=submit].button-clear[disabled]:focus,
input[type=submit].button-clear[disabled]:hover {
  color: black;
}
.button.icon,
button.icon,
input[type=button].icon,
input[type=reset].icon,
input[type=submit].icon {
  position: relative;
  padding-right: 4em;
}
.button.icon:after,
button.icon:after,
input[type=button].icon:after,
input[type=reset].icon:after,
input[type=submit].icon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(images/ico_arrow-w32_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.button.icon.button-fill:after,
button.icon.button-fill:after,
input[type=button].icon.button-fill:after,
input[type=reset].icon.button-fill:after,
input[type=submit].icon.button-fill:after {
  background-image: url(images/ico_arrow-w32_02.svg);
}
.button:hover:after,
button:hover:after,
input[type=button]:hover:after,
input[type=reset]:hover:after,
input[type=submit]:hover:after {
  background-image: url(images/ico_arrow-w32_02.svg);
}
.button:hover.button-fill:after,
button:hover.button-fill:after,
input[type=button]:hover.button-fill:after,
input[type=reset]:hover.button-fill:after,
input[type=submit]:hover.button-fill:after {
  background-image: url(images/ico_arrow-w32_01.svg);
}

/* code elements */
code {
  background: yellow;
  border-radius: 0.4rem;
  font-size: 86%;
  margin: 0 0.2rem;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

pre {
  background: yellow;
  border-left: 0.3rem solid black;
  overflow-y: hidden;
}
pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

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

/* copy elements */
b, strong {
  font-weight: bold;
}

p {
  margin-bottom: 1.5em;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  font-style: normal;
}

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

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

big {
  font-size: 125%;
}

time {
  color: #a3a3a3;
}

/* divider */
hr {
  border: 0;
  border-top: 0.1rem solid yellow;
  margin: 3rem 0;
}

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

/* form elements */
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input:not([type]),
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0.1rem solid #e0e0e0;
  border-radius: 0.3rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem;
  width: 100%;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
  border-color: #a3a3a3;
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%23d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 3rem;
}
select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%239b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

/* heading */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  margin-bottom: 2rem;
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -0.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

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

/* link */
a {
  color: black;
}
a:focus, a:hover {
  color: #3d3d3d;
}
a.link-text {
  color: #a3a3a3;
  display: inline-block;
  position: relative;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.link-text:focus, a.link-text:hover {
  background-color: yellow;
  color: #3d3d3d;
}
a.link-icon {
  display: inline-block;
}
a.link-icon:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-image: url(images/ico_arrow-w32_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
a.link-icon.pin:before {
  background-image: url(images/ico_pin_01.svg);
}
a.link-icon.website:before {
  background-image: url(images/ico_website_01.svg);
}
a.td-none {
  text-decoration: none;
}
a.hover-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
a.hover-link .title-text {
  position: relative;
}
a.hover-link:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.5em;
  left: -1em;
  width: 0;
  height: calc(100% + 1em);
  background-color: yellow;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a.hover-link:hover:before {
  width: calc(100% + 2em);
}

/* list */
dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}
dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal outside;
}

ul {
  list-style: circle outside;
}

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

.meta-list {
  margin: 0;
}
.meta-list li {
  margin-bottom: 0;
}

dl dt {
  font-weight: bold;
}

/* spacing */
.button,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

/* table */
table {
  border-spacing: 0;
  width: 100%;
  border-top: 0.1rem solid #e0e0e0;
}
table td,
table th {
  border-bottom: 0.1rem solid #e0e0e0;
  padding: 1.5em 1em 0.5em 1em;
  text-align: left;
  vertical-align: text-top;
}
table td:first-child,
table th:first-child {
  padding-left: 0;
}
table td:last-child,
table th:last-child {
  padding-right: 0;
}
table th {
  white-space: nowrap;
}
table td > * {
  margin-top: 0;
  margin-bottom: 1em;
}
table.none-border {
  border-top: 0;
}
table.none-border td,
table.none-border th {
  border-bottom: 0;
}
@media (max-width: 45em) {
  table.sp-row th,
  table.sp-row td {
    display: block;
    width: 100%;
    padding: 0 0 0.5em 0;
  }
  table.sp-row th {
    font-size: 1.25em;
  }
}

/*--------------------------------------------------------------
# Modules
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #e0e0e0;
  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;
  color: #e0e0e0;
  display: block;
  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;
}

/* accordion */
.accordion {
  overflow: hidden;
  border: 1px solid #e0e0e0;
  padding: 1em;
}
.accordion .accordion-trigger {
  position: relative;
  padding-right: 2em;
}
.accordion .accordion-trigger:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 1em;
  height: 1em;
  background-image: url(../images/common/ico_triangle_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.accordion .accordion-trigger.open:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion .accordion-target {
  display: none;
}

/* accordion: hover */
.isnt-touch .accordion .accordion-trigger:hover {
  cursor: pointer;
  color: #3d3d3d;
}

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

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

.grid-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  width: 100%;
}
.row.row-no-padding {
  padding: 0;
}
.row.row-no-padding > .column {
  padding: 0;
}
.row.row-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row.row-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.row.row-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.row.row-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row.row-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.row-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.row .column {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.row .column.column-offset-10 {
  margin-left: 10%;
}
.row .column.column-offset-20 {
  margin-left: 20%;
}
.row .column.column-offset-25 {
  margin-left: 25%;
}
.row .column.column-offset-33, .row .column.column-offset-34 {
  margin-left: 33.3333%;
}
.row .column.column-offset-50 {
  margin-left: 50%;
}
.row .column.column-offset-66, .row .column.column-offset-67 {
  margin-left: 66.6666%;
}
.row .column.column-offset-75 {
  margin-left: 75%;
}
.row .column.column-offset-80 {
  margin-left: 80%;
}
.row .column.column-offset-90 {
  margin-left: 90%;
}
.row .column.column-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
  max-width: 10%;
}
.row .column.column-20 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}
.row .column.column-25 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
.row .column.column-33, .row .column.column-34 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.row .column.column-40 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
}
.row .column.column-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.row .column.column-60 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  max-width: 60%;
}
.row .column.column-66, .row .column.column-67 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666%;
          flex: 0 0 66.6666%;
  max-width: 66.6666%;
}
.row .column.column-75 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}
.row .column.column-80 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  max-width: 80%;
}
.row .column.column-90 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90%;
          flex: 0 0 90%;
  max-width: 90%;
}
.row .column .column-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.row .column .column-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.row .column .column-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 45em) {
  .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1rem;
  }
}
/* hover-image */
.hover-image {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: black;
}
.hover-image img {
  vertical-align: bottom;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.hover-image:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background-image: url(images/ico_arrow-w32_02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

a:hover .hover-image img {
  opacity: 0.6;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
a:hover .hover-image:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}

/* hover-icon */
.hover-icon {
  display: inline-block;
  position: relative;
}
.hover-icon img {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

a:hover .hover-icon img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

/* max-width */
.w-5p {
  width: 5%;
}

.w-10p {
  width: 10%;
}

.w-15p {
  width: 15%;
}

.w-20p {
  width: 20%;
}

.w-25p {
  width: 25%;
}

.w-30p {
  width: 30%;
}

.w-35p {
  width: 35%;
}

.w-40p {
  width: 40%;
}

.w-45p {
  width: 45%;
}

.w-50p {
  width: 50%;
}

.w-55p {
  width: 55%;
}

.w-60p {
  width: 60%;
}

.w-65p {
  width: 65%;
}

.w-70p {
  width: 70%;
}

.w-75p {
  width: 75%;
}

.w-80p {
  width: 80%;
}

.w-85p {
  width: 85%;
}

.w-90p {
  width: 90%;
}

.w-95p {
  width: 95%;
}

.w-100p {
  width: 100%;
}

/* margin: auto */
.m-auto {
  margin: auto;
}

/* margin: reset */
.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

/* margin: top (em) */
.mt-1em {
  margin-top: 1em;
}

.mt-2em {
  margin-top: 2em;
}

.mt-3em {
  margin-top: 3em;
}

.mt-4em {
  margin-top: 4em;
}

.mt-5em {
  margin-top: 5em;
}

.mt-6em {
  margin-top: 6em;
}

.mt-7em {
  margin-top: 7em;
}

.mt-8em {
  margin-top: 8em;
}

.mt-9em {
  margin-top: 9em;
}

.mt-10em {
  margin-top: 10em;
}

/* margin: right (em) */
.mr-1em {
  margin-right: 1em;
}

.mr-2em {
  margin-right: 2em;
}

.mr-3em {
  margin-right: 3em;
}

.mr-4em {
  margin-right: 4em;
}

.mr-5em {
  margin-right: 5em;
}

.mr-6em {
  margin-right: 6em;
}

.mr-7em {
  margin-right: 7em;
}

.mr-8em {
  margin-right: 8em;
}

.mr-9em {
  margin-right: 9em;
}

.mr-10em {
  margin-right: 10em;
}

/* margin: bottom (em) */
.mb-1em {
  margin-bottom: 1em;
}

.mb-2em {
  margin-bottom: 2em;
}

.mb-3em {
  margin-bottom: 3em;
}

.mb-4em {
  margin-bottom: 4em;
}

.mb-5em {
  margin-bottom: 5em;
}

.mb-6em {
  margin-bottom: 6em;
}

.mb-7em {
  margin-bottom: 7em;
}

.mb-8em {
  margin-bottom: 8em;
}

.mb-9em {
  margin-bottom: 9em;
}

.mb-10em {
  margin-bottom: 10em;
}

/* margin: left (em) */
.ml-1em {
  margin-left: 1em;
}

.ml-2em {
  margin-left: 2em;
}

.ml-3em {
  margin-left: 3em;
}

.ml-4em {
  margin-left: 4em;
}

.ml-5em {
  margin-left: 5em;
}

.ml-6em {
  margin-left: 6em;
}

.ml-7em {
  margin-left: 7em;
}

.ml-8em {
  margin-left: 8em;
}

.ml-9em {
  margin-left: 9em;
}

.ml-10em {
  margin-left: 10em;
}

/* margin: right (%) */
.mr-5p {
  margin-right: 5%;
}

.mr-10p {
  margin-right: 10%;
}

.mr-15p {
  margin-right: 15%;
}

.mr-20p {
  margin-right: 20%;
}

.mr-25p {
  margin-right: 25%;
}

.mr-30p {
  margin-right: 30%;
}

.mr-35p {
  margin-right: 35%;
}

.mr-40p {
  margin-right: 40%;
}

.mr-45p {
  margin-right: 45%;
}

.mr-50p {
  margin-right: 50%;
}

.mr-55p {
  margin-right: 55%;
}

.mr-60p {
  margin-right: 60%;
}

.mr-65p {
  margin-right: 65%;
}

.mr-70p {
  margin-right: 70%;
}

.mr-75p {
  margin-right: 75%;
}

.mr-80p {
  margin-right: 80%;
}

.mr-85p {
  margin-right: 85%;
}

.mr-90p {
  margin-right: 90%;
}

.mr-95p {
  margin-right: 95%;
}

.mr-100p {
  margin-right: 100%;
}

/* margin: left (%) */
.ml-5p {
  margin-left: 5%;
}

.ml-10p {
  margin-left: 10%;
}

.ml-15p {
  margin-left: 15%;
}

.ml-20p {
  margin-left: 20%;
}

.ml-25p {
  margin-left: 25%;
}

.ml-30p {
  margin-left: 30%;
}

.ml-35p {
  margin-left: 35%;
}

.ml-40p {
  margin-left: 40%;
}

.ml-45p {
  margin-left: 45%;
}

.ml-50p {
  margin-left: 50%;
}

.ml-55p {
  margin-left: 55%;
}

.ml-60p {
  margin-left: 60%;
}

.ml-65p {
  margin-left: 65%;
}

.ml-70p {
  margin-left: 70%;
}

.ml-75p {
  margin-left: 75%;
}

.ml-80p {
  margin-left: 80%;
}

.ml-85p {
  margin-left: 85%;
}

.ml-90p {
  margin-left: 90%;
}

.ml-95p {
  margin-left: 95%;
}

.ml-100p {
  margin-left: 100%;
}

/* os-item */
.os-item {
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.os-item.on-screen {
  opacity: 1;
}
.os-item.top-in {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
.os-item.top-in.on-screen {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.os-item.bottom-in {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.os-item.bottom-in.on-screen {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.os-item.right-in {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.os-item.right-in.on-screen {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.os-item.left-in {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
.os-item.left-in.on-screen {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.os-item.image-in {
  position: relative;
  overflow: hidden;
}
.os-item.image-in:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.os-item.image-in.on-screen:after {
  width: 0;
}

/* sp-brake */
.sp-brake {
  display: none;
}

@media screen and (max-width: 45em) {
  .sp-brake {
    display: inline;
  }
}
.pc-brake {
  display: inline;
}

@media screen and (max-width: 45em) {
  .pc-brake {
    display: none;
  }
}
/*--------------------------------------------------------------
# Design
--------------------------------------------------------------*/
/* site-header */
.site-header {
  position: relative;
  width: 100%;
  height: 15em;
}

@media screen and (max-width: 45em) {
  .site-header {
    height: 10em;
  }
}
/* site-branding */
.site-branding {
  position: absolute;
  top: 4.5em;
  left: 10%;
}

@media screen and (max-width: 45em) {
  .site-branding {
    top: 3em;
  }
}
/* site-header */
.site-footer {
  padding: 12em 0 4em;
  margin-left: 10%;
}
.site-footer .sns-share {
  width: 20em;
  float: left;
}
.site-footer .site-navigation {
  width: 10em;
  float: left;
}
.site-footer .address {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 45em) {
  .site-footer {
    margin: 0;
    padding: 12em 10% 4em;
  }
  .site-footer .sns-share {
    width: auto;
    float: none;
  }
  .site-footer .site-navigation {
    display: none;
    width: auto;
    float: none;
    margin-top: 4em;
  }
  .site-footer .site-navigation + .site-navigation {
    display: block;
  }
  .site-footer .address {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 4em;
  }
}
.sns-share:after {
  clear: both;
  content: "";
  display: table;
}
.sns-share > * {
  display: inline-block;
  float: left;
}
.sns-share > * + * {
  margin-left: 1em;
}
.sns-share > * a {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.sns-share > * a:hover {
  cursor: pointer;
  opacity: 0.5;
}
.sns-share .line a {
  background-image: url("images/ico_line_01.svg");
}
.sns-share .twitter a {
  background-image: url("images/ico_twitter_01.svg");
}
.sns-share .facebook a {
  background-image: url("images/ico_facebook_01.svg");
}
.sns-share .google-plus a {
  background-image: url("images/ico_google-plus_01.svg");
}
.sns-share .pinterest a {
  background-image: url("images/ico_pinterest_01.svg");
}
.sns-share .tumblr a {
  background-image: url("images/ico_tumblr_01.svg");
}

.address {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.copyright {
  margin-top: 4em;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* site-navigation */
.site-navigation .menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.site-navigation .menu .menu-item {
  position: relative;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
.site-navigation a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #ccc;
}
.site-navigation a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: yellow;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.site-navigation a:hover {
  color: black;
}
.site-navigation a:hover:after {
  left: 0;
  width: 100%;
}
.site-navigation .current_page_item > a,
.site-navigation .current-menu-item > a,
.site-navigation .current_page_ancestor > a,
.site-navigation .current-menu-ancestor > a {
  color: black;
}
.site-navigation .current_page_item > a:after,
.site-navigation .current-menu-item > a:after,
.site-navigation .current_page_ancestor > a:after,
.site-navigation .current-menu-ancestor > a:after {
  left: 0;
  width: 100%;
}

/* bogo-language-switcher */
.bogo-language-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  float: right;
  margin-left: 4em;
}
.bogo-language-switcher.untranslated {
  display: none;
}
.bogo-language-switcher li {
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ccc;
}
.bogo-language-switcher li.current {
  color: black;
}
.bogo-language-switcher .ja {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.bogo-language-switcher .en {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 1em;
}

/* header-navi */
.header-navi {
  position: absolute;
  top: 4.5em;
  right: 7.5%;
}
.header-navi .menu::after {
  clear: both;
  content: "";
  display: table;
}
.header-navi .menu .menu-item {
  float: left;
  font-weight: bold;
}
.header-navi .menu .menu-item + .menu-item {
  margin-left: 2.5em;
}
.header-navi::after {
  clear: both;
  content: "";
  display: table;
}
.header-navi .menu-main-navigation-container {
  float: left;
}
.header-navi .bogo-language-switcher {
  float: right;
  margin-left: 4em;
}

@media screen and (max-width: 60em) {
  .header-navi {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background-color: #3d3d3d;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .header-navi.open {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .header-navi .menu {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
  .header-navi .menu .menu-item {
    float: none;
    font-size: 1.6rem;
  }
  .header-navi .menu .menu-item + .menu-item {
    margin-top: 1.5em;
    margin-left: 0;
  }
  .header-navi .bogo-language-switcher {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, 10em);
            transform: translate(-50%, 10em);
    float: none;
    margin-left: 0;
  }
  .header-navi .bogo-language-switcher li {
    display: inline-block;
    width: 3em;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 3;
  }
  .header-navi .bogo-language-switcher li.current {
    color: white;
  }
  .header-navi a {
    color: #666;
  }
  .header-navi a:hover {
    color: white;
  }
  .header-navi .current_page_item > a,
  .header-navi .current-menu-item > a,
  .header-navi .current_page_ancestor > a,
  .header-navi .current-menu-ancestor > a {
    color: white;
  }
}
/* header-navi: opened */
@media screen and (max-width: 60em) {
  html.navi-open,
  body.navi-open {
    overflow-y: hidden;
  }
  .site-header,
  .site-main,
  .site-footer,
  .post-navigation {
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .site-header.navi-open,
  .site-main.navi-open,
  .site-footer.navi-open,
  .post-navigation.navi-open {
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
  }
}
/* footer-navi */
.footer-navi .menu-item + .menu-item {
  margin-top: 2em;
}

/* post-navigation */
.post-navigation {
  position: relative;
  width: 90%;
  margin-top: 8em;
  margin-left: 10%;
}
.post-navigation a {
  display: inline-block;
  margin: 0;
}
.post-navigation a[rel=prev],
.post-navigation a[rel=next] {
  width: 3.75em;
  height: 3.75em;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  vertical-align: bottom;
  font-size: 1.2rem;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.post-navigation a[rel=prev]:hover,
.post-navigation a[rel=next]:hover {
  background-color: #3d3d3d;
}
.post-navigation a[rel=prev] {
  background-image: url(images/ico_arrow-w32_03.svg);
}
.post-navigation a[rel=prev]:hover {
  background-image: url(images/ico_arrow-w32_02.svg);
}
.post-navigation a[rel=next] {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url(images/ico_arrow-w32_03.svg);
}
.post-navigation a[rel=next]:hover {
  background-image: url(images/ico_arrow-w32_02.svg);
}

.category-navigation {
  margin: 4em 0 2em;
  font-size: 1.4rem;
}
.category-navigation a {
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #a3a3a3;
}
.category-navigation a:hover {
  background-color: yellow;
  color: black;
}
.category-navigation .category-list {
  display: inline-block;
  list-style: none;
  margin: 0;
}
.category-navigation .category-list li {
  display: inline-block;
  margin: 0;
}
.category-navigation .category-list li + li:before {
  content: " | ";
}

/* toggle-button */
.toggle-button {
  display: block;
  width: 4em;
  height: 4em;
  margin: 0;
  padding: 0;
  background-color: black;
  font-size: 1em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.toggle-button .line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5em;
  height: 1px;
  margin: 0 0 0 -0.75em;
  background-color: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.toggle-button .line:nth-of-type(1) {
  -webkit-transform: translateY(-0.4em);
          transform: translateY(-0.4em);
}
.toggle-button .line:nth-of-type(3) {
  -webkit-transform: translateY(0.4em);
          transform: translateY(0.4em);
}
.toggle-button:hover {
  background-color: #3d3d3d;
  cursor: pointer;
}
.toggle-button:hover .line:nth-of-type(1) {
  -webkit-transform: translateY(-0.6em);
          transform: translateY(-0.6em);
}
.toggle-button:hover .line:nth-of-type(3) {
  -webkit-transform: translateY(0.6em);
          transform: translateY(0.6em);
}
.toggle-button.close {
  background-color: #3d3d3d;
}
.toggle-button.close .line:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggle-button.close .line:nth-of-type(2) {
  opacity: 0;
}
.toggle-button.close .line:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* toggle-button layout */
.toggle-button {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}

@media screen and (max-width: 60em) {
  .toggle-button {
    display: block;
  }
}
.site-title {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.side-border-title {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.side-border-title .title-text {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  background-color: white;
}
.side-border-title:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
}

.multi-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 3em;
  font-weight: normal !important;
  line-height: 1 !important;
}
.multi-title__pri {
  font-size: 2em;
}
.multi-title__sec {
  font-size: 1em;
}

/* image-container */
.image-container + .image-container {
  margin-top: 4em;
}
.image-container .image-item .image {
  text-align: center;
}
.image-container .image-item .caption {
  font-size: 1.4rem;
}
.image-container .image-item.portrate {
  width: 66.666666%;
  margin: 0 auto;
}
.image-container.double:after {
  clear: both;
  content: "";
  display: table;
}
.image-container.double .image-item {
  width: 48%;
  float: left;
}
.image-container.double .image-item + .image-item {
  margin-left: 4%;
}
.image-container.double .image-item.portrate {
  width: 45%;
  margin: 0 2.5%;
}
.image-container.triple:after {
  clear: both;
  content: "";
  display: table;
}
.image-container.triple .image-item {
  width: 30%;
  float: left;
}
.image-container.triple .image-item + .image-item {
  margin-left: 5%;
}

@media screen and (max-width: 45em) {
  .image-container + .image-container {
    margin-top: 0;
  }
  .image-container .image-item {
    margin-bottom: 4em;
  }
  .image-container .image-item.portrate {
    margin: 0 auto 4em;
  }
  .image-container.double .image-item, .image-container.triple .image-item {
    width: 100%;
    float: none;
  }
  .image-container.double .image-item + .image-item, .image-container.triple .image-item + .image-item {
    margin-left: 0;
  }
  .image-container.double .image-item.portrate, .image-container.triple .image-item.portrate {
    width: 66.666666%;
    margin: 0 auto 4em;
  }
}
/* product-gateway */
.product-gateway {
  position: relative;
}
.product-gateway:after {
  clear: both;
  content: "";
  display: table;
}

/* product-gateway: content */
.product-gateway .content {
  position: absolute;
  padding: 2em;
  background-color: white;
}
.product-gateway .entry-header {
  position: absolute;
  bottom: 0;
  left: 2em;
}
.product-gateway .entry-header .entry-title {
  margin: 0;
  font-size: 1em;
  line-height: 1;
}
.product-gateway .entry-header .button {
  margin: 0;
}
.product-gateway .catch {
  margin-top: 0;
  padding-top: 2em;
  border-top: 1px solid black;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}
.product-gateway .read {
  font-size: 1.2rem;
  line-height: 2;
}

@media screen and (max-width: 75em) {
  .product-gateway .content {
    position: relative;
    margin-top: -2em;
  }
}
@media screen and (max-width: 60em) {
  .product-gateway .content {
    margin-top: 0;
  }
}
/* product-gateway: meta */
.product-gateway .meta {
  position: absolute;
  bottom: -4em;
}
.product-gateway .meta > * {
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 2;
}

@media screen and (max-width: 75em) {
  .product-gateway .meta {
    position: relative;
    bottom: auto;
    padding: 2em;
  }
}
/* product-gateway: image layout */
.product-gateway.image-left .image {
  width: 90%;
  margin-right: 10%;
}
.product-gateway.image-right .image {
  width: 90%;
  margin-left: 10%;
}
.product-gateway.image-center {
  width: 80%;
  margin: auto;
}
.product-gateway.image-center .image {
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 75em) {
  .product-gateway.image-left .image {
    width: 100%;
    margin-right: 0;
  }
  .product-gateway.image-right .image {
    width: 100%;
    margin-left: 0;
  }
  .product-gateway.image-center {
    width: 100%;
  }
}
/* product-gateway: content layout */
.product-gateway.content-top-left .content {
  top: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 6em;
}
.product-gateway.content-top-left .entry-header {
  bottom: 2em;
}
.product-gateway.content-top-left .meta {
  left: 10%;
}
.product-gateway.content-top-right .content {
  top: 0;
  right: 0;
  padding-top: 0;
  padding-bottom: 6em;
}
.product-gateway.content-top-right .entry-header {
  bottom: 2em;
}
.product-gateway.content-top-right .meta {
  left: 10%;
}
.product-gateway.content-bottom-left .content {
  bottom: 0;
  left: 0;
  padding-bottom: 4em;
}
.product-gateway.content-bottom-left .meta {
  left: 25%;
}
.product-gateway.content-bottom-right .content {
  bottom: 0;
  right: 0;
  padding-bottom: 4em;
}
.product-gateway.content-bottom-right .meta {
  left: 10%;
}
.product-gateway.image-center.content-bottom-left, .product-gateway.image-center.content-bottom-right {
  padding-bottom: 20em;
}

@media screen and (max-width: 75em) {
  .product-gateway:after {
    clear: both;
    content: "";
    display: table;
  }
  .product-gateway.content-top-left .content {
    top: auto;
    left: auto;
    padding: 2em;
    padding-bottom: 4em;
    float: left;
  }
  .product-gateway.content-top-left .entry-header {
    bottom: 0;
  }
  .product-gateway.content-top-left .meta {
    left: auto;
    float: right;
  }
  .product-gateway.content-top-right .content {
    top: auto;
    right: auto;
    padding: 2em;
    padding-bottom: 4em;
    float: right;
  }
  .product-gateway.content-top-right .entry-header {
    bottom: 0;
  }
  .product-gateway.content-top-right .meta {
    left: auto;
    float: left;
  }
  .product-gateway.content-bottom-left .content {
    bottom: auto;
    left: auto;
    padding-bottom: 4em;
    float: left;
  }
  .product-gateway.content-bottom-left .meta {
    left: auto;
    float: right;
  }
  .product-gateway.content-bottom-right .content {
    bottom: auto;
    right: auto;
    padding-bottom: 4em;
    float: right;
  }
  .product-gateway.content-bottom-right .meta {
    left: auto;
    float: left;
  }
  .product-gateway.image-center.content-bottom-left, .product-gateway.image-center.content-bottom-right {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 60em) {
  .product-gateway.content-top-left .content {
    float: none;
  }
  .product-gateway.content-top-left .meta {
    float: none;
  }
  .product-gateway.content-top-right .content {
    float: none;
  }
  .product-gateway.content-top-right .meta {
    float: none;
  }
  .product-gateway.content-bottom-left .content {
    float: none;
  }
  .product-gateway.content-bottom-left .meta {
    float: none;
  }
  .product-gateway.content-bottom-right .content {
    float: none;
  }
  .product-gateway.content-bottom-right .meta {
    float: none;
  }
}
/* product-gateway: content width */
.product-gateway.content-wide .content {
  width: 40%;
}
.product-gateway.content-narrow .content {
  width: 25%;
}
.product-gateway.image-center.content-wide .content {
  width: 50%;
}
.product-gateway.image-center.content-narrow .content {
  width: 30%;
}

@media screen and (max-width: 75em) {
  .product-gateway.content-wide .content {
    width: 60%;
  }
  .product-gateway.content-wide .meta {
    width: 40%;
  }
  .product-gateway.content-narrow .content {
    width: 40%;
  }
  .product-gateway.content-narrow .meta {
    width: 50%;
  }
  .product-gateway.image-center.content-wide .content {
    width: 60%;
  }
  .product-gateway.image-center.content-narrow .content {
    width: 40%;
  }
}
@media screen and (max-width: 60em) {
  .product-gateway.content-wide .content {
    width: 80%;
    margin: 0 auto;
  }
  .product-gateway.content-wide .meta {
    width: 80%;
    margin: 0 auto;
  }
  .product-gateway.content-narrow .content {
    width: 80%;
    margin: 0 auto;
  }
  .product-gateway.content-narrow .meta {
    width: 80%;
    margin: 0 auto;
  }
  .product-gateway.image-center.content-wide .content {
    width: 80%;
    margin: 0 auto;
  }
  .product-gateway.image-center.content-narrow .content {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 45em) {
  .product-gateway.content-wide .content {
    width: 90%;
  }
  .product-gateway.content-wide .meta {
    width: 90%;
  }
  .product-gateway.content-narrow .content {
    width: 90%;
  }
  .product-gateway.content-narrow .meta {
    width: 90%;
  }
  .product-gateway.image-center.content-wide .content {
    width: 90%;
  }
  .product-gateway.image-center.content-narrow .content {
    width: 90%;
  }
}
/* product-intro */
.product-intro {
  position: relative;
}
.product-intro:after {
  clear: both;
  content: "";
  display: table;
}
.product-intro:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 70%;
  width: 1px;
  height: 100%;
  background-color: #e0e0e0;
}

@media screen and (max-width: 45em) {
  .product-intro {
    position: relative;
  }
  .product-intro:after {
    clear: both;
    content: "";
    display: table;
  }
  .product-intro:before {
    content: none;
  }
}
/* intro-content */
.product-intro .intro-content {
  width: 40%;
  float: left;
  margin-left: 20%;
}
.product-intro .intro-content .intro-title {
  display: inline-block;
  padding-bottom: 0.8em;
  font-weight: bold;
  font-size: 1.6rem;
  border-bottom: 0.2em solid black;
}
.product-intro .intro-content .intro-catch {
  font-weight: bold;
  font-size: 3.2rem;
}
.product-intro .intro-content .intro-read {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 75em) {
  .product-intro .intro-content {
    width: 50%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 45em) {
  .product-intro .intro-content {
    width: 80%;
    float: none;
  }
}
/* intro-meta */
.product-intro .intro-meta {
  width: 20%;
  float: right;
  margin-right: 5%;
  font-size: 1.2rem;
  line-height: 2;
}
.product-intro .intro-meta > * {
  margin-bottom: 2em;
}

@media screen and (max-width: 45em) {
  .product-intro .intro-meta {
    width: 80%;
    float: none;
    margin-top: 4em;
    margin-left: 10%;
    padding-left: 2em;
    border-left: 1px solid #e0e0e0;
  }
}
/* product-visual */
.product-visual {
  width: 90%;
  margin-top: 6em;
  margin-left: 10%;
}

@media screen and (max-width: 75em) {
  .product-visual {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 45em) {
  .product-visual {
    width: 150%;
    margin-left: -25%;
  }
}
/* detail-header */
.product-detail .detail-header {
  position: relative;
  width: 60%;
  margin: 0 auto;
  padding-top: 4em;
  border-top: 1px solid black;
}

@media screen and (max-width: 75em) {
  .product-detail .detail-header {
    width: 80%;
  }
}
/* detail-number */
.product-detail .detail-number {
  position: absolute;
  top: -2em;
  right: -12em;
  width: 8em;
  font-family: "GeomSlab703W01-MediumCd";
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
.product-detail .detail-number .number {
  display: inline-block;
  margin-left: 0.1em;
  font-size: 4.8rem;
  vertical-align: middle;
  -webkit-transform: translateY(-0.05em);
          transform: translateY(-0.05em);
}

@media screen and (max-width: 75em) {
  .product-detail .detail-number {
    top: -8em;
    right: 50%;
    width: 4em;
    -webkit-transform: translateX(2em);
            transform: translateX(2em);
    text-align: center;
    line-height: 1.2;
  }
  .product-detail .detail-number .number {
    display: block;
    -webkit-transform: none;
            transform: none;
    margin-left: 0;
  }
}
/* detail-title */
.product-detail .detail-title {
  font-weight: bold;
  font-size: 2.4rem;
}

/* detail-read */
.product-detail .detail-read {
  width: 60%;
  margin: 4em auto;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 75em) {
  .product-detail .detail-read {
    width: 80%;
  }
}
/* detail-content */
.product-detail .detail-content {
  width: 80%;
  margin: 0 auto;
}

/* product-aside */
.product-aside {
  width: 80%;
  margin: 12em auto 0;
}
.product-aside .related-works {
  margin-top: 6em;
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}
@media screen and (max-width: 45em) {
  .product-aside .related-works {
    gap: 2em 1em;
  }
}
.product-aside .related-works .works-item {
  width: calc(33.333% - 2.2888em);
  text-align: center;
  font-size: 1em;
}
@media screen and (max-width: 45em) {
  .product-aside .related-works .works-item {
    width: calc(50% - .5em);
  }
}
.product-aside .related-works .works-item .hover-image {
  margin-bottom: .75em;
}
@media screen and (max-width: 45em) {
  .product-aside .related-works .works-item .hover-image {
    margin-bottom: .25em;
  }
}
.product-aside .related-works .works-item-title {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 45em) {
  .product-aside .related-works .works-item-title {
   font-size: 1.2rem;
  }
}

/* gateway-header */
.gateway-header {
  width: 80%;
  margin: 0 auto;
}

.gateway-title {
  font-size: 4.8rem;
  letter-spacing: 0.2em;
}

.works-gateway {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works-gateway .works-item {
  width: 33.333333%;
}

@media screen and (max-width: 45em) {
  .works-gateway .works-item {
    width: 50%;
  }
}
@media screen and (max-width: 45em) {
  .works-gateway .works-item .image img {
    width: 150%;
    margin-left: -25%;
  }
}
.works-gateway .works-item img {
  aspect-ratio: 3/2;
}
.works-gateway:after {
  clear: both;
  content: "";
  display: table;
}
.works-gateway .works-item .content {
  padding: 2em 1.5em 4em 1.5em;
}
.works-gateway .works-item .content .title {
  font-weight: bold;
  font-size: 1.6rem;
}
.works-gateway .works-item .content .client,
.works-gateway .works-item .content .category {
  font-size: 1.2rem;
}
.works-gateway .works-item .content .category {
  margin-top: 0.5em;
}

/* wp-pagenavi */
.wp-pagenavi {
  margin-top: 2em;
  padding: 0 1.5em;
}
.wp-pagenavi > * {
  display: inline-block;
  width: 4em;
  margin-right: 0.1rem;
  background-color: black;
  text-decoration: none;
  text-align: center;
  font-size: 1.2rem;
  line-height: 4;
  color: white;
  opacity: 0.1;
}
.wp-pagenavi .current {
  opacity: 1;
}
.wp-pagenavi a:focus,
.wp-pagenavi a:hover {
  opacity: 0.333;
  color: white;
}

/* intro-content */
.works-intro {
  width: 60%;
  margin: 0 auto;
}
.works-intro .intro-content .intro-title {
  display: inline-block;
  font-weight: bold;
  font-size: 3.2rem;
}
.works-intro .intro-content .intro-title .sub-title {
  font-weight: normal;
  font-size: 50%;
}
.works-intro .intro-content .intro-read {
  display: block;
  font-size: 1.6rem;
  line-height: 2;
}
.works-intro.sp {
  display: none;
}

@media screen and (max-width: 75em) {
  .works-intro {
    width: 80%;
  }
  .works-intro .intro-read.pc {
    display: none;
  }
  .works-intro.sp {
    display: block;
  }
}
/* intro-meta */
.works-intro .intro-meta {
  margin-top: 6em;
  font-size: 1.2rem;
  line-height: 2;
}
.works-intro .intro-meta:after {
  clear: both;
  content: "";
  display: table;
}
.works-intro .intro-meta .grid-container {
  margin-left: -1rem;
}
.works-intro .intro-meta .grid-container .column {
  margin: 0;
  padding: 0 2em 2em;
  border-left: 1px solid #e0e0e0;
}
.works-intro .intro-meta .date {
  margin-top: 4em;
}

@media screen and (max-width: 45em) {
  .works-intro .intro-meta .grid-container {
    margin-left: -2rem;
  }
}
/* detail-content */
.works-detail {
  margin-top: 4em;
}
.works-detail .detail-content {
  width: 80%;
  margin: 0 auto;
}

/* works-credit */
.works-credit {
  width: 80%;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 2;
}

/* page-header */
.page-header {
  width: 60%;
  margin: 0 auto 4em;
}

@media screen and (max-width: 45em) {
  .page-header {
    width: 80%;
  }
}
/* page-title */
.page-title {
  font-size: 3.2rem;
  letter-spacing: 0.4em;
  line-height: 1.6;
}

@media screen and (max-width: 45em) {
  .page-title {
    letter-spacing: 0.2em;
  }
}
/* page-content */
.page-content {
  width: 60%;
  margin: 0 auto;
}
.page-content h2 {
  font-weight: bold;
  font-size: 1.8rem;
}
.page-content h3 {
  font-weight: bold;
  font-size: 1.4rem;
}
.page-content p, .page-content ul, .page-content ol, .page-content dl, .page-content table {
  font-size: 1.4rem;
}

@media screen and (max-width: 45em) {
  .page-content {
    width: 80%;
    margin: 0 auto;
  }
}
.office-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 6em;
}
.office-images .image {
  width: 25%;
}

@media screen and (max-width: 45em) {
  .office-images .image {
    width: 50%;
  }
}
.form-group:after {
  clear: both;
  content: "";
  display: table;
}
.form-group + .form-group {
  margin-top: 2em;
}
.form-group .phone {
  font-size: 1.6rem;
  line-height: 2;
}
.form-group .ta-center {
  text-align: center;
}

.form-item.float-item {
  float: left;
}
.form-item.float-item:after {
  clear: both;
  content: "";
  display: table;
}
.form-item.float-item + .form-item.float-item {
  margin-left: 1em;
}
.form-item.float-item .float-item {
  float: left;
}
.form-item.float-item .float-item + .float-item {
  margin-left: 0.5em;
}
.form-item.float-item.w-half {
  width: calc(50% - 0.5em);
}
.form-item.float-item.w-half input {
  width: 100%;
}
.form-item.float-item.w-full input {
  width: 100%;
}

@media screen and (max-width: 45em) {
  .form-item.float-item {
    float: none;
  }
  .form-item.float-item + .form-item.float-item {
    margin-top: 1em;
    margin-left: 0;
  }
  .form-item.float-item.w-half {
    width: 100%;
  }
}
.form-item span.wpcf7-list-item {
  margin: 0;
}
.form-item span.wpcf7-list-item + span.wpcf7-list-item {
  margin-left: 0.5em;
}
.form-item .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-size: 80%;
}
.form-item button, .form-item input, .form-item optgroup, .form-item select, .form-item textarea {
  margin-bottom: 0;
}
.form-item textarea {
  height: 16em;
}
.form-item label {
  font-weight: normal;
  font-size: 1.4rem;
}
.form-item .form-caption {
  display: inline-block;
  margin-bottom: 0.5em;
}
.form-item .must-label {
  display: inline-block;
  position: relative;
  top: -0.2em;
  margin-left: 0.5em;
  padding: 0.3em 0.6em 0.1em;
  border-radius: 0.3em;
  background-color: #3d3d3d;
  font-size: 60%;
  font-weight: bold;
  color: yellow;
  vertical-align: middle;
}
.form-item p {
  margin: 0;
}
.form-item p small {
  color: #999;
}
.form-item p small a {
  text-decoration: none;
  color: #999;
}

div.wpcf7-response-output {
  margin: 2em 0 0 0;
  padding: 1em;
  text-align: center;
}

@media screen and (max-width: 45em) {
  div.wpcf7-response-output {
    width: 90%;
    margin: 2em auto 0;
  }
}
div.wpcf7-validation-errors {
  width: 60%;
  margin: 4em auto;
  border: 0;
  background-color: yellow;
}

@media screen and (max-width: 45em) {
  div.wpcf7-validation-errors {
    width: 90%;
  }
}
div.wpcf7-mail-sent-ok {
  border-top: 2px solid #3d3d3d;
  background-color: #3d3d3d;
  color: yellow;
}

.wpcf7c-conf {
  background-color: #fafafa !important;
  color: black !important;
  border: 1px solid #fafafa !important;
}

.wpcf7-spinner {
  display: block;
  margin: 0.5em auto;
}

.form-buttons {
  position: relative;
  padding: 0 32px;
  text-align: center;
}
.form-buttons .ajax-loader {
  position: absolute;
  top: 50%;
  right: 8px;
  margin: -8px 0 0 0;
}
.form-buttons button,
.form-buttons input[type=button],
.form-buttons input[type=reset],
.form-buttons input[type=submit] {
  min-width: 12em;
  margin: 0 0.5em;
}

@media screen and (max-width: 45em) {
  .form-buttons button,
  .form-buttons input[type=button],
  .form-buttons input[type=reset],
  .form-buttons input[type=submit] {
    min-width: 100%;
    margin: 0 0 0.5em 0;
  }
}
.frame-box {
  width: 100%;
  height: 18em;
  overflow-y: scroll;
  margin-bottom: 2em;
  padding: 1em;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 80%;
  line-height: 1.8;
}

.frame-box .wrapper {
  width: auto !important;
  margin-left: 0;
}

/* interview-list */
.interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
  margin: 0;
}
.interview-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 45em) {
  .interview-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.interview-list__item > .interview-list__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.interview-list__anchor {
  text-decoration: none;
}
.interview-list__thumbnail {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  line-height: 0;
}
.interview-list__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.interview-list__content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.8rem;
  position: relative;
  padding-top: 4.8rem;
}
@media screen and (max-width: 45em) {
  .interview-list__content {
    gap: 1.6em;
    padding-top: 0;
  }
}
.interview-list__title {
  margin: 0 0 0 3.2rem;
  padding: 0 0.5rem;
  background-color: #fff;
  font-weight: normal !important;
}
@media screen and (max-width: 45em) {
  .interview-list__title {
    margin: -3.6rem 0 0 0;
    padding-left: 0;
  }
}
.interview-list__title:not(.interview-list__anchor) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.interview-list__title .interview-list__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.interview-list__title__pri {
  position: relative;
  font-size: 3.2rem;
}
.interview-list__title__sec {
  position: relative;
  font-size: 1.6rem;
}
.interview-list__excerpt {
  margin: 0;
  padding: 0 0 0 3.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 45em) {
  .interview-list__excerpt {
    padding: 0;
  }
}

.content-wrapper__sidebar .interview-list {
  gap: 1.6rem;
}
.content-wrapper__sidebar .interview-list__content {
  padding: 0;
}
.content-wrapper__sidebar .interview-list__title {
  margin: 0;
}
.content-wrapper__sidebar .interview-list__title__pri {
  font-size: 1rem;
}
.content-wrapper__sidebar .interview-list__title__sec {
  font-size: 1.6rem;
}

/* job-list */
.job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
  margin: 0;
}
.job-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding: 1.6rem;
  background-color: #f5f5f5;
}
.job-list__item > .job-list__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.job-list__anchor {
  text-decoration: none;
}
.job-list__thumbnail {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  line-height: 0;
}
.job-list__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.job-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  padding: 0 1.4rem;
}
.job-list__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-weight: normal !important;
}
.job-list__title .job-list__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.job-list__title:not(.job-list__anchor) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.job-list__title__pri {
  position: relative;
  font-size: 1.2rem;
}
.job-list__title__sec {
  position: relative;
  font-size: 2rem;
}
.job-list__title__ter {
  position: relative;
  font-size: 1.2rem;
}
.job-list__excerpt {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 45em) {
  .job-list__excerpt {
    padding: 0;
  }
}

.content-wrapper__sidebar .job-list {
  gap: 1.6rem;
}
.content-wrapper__sidebar .job-list__content {
  padding: 0;
}
.content-wrapper__sidebar .job-list__title__pri {
  font-size: 1rem;
}
.content-wrapper__sidebar .job-list__title__sec {
  font-size: 1.6rem;
}
.content-wrapper__sidebar .job-list__title__ter {
  font-size: 1rem;
}

/* interview-header */
.interview-header {
  position: relative;
  margin-bottom: 12rem;
}
.interview-header__visual img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/1;
}
@media screen and (max-width: 45em) {
  .interview-header__visual img {
    aspect-ratio: 3/2;
  }
}
.interview-header__title {
  margin: -3.6rem 0 0 10%;
  font-weight: normal !important;
  font-size: 2rem;
}
.interview-header__title .multi-title__pri {
  background-color: white;
}
.interview-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: -4.8rem 0 3.2rem 10%;
  background-color: #fff;
  font-weight: normal !important;
}
@media screen and (max-width: 45em) {
  .interview-header__title {
    margin: -3.2rem 0 0 5%;
  }
}
.interview-header__title__pri {
  background-color: white;
  position: relative;
  font-size: 4.8rem;
}
@media screen and (max-width: 45em) {
  .interview-header__title__pri {
    font-size: 3.2rem;
  }
}
.interview-header__title__sec {
  position: relative;
  font-size: 2.4rem;
}
@media screen and (max-width: 45em) {
  .interview-header__title__sec {
    font-size: 1.6rem;
  }
}
.interview-header__excerpt {
  text-align: justify;
  padding: 0 10%;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 45em) {
  .interview-header__excerpt {
    padding: 0 5%;
  }
}

/* job-header */
.job-header {
  padding: 0 10%;
  margin-bottom: 12rem;
}
.job-header__visual {
  margin: 3rem 0;
}
.job-header__visual img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 45em) {
  .job-header__visual img {
    aspect-ratio: 3/2;
  }
}
.job-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  font-weight: normal !important;
}
.job-header__title__pri {
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 45em) {
  .job-header__title__pri {
    font-size: 1.2rem;
  }
}
.job-header__title__sec {
  position: relative;
  font-size: 3rem;
}
@media screen and (max-width: 45em) {
  .job-header__title__sec {
    font-size: 2rem;
  }
}
.job-header__title__ter {
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 45em) {
  .job-header__title__ter {
    font-size: 1.2rem;
  }
}
.job-header__excerpt {
  text-align: justify;
  font-size: 1.4rem;
  line-height: 2;
}

/* content-wrapper */
.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  padding: 0 10%;
}
@media screen and (max-width: 45em) {
  .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* padding: 0 5%; */
  }
}
.content-wrapper__body {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.content-wrapper__sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* entry-content */
.entry-content {
  width: 100%;
}
.entry-content h2 {
  font-size: 2rem;
}
.entry-content h3 {
  font-size: 1.8rem;
}
.entry-content h4 {
  font-size: 1.6rem;
}
.entry-content p, .entry-content ul, .entry-content ol, .entry-content dl, .entry-content table {
  font-size: 1.4rem;
}
.entry-content p {
  text-align: justify;
  line-height: 2;
}
.entry-content hr {
  margin: 4rem 0;
  border-color: #e0e0e0;
}

/* entry-footer */
.entry-footer {
  position: relative;
  margin-top: 6rem;
  padding: 0 10%;
}

/* legacy-alert */
.legacy-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  padding: 10px 0;
  background-color: red;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/