/*
Theme Name: Tsunagu
Theme URI: -
Author: -
Author URI: -
Description: -
Version: 2.3.16
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onepress
Tested up to: 6.7.1
Requires PHP: 5.6
Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, e-commerce, blog, portfolio

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.

OnePress is based on Underscores http://underscores.me/, (C) 2012-2015 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.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0  Reset
2.0  Document
3.0  Layout
4.0  Structure
5.0  Contents
6.0  Elements
7.0  Widgets
8.0  Sections
9.0  External Plugins

--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
/* Reset already include in bootstrap */
/*--------------------------------------------------------------
2.0 Document Setup
--------------------------------------------------------------*/
html, body {
  height: 100%;
}

/*------------------------------
	2.1 Typography
------------------------------*/
@font-face {
    font-family: Hiragino Kaku Gothic ProN W3;
    src: url("./fonts/Hiragino Kaku Gothic ProN W3.otf") format("opentype");
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 16px;
}

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}
body {
  background: #ffffff;
}

.site {
  background: #FFFFFF;
  position: relative;
}

body, button, input, select, textarea {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #777777;
}

pre,
code,
input,
textarea {
  font: inherit;
}

::-moz-selection {
  background: #000000;
  color: #FFFFFF;
}

::selection {
  background: #000000;
  color: #FFFFFF;
}

/*------------------------------
	2.2 Links
------------------------------*/
a {
  color: #03c4eb;
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #777777;
  text-decoration: underline;
}

a:active, a:focus, a:hover {
  outline: none;
}

/*------------------------------
	2.3 Heading
------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  margin-top: 0;
  color: #333333;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #333333;
  text-decoration: none;
}

h1 {
  line-height: 1.3;
  font-size: 33px;
  font-size: 2.0625rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
h1 span {
  font-weight: bold;
}

h2 {
  line-height: 1.2;
  font-size: 25px;
  font-size: 1.5625rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}
h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  font-size: 17px;
  font-size: 1.0625rem;
  margin-bottom: 12px;
}

h5 {
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/*------------------------------
	2.4 Base
------------------------------*/
ul, ol, dl, p, details, address, .vcard, figure, pre, fieldset, table, dt, dd, hr {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  margin-top: 0;
}

/*------------------------------
	2.5 Content
------------------------------*/
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  clear: both;
  margin: 20px 0;
}

blockquote p {
  font-style: italic;
}

blockquote cite {
  font-style: normal;
  margin-bottom: 20px;
  font-size: 13px;
}

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

figure {
  margin: 0;
}

address {
  margin: 20px 0;
}

hr {
  border: 0;
  border-top: 1px solid #e9e9e9;
  height: 1px;
  margin-bottom: 20px;
}

tt,
kbd,
pre,
code,
samp,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  background-color: #e9e9e9;
  padding: 5px 7px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

pre {
  overflow: auto;
  white-space: pre-wrap;
  max-width: 100%;
  line-height: 1.7;
  margin: 20px 0;
  padding: 20px;
}

details summary {
  font-weight: bold;
  margin-bottom: 20px;
}

details :focus {
  outline: none;
}

abbr,
acronym,
dfn {
  cursor: help;
  font-size: 0.95em;
  text-transform: uppercase;
  border-bottom: 1px dotted #e9e9e9;
  letter-spacing: 1px;
}

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

small {
  font-size: 82%;
}

big {
  font-size: 125%;
}

ul, ol {
  padding-left: 20px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

ul li, ol li {
  margin: 8px 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 20px 20px;
}

/*------------------------------
	2.6 Table
------------------------------*/
table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #e9e9e9;
  border-collapse: collapse;
  border-spacing: 0;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  border: 1px solid #e9e9e9;
  line-height: 1.42857;
  padding: 5px;
  vertical-align: middle;
}

table > thead > tr > th, table > thead > tr > td {
  border-bottom-width: 2px;
}

table th {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/*------------------------------
	2.7 Form
------------------------------*/
fieldset {
  padding: 20px;
  border: 1px solid #e9e9e9;
}

input[type=reset], input[type=submit], input[type=submit],
.pirate-forms-submit-button, .contact-form div.wpforms-container-full .wpforms-form .wpforms-submit {
  cursor: pointer;
  background: #03c4eb;
  border: none;
  display: inline-block;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  padding: 15px 23px 15px 23px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
  margin: 3px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

input[type=reset]:hover, input[type=submit]:hover, input[type=submit]:hover,
.pirate-forms-submit-button:hover, .contact-form div.wpforms-container-full .wpforms-form .wpforms-submit:hover {
  opacity: 0.8;
  background: #03c4eb;
  border: none;
}

input[type=button]:hover, input[type=button]:focus, input[type=reset]:hover,
input[type=reset]:focus, input[type=submit]:hover, input[type=submit]:focus,
button:hover, button:focus {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

select {
  max-width: 100%;
  overflow: auto;
  vertical-align: top;
  outline: none;
  border: 1px solid #e9e9e9;
  padding: 10px;
}

textarea:not(.editor-post-title__input),
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  padding: 10px;
  max-width: 100%;
  border: 0px;
  font-size: 15px;
  font-weight: normal;
  line-height: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  background-color: #f2f2f2;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  color: #000000;
}

textarea:not(.editor-post-title__input):focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  border-color: #EBEBEB;
  border-bottom: 1px solid #fff !important;
  background: #e9e9e9;
}

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

input[type=radio], input[type=checkbox] {
  margin: 0 10px;
}

/*------------------------------
	2.8 Accessibility
------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f8f9f9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  clip: auto !important;
  color: #03c4eb;
  display: block;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 17px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

/*------------------------------
	2.8 Accessibility
------------------------------*/
/*------------------------------
	2.9 Alignments
------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 3.5em;
}

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

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

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

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

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

/*------------------------------
	3.1 Helper.
------------------------------*/
.hide {
  display: none;
}

.clearleft {
  clear: left;
}

.break, h1,
h2,
h3,
h4,
h5,
h6, p, ul, ol, dl, blockquote, pre {
  word-break: break-word;
  word-wrap: break-word;
}

body.mce-content-body {
  margin: 20px 40px;
  font-size: 13px;
}

/*--------------------------------------------------------------
3.0 Layout
--------------------------------------------------------------*/
#primary {
  padding-bottom: 40px;
  padding-top: 40px;
}

.template-fullwidth-stretched #primary,
.siteorigin-panels #primary {
  padding: 0;
}

.template-fullwidth-stretched .entry-content,
.siteorigin-panels .entry-content {
  margin-bottom: 0px;
}

#secondary {
  padding-bottom: 40px;
  padding-top: 0;
}

@media screen and (min-width: 940px) {
  #secondary {
    padding-top: 40px;
  }
}
.content-area {
  width: 100%;
  float: none;
}

@media screen and (min-width: 940px) {
  .content-area {
    float: left;
  }
}
.sidebar {
  width: 100%;
  float: none;
}

@media screen and (min-width: 940px) {
  .sidebar {
    width: 25.2252252252%;
    float: left;
  }
}
.left-sidebar .site-main {
  margin-left: auto;
}

.no-sidebar .content-area {
  width: 100%;
}

.single-post .no-sidebar .site-main,
.single-post .no-sidebar .entry-content > * {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 940px) {
  .left-sidebar .content-area {
    float: right;
    padding-left: 39px;
    border-left: 1px solid #e9e9e9;
    margin-right: 1px;
    width: 74.7747747748%;
  }
  .left-sidebar .sidebar {
    padding-right: 39px;
    border-right: 1px solid #e9e9e9;
    margin-right: -1px;
  }
  .right-sidebar .content-area {
    padding-right: 39px;
    border-right: 1px solid #e9e9e9;
    width: 74.7747747748%;
  }
  .right-sidebar .sidebar {
    padding-left: 39px;
    border-left: 1px solid #e9e9e9;
    margin-left: -1px;
  }
}
/**
Footer widgets
 */
.footer-widgets {
  background: #050505;
}

.footer-widgets.section-padding {
  padding: 70px 0px 35px;
  padding: 4.375rem 0rem 2.1875rem;
}

.footer-widgets table {
  border-collapse: collapse;
}

.footer-widgets table > thead > tr > th,
.footer-widgets table > thead > tr > td {
  border-width: 1px;
}

.footer-widgets table th,
.footer-widgets table td {
  border-color: rgba(233, 233, 233, 0.4);
}

.footer-widgets .widget-title {
  color: #ffffff;
}

.footer-widgets .widget-area .widget_categories li,
.footer-widgets .widget-area .widget_archive li,
.footer-widgets .widget-area .widget_meta li {
  width: 100% !important;
  float: none;
}

.footer-widgets .widget_recent_entries ul li,
.footer-widgets .widget_recent_comments ul li {
  border-bottom: 0px none;
  padding: 5px 0px;
  margin-bottom: 0px;
}

.footer-widgets .sidebar .widget {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
4.0 Structure
--------------------------------------------------------------*/
/* Header
------------------------------*/

/* Content
------------------------------*/
.page-header {
  padding: 30px 0px;
  border-top: 1px solid #e9e9e9;
  background: #f8f9f9;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

.page-header:before {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  content: " ";
}

.page-header .entry-title,
.page-header .page-title {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-header p {
  margin: 6px 0px 0px 0px;
}

.page-header.page--cover {
  position: relative;
  padding: 8% 0px;
  text-align: center;
  border-top: 0 none;
  border-bottom: 0 none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-header.page--cover:before {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  content: " ";
}

.page-header.page--cover .entry-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.page-header.page--cover .entry-tagline {
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}

@media screen and (min-width: 1140px) {
  .page-header.page--cover .entry-tagline {
    font-size: 20px;
  }
}
@media screen and (max-width: 940px) {
  .page-header.page--cover .entry-tagline {
    font-size: 18px;
  }
}
@media screen and (max-width: 720px) {
  .page-header.page--cover .entry-tagline {
    font-size: 16px;
  }
}
.page-header.page--cover.is-t-above .container {
  margin-top: 30px;
}

/* Footer
------------------------------*/
.site-footer {
  background: #111111;
  color: #bbbbbb;
  font-size: 14px;
}

.site-footer a {
  color: #03c4eb;
}

.site-footer .footer-connect {
  padding: 90px 0px;
  padding: 80px 0px;
  padding: 5rem 0rem;
  text-align: center;
}

@media (max-width: 767px) {
  .site-footer .footer-connect .footer-subscribe {
    margin-bottom: 40px;
  }
}
.site-footer .footer-connect .follow-heading {
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.site-footer .footer-connect .subs_input {
  background-color: rgba(255, 255, 255, 0.145);
  color: #cccccc;
  border-bottom: none;
  box-shadow: none;
  padding: 12px 15px 12px;
  border-radius: 2px;
  width: 60%;
  font-size: 13px;
}

.site-footer .footer-connect .subs_input:focus {
  border: none;
}

@media screen and (max-width: 1140px) {
  .site-footer .footer-connect .subs_input {
    width: 100%;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 940px) {
  .site-footer .footer-connect .subs_input {
    width: 70%;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 720px) {
  .site-footer .footer-connect .subs_input {
    width: 100%;
    margin-bottom: 4px;
  }
}
.site-footer .footer-connect .subs-button {
  margin: 0px;
  position: relative;
  top: 0px;
  padding: 16px 23px 16px;
}

@media screen and (max-width: 1140px) {
  .site-footer .footer-connect .subs-button {
    width: 100%;
  }
}
@media screen and (max-width: 940px) {
  .site-footer .footer-connect .subs-button {
    width: 70%;
  }
}
@media screen and (max-width: 720px) {
  .site-footer .footer-connect .subs-button {
    width: 100%;
  }
}
.site-footer .footer-connect input[type=text]:focus {
  border: none !important;
}

.site-footer .footer-social {
  text-align: center;
}

.site-footer .footer-social a {
  font-size: 30px;
  margin: 0px 13px;
  color: #ffffff;
}

.site-footer .footer-social a:hover {
  color: #03c4eb;
}

.site-footer .site-info {
  position: relative;
  text-align: center;
  padding: 35px 0px;
  background: #222222;
  font-weight: 500;
  color: #bbbbbb;
}

.site-footer .site-info a {
  color: #dddddd;
}

.site-footer .site-info a:hover {
  text-decoration: underline;
}

.site-footer .site-info .container {
  position: initial;
}

.site-footer .btt a {
  border-radius: 0px 20px 0 0;
  color: #999999;
  background: #222222;
  display: block;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
  margin: auto;
  position: absolute;
  right: 60px;
  top: -25px;
  transition: all 0.2s linear 0s;
  width: 50px;
  z-index: 99;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.site-footer .btt a:hover {
  color: #03c4eb;
}

.site-footer .btt a i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  margin-left: 3px;
}

@media screen and (max-width: 940px) {
  .site-footer .btt a {
    right: 0;
    left: 0;
  }
}
/*--------------------------------------------------------------
5.0 Contents
--------------------------------------------------------------*/
/* Page: 404
------------------------------*/
.error-404 .search-form,
.error-404 .widget {
  margin-bottom: 40px;
}

.error-404 .widgettitle,
.error-404 .widget-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 13px;
  font-weight: 700;
}

.error-404 ul {
  padding-left: 0px;
}

.error-404 ul li {
  list-style: none;
}

/* Page: Search
------------------------------*/
.search-results .hentry {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.search-results .entry-summary p {
  margin-bottom: 0px;
}

.search-results .entry-header .entry-title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.search-results .entry-header .entry-title a:hover {
  text-decoration: none;
}

/* Entry Header
------------------------------*/
.entry-header .entry-title {
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.6px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 1.3;
}

@media screen and (min-width: 940px) {
  .entry-header .entry-title {
    font-size: 32px;
    line-height: 1.5;
  }
}
.entry-thumbnail {
  margin-bottom: 30px;
}

.single .entry-header .entry-title {
  margin-bottom: 10px;
}

.highlight {
  color: #03c4eb;
}

/* Entry Content
------------------------------*/
.entry-content {
  margin-bottom: 30px;
}

.entry-content blockquote {
  padding: 30px;
  position: relative;
  background: #f8f9f9;
  border-left: 3px solid #03c4eb;
  font-style: italic;
}

.entry-content blockquote p {
  margin: 0px;
}

/* Entry Stuff
------------------------------*/
.entry-meta {
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9e9e9;
}

.entry-footer {
  margin-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9e9e9;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

.nav-links {
  padding: 30px 0px;
  border-left: none;
  border-right: none;
  margin-bottom: 50px;
  flex-basis: 100%;
  text-align: center;
}

.nav-links .nav-previous {
  float: left;
}

.nav-links .nav-next {
  float: right;
}

.nav-links a,
.nav-links .page-numbers {
  background: #cccccc;
  color: #FFFFFF;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

@media screen and (max-width: 940px) {
  .nav-links a,
  .nav-links .page-numbers {
    padding: 6px 10px;
  }
}
.nav-links a:hover, .nav-links a.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
  background: #03c4eb;
  text-decoration: none;
}

.bypostauthor {
  margin: 0;
}

/* Sticky Post
------------------------------*/
.sticky .entry-title {
  padding-left: 20px;
  position: relative;
}

.sticky .entry-title:after {
  content: "\f276";
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 22px;
  color: #aaaaaa;
}

/* WordPress caption style
------------------------------*/
.wp-caption {
  max-width: 100%;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 15px;
  margin-top: 5px;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  max-width: 100%;
}

.wp-caption .wp-caption-text {
  margin: 10px 0px;
}

.wp-caption-text,
.entry-thumbnail-caption,
.cycle-caption {
  font-style: italic;
  line-height: 1.35;
  font-size: 13px;
}

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

/* Comments
------------------------------*/
#comments {
  padding-top: 30px;
  border-top: 1px solid #e9e9e9;
}

#comments .comments-title {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#comments .comment-list {
  list-style: none;
  padding-left: 0px;
}

#comments .comment-list .pingback {
  border-bottom: 1px solid #e9e9e9;
  padding: 20px 0;
  margin: 0;
}

#comments .comment-list .pingback p {
  margin: 0px;
}

#comments .comment-list .pingback:last-child {
  margin-bottom: 40px;
}

#comments .comment-content.entry-content {
  margin-bottom: 0px;
}

#comments .comment {
  list-style: none;
  margin: 30px 0;
}

#comments .comment .avatar {
  width: 60px;
  float: left;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#comments .comment .comment-wrapper {
  margin-left: 90px;
  padding: 25px 30px 15px 30px;
  background: #f8f9f9;
  position: relative;
}

#comments .comment .comment-wrapper:before {
  border-color: rgba(0, 0, 0, 0) #f6f7f9 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 0 10px 10px 0;
  content: "";
  height: 0;
  left: -9px;
  position: absolute;
  top: 0;
  width: 0;
}

#comments .comment .comment-wrapper .comment-meta .comment-time,
#comments .comment .comment-wrapper .comment-meta .comment-reply-link,
#comments .comment .comment-wrapper .comment-meta .comment-edit-link {
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 11px;
}

#comments .comment .comment-wrapper .comment-meta .comment-time:hover,
#comments .comment .comment-wrapper .comment-meta .comment-reply-link:hover,
#comments .comment .comment-wrapper .comment-meta .comment-edit-link:hover {
  color: #03c4eb;
}

#comments .comment .comment-wrapper .comment-meta .comment-time:after,
#comments .comment .comment-wrapper .comment-meta .comment-reply-link:after,
#comments .comment .comment-wrapper .comment-meta .comment-edit-link:after {
  content: "/";
  padding: 0px 5px;
}

#comments .comment .comment-wrapper .comment-meta a:last-child:after {
  content: "";
}

#comments .comment .comment-wrapper .comment-meta cite .fn {
  font-weight: bold;
  font-style: normal;
  margin-right: 5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

#comments .comment .comment-wrapper .comment-meta cite span {
  padding: 3px 10px;
  background: #e9e9e9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 10px;
}

#comments .comment .comment-wrapper a {
  text-decoration: none;
}

#comments .comment .children {
  padding-left: 30px;
}

#comments .comment .children .children {
  padding-left: 30px;
}

#comments .comment .children .children .children {
  padding-left: 0px;
}

@media screen and (min-width: 940px) {
  #comments .comment .children {
    padding-left: 90px;
  }
  #comments .comment .children .children {
    padding-left: 90px;
  }
  #comments .comment .children .children .children {
    padding-left: 90px;
  }
}
#comments .form-allowed-tags {
  display: none;
}

#comments a {
  text-decoration: none;
}

#comments a:hover {
  text-decoration: underline;
}

.comment-respond textarea,
.comment-respond textarea {
  width: 100%;
}

/* Comment Form
------------------------------*/
#respond {
  padding-top: 20px;
}

#respond .comment-form label {
  display: block;
  margin-bottom: 4px;
}

#respond .form-allowed-tags {
  font-size: 12px;
}

#respond .form-allowed-tags code {
  background: none;
}

#respond .comment-reply-title {
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#respond .comment-notes {
  display: none;
}

#respond label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.full-screen .comments-area {
  max-width: 1110px;
  margin: 0 auto;
}

/* woocommerce
------------------------------*/
.woocommerce div.product form.cart .variations td.label {
  color: #777;
}

/* . Gutenberg  Editor  - Block Editor */
.wp-block-gallery.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
6.0 Elements
--------------------------------------------------------------*/
/* Button
------------------------------*/
.btn {
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.btn:active, .btn:focus {
  outline: none;
}

.btn.btn-secondary-outline {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.btn.btn-secondary-outline:hover {
  background: #FFF;
  color: #333;
}

.btn-lg {
  font-size: 17px;
  font-size: 1.0625rem;
}

.btn-theme-primary {
  background: #03c4eb;
  color: #FFFFFF;
}

.btn-theme-primary:hover {
  color: #FFFFFF;
}

.btn-theme-primary-outline {
  background-color: transparent;
  background-image: none;
  border-color: #03c4eb;
  color: #03c4eb;
}

.btn-theme-primary-outline:hover {
  color: #FFF;
  background-color: #03c4eb;
  border-color: #03c4eb;
}

/* Loading
------------------------------*/
.slider-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* WP 4.7 Shortcut */
section > .customize-partial-edit-shortcut {
  z-index: 95;
}

section > .customize-partial-edit-shortcut button {
  left: 30px;
}

/*--------------------------------------------------------------
7.0 Widgets
--------------------------------------------------------------*/
.sidebar .widget {
  margin-bottom: 40px;
}

.sidebar .widget .widget-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 13px;
  font-weight: 700;
}

.sidebar .widget ul {
  list-style: none;
  padding: 0px;
}

.sidebar .widget ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.sidebar .widget a {
  color: #777777;
  font-size: 14px;
}

.sidebar .widget a:hover {
  color: #03c4eb;
  text-decoration: underline;
}

/* Search
------------------------------*/
.search-form {
  display: flex;
  width: 100%;
  align-items: center;
}

.search-form .search-field {
  width: 100% !important;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
}

.search-form .search-submit {
  width: auto;
  margin: 0px 0 0 0.5em;
  height: 100%;
}

.search-form label {
  flex-grow: 2;
  margin: 0px;
}

/* Recent Comment
------------------------------*/
.widget_recent_comments ul {
  margin-top: 25px;
}

.widget_recent_comments ul li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.widget_recent_comments ul a {
  font-style: italic;
}

.widget_recent_comments .comment-author-link a {
  font-weight: bold;
  font-style: normal;
}

/* Recent Categories, Archive, Meta
------------------------------*/
.widget-area .widget_categories li, .widget-area .widget_archive li, .widget-area .widget_meta li {
  float: left;
  margin-bottom: 0;
  width: 50%;
}

@media screen and (min-width: 720px) {
  .widget-area .widget_categories li, .widget-area .widget_archive li, .widget-area .widget_meta li {
    width: 50%;
  }
}
@media screen and (min-width: 940px) {
  .widget-area .widget_categories li, .widget-area .widget_archive li, .widget-area .widget_meta li {
    width: 100%;
    float: none;
  }
}
@media screen and (min-width: 1140px) {
  .widget-area .widget_categories li, .widget-area .widget_archive li, .widget-area .widget_meta li {
    width: 50%;
    float: left;
  }
}
.widget_recent_entries ul li {
  margin: 0px;
  padding: 10px 0px 10px 0px;
  border-bottom: 1px solid #e9e9e9;
}

.sidebar .widget_calendar a {
  color: #03c4eb;
  text-decoration: underline;
}

/*--------------------------------------------------------------
8.0 Sections
--------------------------------------------------------------*/
/* Section Stuffs
------------------------------*/
.section-padding {
  padding: 70px 0px;
  padding: 4.375rem 0rem;
}

.section-padding-lg {
  padding: 90px 0px;
  padding: 5.625rem 0rem;
}

.section-padding-larger {
  padding: 140px 0px;
  padding: 8.75rem 0rem;
}

.section-meta {
  background-color: #f8f9f9;
}

.onepage-section {
  position: relative;
  overflow: hidden;
}

.onepage-section:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  content: " ";
  z-index: 1;
}

.onepage-section .container-fluid,
.onepage-section .container {
  position: relative;
  z-index: 5;
}

.section-inverse {
  background: #222222;
}

.section-inverse .section-title-area .section-title {
  color: rgba(255, 255, 255, 0.99);
}

.section-inverse .section-title-area .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-inverse .section-title-area .section-subtitle::after {
  background: rgba(255, 255, 255, 0.8);
}

.section-inverse .pricing-table .pricing__item ul p {
  color: #777777;
}

.section-inverse-extended {
  background: #333333;
}

.section-inverse-extended .section-title-area .section-title {
  color: rgba(255, 255, 255, 0.99);
}

.section-inverse-extended .section-title-area .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-inverse-extended .section-title-area .section-subtitle::after {
  background: rgba(255, 255, 255, 0.8);
}

.section-inverse {
  color: rgba(255, 255, 255, 0.5);
}

.section-inverse h1, .section-inverse h2, .section-inverse h3, .section-inverse h4, .section-inverse h5, .section-inverse h6 {
  color: rgba(255, 255, 255, 0.9);
}

.section-inverse p {
  color: rgba(255, 255, 255, 0.5);
}

.section-title-area {
  margin-bottom: 60px;
  text-align: center;
}

.section-title-area .section-title {
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 800;
  position: relative;
  margin-bottom: 0px;
  text-transform: uppercase;
}

@media screen and (min-width: 940px) {
  .section-title-area .section-title {
    font-size: 40px;
    letter-spacing: 3.5px;
  }
}
.section-title-area .section-subtitle {
  color: #aaaaaa;
  font-size: 12px;
  display: inline-block;
  position: relative;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media screen and (min-width: 940px) {
  .section-title-area .section-subtitle {
    font-size: 14px;
  }
}
.section-desc {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* Section: Hero
------------------------------*/
.hero-slideshow-wrapper {
  width: 100%;
  position: relative;
  background-color: #222222;
  overflow: hidden;
  /* Loading icon */
}

.hero-slideshow-wrapper:after {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  content: "";
}

.hero-slideshow-wrapper .hero__content .hero-large-text, .hero-slideshow-wrapper .hero__content .hero-small-text, .hero-slideshow-wrapper .hero__content .btn,
.hero-slideshow-wrapper .hero__content .hcl2-content {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.hero-slideshow-wrapper .hero__content .hero-large-text {
  -webkit-transition-delay: 0.7s; /* Safari */
  transition-delay: 0.7s;
}

.hero-slideshow-wrapper .hero__content .hero-small-text {
  -webkit-transition-delay: 0.8s; /* Safari */
  transition-delay: 0.8s;
}

.hero-slideshow-wrapper .hero__content .btn {
  -webkit-transition-delay: 1s; /* Safari */
  transition-delay: 1s;
}

.hero-slideshow-wrapper .hero__content .hcl2-content {
  -webkit-transition-delay: 0.7s; /* Safari */
  transition-delay: 0.7s;
}

.hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-large-text, .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-small-text, .hero-slideshow-wrapper.loaded .container .hero__content:hover .btn {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-large-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-small-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.hero-slideshow-wrapper.loaded .container .hero__content:hover .btn {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.hero-slideshow-wrapper.loaded .container .hero__content .hero-large-text,
.hero-slideshow-wrapper.loaded .container .hero__content .hero-small-text,
.hero-slideshow-wrapper.loaded .container .hero__content .btn, .hero-slideshow-wrapper.loaded .container .hero__content .hcl2-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hero-slideshow-wrapper .slider-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999999;
  margin: 0px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.animation-disable .hero-slideshow-wrapper {
  /* Loading icon */
}

.animation-disable .hero-slideshow-wrapper .hero__content .hero-large-text, .animation-disable .hero-slideshow-wrapper .hero__content .hero-small-text, .animation-disable .hero-slideshow-wrapper .hero__content .btn, .animation-disable .hero-slideshow-wrapper .hero__content .hcl2-content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.animation-disable .hero-slideshow-wrapper .hero__content .hero-large-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper .hero__content .hero-small-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper .hero__content .btn {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper .hero__content .hcl2-content {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-large-text, .animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-small-text, .animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .btn, .animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .hcl2-content {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-large-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-small-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .btn {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper.loaded .container .hero__content:hover .hcl2-content {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.animation-disable .hero-slideshow-wrapper .slider-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999999;
  margin: 0px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.js-rotating {
  display: none;
}

.js-rotating.morphext {
  display: inline-block;
}

.is-customize-preview .slider-spinner {
  display: none !important;
}

.is-customize-preview .hero-slideshow-wrapper .hero__content .hero-large-text, .is-customize-preview .hero-slideshow-wrapper .hero__content .hero-small-text, .is-customize-preview .hero-slideshow-wrapper .hero__content .btn, .is-customize-preview .hero-slideshow-wrapper .hero__content .hcl2-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}

.is-customize-preview .hero-slideshow-wrapper .hero__content .hero-large-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper .hero__content .hero-small-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper .hero__content .btn {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper .hero__content .hcl2-content {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-large-text, .is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-small-text, .is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .btn, .is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .hcl2-content {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-large-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .hero-small-text {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .btn {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content:hover .hcl2-content {
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}

.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content .hero-large-text,
.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content .hero-small-text,
.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content .btn,
.is-customize-preview .hero-slideshow-wrapper.loaded .container .hero__content .hcl2-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hero-slideshow-normal .container {
  padding: 10% 0px;
  position: relative;
  z-index: 80;
}

.hero-slideshow-fullscreen .container {
  z-index: 80;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hero__content {
  color: #FFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
}

.hero__content h1, .hero__content h2, .hero__content h3, .hero__content h4, .hero__content h5, .hero__content h6 {
  color: #FFF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__content a.btn {
  margin: 10px 10px 20px 0px;
  margin: 0.625rem 0.625rem 1.25rem 0rem;
}

.hero__content p {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

/* Hero Content Style 2. */
.hero-content-style2 h1 {
  font-weight: 800;
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: 3px;
}

.hero-content-style2 .hcl2-content {
  padding: 50px 0px;
  padding: 3.125rem 0rem;
}

.hero-content-style2 .hcl2-image {
  text-align: right;
}

@media (max-width: 1199px) {
  .hero-content-style2 .hcl2-content, .hero-content-style2 .hcl2-image {
    text-align: center;
  }
}
/* Hero Text Style1. */
.hero-content-style1 {
  text-align: center;
}

.hero-content-style1 h2 {
  color: #FFFFFF;
  font-size: 35px;
  letter-spacing: 2px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-weight: 800;
  text-transform: uppercase;
}

@media screen and (min-width: 720px) {
  .hero-content-style1 h2 {
    font-size: 60px;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 940px) {
  .hero-content-style1 h2 {
    font-size: 75px;
    letter-spacing: 4px;
  }
}
.hero-content-style1 h2 strong {
  font-weight: 900;
}

.hero-content-style1 p {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  text-align: center;
  font-weight: 100;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 940px) {
  .hero-content-style1 p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1140px) {
  .hero-content-style1 p {
    font-size: 22px;
  }
}
.hero-content-style1 p strong {
  letter-spacing: -0.6px;
}

@media (max-width: 767px) {
  .hero-content-style1 .btn {
    display: inline-block;
  }
}
.hero-content-style1 a:active, .hero-content-style1 a:focus, .hero-content-style1 .btn:active, .hero-content-style1 .btn:focus {
  outline: none;
}

#hero .btn {
  box-shadow: none;
}

#hero .btn-theme-primary:focus {
  color: #fff;
}

.h-on-top.is-transparent #hero .container .hero__content {
  margin-top: 75px;
}

/* Text Rotator */
.morphext > .animated {
  display: inline-block;
}

/* Section: Features
------------------------------*/
.icon-background-default {
  color: #03c4eb;
}

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

.feature-item .feature-icon {
  color: #fff;
}

.feature-item .fa-5x {
  font-size: 4em;
}

.feature-item:hover .icon-background-default {
  color: #333333;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (min-width: 940px) {
  .feature-item.col-lg-3:nth-child(4n+1), .feature-item.col-lg-4:nth-child(3n+1), .feature-item.col-lg-6:nth-child(2n+1) {
    clear: left;
  }
}
.feature-media {
  text-align: center;
  margin-bottom: 20px;
}

/* Section: About Us
------------------------------*/
.section-about .about-image {
  text-align: center;
}

.section-about .about-image img {
  margin-bottom: 30px;
}

.section-about .section-title-area {
  margin-bottom: 30px;
}

.section-about .row > div {
  margin-top: 30px;
}

/* Section: Services
------------------------------*/
.section-services .service-item {
  background: #FFFFFF;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  transition: all 100ms ease-out 0s;
}

@media screen and (max-width: 720px) {
  .section-services .service-item {
    padding: 20px;
  }
}
.section-services .service-item:after {
  content: "";
  display: table;
  clear: both;
  clear: both;
}

.section-services .service-item:hover {
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.09);
}

.section-services .service-item .service-image {
  float: left;
  margin-right: 30px;
}

.section-services .service-item .service-image img {
  max-width: 120px;
  height: auto;
}

.section-services .service-item .service-image i {
  color: #03c4eb;
}

@media screen and (max-width: 720px) {
  .section-services .service-item .service-image {
    float: none;
    margin-bottom: 30px;
    margin-top: 10px;
    margin-right: 0px;
    text-align: center;
  }
}
.section-services .service-item .service-thumbnail {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.section-services .service-item .service-content {
  overflow: hidden;
}

.section-services .service-item .service-content p {
  margin: 0px;
  font-size: 14px;
  color: #777777;
}

@media screen and (max-width: 720px) {
  .section-services .service-item .service-content {
    text-align: center;
    overflow: auto;
  }
}
.section-services .service-item .service-title {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #333333;
}

.section-services .service-item .service-link:before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
}

/* Section: Counter
------------------------------*/
.counter_item {
  text-align: center;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

.counter_item .counter__number {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 800;
  color: #03c4eb;
  line-height: 1;
  font-family: serif, sans-serif;
  text-transform: uppercase;
}

.counter_item .counter_title {
  font-size: 18px;
  font-size: 1.125rem;
}

/* Section: Parallax
------------------------------*/
#parallax-hero {
  position: relative;
  background: none;
  overflow: hidden;
}

#parallax-hero .hero-slideshow-wrapper {
  background: none;
}

#parallax-hero .hero-slideshow-wrapper::after {
  background: none;
}

.section-parallax, #parallax-hero {
  background: none;
  position: relative;
  overflow: hidden;
}

.section-parallax > section, .section-parallax .onepage-section, .section-parallax .section-inverse, #parallax-hero > section, #parallax-hero .onepage-section, #parallax-hero .section-inverse {
  background: none;
}

.section-parallax .parallax-bg, #parallax-hero .parallax-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: 50% 50%;
}

.section-parallax .parallax-bg:before, #parallax-hero .parallax-bg:before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.section-parallax .parallax-bg img, #parallax-hero .parallax-bg img {
  position: absolute;
  left: 0;
  display: none;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.section-parallax .parallax-bg.no-img, #parallax-hero .parallax-bg.no-img {
  height: 120%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-attachment: scroll;
  background-position: 50% 0;
}

.parallax_bg_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  opacity: 0.4;
}

.parallax-content {
  z-index: 10;
  position: relative;
  padding: 100px 0px;
  text-align: center;
}

.parallax-content h1, .parallax-content h2, .parallax-content h3, .parallax-content h4, .parallax-content h5, .parallax-content h6 {
  color: #FFFFFF;
  line-height: 1.5;
}

.parallax-content p, .parallax-content a {
  color: #FFFFFF;
}

/* Section: Team
------------------------------*/
.section-team .team-member {
  padding: 0px 0.5px;
  text-align: center;
}

.section-team .row {
  margin-left: -0.5px;
  margin-right: -0.5px;
}

.team-members.row {
  margin-left: 0px;
  margin-left: 0rem;
  margin-right: 0px;
  margin-right: 0rem;
}

@media screen and (min-width: 940px) {
  .team-members.row.team-layout-4 .team-member {
    width: 25%;
  }
  .team-members.row.team-layout-4 .team-member:nth-child(4n+1) {
    clear: left;
  }
  .team-members.row.team-layout-3 .team-member {
    width: 33.3333333333%;
  }
  .team-members.row.team-layout-3 .team-member:nth-child(3n+1) {
    clear: left;
  }
  .team-members.row.team-layout-2 .team-member {
    width: 50%;
  }
  .team-members.row.team-layout-2 .team-member:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (max-width: 940px) {
  .team-members.row .team-member {
    width: 50%;
  }
  .team-members.row .team-member:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (max-width: 720px) {
  .team-members.row .team-member {
    width: 50%;
  }
  .team-members.row .team-member:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (max-width: 576px) {
  .team-members.row .team-member {
    width: 100%;
  }
}
.team-member {
  margin-bottom: 20px;
  float: left;
}

.team-member .member-thumb {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.team-member .member-thumb:hover .member-profile {
  bottom: 8px;
  transition: all 0.1s linear;
}

.team-member .member-thumb:hover img {
  opacity: 0.7;
  transition: all 0.1s linear;
}

.team-member .member-thumb .member-profile {
  position: absolute;
  text-align: center;
  bottom: -35px;
  left: auto;
  right: auto;
  width: 100%;
}

.team-member .member-thumb .member-profile a {
  color: #000000;
}

.team-member .member-thumb .member-profile a .fa-inverse {
  color: #ffffff;
}

.team-member .member-thumb .member-profile a:hover {
  color: #03c4eb;
}

.team-member .member-info {
  margin-top: 0px;
  position: relative;
  z-index: 30;
  text-align: center;
}

.team-member .member-name {
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.team-member .member-name:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -15%;
  bottom: -11px;
  width: 30%;
  height: 1px;
  background: #cccccc;
}

.team-member .member-position {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.3px;
}

/* Section: News
------------------------------*/
.all-news {
  text-align: center;
  margin-top: 40px;
  display: block;
}

.section-news .list-article, .archive .list-article, .blog .list-article {
  border-top: 1px solid #e9e9e9;
  padding: 25px 0px;
}

.section-news .list-article:last-of-type, .archive .list-article:last-of-type, .blog .list-article:last-of-type {
  border-bottom: 1px solid #e9e9e9;
}

.section-news .list-article-thumb, .archive .list-article-thumb, .blog .list-article-thumb {
  float: left;
  margin-right: 30px;
}

.section-news .list-article-thumb a img:hover, .archive .list-article-thumb a img:hover, .blog .list-article-thumb a img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 940px) {
  .section-news .list-article-thumb, .archive .list-article-thumb, .blog .list-article-thumb {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .section-news .list-article-thumb, .archive .list-article-thumb, .blog .list-article-thumb {
    width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 30px;
    display: block;
  }
  .section-news .list-article-thumb img, .archive .list-article-thumb img, .blog .list-article-thumb img {
    width: 100%;
  }
}
.section-news .list-article-content, .archive .list-article-content, .blog .list-article-content {
  float: none;
  overflow: hidden;
}

.section-news .list-article-meta, .archive .list-article-meta, .blog .list-article-meta {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.section-news .entry-title, .archive .entry-title, .blog .entry-title {
  font-size: 22px;
  line-height: 1.5;
}

.section-news .entry-title a:hover, .archive .entry-title a:hover, .blog .entry-title a:hover {
  text-decoration: none;
}

.section-news .entry-excerpt p, .archive .entry-excerpt p, .blog .entry-excerpt p {
  margin-bottom: 0px;
}

.archive .site-main .list-article:first-child,
.blog .site-main .list-article:first-of-type {
  border-top: none;
  padding-top: 0px;
}

.page-template-template-blog .section-news .list-article {
  padding: 30px 0px;
}

.page-template-template-blog .section-news .list-article:first-of-type {
  border-top: none;
  padding-top: 0px;
}

.page-template-template-blog .section-news .list-article:last-of-type {
  border-bottom: none;
}

.section-news.section-inverse .list-article {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.section-news.section-inverse .list-article:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.section-news.section-inverse h1 a, .section-news.section-inverse h2 a, .section-news.section-inverse h3 a, .section-news.section-inverse h4 a, .section-news.section-inverse h5 a {
  color: rgba(255, 255, 255, 0.8);
}

.section-news.section-inverse h1 a:hover, .section-news.section-inverse h2 a:hover, .section-news.section-inverse h3 a:hover, .section-news.section-inverse h4 a:hover, .section-news.section-inverse h5 a:hover {
  color: #FFF;
}

/* Section: Contact
------------------------------*/
.section-contact input, .section-contact textarea {
  width: 100%;
}

.section-contact .address-contact {
  margin-top: 5px;
  margin-bottom: 15px;
}

.section-contact .address-contact span {
  float: left;
  color: #aaaaaa;
}

.section-contact .address-contact .address-content {
  display: block;
  padding-left: 45px;
  font-style: italic;
  line-height: 2;
}

.section-contact .address-contact .fa-inverse {
  font-size: 12px;
}

.section-contact textarea {
  max-height: 190px;
}

/*
.wpcf7-form {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}

.wpcf7-form br {
  margin-bottom: 5px;
}

.wpcf7-form label {
  width: 100%;
}
*/

div.wpcf7-validation-errors {
  margin: 20px 0px;
  padding: 15px;
}

div.wpcf7-response-output {
  margin: 20px 0px;
}

/* Section: Videolightbox
------------------------------*/
.section-videolightbox {
  text-align: center;
}

.section-videolightbox .videolightbox__icon {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.section-videolightbox .videolightbox__heading {
  text-transform: uppercase;
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 0px;
  font-weight: 500;
}

.section-videolightbox .videolightbox__heading strong {
  font-weight: 800;
}

.section-videolightbox .video_icon {
  background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
  border: 4px solid #fff;
  border-radius: 100px;
  height: 50px;
  line-height: 1;
  padding: 10px;
  width: 50px;
  display: inline-block;
}

.section-videolightbox .video_icon i {
  color: #fff;
  font-size: 20px;
  margin-left: 6px;
  margin-top: 1px;
  line-height: 1;
}

.section-videolightbox .video_icon:hover {
  background: #FFFFFF;
}

.section-videolightbox .video_icon:hover i {
  color: #000;
}

/* Section: Gallery
------------------------------*/
.gallery-grid .g-item {
  padding: 10px;
  float: left;
}

.all-gallery {
  text-align: center;
  margin-top: 40px;
  display: block;
}

.g-zoom-in .g-item {
  display: block;
  overflow: hidden;
}

.g-zoom-in .g-item .inner-content {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.g-zoom-in .g-item img {
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.g-zoom-in .g-item:hover img {
  -ms-transform: scale(1.5, 1.5); /* IE 9 */
  -webkit-transform: scale(1.5, 1.5); /* Safari */
  transform: scale(1.5, 1.5);
}

.g-layout-full-width.container {
  width: 100%;
  max-width: none;
  padding: 0px;
}

@media screen and (min-width: 720px) {
  .g-col-1 .g-item {
    width: 100%;
  }
  .g-col-1 .g-item:nth-child(1n+1) {
    clear: left;
  }
  .g-col-2 .g-item {
    width: 50%;
  }
  .g-col-2 .g-item:nth-child(2n+1) {
    clear: left;
  }
  .g-col-3 .g-item {
    width: 33.3333333333%;
  }
  .g-col-3 .g-item:nth-child(3n+1) {
    clear: left;
  }
  .g-col-4 .g-item {
    width: 25%;
  }
  .g-col-4 .g-item:nth-child(4n+1) {
    clear: left;
  }
  .g-col-5 .g-item {
    width: 20%;
  }
  .g-col-5 .g-item:nth-child(5n+1) {
    clear: left;
  }
  .g-col-6 .g-item {
    width: 16.6666666667%;
  }
  .g-col-6 .g-item:nth-child(6n+1) {
    clear: left;
  }
}
@media screen and (min-width: 576px) and (max-width: 720px) {
  .g-col-1 .g-item {
    width: 100%;
  }
  .g-col-1 .g-item:nth-child(1n+1) {
    clear: left;
  }
  .g-col-2 .g-item {
    width: 50%;
  }
  .g-col-2 .g-item:nth-child(2n+1) {
    clear: left;
  }
  .g-col-3 .g-item {
    width: 33.3333333333%;
  }
  .g-col-3 .g-item:nth-child(3n+1) {
    clear: left;
  }
  .g-col-4 .g-item {
    width: 25%;
  }
  .g-col-4 .g-item:nth-child(4n+1) {
    clear: left;
  }
  .g-col-5 .g-item {
    width: 20%;
  }
  .g-col-5 .g-item:nth-child(5n+1) {
    clear: left;
  }
  .g-col-6 .g-item {
    width: 16.6666666667%;
  }
  .g-col-6 .g-item:nth-child(6n+1) {
    clear: left;
  }
}
@media screen and (max-width: 576px) {
  .g-col-1 .g-item {
    width: 100%;
  }
  .g-col-1 .g-item:nth-child(1n+1) {
    clear: left;
  }
  .g-col-2 .g-item {
    width: 50%;
  }
  .g-col-2 .g-item:nth-child(2n+1) {
    clear: left;
  }
  .g-col-3 .g-item {
    width: 33.3333333333%;
  }
  .g-col-3 .g-item:nth-child(3n+1) {
    clear: left;
  }
  .g-col-4 .g-item {
    width: 25%;
  }
  .g-col-4 .g-item:nth-child(4n+1) {
    clear: left;
  }
  .g-col-5 .g-item {
    width: 20%;
  }
  .g-col-5 .g-item:nth-child(5n+1) {
    clear: left;
  }
  .g-col-6 .g-item {
    width: 16.6666666667%;
  }
  .g-col-6 .g-item:nth-child(6n+1) {
    clear: left;
  }
}
.gallery-justified {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-justified img {
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  border: none;
}

.gallery-justified > a,
.gallery-justified > div {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  float: left;
}

.gallery-masonry {
  width: 100%;
  position: relative;
  display: block;
}

.gallery-masonry:after {
  clear: both;
}

.gallery-masonry .inner {
  display: block;
}

/*--------------------------------------------------------------
9.0 External Plugins
--------------------------------------------------------------*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* WooCommerce support */
.woocommerce-result-count {
  font-style: italic;
}

.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count {
  margin-bottom: 1.5em;
}

.woocommerce-ordering select {
  padding: 7px;
  margin-top: -10px;
}

.woocommerce ul.products li.product h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 7px;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce button.button.alt {
  background-color: #03c4eb;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 2px;
}

.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce button.button.alt:hover {
  background: #222222;
  color: #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.woocommerce table.shop_table {
  border-collapse: collapse;
}

.woocommerce .quantity .qty {
  padding: 5px;
}

.woocommerce span.onsale {
  padding: inherit;
}

.related.products h2, #tab-description h2 {
  font-size: 17px;
  font-size: 1.0625rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  padding: 9px 14px;
  font-weight: bold;
}

.woocommerce #customer_details .col-1, .woocommerce #customer_details .col-2, .woocommerce #customer_login .col-1, .woocommerce #customer_login .col-2,
.woocommerce .woocommerce-Addresses .col-1,
.woocommerce .woocommerce-Addresses .col-2,
.woocommerce .woocommerce-customer-details .col-1,
.woocommerce .woocommerce-customer-details .col-2 {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

.woocommerce .woocommerce-additional-fields h3 {
  margin-top: 20px;
}

.woocommerce .cart_totals th {
  text-align: left;
}

.woocommerce .cart_totals h2 {
  font-size: 20px;
  font-size: 1.25rem;
}

.woocommerce .wc-proceed-to-checkout {
  text-align: center;
}

.woocommerce .woocommerce-order-details__title,
.woocommerce .woocommerce-customer-details h2 {
  font-size: 20px;
  font-size: 1.25rem;
}

.woocommerce ul.products li.product .price del {
  display: inline-block;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
  float: none;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: inline-block;
  margin: 0 auto;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #03c4eb;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: #03c4eb;
  opacity: 0.8;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0px;
  padding-left: 0px;
}

.woocommerce-MyAccount-navigation li {
  list-style: none;
}

/* Breadcrumbs
------------------------------*/
.breadcrumbs {
  font-size: 10px;
  padding: 15px 0px;
  border-bottom: 1px solid #e9e9e9;
  color: #858585;
}

@media screen and (min-width: 720px) {
  .breadcrumbs {
    font-size: 12px;
  }
}
.breadcrumbs i {
  margin: 0px 6px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #777777;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin-right: 20px;
  position: relative;
}

@media screen and (min-width: 720px) {
  .breadcrumbs span {
    margin-right: 40px;
  }
}
.breadcrumbs span span {
  margin-right: 0;
}

.breadcrumbs a:before {
  border-bottom: 6px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.2);
  border-top: 6px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
  right: -11px;
  top: 2px;
}

@media screen and (min-width: 720px) {
  .breadcrumbs a:before {
    right: -23px;
    top: 3px;
  }
}
.breadcrumbs a:after {
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ffffff;
  border-top: 5px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
  right: -10px;
  top: 3px;
}

@media screen and (min-width: 720px) {
  .breadcrumbs a:after {
    right: -22px;
    top: 4px;
  }
}
/* Coursel and slider */
/**
 * Owl Carousel v2.3.0
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme {
  position: relative;
}

.owl-theme .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: 0px;
  padding: 4px 10px 5px;
  transform: translateY(-50%);
  border: 0px none;
}

.owl-theme .owl-nav button:focus {
  box-shadow: none;
  outline: none;
}

.owl-theme .owl-nav:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.owl-theme .owl-nav .owl-prev {
  left: 15px;
}

.owl-theme .owl-nav .owl-prev .lg-icon::before {
  content: "\e094";
}

.owl-theme .owl-nav .owl-next {
  right: 15px;
}

.owl-theme .owl-nav .owl-next .lg-icon::before {
  content: "\e095";
}

.owl-theme .owl-nav {
  margin-top: 0px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.gallery-carousel.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: 0px none;
  padding: 0px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* WP FORMS */
div.wpforms-container .wpforms-form .wpforms-field .wpforms-field-label, div.wpforms-container .wpforms-form .wpforms-field .wpforms-field-sublabel {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}

div.wpforms-container .wpforms-form .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}

div.wpforms-container .wpforms-form .wpforms-field input[type=date],
div.wpforms-container .wpforms-form .wpforms-field input[type=datetime],
div.wpforms-container .wpforms-form .wpforms-field input[type=datetime-local],
div.wpforms-container .wpforms-form .wpforms-field input[type=email],
div.wpforms-container .wpforms-form .wpforms-field input[type=month],
div.wpforms-container .wpforms-form .wpforms-field input[type=number],
div.wpforms-container .wpforms-form .wpforms-field input[type=password],
div.wpforms-container .wpforms-form .wpforms-field input[type=range],
div.wpforms-container .wpforms-form .wpforms-field input[type=search],
div.wpforms-container .wpforms-form .wpforms-field input[type=tel],
div.wpforms-container .wpforms-form .wpforms-field input[type=text],
div.wpforms-container .wpforms-form .wpforms-field input[type=time],
div.wpforms-container .wpforms-form .wpforms-field input[type=url],
div.wpforms-container .wpforms-form .wpforms-field input[type=week],
div.wpforms-container .wpforms-form .wpforms-field select,
div.wpforms-container .wpforms-form .wpforms-field textarea {
  padding: 10px;
  max-width: 100%;
  border: 0px;
  font-size: 15px;
  font-weight: normal;
  line-height: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  background-color: #f2f2f2;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  color: #000000;
  border-bottom: 1px solid #fff;
}

div.wpforms-container .wpforms-form .wpforms-field input[type=date]:hover, div.wpforms-container .wpforms-form .wpforms-field input[type=date]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=datetime]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=datetime]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=datetime-local]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=datetime-local]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=email]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=email]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=month]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=month]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=number]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=number]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=password]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=password]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=range]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=range]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=search]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=search]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=tel]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=tel]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=text]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=text]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=time]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=time]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=url]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=url]:focus,
div.wpforms-container .wpforms-form .wpforms-field input[type=week]:hover,
div.wpforms-container .wpforms-form .wpforms-field input[type=week]:focus,
div.wpforms-container .wpforms-form .wpforms-field select:hover,
div.wpforms-container .wpforms-form .wpforms-field select:focus,
div.wpforms-container .wpforms-form .wpforms-field textarea:hover,
div.wpforms-container .wpforms-form .wpforms-field textarea:focus {
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  border-color: #EBEBEB;
  border-bottom: 1px solid #fff !important;
  background: #e9e9e9;
}

div.wpforms-container .wpforms-form .wpforms-field textarea {
  min-height: 215px;
}

div.wpforms-container .wpforms-form button[type=submit] {
  width: 100%;
  text-align: center;
  display: block;
}

/* Pirate Forms */
.pirate_forms .pirate-forms-fields-container .form_field_wrap {
  width: 100%;
  max-width: 100%;
  padding: 0px;
}

.pirate_forms .pirate-forms-fields-container .form_field_wrap .form-control {
  border-radius: 0px;
}

.pirate_forms .pirate-forms-fields-container .form_field_wrap .pirate-forms-submit-button {
  display: block;
  width: 100%;
}

.pirate_forms .contact_message_wrap #pirate-forms-contact-message {
  border-radius: 0px;
  background-color: #f2f2f2;
  border: 0 none;
  min-height: 245px;
  max-height: 999px;
}

/**
* JQuery Bullly
* @see https://github.com/pixelgrade/rellax/blob/gh-pages/assets/css/bully.css
 */
[class*=c-bully],
[class*=c-bully]:before,
[class*=c-bully]:after {
  box-sizing: border-box;
}

.c-bully {
  position: fixed;
  top: 50%;
  right: 28px;
  font-size: 12px;
  transform: translate(0, -50%);
  z-index: 600;
  color: #333;
  text-transform: uppercase;
}

@media screen and (max-width: 940px) {
  .c-bully {
    right: 0px;
  }
}
.c-bully.c-bully--inversed {
  color: #fff;
}

@media screen and (max-width: 940px) {
  .c-bully.c-bully-hide-on-mobile {
    display: none;
  }
}
.onepress-menu-mobile-opening .c-bully {
  z-index: 10;
}

.c-bully__bullet {
  padding: 8px;
  opacity: 0;
  cursor: pointer;
  position: relative;
}

.c-bully__bullet:hover .c-bully__title {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 940px) {
  .c-bully__bullet {
    padding: 8px 3px;
  }
}
.c-bully__title {
  position: absolute;
  right: 26px;
  top: 1px;
  left: auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 1px 10px;
  border-radius: 2px;
  transition: all 0.2s ease-out;
  display: block;
  opacity: 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  transform: scale(0.6);
}

.c-bully__bullet:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  will-change: transform;
}

@media screen and (max-width: 940px) {
  .c-bully__bullet:after {
    width: 9px;
    height: 9px;
  }
}
.c-bully__bullet--active {
  position: absolute;
  top: 0;
  left: 0;
  transition: top 0.2s ease-out;
}

.c-bully__bullet--active:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  background: currentColor;
  border-radius: 50%;
}

@media screen and (max-width: 940px) {
  .c-bully__bullet--active:before {
    width: 9px;
    height: 9px;
  }
}
.c-bully__bullet--active:after {
  border-color: transparent;
}

.c-bully__bullet--pop {
  animation: bully-pop 0.6s cubic-bezier(0.485, 1.63, 0.43, 2) forwards, fade-in 0.2s 0.2s ease-out forwards;
}

.c-bully__bullet--squash {
  opacity: 1;
  animation: bully-squash 0.2s ease-out forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bully-pop {
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bully-squash {
  50% {
    transform: scale(0.6, 1.8);
  }
  100% {
    transform: scale(1);
  }
}
.single-post .content-inner {
  margin-left: auto;
  margin-right: auto;
}

.single-post .right-sidebar .content-inner {
  margin-left: 0px;
}

.single-post .left-sidebar .content-inner {
  margin-right: 0px;
}

.entry-content ul,
.entry-content ol {
  margin: 1.5em auto;
  list-style-position: outside;
}

.entry-content li {
  margin-left: 2.5em;
  margin-bottom: 6px;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
  margin: 0 auto;
}

.entry-content ul ul li,
.entry-content ol ol li,
.entry-content ul ol li,
.entry-content ol ul li {
  margin-left: 0;
}

/*--------------------------------------------------------------
  # Block Color Palette Colors
  --------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

/* CUSTOM */
.site-header {
	position: fixed;
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	z-index: 1000;
	-webkit-transition: all 1s ease-out;
	transition: all 0.5s ease-out;
}

.site-header::before, .site-header::after {
	display: none;
}

.followWrap {
	display: block;
}

.site-branding {
	width: 80px;
	flex-shrink: 0;
	margin-left: 75px;
}

.site-branding a {
	display: block;
	width: 100%;
}

.site-branding a img {
	display: block;
	width: 100%;
}

/* Site Navigation */
.onepress-menu,
.onepress-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.onepress-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 90px;
}

.onepress-menu > li {
	position: relative;
}

.onepress-menu a {
	display: block;
	position: relative;
	color: #1A1311;
	font-size: 17px;
	line-height: 22px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s;
	margin: 0;
	padding: 0;
	z-index: 2;
}

.onepress-menu a:hover {
	opacity: 0.7;
}

.onepress-menu > li.menu-item-has-children > a {
	z-index: 100;
}

.onepress-menu > li.menu-item-has-children > a::after {
	background: #1A1311;
    bottom: -8px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translate3d(-50%, 0, 0);
    transition: width .3s ease;
    width: 0;
}

.onepress-menu > li.menu-item-has-children:hover > a::after {
    width: 100%;
}

.onepress-menu > li.menu-item-has-children:hover > a:hover {
	opacity: 1;
}

.onepress-menu .nav-toggle-subarrow {
	display: none;
}

.onepress-menu ul {
	position: absolute;
	display: block;
	height: 0;
	overflow: hidden;
	opacity: 0;
	z-index: -1;
	top: 100%;
	left: -20px;
	/* background: #fff; */
	min-width: 100%;
	padding: 40px 20px 20px;
}

.onepress-menu li:hover > ul,
.onepress-menu li.sfHover > ul {
	display: block;
	height: initial;
	overflow: initial;
	opacity: 1;
	z-index: 99;
}

.onepress-menu ul li {
	margin: 0 0 20px;
}

.onepress-menu ul li:last-child {
	margin: 0;
}

.header-contact a {
	display: flex;
	width: 344px;
	height: 90px;
	justify-content: center;
	align-items: center;
	column-gap: 16px;
	background: #D4393E;
	color: #FFFFFF;
	font-size: 24px;
	line-height: 32px;
	padding: 0;
	margin: 0;
}

.header-contact a::before {
	display: block;
	content: '';
	width: 42px;
	height: 28px;
	background: url('./images/email-icon.svg') no-repeat;
	background-size: contain;
	background-position: center center;
}

#nav-toggle {
	display: none;
}

.tsunagu-footer {
	border-top: 1px solid #707070;
	padding: 0;
	background: #FFFFFF;
}

.footer-top {
	padding: 100px 0 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 122px;
}

.footer-logo {
	width: 212px;
}

.footer-logo img {
	display: block;
	width: 100%;
}

ul.footer-menu {
	display: flex;
	flex-wrap: wrap;
	width: 814px;
	list-style: none;
	padding: 0;
	margin: 0;
	column-gap: 50px;
	row-gap: 30px;
}

ul.footer-menu li {
	display: inline-flex;
	width: max-content;
	margin: 0;
	padding: 0;
}

ul.footer-menu li::before {
	display: block;
	content: "■";
	font-family: Hiragino Kaku Gothic ProN W3, sans-serif;
	color: #000000;
	font-size: 19px;
	line-height: 23px;
	margin: 0;
	padding: 0;
}

ul.footer-menu li:last-child::before {
	content: "・";
}

ul.footer-menu li a {
	font-family: Hiragino Kaku Gothic ProN W3, sans-serif;
	color: #000000;
	font-size: 19px;
	line-height: 23px;
	margin: 0;
	padding: 0;
	transition: 0.3s;
	text-decoration: none;
}

ul.footer-menu li a:hover {
	opacity: 0.7;
}

.footer-instagram {
	margin: 0 0 80px;
}

.footer-instagram-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 36px;
	margin: 0 0 12px;
}

.footer-instagram-logo img {
	display: block;
	width: 64px;
}

.footer-instagram-logo p {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
}

.footer-instagram-name {
	margin: 0 0 56px;
}

.footer-instagram-name p {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 18px;
	line-height: 26px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.footer-instagram-image #sb_instagram #sbi_images {
	padding: 0;
	margin: 0;
	display: grid;
	width: 100%;
	grid-template-columns: repeat(8,1fr);
}

.footer-copyright {
	border-top: 1px solid #000000;
	padding: 25px 0;
}

.footer-copyright p {
	font-family: Hiragino Kaku Gothic ProN W3, sans-serif;
	color: #000000;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.site-content {
	padding-top: 90px;
}

.tsunagu-page-banner {
	width: 100%;
}

.tsunagu-page-banner img {
	display: block;
	width: 100%;
}

#banner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1030px;
	padding: 210px 0 0 calc(50vw - 750px);
	background: url(./images/banner-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.banner-text {
	width: 440px;
}

.banner-text h1 {
	display: none;
}

.banner-text p {
	display: none;
}

.banner-text img {
	display: block;
	width: 100%;
}

#home-about {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1823px;
	padding: 116px 0;
	background: url(./images/home-about-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
}

.home-about-image {
	width: 288px;
	margin: 0 auto 75px;
}

.home-greeting-image img {
	display: block;
	width: 100%;
}

.home-greeting-text {
	margin: 0 0 460px;
}

.home-greeting-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #FFFFFF;
	font-size: 30px;
	line-height: 56px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-about-title {
	padding-left: calc(50vw + 160px);
	margin: 0 0 25px;
}

.home-about-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.home-about-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
}

.home-about-text {
	padding-left: calc(50vw + 160px);
}

.home-about-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

#home-vision {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1345px;
	padding: 155px 0 115px;
	background: url(./images/home-vision-bg.png) no-repeat;
	background-size: cover;
	background-position: center top;
}

.home-vision-text {
	margin: 0 0 72px;
}

.home-vision-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-vision-image {
	width: 1461px;
	margin: 0 auto;
}

.home-vision-image img {
	display: block;
	width: 100%;
}

.home-vision-content {
	display: flex;
	justify-content: center;
	align-items: start;
	margin: -240px 0 40px;
}

.home-vision-container {
	position: relative;
}

.home-vision-container:first-child {
	width: 565px;
	left: -113px;
}

.home-vision-container:last-child {
	width: 624px;
	right: -150px;
}

.home-vision-content-title {
	margin: 0 0 58px;
}

.home-vision-container:last-child .home-vision-content-title {
	margin: 0;
}

.home-vision-content-title h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #000000;
	font-size: 25px;
	line-height: 37px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-vision-content-text h4 {
	width: 278px;
	height: 52px;
	margin: 12px auto 8px;
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #FFFFFF;
	font-size: 24px;
	line-height: 52px;
	padding: 0;
	text-align: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.home-vision-content-text h4:nth-child(1) {
	background-image: url(./images/mission-title-bg-1.png);
}

.home-vision-content-text h4:nth-child(3) {
	background-image: url(./images/mission-title-bg-2.png);
}

.home-vision-content-text h4:nth-child(5) {
	background-image: url(./images/mission-title-bg-3.png);
}

.home-vision-content-text h4:nth-child(7) {
	background-image: url(./images/mission-title-bg-4.png);
}

.home-vision-content-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #000000;
	font-size: 18px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-vision-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.home-vision-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.home-vision-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.home-vision-button a:hover {
	opacity: 0.7;
}

#home-news {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 155px 0;
	background: #FFF;
}

.home-news-title {
	margin: 0 0 128px;
}

.home-news-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.home-news-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-news-list {
	width: 1140px;
	height: 615px;
	margin: 0 auto;
	overflow-y: scroll;
}

.home-news-list ul {
	list-style: none;
	margin: 0;
	padding: 48px 0;
}

.home-news-list ul li {
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 40px;
	width: 1030px;
	padding: 0 0 30px;
	margin: 0 0 30px;
	border-bottom: 0.4px solid #000000;
}

.home-news-list-date {
	width: 142px;
	height: 36px;
	border: 0.5px solid #535252;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #535252;
	font-size: 13px;
	line-height: 18px;
	margin: 0;
	padding: 9px;
	text-align: center;
}

h3.home-news-list-title {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 17px;
	line-height: 22px;
	margin: 0;
	padding: 0;
}

a.home-news-list-button {
	text-decoration: none;
	display: block;
	width: 50px;
	height: 50px;
	background: url(./images/news-button.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	transition: 0.3s;
	margin-left: auto;
}

a.home-news-list-button:hover {
	opacity: 0.7;
}

#home-message {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 160px 0;
	background: #FFF;
}

.home-message-title {
	margin: 0 0 56px;
}

.home-message-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.home-message-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-message-content {
	width: 100%;
	height: 783px;
	padding: 225px calc(50vw - 720px) 0;
	background: url(./images/message-bg.png) no-repeat;
	background-size: cover;
	background-position: center top;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.home-message-container {
	width: 352px;
}

.home-message-container:last-child {
	width: 325px;
}

.home-message-company {
	margin: 0 0 16px;
}

.home-message-company p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 19px;
	line-height: 26px;
	margin: 0;
	padding: 0;
}

.home-message-name {
	display: flex;
	justify-content: start;
	align-items: end;
	column-gap: 24px;
	margin: 0 0 44px;
}

.home-message-name span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 13px;
	line-height: 17px;
	margin: 0;
	padding: 0;
}

.home-message-name p {
	display: none;
}

.home-message-name img {
	display: block;
	width: 150px;
}

.home-message-text {
	width: 100%;
	margin: 0 0 64px;
}

.home-message-text p {
	display: none;
}

.home-message-text img {
	display: block;
	width: 100%;
}

.home-message-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.home-message-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.home-message-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.home-message-button a:hover {
	opacity: 0.7;
}

#home-partner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 195px 0 285px;
	background: #FFF;
}

.home-partner-title {
	margin: 0 0 32px;
}

.home-partner-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.home-partner-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-partner-content {
	width: 1030px;
	height: 720px;
	margin: 0 auto;
	border: 0.6px solid #000000;
	padding: 78px;
}

.home-partner-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 60px;
}

.home-partner-content ul li {
	padding: 0 0 75px;
	margin: 0 0 27px;
	border-bottom: 0.6px solid #000000;
}

.home-partner-content ul li:last-child {
	padding: 0;
	margin: 0;
	border-bottom: none;
}

.home-partner-content ul li img {
	display: block;
	width: 454px;
	margin: 0 auto;
}

.home-partner-content ul li:last-child img {
	width: 296px;
}

.home-partner-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.home-partner-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.home-partner-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.home-partner-button a:hover {
	opacity: 0.7;
}

#home-contact {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 150px 0 250px;
	background: #FBE2CC;
	border-radius: 64px 64px 0 0;
}

.home-contact-title {
	margin: 0 0 94px;
}

.home-contact-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.home-contact-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-contact-content {
	width: 1160px;
	margin: 0 auto;
	background: #FFF;
	padding: 82px;
}

.home-contact-text {
	margin: 0 0 50px;
}

.home-contact-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 21px;
	line-height: 46px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-contact-button a {
	width: 372px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.home-contact-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.home-contact-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.home-contact-button a:hover {
	opacity: 0.7;
}

#initiative-details {
	position: relative;
	z-index: 1;
	padding: 174px 0 208px;
	background: #FFF;
}

.initiative-details-title {
	margin: 0 0 140px;
}

.initiative-details-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.initiative-details-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.initiative-details-list {
	width: 1420px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

ul.initiative-details-list li {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: end;
	padding: 0;
	margin: 0 0 240px;
}

.initiative-details-list-image {
	order: 1;
	width: 870px;
	position: relative;
	z-index: 1;
}

.initiative-details-list-image img {
	display: block;
	width: 100%;
}

.initiative-details-list-card {
	order: 2;
	width: 604px;
	height: 604px;
	box-shadow: 25px 25px 50px 0px rgba(0, 0, 0, 0.08);
	border-radius: 0 0 98px 0;
	margin: 0 0 -95px -54px;
	background: #fff;
	position: relative;
	z-index: 2;
}

ul.initiative-details-list li:nth-child(even) .initiative-details-list-image {
	order: 2;
}

ul.initiative-details-list li:nth-child(even) .initiative-details-list-card {
	order: 1;
	margin: 0 -54px -95px 0;
	border-radius: 0 0 0 98px;
}

.initiative-details-list-text {
	width: 460px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.initiative-details-list-text h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 36px;
	line-height: 52px;
	margin: 0 0 24px;
	padding: 0;
}

.initiative-details-list-text img {
	display: block;
	width: 100%;
	margin: 0 0 52px;
}

.initiative-details-list-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

#attempt-others {
	position: relative;
	z-index: 1;
	padding: 120px 0 270px;
	background: url(./images/attempt-others-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center top;
}

.attempt-others-title {
	margin: 0 0 92px;
}

.attempt-others-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.attempt-others-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.attempt-others-list {
	width: 1420px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 76px;
	column-gap: 76px;
}

ul.attempt-others-list li {
	width: 416px;
	height: 416px;
	margin: 0;
	padding: 0;
	background: #fff;
	padding: 56px 54px 0;
}

ul.attempt-others-list li h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 25px;
	line-height: 36px;
	margin: 0 0 18px;
	padding: 0;
}

ul.attempt-others-list li img {
	display: block;
	width: 100%;
	margin: 0 0 36px;
}

ul.attempt-others-list li p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 30px;
	margin: 0;
	padding: 0;
}

#partner {
	position: relative;
	z-index: 1;
	padding: 100px 0 265px;
	background: url(./images/partner-bg.png) no-repeat;
	background-size: cover;
	background-position: center center;
}

.partner-title {
	margin: 0 0 120px;
}

.partner-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.partner-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.partner-list {
	width: 1120px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

ul.partner-list li {
	background: #FFF;
	width: 100%;
	padding: 60px 132px 110px;
	margin: 0 0 155px;
}

ul.partner-list li:last-child {
	margin: 0;
}

.partner-list-logo {
	width: 360px;
	height: 186px;
	margin: 0 auto 50px;
}

.partner-list-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.partner-list-detail {
	width: 100%;
	margin: 0 0 100px;
	border-top: 0.6px solid #000000;
}

.partner-list-detail-row {
	display: flex;
	height: 114px;
}

.partner-list-detail-label {
	width: 184px;
	height: 100%;
	flex-shrink: 0;
	background: #DADADA;
	border-bottom: 0.6px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.partner-list-detail-row:nth-child(even) .partner-list-detail-label {
	background: #E3E3E3;
}

.partner-list-detail-text {
	width: calc(100% - 184px);
	background: #fff;
	border-bottom: 0.6px solid #000000;
	display: flex;
	justify-content: start;
	align-items: center;
	padding: 0 54px;
}

.partner-list-detail-row p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #000000;
	font-size: 22px;
	line-height: 30px;
	margin: 0;
	padding: 0;
}

.partner-list-detail-row a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #000000;
	font-size: 22px;
	line-height: 30px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: 0.3s;
}

.partner-list-detail-row a:hover {
	opacity: 0.7;
}

.partner-list-button {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 28px;
}

.partner-list-button::before {
	display: block;
	content: '';
	width: 46px;
	height: 46px;
	background: url(./images/instagram-icon.svg) no-repeat;
	background-size: contain;
	background-position: center center;
}

.partner-list-button a {
	display: flex;
	align-items: center;
	justify-content: start;
	column-gap: 28px;
	width: 204px;
	text-decoration: none;
	padding: 0 0 8px 20px;
	transition: 0.3s;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #000000;
	font-size: 26px;
	line-height: 38px;
	margin: 0;
	border-bottom: 0.4px solid #000000;
}

.partner-list-button a::after {
	display: block;
	content: "";
	width: 7.5px;
	height: 15px;
	background: url(./images/angle-right.svg) no-repeat;
	background-size: contain;
	background-position: center center;
}

.partner-list-button a:hover {
	opacity: 0.7;
}

#contact {
	position: relative;
	z-index: 1;
	padding: 150px 0;
	background: #FFF;
	border-top: 0.5px solid #1A1311;
	border-bottom: 0.5px solid #1A1311;
}

.contact-title {
	margin: 0 0 120px;
}

.contact-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.contact-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.contact-text {
	margin: 0 0 155px;
}

.contact-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 18px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.contact-form {
	width: 1045px;
	margin: 0 auto 72px;
}

.wpcf7-form > p {
	margin: 0;
}

.form-group {
	margin: 0 0 80px;
}

.form-group.privacy-policy {
	margin: 0 0 136px;
}

.form-group > p {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: start;
	margin: 0;
}

.form-group > p > label {
	width: 100%;
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 18px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 19px;
	line-height: 26px;
	padding: 0;
	margin: 0 0 20px;
}

.form-group.option-input > p > label {
	margin: 0 0 42px;
}

.form-group.postcode-input > p {
	align-items: center;
	justify-content: start;
	column-gap: 38px;
}

.form-required {
	display: block;
	width: 88px;
	height: 30px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 13px;
	line-height: 30px;
	padding: 0;
	margin: 0;
	text-align: center;
	background: #F38019;
	border-radius: 30px;
	letter-spacing: 0;
}

.form-notrequired {
	display: block;
	width: 88px;
	height: 30px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 13px;
	line-height: 30px;
	padding: 0;
	margin: 0;
	text-align: center;
	background: #9F8159;
	border-radius: 30px;
	letter-spacing: 0;
}

.form-group > p > .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.form-group.option-input > p > .wpcf7-form-control-wrap {
	padding: 0 0 0 110px;
}

.form-group.name-input > p > .wpcf7-form-control-wrap {
	width: 500px;
}

.form-group.postcode-input > p > .wpcf7-form-control-wrap {
	width: 500px;
}

.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap {
	position: relative;
	width: 500px;
}

.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap::after {
	position: absolute;
	display: block;
	width: 18px;
	height: 9px;
	content: '';
	background: url(./images/dropdown-arrow.png) no-repeat;
	background-size: contain;
	background-position: center center;
	top: 38px;
	right: 32px;
}

.form-group > p > .wpcf7-form-control-wrap input[type="text"],
.form-group > p > .wpcf7-form-control-wrap input[type="tel"],
.form-group > p > .wpcf7-form-control-wrap input[type="email"] {
	width: 100%;
	padding: 30px 50px;
	background: #EFEFEF;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 19px;
	line-height: 26px;
	margin: 0;
	border: 1px solid #CBCCCC;
	border-radius: 2px;
}

.form-group > p > .wpcf7-form-control-wrap select {
	width: 100%;
	padding: 30px 50px;
	background: #EFEFEF;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 19px;
	line-height: 26px;
	margin: 0;
	border: 1px solid #CBCCCC;
	border-radius: 2px;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

.form-group > p > .wpcf7-form-control-wrap select::-ms-expand {
    display: none;
}

.form-group > p > .wpcf7-form-control-wrap textarea {
	width: 100%;
	height: 340px;
	padding: 30px 50px;
	background: #EFEFEF;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 19px;
	line-height: 26px;
	margin: 0;
	border: 1px solid #CBCCCC;
	border-radius: 2px;
}

.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox {
	display: block;
}

.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item {
	display: block;
	margin: 0 0 25px;
}

.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item.last {
	margin: 0;
}

.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label {
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 22px;
	margin: 0;
}

.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
	margin: 0;
	width: 26px;
	height: 26px;
}

.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 19px;
	line-height: 26px;
	margin: 0;
	padding: 0;
}

a#postcode-button {
	width: 294px;
	height: 63px;
	border-radius: 2px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 16px 32px 16px 48px;
	align-items: center;
	background: #4D4D4D;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #FFFFFF;
	font-size: 19px;
	line-height: 26px;
	cursor: pointer;
}

a#postcode-button::after {
	display: block;
	width: 54px;
	height: 12px;
	content: '';
	background: url(./images/postcode-button-arrow.png) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

a#postcode-button:hover {
	opacity: 0.7;
}

.contact-privacy-policy {
	width: 100%;
	border: 1px solid #CBCCCC;
	border-radius: 2px;
	padding: 80px;
}

.contact-privacy-policy > h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 21px;
	line-height: 28px;
	margin: 0 0 34px;
	padding: 0;
}

.contact-privacy-policy > p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 32px;
	margin: 0 0 54px;
	padding: 0;
}

.contact-privacy-policy > p:last-child {
	margin: 0;
}

.contact-privacy-policy > p .wpcf7-acceptance {
	display: block;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item {
	position: relative;
	display: block;
	margin: 0;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 28px;
	column-gap: 16px;
	position: relative;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label::before {
	display: block;
	content: '';
	width: 43px;
	height: 43px;
	background: url(./images/contact-accept-checkbox.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
	width: 28px;
	height: 28px;
	position: absolute;
	left: 236px;
	margin: 0;
	background: transparent;
	opacity: 0;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"]:checked {
	opacity: 1;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
	display: flex;
	align-items: center;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 21px;
	line-height: 28px;
	text-decoration: underline;
	transition: 0.3s;
}

.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label a:hover {
	opacity: 0.7;
}

.wpcf7-form > p input[type="submit"] {
	width: 450px;
	height: 80px;
	text-decoration: none;
	transition: 0.3s;
	display: block;
	margin: 0 auto;
	padding: 20px;
	background: url(./images/contact-submit-bg.png) no-repeat;
	background-size: cover;
	background-position: center center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 23px;
	line-height: 40px;
	cursor: pointer;
	text-align: center;
}

.wpcf7-form > p input[type="submit"]:hover {
	opacity: 0.7;
}

.form-group > p .wpcf7-not-valid-tip {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #E71B21;
	font-size: 16px;
	line-height: 24px;
	margin: 10px 0 0;
	padding: 0;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-form.invalid .wpcf7-not-valid-tip {
	display: block !important;
}

.wpcf7-response-output {
	display: none !important;
}

.contact-note p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 32px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.contact-backtohome a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.contact-backtohome a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.contact-backtohome a::before {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
	transform: rotate(180deg);
}

.contact-backtohome a:hover {
	opacity: 0.7;
}

#preparation {
	position: relative;
	z-index: 1;
	padding: 150px 0;
	background: #FFF;
	border-top: 0.5px solid #1A1311;
	border-bottom: 0.5px solid #1A1311;
}

.preparation-title {
	margin: 0 0 120px;
}

.preparation-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.preparation-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.preparation-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 18px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#privacy-policy {
	position: relative;
	z-index: 1;
	padding: 150px 0 220px;
	background: #FFF;
	border-top: 0.5px solid #1A1311;
	border-bottom: 0.5px solid #1A1311;
}

.privacy-policy-title {
	margin: 0 0 156px;
}

.privacy-policy-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.privacy-policy-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.privacy-policy-text {
	margin: 0 0 64px;
}

.privacy-policy-text p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 18px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.privacy-policy-content {
	width: 1080px;
	margin: 0 auto 96px;
}

.privacy-policy-content h2 {
	width: 100%;
	padding: 12px;
	border: 0.5px solid #000000;
	border-radius: 48px;
	margin: 0 0 75px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
}

.privacy-policy-content p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 18px;
	line-height: 54px;
	margin: 0 0 140px;
	padding: 0;
	text-align: center;
}

.privacy-policy-content p:last-child {
	margin: 0;
}

.privacy-policy-note {
	width: 1080px;
	margin: 0 auto;
}

.privacy-policy-note p {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0 0 25px;
	padding: 0 0 25px;
	border-bottom: 0.5px solid #1A1311;
	text-align: center;
}

.privacy-policy-note p:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

#news-page {
	position: relative;
	z-index: 1;
	padding: 150px 0 210px;
	background: #FFF;
	border-top: 0.5px solid #1A1311;
	border-bottom: 0.5px solid #1A1311;
}

.news-page-title {
	margin: 0 0 80px;
}

.news-page-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.news-page-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.news-list {
	width: 1280px;
	margin: 0 auto;
}

.news-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-list ul li {
	display: flex;
	justify-content: start;
	align-items: end;
	column-gap: 40px;
	width: 100%;
	padding: 0 0 40px;
	margin: 0 0 24px;
	border-bottom: 0.5px solid #000000;
}

.news-list ul li:last-child {
	margin: 0;
}

.news-list-date {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #535252;
	font-size: 16px;
	line-height: 22px;
	margin: 0 0 22px;
	padding: 0 0 0 4px;
}

.news-list-category {
	width: 178px;
	height: 46px;
	border: 0.6px solid #535252;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #535252;
	font-size: 16px;
	line-height: 22px;
	margin: 0;
	padding: 12px;
	text-align: center;
}

h3.news-list-title {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 21px;
	line-height: 28px;
	margin: 0;
	padding: 9px 0;
}

a.news-list-button {
	text-decoration: none;
	display: block;
	width: 55px;
	height: 55px;
	background: url(./images/news-button.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	transition: 0.3s;
	margin-left: auto;
}

a.news-list-button:hover {
	opacity: 0.7;
}

.news-list-pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	margin: 180px 0 0;
}

.news-list-pagination .page-numbers {
	width: 40px;
	height: 40px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	background: #fff;
	color: #1A1311;
    font-size: 23px;
    line-height: 40px;
    margin: 0;
    padding: 0;
	text-decoration: none;
	border: 0.7px solid #707070;
	text-align: center;
	transition: 0.3s;
}

.news-list-pagination .page-numbers.current {
	color: #fff;
	background: #1A1311;
}

.news-list-pagination a.page-numbers:hover {
	color: #fff;
	background: #1A1311;
}

.news-list-pagination .prev.page-numbers,
.news-list-pagination .next.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
}

.news-list-pagination .prev.page-numbers::after,
.news-list-pagination .next.page-numbers::after {
	display: block;
	content: "";
	width: 9px;
	height: 18px;
	background: url("./images/pagination-angle.svg") no-repeat;
	background-size: contain;
	background-position: center center;
}

.news-list-pagination .prev.page-numbers::after {
	transform: rotate(180deg);
}

.news-list-pagination .prev.page-numbers:hover::after,
.news-list-pagination .next.page-numbers:hover::after {
	background: url("./images/pagination-angle-hover.svg") no-repeat;
	background-size: contain;
}

#single-news {
	position: relative;
	z-index: 1;
	padding: 150px 0 110px;
	background: #FFF;
	border-top: 0.5px solid #1A1311;
	border-bottom: 0.5px solid #1A1311;
}

.single-news-page-title {
	margin: 0 0 80px;
}

.single-news-page-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.single-news-page-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.single-news-header {
	display: flex;
	justify-content: space-between;
	align-items: end;
	width: 1288px;
	padding: 0 0 40px;
	margin: 0 auto 90px;
	border-bottom: 0.5px solid #000000;
}

.single-news-title {
	order: 1;
}

.single-news-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 63px;
	margin: 0;
	padding: 0;
}

.single-news-meta {
	order: 2;
}

.single-news-date {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #535252;
	font-size: 16px;
	line-height: 22px;
	margin: 0 0 22px;
	padding: 0 0 0 4px;
}

.single-news-category {
	width: 178px;
	height: 46px;
	border: 0.6px solid #535252;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #535252;
	font-size: 16px;
	line-height: 22px;
	margin: 0;
	padding: 12px;
	text-align: center;
}

.single-news-image {
	width: 1288px;
	margin: 0 auto 80px;
}

.single-news-image img {
	display: block;
	width: 100%;
}

.single-news-content {
	width: 1288px;
	margin: 0 auto 80px;
	padding: 0 0 80px;
	border-bottom: 0.5px solid #000000;
}

.single-news-content p {
	width: 932px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 38px;
	margin: 0 auto 80px;
	padding: 0;
}

.single-news-content p:last-child {
	margin: 0 auto;
}

.single-news-content strong {
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	color: #1A1311;
	font-size: 18px;
	line-height: 38px;
	padding: 0;
	margin: 0;
}

.single-news-content h2 {
	width: 932px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 24px;
	line-height: 36px;
	margin: 0 auto 80px;
	padding: 0 0 0 20px;
	border-left: 8px solid #000000;
}

.single-news-content h3 {
	width: 932px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 20px;
	line-height: 29px;
	margin: 0 auto 80px;
	padding: 0 0 10px;
	border-bottom: 1px solid #000000;
}

.single-news-content blockquote {
	width: 932px;
	margin: 0 auto 80px;
	background: rgba(234, 110, 0, 0.25);
	padding: 15px 20px;
	border-left: 7px solid #EA6E00;
}

.single-news-content blockquote p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 38px;
	margin: 0 auto 80px;
	padding: 0;
	font-style: normal;	
}

.single-news-content ul {
	width: 932px;
	margin: 0 auto 80px;
	list-style: "●  ";
	padding: 0;
	list-style-position: inside;
}

.single-news-content ul li {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 38px;
	margin: 0;
	padding: 0;
}

.single-news-content ul li::marker {
	color: #EA6E00;
	font-size: 18px;
	line-height: 38px;
}

.single-news-content ol {
	width: 932px;
	margin: 0 auto 80px;
	padding: 0;
	list-style-position: inside;
}

.single-news-content ol li {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 38px;
	margin: 0;
	padding: 0;
}

.single-news-content ol li:last-child {
	margin: 0;
}

.single-news-content p a {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 38px;
	padding: 0;
	margin: 0;
	text-decoration: underline;
	transition: 0.3s;
}

.single-news-content p a:hover {
	opacity: 0.7;
}

.single-news-content p:has(img) {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 45px;
	row-gap: 40px;
}

.single-news-content p:has(img) img {
	display: block;
	width: 100%;
	max-width: calc((100% - 90px)/3);
}

.single-news-content p:has(img):has(span, a, b, i, strong, em, br) {
	display: block;
}

.single-news-content p:has(img):has(span, a, b, i, strong, em, br) img {
	max-width: initial;
}

.single-news-pagination {
	width: 920px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 26px;
}

.single-news-pagination a {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #000;
	font-size: 23px;
	line-height: 31px;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: 0.3s;
}

.single-news-pagination a:hover {
	opacity: 0.7;
}

.single-news-pagination a.inactive {
	pointer-events: none;
	cursor: default;
	opacity: 0.15;
}

.single-news-prev::before {
	display: block;
	content: '';
	width: 14px;
	height: 28px;
	background: url(./images/prev-next-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	transform: rotate(180deg);
}

.single-news-next::before {
	order: 2;
	display: block;
	content: '';
	width: 14px;
	height: 28px;
	background: url(./images/prev-next-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
}

.single-news-backtolist a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.single-news-backtolist a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.single-news-backtolist a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.single-news-backtolist a:hover {
	opacity: 0.7;
}

.about-yka-banner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1030px;
	background: url(./images/about-yka-banner.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
	padding: 170px calc(50vw - 700px) 0;
}

.about-yka-image {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	width: 1400px;
	margin: 0 auto;
}

.about-yka-image img {
	display: block;
	width: 100%;
}

.about-yka-title {
	width: 550px;
	margin: 0 0 30px auto;
}

.about-yka-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 94px;
	line-height: 139px;
	margin: 0;
	padding: 0;
}

.about-yka-title h1 span {
	font-size: 54px;
	line-height: 79px;
	margin: 0 0 0 10px;
}

.about-yka-desc {
	width: 550px;
	margin: 0 0 120px auto;
}

.about-yka-desc img {
	display: block;
	width: 100%;
}

.about-yka-name {
	display: flex;
	justify-content: center;
	align-items: end;
	column-gap: 24px;
	margin: 0;
}

.about-yka-name span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 13px;
	line-height: 17px;
	margin: 0;
	padding: 0;
}

.about-yka-name p {
	display: none;
}

.about-yka-name img {
	display: block;
	width: 150px;
}

#about-yka-message {
	position: relative;
	z-index: 2;
	overflow: hidden;
	margin: -105px 0 5px;
}

.about-yka-message-title {
	margin: 0 0 64px;
}

.about-yka-message-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.about-yka-message-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.about-yka-message-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#about-yka-company {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1205px;
	padding: 320px calc(50vw - 700px) 0 calc(50vw + 110px);
	background: url(./images/about-yka-company-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.about-yka-company-title {
	width: 505px;
}

.about-yka-company-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.about-yka-company-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.about-yka-company-divider {
	width: 0.6px;
	height: 72px;
	background: #1A1311;
	margin: 25px 252px;
}

.about-yka-company-text {
	margin: 0 25px 64px;
}

.about-yka-company-text h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 62px;
	margin: 0 0 40px;
	padding: 0;
}

.about-yka-company-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
}

.about-yka-company-button {
	margin: 0 25px;
}

.about-yka-company-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.about-yka-company-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.about-yka-company-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.about-yka-company-button a:hover {
	opacity: 0.7;
}

#about-yka-facility {
	position: relative;
	z-index: 1;
	padding: 125px 0 90px;
	background: url(./images/about-yka-facility-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center top;
}

.about-yka-facility-title {
	margin: 0 0 90px;
}

.about-yka-facility-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.about-yka-facility-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.about-yka-facility-list {
	width: 1400px;
	margin: 0 auto 56px;
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 90px;
	column-gap: 90px;
}

ul.about-yka-facility-list li {
	width: 406px;
	margin: 0;
	padding: 0;
}

ul.about-yka-facility-list li h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 39px;
	line-height: 46px;
	margin: 0 0 25px;
	padding: 0;
	height: 92px;
	display: flex;
	align-items: center;
}

ul.about-yka-facility-list li img {
	display: block;
	width: 100%;
	margin: 0 0 40px;
}

ul.about-yka-facility-list li img:first-child {
	margin: 0 0 50px;
}

ul.about-yka-facility-list li p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

.about-yka-facility-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.about-yka-facility-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.about-yka-facility-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.about-yka-facility-button a:hover {
	opacity: 0.7;
}

#about-yka-recruitment {
	position: relative;
	z-index: 1;
	padding: 255px 0 220px;
}

.about-yka-recruitment-card {
	width: 1522px;
	margin: 0 auto;
	background: url(./images/about-yka-recruitment-bg.png) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 100px 804px 100px 128px;
}

.about-yka-recruitment-title {
	margin: 0 0 20px;
}

.about-yka-recruitment-title h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 39px;
	line-height: 58px;
	margin: 0;
	padding: 0;
}

.about-yka-recruitment-divider {
	margin: 0 0 70px;
}

.about-yka-recruitment-divider img {
	display: block;
	width: 100%;
}

.about-yka-recruitment-text {
	margin: 0 0 60px;
}

.about-yka-recruitment-text h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 39px;
	line-height: 56px;
	margin: 0 0 40px;
	padding: 0;
}

.about-yka-recruitment-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

.about-yka-recruitment-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.about-yka-recruitment-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.about-yka-recruitment-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.about-yka-recruitment-button a:hover {
	opacity: 0.7;
}

.about-heian-banner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1030px;
	background: url(./images/about-heian-banner.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
	padding: 170px calc(50vw - 700px) 0;
}

.about-heian-image {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	width: 1400px;
	margin: 0 auto;
}

.about-heian-image img {
	display: block;
	width: 100%;
}

.about-heian-title {
	margin: 0 0 356px;
}

.about-heian-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 94px;
	line-height: 139px;
	margin: 0;
	padding: 0;
}

.about-heian-title h1 span {
	font-size: 54px;
	line-height: 79px;
	margin: 0 0 0 10px;
}

.about-heian-title h1 span:first-child {
	margin: 0 10px 0 0;
}

.about-heian-name {
	display: flex;
	justify-content: center;
	align-items: end;
	column-gap: 24px;
	margin: 0;
}

.about-heian-name span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 13px;
	line-height: 17px;
	margin: 0;
	padding: 0;
}

.about-heian-name p {
	display: none;
}

.about-heian-name img {
	display: block;
	width: 150px;
}

#about-heian-message {
	position: relative;
	z-index: 2;
	overflow: hidden;
	margin: -105px 0 5px;
}

.about-heian-message-title {
	margin: 0 0 64px;
}

.about-heian-message-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.about-heian-message-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.about-heian-message-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#about-heian-company {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1340px;
	margin: -50px 0 0;
	padding: 370px calc(50vw - 700px) 0;
	background: url(./images/about-heian-company-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.about-heian-company-title {
	width: 505px;
}

.about-heian-company-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.about-heian-company-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.about-heian-company-divider {
	width: 0.6px;
	height: 72px;
	background: #1A1311;
	margin: 25px 252px;
}

.about-heian-company-text {
	margin: 0 0 64px;
}

.about-heian-company-text h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 62px;
	margin: 0 0 40px;
	padding: 0;
}

.about-heian-company-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
}

.about-heian-company-button {
	margin: 0;
}

.about-heian-company-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.about-heian-company-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.about-heian-company-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.about-heian-company-button a:hover {
	opacity: 0.7;
}

#about-heian-facility {
	position: relative;
	z-index: 1;
	padding: 190px 0 40px;
	background: url(./images/about-heian-facility-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center top;
}

.about-heian-facility-title {
	margin: 0 0 84px;
}

.about-heian-facility-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.about-heian-facility-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.about-heian-facility-list {
	width: 1400px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 84px;
	column-gap: 84px;
}

ul.about-heian-facility-list li {
	width: 410px;
	margin: 0;
	padding: 0;
}

ul.about-heian-facility-list li > h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 39px;
	line-height: 46px;
	margin: 0 0 25px;
	padding: 0;
}

ul.about-heian-facility-list li > h3 span {
	display: block;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 20px;
	line-height: 29px;
	margin: 0;
	padding: 0;	
}

ul.about-heian-facility-list li > img {
	display: block;
	width: 100%;
	margin: 0 0 36px;
}

ul.about-heian-facility-list li > img:first-child {
	margin: 0 0 48px;
	box-shadow: 0 0 10px #EAD0CA;
}

ul.about-heian-facility-list li > p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	height: 200px;
	margin: 0 0 28px;
	padding: 0;
}

.about-heian-facility-button a {
	width: 296px;
	height: 57px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0 auto;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 57px;
}

.about-heian-facility-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.about-heian-facility-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.about-heian-facility-button a:hover {
	opacity: 0.7;
}

#about-heian-community {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 1664px;
	padding: 465px calc(50vw - 700px) 0 calc(50vw + 20px);
	background: url(./images/about-heian-community-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
}

.about-heian-community-title {
	margin: 0 0 40px;
}

.about-heian-community-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 62px;
	margin: 0;
	padding: 0;
}

.about-heian-community-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
}

#yka-initiatives-intro {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-top: 0.5px solid #1A1311;
	padding: 135px 0 0;
	margin: 0 0 165px;
}

.yka-initiatives-intro-title {
	margin: 0 0 45px;
}

.yka-initiatives-intro-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.yka-initiatives-intro-text {
	margin: 0 0 68px;
}

.yka-initiatives-intro-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-initiatives-intro-content {
	overflow: hidden;
	width: 100%;
	height: 808px;
	padding: 470px 0 0;
	background: url(./images/yka-initiatives-intro-content-bg.jpg) no-repeat;
	background-size: 1920px;
	background-position: center top;
}

.yka-initiatives-intro-content ul {
	width: 1275px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.yka-initiatives-intro-content ul li {
	width: 538px;
	height: 218px;
	margin: 0;
	padding: 20px;
	background: url(./images/yka-initiatives-intro-content-list-bg.png) no-repeat;
	background-size: contain;
	background-position: center bottom;
}

.yka-initiatives-intro-content ul li h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #FFFFFF;
	font-size: 57px;
	line-height: 85px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-initiatives-intro-content ul li p {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #FFFFFF;
	font-size: 30px;
	line-height: 42px;
	height: 84px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#yka-initiatives-1 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 0 0 140px;
	margin: 0 0 210px;
	background: url(./images/yka-initiatives-1-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center bottom;
}

.yka-initiatives-1-title {
	margin: 0 0 45px;
}

.yka-initiatives-1-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-initiatives-1-title h2 span {
	display: block;
	font-size: 73px;
	line-height: 108px;
}

.yka-initiatives-1-text {
	margin: 0 0 115px;
}

.yka-initiatives-1-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul.yka-initiatives-1-lists {
	width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	column-gap: 80px;
}

ul.yka-initiatives-1-lists li {
	width: 410px;
	margin: 0;
	padding: 0;
}

ul.yka-initiatives-1-lists li h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 36px;
	line-height: 40px;
	margin: 0 0 20px;
	padding: 0;
	height: 80px;
	display: flex;
	align-items: center;
}

ul.yka-initiatives-1-lists li:nth-child(2) h3::after {
	position: relative;
	top: -12px;
	right: -6px;
	display: block;
	content: "※";
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 21px;
	line-height: 24px;
	margin: 0;
	padding: 0;
}

ul.yka-initiatives-1-lists li img {
	display: block;
	width: 100%;
	margin: 0 0 36px;
}

ul.yka-initiatives-1-lists li img:first-child {
	margin: 0 0 28px;
}

ul.yka-initiatives-1-lists li p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

.yka-initiatives-1-note {
	display: block;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 16px;
	line-height: 30px;
	margin: 5px 0 0;
	padding: 0;
}

#yka-initiatives-2 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 90px 0 0;
	margin: 0 0 180px;
	background: url(./images/yka-initiatives-2-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center top;
}

.yka-initiatives-2-title {
	margin: 0 0 52px;
}

.yka-initiatives-2-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-initiatives-2-title h2 span {
	display: block;
	font-size: 73px;
	line-height: 108px;
}

.yka-initiatives-2-text {
	margin: 0 0 115px;
}

.yka-initiatives-2-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 23px;
	line-height: 42px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-initiatives-2-image {
	width: 100%;
	padding-left: calc(50vw - 700px);
	margin: 0 0 120px;
}

.yka-initiatives-2-image img {
	display: block;
	width: 100%;
}

ul.yka-initiatives-2-lists {
	width: 1400px;
	margin: 0 auto 115px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	column-gap: 80px;
	row-gap: 80px;
}

ul.yka-initiatives-2-lists > li {
	width: 410px;
	margin: 0;
	padding: 0;
}

ul.yka-initiatives-2-lists > li:last-child {
	width: 100%;
}

ul.yka-initiatives-2-lists > li h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 36px;
	line-height: 47px;
	margin: 0 0 20px;
	padding: 0;
	height: 94px;
	display: flex;
	align-items: center;
}

ul.yka-initiatives-2-lists > li img {
	display: block;
	width: 100%;
	margin: 0 0 32px;
}

ul.yka-initiatives-2-lists > li img.desktop-only {
	display: block;
}

ul.yka-initiatives-2-lists > li img.mobile-only {
	display: none;
}

ul.yka-initiatives-2-lists > li ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.yka-initiatives-2-lists > li ul li {
	width: 410px;
	display: flex;
	column-gap: 8px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 20px;
	line-height: 36px;
	margin: 0;
	padding: 0;
}

ul.yka-initiatives-2-lists > li ul li::before {
	display: block;
	content: '●';
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #EA6E00;
	font-size: 20px;
	line-height: 36px;
	margin: 0;
	padding: 0;
}

ul.yka-initiatives-2-lists > li:last-child ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 72px;
	column-gap: 80px;
}

.yka-initiatives-2-button {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 80px;
}

.yka-initiatives-2-button a {
	width: 342px;
	height: 78px;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	margin: 0;
	padding: 0 21px;
	align-items: center;
	background: #EA6E00;
	border-radius: 78px;
}

.yka-initiatives-2-button a p {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.yka-initiatives-2-button a::after {
	display: block;
	width: 10px;
	height: 12px;
	content: '';
	background: url(./images/home-button-angle.svg) no-repeat;
	background-size: contain;
	background-position: center center;
	flex-shrink: 0;
}

.yka-initiatives-2-button a:hover {
	opacity: 0.7;
}

.tsunagu-page-breadcrumbs {
	position: relative;
	overflow: hidden;
	z-index: 1;
	border-top: 0.5px solid #1A1311;
	padding: 30px 0;	
	margin: 0 0 140px;
}

.tsunagu-page-breadcrumbs p {
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 36px;
	width: 1460px;
	margin: 0 auto;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #BBBCBC;
	font-size: 17px;
	line-height: 22px;
	padding: 0;
}

.tsunagu-page-breadcrumbs p a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #BBBCBC;
	font-size: 17px;
	line-height: 22px;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: 0.3s;
}

.tsunagu-page-breadcrumbs p a:hover {
	opacity: 0.7;
}

.tsunagu-page-breadcrumbs p img {
	display: block;
	width: 9px;
}

#institution-guide {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-top: 0.5px solid #1A1311;
	padding: 135px 0 320px;
	background: #FFF;
}

.institution-guide-title {
	margin: 0 0 120px;
}

.institution-guide-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.institution-guide-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.institution-guide-1 {
	position: relative;
	width: 100%;
	padding: 0 calc(50vw - 700px);
	margin: 0 0 360px;
	background: url(./images/institution-guide-1-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center 56px;
}

.institution-guide-2 {
	position: relative;
	width: 100%;
	padding: 0 calc(50vw - 700px);
	margin: 0 0 360px;
	background: url(./images/institution-guide-2-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center 56px;
}

.institution-guide-3 {
	position: relative;
	width: 100%;
	padding: 0 calc(50vw - 700px);
	margin: 0;
	background: url(./images/institution-guide-3-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center 56px;
}

.institution-guide-list-title {
	margin: 0 0 45px;
}

.institution-guide-list-title h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 62px;
	line-height: 91px;
	margin: 0;
	padding: 0;
}

.institution-guide-list-text {
	margin: 0 0 56px;
}

.institution-guide-list-text p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

.institution-guide-list-contact {
	width: 632px;
	margin: 0 0 95px;
}

.institution-guide-list-contact-row {
	margin: 0 0 5px;
	display: flex;
}

.institution-guide-list-contact-row:last-child {
	margin: 0;
}

.institution-guide-list-contact-label {
	width: 190px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	padding: 14px 22px;
	background: #BD4939;
}

.institution-guide-2 .institution-guide-list-contact-label {
	background: #EA6E00;
}

.institution-guide-3 .institution-guide-list-contact-label {
	background: #C05A24;
}

.institution-guide-list-contact-text {
	width: 432px;
	display: flex;
	align-items: center;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	padding: 14px 22px;
	background: #fff;
}

.institution-guide-list-thumbnail {
	z-index: 1;
	position: absolute;
	top: 180px;
	right: calc(50vw - 960px);
	width: 963px;
}

.institution-guide-list-thumbnail img {
	display: block;
	width: 100%;
}

.institution-guide-list-images {
	position: relative;
	z-index: 2;
	display: flex;
	margin: 0 0 105px;
	column-gap: 24px;
}

.institution-guide-list-images img {
	display: block;
	width: 425px;
}

.institution-guide-list-flow h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 32px;
	line-height: 40px;
	margin: 0 0 36px;
	padding: 0;
	text-align: center;
}

.institution-guide-list-flow img {
	position: relative;
	display: block;
	margin: 0 auto;
}

.institution-guide-1 .institution-guide-list-flow img {
	width: 1249px;
	left: 73px;
}

.institution-guide-2 .institution-guide-list-flow img {
	width: 1295px;
	left: -6px;
}

.institution-guide-list-introducing {
	width: 1322px;
	margin: 0 auto;
}

.institution-guide-list-introducing h3 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #1A1311;
	font-size: 32px;
	line-height: 40px;
	margin: 0 0 48px;
	padding: 0;
	text-align: center;
}

.institution-guide-list-introducing-image {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 34px;
}

.institution-guide-list-introducing-image img {
	display: block;
	width: 648px;
}

.institution-guide-list-introducing ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 26px;
	row-gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.institution-guide-list-introducing ul li {
	width: 648px;
	padding: 26px;
	margin: 0;
	background: #C05A24;
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #FFFFFF;
	font-size: 27px;
	line-height: 40px;
	text-align: center;
}

.institution-guide-list-introducing ul li:last-child {
	width: 100%;
}

.institution-guide-list-introducing ul li span {
	display: block;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}

#yka-awards {
	position: relative;
	z-index: 1;
	border-top: 0.5px solid #1A1311;
	padding: 135px 0 0;
	background: #FFF;
}

.yka-awards-title {
	margin: 0 0 115px;
}

.yka-awards-title h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	color: #000000;
	font-size: 47px;
	line-height: 70px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-awards-title p {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 16px;
	line-height: 24px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.yka-awards-lists {
	padding: 160px 0 256px;
	margin: 0;
	background: url(./images/yka-awards-bg.png) no-repeat;
	background-size: 1920px;
	background-position: center center;
}

.yka-awards-lists ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.yka-awards-lists ul li {
	width: 1660px;
	display: flex;
	align-items: center;
	column-gap: 80px;
	margin: 0 0 170px;
	margin-right: auto;
}

.yka-awards-lists ul li:nth-child(2) {
	margin-bottom: 440px;
}

.yka-awards-lists ul li:nth-child(3) {
	margin: 0 0 170px auto;
}

.yka-awards-lists ul li:last-child {
	margin: 0 0 0 auto;
}

.yka-awards-image {
	order: 1;
	width: 880px;
}

.yka-awards-lists ul li:nth-child(3) .yka-awards-image,
.yka-awards-lists ul li:nth-child(4) .yka-awards-image {
	order: 2;
}

.yka-awards-image img {
	display: block;
	width: 100%;
}

.yka-awards-content {
	order: 2;
	width: 700px;
}

.yka-awards-lists ul li:nth-child(3) .yka-awards-content,
.yka-awards-lists ul li:nth-child(4) .yka-awards-content {
	order: 1;
}

.yka-awards-content h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	color: #1A1311;
	font-size: 35px;
	line-height: 58px;
	margin: 0 0 50px;
	padding: 0;
	width: max-content;
}

.yka-awards-content p {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	color: #1A1311;
	font-size: 18px;
	line-height: 40px;
	margin: 0;
	padding: 0;
}

.yka-awards-lists ul li:first-child .yka-awards-content p {
	display: flex;
	column-gap: 54px;
}

.yka-awards-lists ul li:first-child .yka-awards-content p img {
	display: block;
	width: 295px;
}

.desktop-only {
	display: block;
}

.mobile-only {
	display: none;
}

.grecaptcha-badge {
    display: none !important;
}

#recaptcha-holder > .grecaptcha-badge {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    margin: 0 auto 40px
}

@media screen and (min-width: 1921px) {
	.site-header {
		height: 4.69vw;
	}

	.site-branding {
		width: 4.17vw;
		margin-left: 3.91vw;
	}

	.onepress-menu {
		column-gap: 4.69vw;
	}

	.onepress-menu a {
		font-size: 0.89vw;
		line-height: 1.15vw;
	}

	.onepress-menu > li.menu-item-has-children > a::after {
		bottom: -0.42vw;
		height: 0.10vw;
	}

	.onepress-menu ul {
		left: -1.04vw;
		padding: 2.08vw 1.04vw 1.04vw;
	}

	.onepress-menu ul li {
		margin: 0 0 1.04vw;
	}

	.header-contact a {
		width: 17.92vw;
		height: 4.69vw;
		column-gap: 0.83vw;
		font-size: 1.25vw;
		line-height: 1.67vw;
	}

	.header-contact a::before {
		width: 2.19vw;
		height: 1.46vw;
	}

	.tsunagu-footer {
		border-top: 0.05vw solid #707070;
	}

	.footer-top {
		padding: 5.21vw 0 10.42vw;
		column-gap: 6.35vw;
	}

	.footer-logo {
		width: 11.04vw;
	}

	ul.footer-menu {
		width: 42.4vw;
		column-gap: 2.6vw;
		row-gap: 1.56vw;
	}

	ul.footer-menu li::before {
		font-size: 0.99vw;
		line-height: 1.2vw;
	}

	ul.footer-menu li a {
		font-size: 0.99vw;
		line-height: 1.2vw;
	}

	.footer-instagram {
		margin: 0 0 4.17vw;
	}

	.footer-instagram-logo {
		column-gap: 1.88vw;
		margin: 0 0 0.63vw;
	}

	.footer-instagram-logo img {
		width: 3.33vw;
	}

	.footer-instagram-logo p {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.footer-instagram-name {
		margin: 0 0 2.92vw;
	}

	.footer-instagram-name p {
		font-size: 0.94vw;
		line-height: 1.35vw;
	}

	.footer-copyright {
		border-top: 0.05vw solid #000000;
		padding: 1.3vw 0;
	}

	.footer-copyright p {
		font-size: 0.83vw;
		line-height: 1.04vw;
	}

	.site-content {
		padding-top: 4.69vw;
	}

	#banner {
		height: 53.65vw;
		padding: 10.94vw 0 0 10.42vw;
	}

	.banner-text {
		width: 22.92vw;
	}

	#home-about {
		height: 94.95vw;
		padding: 6.04vw 0;
	}

	.home-about-image {
		width: 15vw;
		margin: 0 auto 3.91vw;
	}

	.home-greeting-text {
		margin: 0 0 23.96vw;
	}

	.home-greeting-text p {
		font-size: 1.56vw;
		line-height: 2.92vw;
	}

	.home-about-title {
		padding-left: 58.54vw;
		margin: 0 0 1.3vw;
	}

	.home-about-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.home-about-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.home-about-text {
		padding-left: 58.54vw;
	}

	.home-about-text p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	#home-vision {
		height: 70.05vw;
		padding: 8.07vw 0 5.99vw;
	}

	.home-vision-text {
		margin: 0 0 3.75vw;
	}

	.home-vision-text p {
		font-size: 1.2vw;
		line-height: 2.19vw;
	}

	.home-vision-image {
		width: 76.09vw;
	}

	.home-vision-content {
		margin: -12.5vw 0 2.08vw;
	}

	.home-vision-container:first-child {
		width: 29.43vw;
		left: -5.89vw;
	}

	.home-vision-container:last-child {
		width: 32.5vw;
		right: -7.81vw;
	}

	.home-vision-content-title {
		margin: 0 0 3.02vw;
	}

	.home-vision-content-title h3 {
		font-size: 1.3vw;
		line-height: 1.93vw;
	}

	.home-vision-content-text h4 {
		width: 14.48vw;
		height: 2.71vw;
		margin: 0.63vw auto 0.42vw;
		font-size: 1.25vw;
		line-height: 2.71vw;
	}

	.home-vision-content-text p {
		font-size: 0.94vw;
		line-height: 2.19vw;
	}

	.home-vision-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.home-vision-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.home-vision-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#home-news {
		padding: 8.07vw 0;
	}

	.home-news-title {
		margin: 0 0 6.67vw;
	}

	.home-news-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.home-news-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.home-news-list {
		width: 59.38vw;
		height: 32.03vw;
	}

	.home-news-list ul {
		padding: 2.5vw 0;
	}

	.home-news-list ul li {
		column-gap: 2.08vw;
		width: 53.65vw;
		padding: 0 0 1.56vw;
		margin: 0 0 1.56vw;
		border-bottom: 0.02vw solid #000000;
	}

	.home-news-list-date {
		width: 7.4vw;
		height: 1.88vw;
		border: 0.03vw solid #535252;
		font-size: 0.68vw;
		line-height: 0.94vw;
	}

	h3.home-news-list-title {
		font-size: 0.89vw;
		line-height: 1.15vw;
	}

	a.home-news-list-button {
		width: 2.6vw;
		height: 2.6vw;
	}

	#home-message {
		padding: 8.33vw 0;
	}

	.home-message-title {
		margin: 0 0 2.92vw;
	}

	.home-message-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.home-message-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.home-message-content {
		width: 100%;
		height: 40.78vw;
		padding: 11.72vw 12.5vw 0;
	}

	.home-message-container {
		width: 18.33vw;
	}

	.home-message-container:last-child {
		width: 16.93vw;
	}

	.home-message-company {
		margin: 0 0 0.83vw;
	}

	.home-message-company p {
		font-size: 0.99vw;
		line-height: 1.35vw;
	}

	.home-message-name {
		column-gap: 1.25vw;
		margin: 0 0 2.29vw;
	}

	.home-message-name span {
		font-size: 0.68vw;
		line-height: 0.89vw;
	}

	.home-message-name img {
		width: 7.81vw;
	}

	.home-message-text {
		margin: 0 0 3.33vw;
	}

	.home-message-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.home-message-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.home-message-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#home-partner {
		padding: 10.16vw 0 14.84vw;
	}

	.home-partner-title {
		margin: 0 0 1.67vw;
	}

	.home-partner-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.home-partner-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.home-partner-content {
		width: 53.65vw;
		height: 37.5vw;
		border: 0.03vw solid #000000;
		padding: 4.06vw;
	}

	.home-partner-content ul {
		margin: 0 0 3.13vw;
	}

	.home-partner-content ul li {
		padding: 0 0 3.91vw;
		margin: 0 0 1.41vw;
		border-bottom: 0.03vw solid #000000;
	}

	.home-partner-content ul li img {
		width: 23.65vw;
	}

	.home-partner-content ul li:last-child img {
		width: 15.42vw;
	}

	.home-partner-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.home-partner-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.home-partner-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#home-contact {
		padding: 7.81vw 0 13.02vw;
		border-radius: 3.33vw 3.33vw 0 0;
	}

	.home-contact-title {
		margin: 0 0 4.9vw;
	}

	.home-contact-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.home-contact-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.home-contact-content {
		width: 60.42vw;
		padding: 4.27vw;
	}

	.home-contact-text {
		margin: 0 0 2.6vw;
	}

	.home-contact-text p {
		font-size: 1.09vw;
		line-height: 2.4vw;
	}

	.home-contact-button a {
		width: 19.38vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.home-contact-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.home-contact-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#initiative-details {
		padding: 9.06vw 0 10.83vw;
	}

	.initiative-details-title {
		margin: 0 0 7.29vw;
	}

	.initiative-details-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.initiative-details-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	ul.initiative-details-list {
		width: 73.96vw;
	}

	ul.initiative-details-list li {
		margin: 0 0 12.5vw;
	}

	.initiative-details-list-image {
		width: 45.31vw;
	}

	.initiative-details-list-card {
		width: 31.46vw;
		height: 31.46vw;
		box-shadow: 1.3vw 1.3vw 2.6vw 0vw rgba(0, 0, 0, 0.08);
		border-radius: 0 0 5.1vw 0;
		margin: 0 0 -4.95vw -2.81vw;
	}

	ul.initiative-details-list li:nth-child(even) .initiative-details-list-card {
		margin: 0 -2.81vw -4.95vw 0;
		border-radius: 0 0 0 5.1vw;
	}

	.initiative-details-list-text {
		width: 23.96vw;
	}

	.initiative-details-list-text h3 {
		font-size: 1.88vw;
		line-height: 2.71vw;
		margin: 0 0 1.25vw;
	}

	.initiative-details-list-text img {
		margin: 0 0 2.71vw;
	}

	.initiative-details-list-text p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	#attempt-others {
		padding: 6.25vw 0 14.06vw;
		background-size: 100vw;
	}

	.attempt-others-title {
		margin: 0 0 4.79vw;
	}

	.attempt-others-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.attempt-others-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	ul.attempt-others-list {
		width: 73.96vw;
		row-gap: 3.96vw;
		column-gap: 3.96vw;
	}

	ul.attempt-others-list li {
		width: 21.67vw;
		height: 21.67vw;
		padding: 2.92vw 2.81vw 0;
	}

	ul.attempt-others-list li h3 {
		font-size: 1.3vw;
		line-height: 1.88vw;
		margin: 0 0 0.94vw;
	}

	ul.attempt-others-list li img {
		margin: 0 0 1.88vw;
	}

	ul.attempt-others-list li p {
		font-size: 0.94vw;
		line-height: 1.56vw;
	}

	#partner {
		padding: 5.21vw 0 13.8vw;
	}

	.partner-title {
		margin: 0 0 6.25vw;
	}

	.partner-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.partner-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	ul.partner-list {
		width: 58.33vw;
	}

	ul.partner-list li {
		padding: 3.13vw 6.88vw 5.73vw;
		margin: 0 0 8.07vw;
	}

	.partner-list-logo {
		width: 18.75vw;
		height: 9.69vw;
		margin: 0 auto 2.6vw;
	}

	.partner-list-detail {
		margin: 0 0 5.21vw;
		border-top: 0.03vw solid #000000;
	}

	.partner-list-detail-row {
		height: 5.94vw;
	}

	.partner-list-detail-label {
		width: 9.58vw;
		height: 100%;
		border-bottom: 0.03vw solid #fff;
	}

	.partner-list-detail-text {
		width: calc(100% - 9.58vw);
		border-bottom: 0.03vw solid #000000;
		padding: 0 2.81vw;
	}

	.partner-list-detail-row p {
		font-size: 1.15vw;
		line-height: 1.56vw;
	}

	.partner-list-detail-row a {
		font-size: 1.15vw;
		line-height: 1.56vw;
	}

	.partner-list-button {
		column-gap: 1.46vw;
	}

	.partner-list-button::before {
		width: 2.4vw;
		height: 2.4vw;
	}

	.partner-list-button a {
		column-gap: 1.46vw;
		width: 10.63vw;
		padding: 0 0 0.42vw 1.04vw;
		font-size: 1.35vw;
		line-height: 1.98vw;
		border-bottom: 0.02vw solid #000000;
	}

	.partner-list-button a::after {
		width: 0.39vw;
		height: 0.78vw;
	}

	#contact {
		padding: 7.81vw 0;
		border-top: 0.03vw solid #1A1311;
		border-bottom: 0.03vw solid #1A1311;
	}

	.contact-title {
		margin: 0 0 6.25vw;
	}

	.contact-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.contact-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.contact-text {
		margin: 0 0 8.07vw;
	}

	.contact-text p {
		font-size: 0.94vw;
		line-height: 2.19vw;
	}

	.contact-form {
		width: 54.43vw;
		margin: 0 auto 3.75vw;
	}

	.form-group {
		margin: 0 0 4.17vw;
	}

	.form-group.privacy-policy {
		margin: 0 0 7.08vw;
	}

	.form-group > p > label {
		column-gap: 0.94vw;
		font-size: 0.99vw;
		line-height: 1.35vw;
		margin: 0 0 1.04vw;
	}

	.form-group.option-input > p > label {
		margin: 0 0 2.19vw;
	}

	.form-group.postcode-input > p {
		column-gap: 1.98vw;
	}

	.form-required {
		width: 4.58vw;
		height: 1.56vw;
		font-size: 0.68vw;
		line-height: 1.56vw;
		border-radius: 1.56vw;
	}

	.form-notrequired {
		width: 4.58vw;
		height: 1.56vw;
		font-size: 0.68vw;
		line-height: 1.56vw;
		border-radius: 1.56vw;
	}

	.form-group.option-input > p > .wpcf7-form-control-wrap {
		padding: 0 0 0 5.73vw;
	}

	.form-group.name-input > p > .wpcf7-form-control-wrap {
		width: 26.04vw;
	}

	.form-group.postcode-input > p > .wpcf7-form-control-wrap {
		width: 26.04vw;
	}
	
	.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap {
		width: 26.04vw;
	}
	
	.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap::after {
		width: 0.94vw;
		height: 0.47vw;
		top: 1.98vw;
		right: 1.67vw;
	}

	.form-group > p > .wpcf7-form-control-wrap input[type="text"],
	.form-group > p > .wpcf7-form-control-wrap input[type="tel"],
	.form-group > p > .wpcf7-form-control-wrap input[type="email"] {
		padding: 1.56vw 2.6vw;
		font-size: 0.99vw;
		line-height: 1.35vw;
		border: 0.05vw solid #CBCCCC;
		border-radius: 0.1vw;
	}
	
	.form-group > p > .wpcf7-form-control-wrap select {
		padding: 1.56vw 2.6vw;
		font-size: 0.99vw;
		line-height: 1.35vw;
		border: 0.05vw solid #CBCCCC;
		border-radius: 0.1vw;
	}

	.form-group > p > .wpcf7-form-control-wrap textarea {
		height: 17.71vw;
		padding: 1.56vw 2.6vw;
		font-size: 0.99vw;
		line-height: 1.35vw;
		border: 0.05vw solid #CBCCCC;
		border-radius: 0.1vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item {
		margin: 0 0 1.3vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label {
		column-gap: 1.15vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
		width: 1.35vw;
		height: 1.35vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
		font-size: 0.99vw;
		line-height: 1.35vw;
	}

	a#postcode-button {
		width: 15.31vw;
		height: 3.28vw;
		border-radius: 0.1vw;
		padding: 0.83vw 1.67vw 0.83vw 2.5vw;
		font-size: 0.99vw;
		line-height: 1.35vw;
	}

	a#postcode-button::after {
		width: 2.81vw;
		height: 0.63vw;
	}

	.contact-privacy-policy {
		border: 0.05vw solid #CBCCCC;
		border-radius: 0.1vw;
		padding: 4.17vw;
	}

	.contact-privacy-policy > h3 {
		font-size: 1.09vw;
		line-height: 1.46vw;
		margin: 0 0 1.77vw;
	}

	.contact-privacy-policy > p {
		font-size: 0.94vw;
		line-height: 1.67vw;
		margin: 0 0 2.81vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label {
		font-size: 0.94vw;
		line-height: 1.46vw;
		column-gap: 0.83vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label::before {
		width: 2.24vw;
		height: 2.24vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
		width: 1.46vw;
		height: 1.46vw;
		left: 12.29vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label a {
		font-size: 1.09vw;
		line-height: 1.46vw;
	}

	.wpcf7-form > p input[type="submit"] {
		width: 23.44vw;
		height: 4.17vw;
		padding: 1.04vw;
		font-size: 1.2vw;
		line-height: 2.08vw;
	}

	.form-group > p .wpcf7-not-valid-tip {
		font-size: 0.83vw;
		line-height: 1.25vw;
		margin: 0.52vw 0 0;
	}

	.contact-note p {
		font-size: 0.94vw;
		line-height: 1.67vw;
	}

	.contact-backtohome a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.contact-backtohome a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.contact-backtohome a::before {
		width: 0.52vw;
		height: 0.63vw;
	}

	#preparation {
		padding: 7.81vw 0;
		border-top: 0.03vw solid #1A1311;
		border-bottom: 0.03vw solid #1A1311;
	}

	.preparation-title {
		margin: 0 0 6.25vw;
	}

	.preparation-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.preparation-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.preparation-text p {
		font-size: 0.94vw;
		line-height: 2.19vw;
	}

	#privacy-policy {
		padding: 7.81vw 0 11.46vw;
		border-top: 0.03vw solid #1A1311;
		border-bottom: 0.03vw solid #1A1311;
	}

	.privacy-policy-title {
		margin: 0 0 8.13vw;
	}

	.privacy-policy-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.privacy-policy-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.privacy-policy-text {
		margin: 0 0 3.33vw;
	}

	.privacy-policy-text p {
		font-size: 0.94vw;
		line-height: 2.19vw;
	}

	.privacy-policy-content {
		width: 56.25vw;
		margin: 0 auto 5vw;
	}

	.privacy-policy-content h2 {
		padding: 0.63vw;
		border: 0.03vw solid #000000;
		border-radius: 2.5vw;
		margin: 0 0 3.91vw;
		font-size: 0.94vw;
		line-height: 1.25vw;
	}

	.privacy-policy-content p {
		font-size: 0.94vw;
		line-height: 2.81vw;
		margin: 0 0 7.29vw;
	}

	.privacy-policy-note {
		width: 56.25vw;
	}

	.privacy-policy-note p {
		font-size: 0.94vw;
		line-height: 2.08vw;
		margin: 0 0 1.3vw;
		padding: 0 0 1.3vw;
	}
	
	#recaptcha-holder > .grecaptcha-badge {
		margin: 0 auto 2.08vw
	}
	
	#news-page {
		padding: 7.81vw 0 10.94vw;
		border-top: 0.03vw solid #1A1311;
		border-bottom: 0.03vw solid #1A1311;
	}

	.news-page-title {
		margin: 0 0 4.17vw;
	}

	.news-page-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.news-page-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.news-list {
		width: 66.67vw;
	}

	.news-list ul li {
		column-gap: 2.08vw;
		padding: 0 0 2.08vw;
		margin: 0 0 1.25vw;
		border-bottom: 0.03vw solid #000000;
	}

	.news-list-date {
		font-size: 0.83vw;
		line-height: 1.15vw;
		margin: 0 0 1.15vw;
		padding: 0 0 0 0.21vw;
	}

	.news-list-category {
		width: 9.27vw;
		height: 2.40vw;
		border: 0.03vw solid #535252;
		font-size: 0.83vw;
		line-height: 1.15vw;
		padding: 0.63vw;
	}

	h3.news-list-title {
		font-size: 1.09vw;
		line-height: 1.46vw;
		padding: 0.47vw 0;
	}

	a.news-list-button {
		width: 2.86vw;
		height: 2.86vw;
	}

	.news-list-pagination {
		column-gap: 0.52vw;
		margin: 9.38vw 0 0;
	}

	.news-list-pagination .page-numbers {
		width: 2.08vw;
		height: 2.08vw;
		font-size: 1.20vw;
		line-height: 2.08vw;
	}

	.news-list-pagination .prev.page-numbers::after,
	.news-list-pagination .next.page-numbers::after {
		width: 0.47vw;
		height: 0.94vw;
	}

	#single-news {
		padding: 7.81vw 0 5.73vw;
		border-top: 0.03vw solid #1A1311;
		border-bottom: 0.03vw solid #1A1311;
	}

	.single-news-page-title {
		margin: 0 0 4.17vw;
	}

	.single-news-page-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.single-news-page-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.single-news-header {
		width: 67.08vw;
		padding: 0 0 2.08vw;
		margin: 0 auto 4.69vw;
		border-bottom: 0.03vw solid #000000;
	}

	.single-news-title h2 {
		font-size: 2.45vw;
		line-height: 3.28vw;
	}

	.single-news-date {
		font-size: 0.83vw;
		line-height: 1.15vw;
		margin: 0 0 1.15vw;
		padding: 0 0 0 0.21vw;
	}

	.single-news-category {
		width: 9.27vw;
		height: 2.40vw;
		border: 0.03vw solid #535252;
		font-size: 0.83vw;
		line-height: 1.15vw;
		padding: 0.63vw;
	}

	.single-news-image {
		width: 67.08vw;
		margin: 0 auto 4.17vw;
	}

	.single-news-content {
		width: 67.08vw;
		margin: 0 auto 4.17vw;
		padding: 0 0 4.17vw;
		border-bottom: 0.03vw solid #000000;
	}

	.single-news-content p {
		width: 48.54vw;
		font-size: 0.94vw;
		line-height: 1.98vw;
		margin: 0 auto 4.17vw;
	}

	.single-news-content strong {
		font-size: 0.94vw;
		line-height: 1.98vw;
	}

	.single-news-content h2 {
		width: 48.54vw;
		font-size: 1.25vw;
		line-height: 1.88vw;
		margin: 0 auto 4.17vw;
		padding: 0 0 0 1.04vw;
		border-left: 0.42vw solid #000000;
	}

	.single-news-content h3 {
		width: 48.54vw;
		font-size: 1.04vw;
		line-height: 1.51vw;
		margin: 0 auto 4.17vw;
		padding: 0 0 0.52vw;
		border-bottom: 0.05vw solid #000000;
	}

	.single-news-content blockquote {
		width: 48.54vw;
		margin: 0 auto 4.17vw;
		background: rgba(234, 110, 0, 0.25);
		padding: 0.78vw 1.04vw;
		border-left: 0.36vw solid #EA6E00;
	}

	.single-news-content blockquote p {
		font-size: 0.94vw;
		line-height: 1.98vw;
		margin: 0 auto 4.17vw;
	}

	.single-news-content ul {
		width: 48.54vw;
		margin: 0 auto 4.17vw;
	}

	.single-news-content ul li {
		font-size: 0.94vw;
		line-height: 1.98vw;
	}

	.single-news-content ul li::marker {
		font-size: 0.94vw;
		line-height: 1.98vw;
	}

	.single-news-content ol {
		width: 48.54vw;
		margin: 0 auto 4.17vw;
	}

	.single-news-content ol li {
		font-size: 0.94vw;
		line-height: 1.98vw;
	}

	.single-news-content p a {
		font-size: 0.94vw;
		line-height: 1.98vw;
	}

	.single-news-content p:has(img) {
		column-gap: 2.34vw;
		row-gap: 2.08vw;
	}

	.single-news-content p:has(img) img {
		max-width: calc((100% - 4.69vw)/3);
	}

	.single-news-pagination {
		width: 47.92vw;
		margin: 0 auto 1.35vw;
	}

	.single-news-pagination a {
		column-gap: 1.56vw;
		font-size: 1.20vw;
		line-height: 1.61vw;
	}

	.single-news-prev::before {
		width: 0.73vw;
		height: 1.46vw;
	}

	.single-news-next::before {
		width: 0.73vw;
		height: 1.46vw;
	}

	.single-news-backtolist a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.single-news-backtolist a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.single-news-backtolist a::after {
		width: 0.52vw;
		height: 0.63vw;
	}
	
	.about-yka-banner {
		height: 53.65vw;
		padding: 8.85vw 13.54vw 0;
	}

	.about-yka-image {
		bottom: -0.05vw;
		width: 72.92vw;
	}

	.about-yka-title {
		width: 28.65vw;
		margin: 0 0 1.56vw auto;
	}

	.about-yka-title h1 {
		font-size: 4.90vw;
		line-height: 7.24vw;
	}

	.about-yka-title h1 span {
		font-size: 2.81vw;
		line-height: 4.11vw;
		margin: 0 0 0 0.52vw;
	}

	.about-yka-desc {
		width: 28.65vw;
		margin: 0 0 6.25vw auto;
	}

	.about-yka-name {
		column-gap: 1.25vw;
	}

	.about-yka-name span {
		font-size: 0.68vw;
		line-height: 0.89vw;
	}

	.about-yka-name img {
		width: 7.81vw;
	}

	#about-yka-message {
		margin: -5.47vw 0 0.26vw;
	}

	.about-yka-message-title {
		margin: 0 0 3.33vw;
	}

	.about-yka-message-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.about-yka-message-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.about-yka-message-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	#about-yka-company {
		height: 62.76vw;
		padding: 16.67vw 13.54vw 0 55.73vw;
	}

	.about-yka-company-title {
		width: 26.30vw;
	}

	.about-yka-company-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.about-yka-company-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.about-yka-company-divider {
		width: 0.03vw;
		height: 3.75vw;
		margin: 1.30vw 13.13vw;
	}

	.about-yka-company-text {
		margin: 0 1.30vw 3.33vw;
	}

	.about-yka-company-text h3 {
		font-size: 2.45vw;
		line-height: 3.23vw;
		margin: 0 0 2.08vw;
	}

	.about-yka-company-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	.about-yka-company-button {
		margin: 0 1.30vw;
	}

	.about-yka-company-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.about-yka-company-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.about-yka-company-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#about-yka-facility {
		padding: 6.51vw 0 4.69vw;
		background-size: 100vw;
	}

	.about-yka-facility-title {
		margin: 0 0 4.69vw;
	}

	.about-yka-facility-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.about-yka-facility-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	ul.about-yka-facility-list {
		width: 72.92vw;
		margin: 0 auto 2.92vw;
		row-gap: 4.69vw;
		column-gap: 4.69vw;
	}

	ul.about-yka-facility-list li {
		width: 21.15vw;
	}

	ul.about-yka-facility-list li h3 {
		font-size: 2.03vw;
		line-height: 2.40vw;
		margin: 0 0 1.30vw;
		height: 4.79vw;
	}

	ul.about-yka-facility-list li img {
		margin: 0 0 2.08vw;
	}

	ul.about-yka-facility-list li img:first-child {
		margin: 0 0 2.60vw;
	}

	ul.about-yka-facility-list li p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	.about-yka-facility-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.about-yka-facility-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.about-yka-facility-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#about-yka-recruitment {
		padding: 13.28vw 0 11.46vw;
	}

	.about-yka-recruitment-card {
		width: 79.27vw;
		padding: 5.21vw 41.88vw 5.21vw 6.67vw;
	}

	.about-yka-recruitment-title {
		margin: 0 0 1.04vw;
	}

	.about-yka-recruitment-title h3 {
		font-size: 2.03vw;
		line-height: 3.02vw;
	}

	.about-yka-recruitment-divider {
		margin: 0 0 3.65vw;
	}

	.about-yka-recruitment-text {
		margin: 0 0 3.13vw;
	}

	.about-yka-recruitment-text h3 {
		font-size: 2.03vw;
		line-height: 2.92vw;
		margin: 0 0 2.08vw;
	}

	.about-yka-recruitment-text p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	.about-yka-recruitment-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.about-yka-recruitment-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.about-yka-recruitment-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	.about-heian-banner {
		height: 53.65vw;
		padding: 8.85vw 13.54vw 0;
	}

	.about-heian-image {
		bottom: -0.05vw;
		width: 72.92vw;
	}

	.about-heian-title {
		margin: 0 0 18.54vw;
	}

	.about-heian-title h1 {
		font-size: 4.90vw;
		line-height: 7.24vw;
	}

	.about-heian-title h1 span {
		font-size: 2.81vw;
		line-height: 4.11vw;
		margin: 0 0 0 0.52vw;
	}

	.about-heian-title h1 span:first-child {
		margin: 0 0.52vw 0 0;
	}

	.about-heian-name {
		column-gap: 1.25vw;
	}

	.about-heian-name span {
		font-size: 0.68vw;
		line-height: 0.89vw;
	}

	.about-heian-name img {
		width: 7.81vw;
	}

	#about-heian-message {
		margin: -5.47vw 0 0.26vw;
	}

	.about-heian-message-title {
		margin: 0 0 3.33vw;
	}

	.about-heian-message-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.about-heian-message-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.about-heian-message-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	#about-heian-company {
		height: 69.79vw;
		margin: -2.60vw 0 0;
		padding: 19.27vw 13.54vw 0;
	}

	.about-heian-company-title {
		width: 26.30vw;
	}

	.about-heian-company-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.about-heian-company-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.about-heian-company-divider {
		width: 0.03vw;
		height: 3.75vw;
		margin: 1.30vw 13.13vw;
	}

	.about-heian-company-text {
		margin: 0 0 3.33vw;
	}

	.about-heian-company-text h3 {
		font-size: 2.45vw;
		line-height: 3.23vw;
		margin: 0 0 2.08vw;
	}

	.about-heian-company-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	.about-heian-company-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.about-heian-company-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.about-heian-company-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#about-heian-facility {
		padding: 9.90vw 0 2.08vw;
		background-size: 100vw;
	}

	.about-heian-facility-title {
		margin: 0 0 4.38vw;
	}

	.about-heian-facility-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.about-heian-facility-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	ul.about-heian-facility-list {
		width: 72.92vw;
		row-gap: 4.38vw;
		column-gap: 4.38vw;
	}

	ul.about-heian-facility-list li {
		width: 21.35vw;
	}

	ul.about-heian-facility-list li > h3 {
		font-size: 2.03vw;
		line-height: 2.40vw;
		margin: 0 0 1.30vw;
	}

	ul.about-heian-facility-list li > h3 span {
		font-size: 1.04vw;
		line-height: 1.51vw;
	}

	ul.about-heian-facility-list li > img {
		margin: 0 0 1.88vw;
	}

	ul.about-heian-facility-list li > img:first-child {
		margin: 0 0 2.50vw;
		box-shadow: 0 0 0.52vw #EAD0CA;
	}

	ul.about-heian-facility-list li > p {
		font-size: 0.94vw;
		line-height: 2.08vw;
		height: 10.42vw;
		margin: 0 0 1.46vw;
	}

	.about-heian-facility-button a {
		width: 15.42vw;
		height: 2.97vw;
		padding: 0 1.09vw;
		border-radius: 2.97vw;
	}

	.about-heian-facility-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.about-heian-facility-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}

	#about-heian-community {
		height: 86.67vw;
		padding: 24.22vw 13.54vw 0 51.04vw;
	}

	.about-heian-community-title {
		margin: 0 0 2.08vw;
	}

	.about-heian-community-title h2 {
		font-size: 2.45vw;
		line-height: 3.23vw;
	}

	.about-heian-community-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}
	
	#yka-initiatives-intro {
		border-top: 0.03vw solid #1A1311;
		padding: 7.03vw 0 0;
		margin: 0 0 8.59vw;
	}

	.yka-initiatives-intro-title {
		margin: 0 0 2.34vw;
	}

	.yka-initiatives-intro-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.yka-initiatives-intro-text {
		margin: 0 0 3.54vw;
	}

	.yka-initiatives-intro-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	.yka-initiatives-intro-content {
		height: 42.08vw;
		padding: 24.48vw 0 0;
		background-size: 100vw;
	}

	.yka-initiatives-intro-content ul {
		width: 66.41vw;
	}

	.yka-initiatives-intro-content ul li {
		width: 28.02vw;
		height: 11.35vw;
		padding: 1.04vw;
	}

	.yka-initiatives-intro-content ul li h3 {
		font-size: 2.97vw;
		line-height: 4.43vw;
	}

	.yka-initiatives-intro-content ul li p {
		font-size: 1.56vw;
		line-height: 2.19vw;
		height: 4.38vw;
	}

	#yka-initiatives-1 {
		padding: 0 0 7.29vw;
		margin: 0 0 10.94vw;
		background-size: 100vw;
	}

	.yka-initiatives-1-title {
		margin: 0 0 2.34vw;
	}

	.yka-initiatives-1-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.yka-initiatives-1-title h2 span {
		font-size: 3.80vw;
		line-height: 5.63vw;
	}

	.yka-initiatives-1-text {
		margin: 0 0 5.99vw;
	}

	.yka-initiatives-1-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	ul.yka-initiatives-1-lists {
		width: 72.92vw;
		column-gap: 4.17vw;
	}

	ul.yka-initiatives-1-lists li {
		width: 21.35vw;
	}

	ul.yka-initiatives-1-lists li h3 {
		font-size: 1.88vw;
		line-height: 2.08vw;
		margin: 0 0 1.04vw;
		height: 4.17vw;
	}
	
	ul.yka-initiatives-1-lists li:nth-child(2) h3::after {
		top: -0.625vw;
		right: -0.3125vw;
		font-size: 1.09vw;
		line-height: 1.25vw;
	}

	ul.yka-initiatives-1-lists li img {
		margin: 0 0 1.88vw;
	}

	ul.yka-initiatives-1-lists li img:first-child {
		margin: 0 0 1.46vw;
	}

	ul.yka-initiatives-1-lists li p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	.yka-initiatives-1-note {
		font-size: 0.83vw;
		line-height: 1.56vw;
		margin: 0.26vw 0 0;
	}

	#yka-initiatives-2 {
		padding: 4.69vw 0 0;
		margin: 0 0 9.38vw;
		background-size: 100vw;
	}

	.yka-initiatives-2-title {
		margin: 0 0 2.71vw;
	}

	.yka-initiatives-2-title h2 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.yka-initiatives-2-title h2 span {
		font-size: 3.80vw;
		line-height: 5.63vw;
	}

	.yka-initiatives-2-text {
		margin: 0 0 5.99vw;
	}

	.yka-initiatives-2-text p {
		font-size: 1.20vw;
		line-height: 2.19vw;
	}

	.yka-initiatives-2-image {
		padding-left: 13.54vw;
		margin: 0 0 6.25vw;
	}

	ul.yka-initiatives-2-lists {
		width: 72.92vw;
		margin: 0 auto 5.99vw;
		column-gap: 4.17vw;
		row-gap: 4.17vw;
	}

	ul.yka-initiatives-2-lists > li {
		width: 21.35vw;
	}

	ul.yka-initiatives-2-lists > li h3 {
		font-size: 1.88vw;
		line-height: 2.45vw;
		margin: 0 0 1.04vw;
		height: 4.90vw;
	}

	ul.yka-initiatives-2-lists > li img {
		margin: 0 0 1.67vw;
	}

	ul.yka-initiatives-2-lists > li ul li {
		width: 21.35vw;
		column-gap: 0.42vw;
		font-size: 1.04vw;
		line-height: 1.88vw;
	}

	ul.yka-initiatives-2-lists > li ul li::before {
		font-size: 1.04vw;
		line-height: 1.88vw;
	}

	ul.yka-initiatives-2-lists > li:last-child ul {
		height: 3.76vw;
		column-gap: 4.17vw;
	}
	
	.yka-initiatives-2-button {
		column-gap: 4.17vw;
	}

	.yka-initiatives-2-button a {
		width: 17.81vw;
		height: 4.06vw;
		padding: 0 1.09vw;
		border-radius: 4.06vw;
	}

	.yka-initiatives-2-button a p {
		font-size: 1.04vw;
		line-height: 1.41vw;
	}

	.yka-initiatives-2-button a::after {
		width: 0.52vw;
		height: 0.63vw;
	}
	
	.tsunagu-page-breadcrumbs {
		border-top: 0.03vw solid #1A1311;
		padding: 1.56vw 0;    
		margin: 0 0 7.29vw;
	}

	.tsunagu-page-breadcrumbs p {
		column-gap: 1.88vw;
		width: 76.04vw;
		font-size: 0.89vw;
		line-height: 1.15vw;
	}

	.tsunagu-page-breadcrumbs p a {
		font-size: 0.89vw;
		line-height: 1.15vw;
	}

	.tsunagu-page-breadcrumbs p img {
		width: 0.47vw;
	}
	
	#institution-guide {
		border-top: 0.03vw solid #1A1311;
		padding: 7.03vw 0 16.67vw;
	}

	.institution-guide-title {
		margin: 0 0 6.25vw;
	}

	.institution-guide-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.institution-guide-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.institution-guide-1 {
		padding: 0 13.54vw;
		margin: 0 0 18.75vw;
		background-size: 100vw;
		background-position: center 2.92vw;
	}

	.institution-guide-2 {
		padding: 0 13.54vw;
		margin: 0 0 18.75vw;
		background-size: 100vw;
		background-position: center 2.92vw;
	}

	.institution-guide-3 {
		padding: 0 13.54vw;
		background-size: 100vw;
		background-position: center 2.92vw;
	}

	.institution-guide-list-title {
		margin: 0 0 2.34vw;
	}

	.institution-guide-list-title h2 {
		font-size: 3.23vw;
		line-height: 4.74vw;
	}

	.institution-guide-list-text {
		margin: 0 0 2.92vw;
	}

	.institution-guide-list-text p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	.institution-guide-list-contact {
		width: 32.92vw;
		margin: 0 0 4.95vw;
	}

	.institution-guide-list-contact-row {
		margin: 0 0 0.26vw;
	}

	.institution-guide-list-contact-label {
		width: 9.90vw;
		font-size: 0.94vw;
		line-height: 1.25vw;
		padding: 0.73vw 1.15vw;
	}

	.institution-guide-list-contact-text {
		width: 22.50vw;
		font-size: 0.94vw;
		line-height: 1.25vw;
		padding: 0.73vw 1.15vw;
	}

	.institution-guide-list-thumbnail {
		top: 9.38vw;
		right: 0;
		width: 50.16vw;
	}

	.institution-guide-list-images {
		margin: 0 0 5.47vw;
		column-gap: 1.25vw;
	}

	.institution-guide-list-images img {
		width: 22.14vw;
	}

	.institution-guide-list-flow h3 {
		font-size: 1.67vw;
		line-height: 2.08vw;
		margin: 0 0 1.88vw;
	}

	.institution-guide-1 .institution-guide-list-flow img {
		width: 65.05vw;
		left: 3.80vw;
	}

	.institution-guide-2 .institution-guide-list-flow img {
		width: 67.45vw;
		left: -0.31vw;
	}

	.institution-guide-list-introducing {
		width: 68.85vw;
	}

	.institution-guide-list-introducing h3 {
		font-size: 1.67vw;
		line-height: 2.08vw;
		margin: 0 0 2.50vw;
	}

	.institution-guide-list-introducing-image {
		margin: 0 0 1.77vw;
	}

	.institution-guide-list-introducing-image img {
		width: 33.75vw;
	}

	.institution-guide-list-introducing ul {
		column-gap: 1.35vw;
		row-gap: 0.83vw;
	}

	.institution-guide-list-introducing ul li {
		width: 33.75vw;
		padding: 1.35vw;
		font-size: 1.41vw;
		line-height: 2.08vw;
	}

	.institution-guide-list-introducing ul li span {
		font-size: 0.94vw;
		line-height: 1.41vw;
	}

    #yka-awards {
        border-top: 0.03vw solid #1A1311;
		padding: 7.03vw 0 0;
    }

	.yka-awards-title {
		margin: 0 0 5.99vw;
	}

	.yka-awards-title h1 {
		font-size: 2.45vw;
		line-height: 3.65vw;
	}

	.yka-awards-title p {
		font-size: 0.83vw;
		line-height: 1.25vw;
	}

	.yka-awards-lists {
		padding: 8.33vw 0 13.33vw;
		background-size: 100vw;
	}

	.yka-awards-lists ul li {
		width: 86.46vw;
		column-gap: 4.17vw;
		margin: 0 0 8.85vw;
	}

	.yka-awards-lists ul li:nth-child(2) {
		margin-bottom: 22.92vw;
	}

	.yka-awards-lists ul li:nth-child(3) {
		margin: 0 0 8.85vw auto;
	}

	.yka-awards-image {
		width: 45.83vw;
	}

	.yka-awards-content {
		width: 36.46vw;
	}

	.yka-awards-content h2 {
		font-size: 1.82vw;
		line-height: 3.02vw;
		margin: 0 0 2.60vw;
	}

	.yka-awards-content p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p {
		column-gap: 2.81vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p img {
		width: 15.36vw;
	}
}

@media (max-width: 1780px) and (min-width: 1701px) {
	.yka-awards-lists {
		background-size: cover;
	}
		
	.yka-awards-content h2 {
		width: 100%;
	}
}

@media (max-width: 1700px) and (min-width: 1601px) {
	.yka-awards-lists {
		padding: 8.33vw 0 13.33vw;
		background-size: 100vw;
	}

	.yka-awards-lists ul li {
		width: 86.46vw;
		column-gap: 4.17vw;
		margin: 0 0 8.85vw;
	}

	.yka-awards-lists ul li:nth-child(2) {
		margin-bottom: 22.92vw;
	}

	.yka-awards-lists ul li:nth-child(3) {
		margin: 0 0 8.85vw auto;
	}

	.yka-awards-image {
		width: 45.83vw;
	}

	.yka-awards-content {
		width: 36.46vw;
	}

	.yka-awards-content h2 {
		font-size: 1.82vw;
		line-height: 3.02vw;
		margin: 0 0 2.60vw;
	}

	.yka-awards-content p {
		font-size: 0.94vw;
		line-height: 2.08vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p {
		column-gap: 2.81vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p img {
		width: 15.36vw;
	}
}

@media (max-width: 1600px) and (min-width: 640px) {
	.site-header {
		height: 5.625vw;
	}

	.site-branding {
		width: 5.00vw;
		margin-left: 4.69vw;
	}

	.onepress-menu {
		column-gap: 5.62vw;
	}

	.onepress-menu a {
		font-size: 1.06vw;
		line-height: 1.38vw;
	}

	.onepress-menu > li.menu-item-has-children > a::after {
		bottom: -0.5vw;
		height: 0.125vw;
	}

	.onepress-menu ul {
		left: -1.25vw;
		padding: 2.5vw 1.25vw 1.25vw;
	}

	.onepress-menu ul li {
		margin: 0 0 1.25vw;
	}

	.header-contact a {
		width: 21.50vw;
		height: 5.62vw;
		column-gap: 1.00vw;
		font-size: 1.50vw;
		line-height: 2.00vw;
	}

	.header-contact a::before {
		width: 2.62vw;
		height: 1.75vw;
	}

	.site-content {
		padding-top: 5.625vw;
	}
	
	#banner {
		height: 64.38vw;
		padding: 13.13vw 0 0 3.13vw;
	}

	.banner-text {
		width: 27.50vw;
	}

	#home-about {
		height: 113.94vw;
		padding: 7.25vw 0;
	}

	.home-about-image {
		width: 18.00vw;
		margin: 0 auto 4.69vw;
	}

	.home-greeting-text {
		margin: 0 0 28.75vw;
	}

	.home-greeting-text p {
		font-size: 1.88vw;
		line-height: 3.50vw;
	}

	.home-about-title {
		padding-left: 60.00vw;
		margin: 0 0 1.56vw;
	}

	.home-about-title p {
		font-size: 1.00vw;
		line-height: 1.50vw;
	}

	.home-about-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.home-about-text {
		padding-left: 60.00vw;
	}

	.home-about-text p {
		font-size: 1.13vw;
		line-height: 2.50vw;
	}

	#home-vision {
		height: 84.06vw;
		padding: 9.69vw 0 7.19vw;
	}

	.home-vision-text {
		margin: 0 0 4.50vw;
	}

	.home-vision-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	.home-vision-image {
		width: 91.31vw;
	}

	.home-vision-content {
		margin: -15.00vw 0 2.50vw;
	}

	.home-vision-container:first-child {
		width: 35.31vw;
		left: -7.06vw;
	}

	.home-vision-container:last-child {
		width: 39.00vw;
		right: -9.38vw;
	}

	.home-vision-content-title {
		margin: 0 0 3.63vw;
	}

	.home-vision-content-title h3 {
		font-size: 1.56vw;
		line-height: 2.31vw;
	}

	.home-vision-content-text h4 {
		width: 17.38vw;
		height: 3.25vw;
		margin: 0.75vw auto 0.50vw;
		font-size: 1.50vw;
		line-height: 3.25vw;
	}

	.home-vision-content-text p {
		font-size: 1.13vw;
		line-height: 2.63vw;
	}

	.home-vision-button a {
		width: 18.50vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.home-vision-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.home-vision-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}
	
	.home-message-content {
		width: 100%;
		height: 48.94vw;
		padding: 14.06vw 5.00vw 0;
	}

	.home-message-container {
		width: 22.00vw;
	}

	.home-message-container:last-child {
		width: 20.31vw;
	}

	.home-message-company {
		margin: 0 0 1.00vw;
	}

	.home-message-company p {
		font-size: 1.19vw;
		line-height: 1.63vw;
	}

	.home-message-name {
		column-gap: 1.50vw;
		margin: 0 0 2.75vw;
	}

	.home-message-name span {
		font-size: 0.81vw;
		line-height: 1.06vw;
	}

	.home-message-name img {
		width: 9.38vw;
	}

	.home-message-text {
		margin: 0 0 4.00vw;
	}

	.home-message-button a {
		width: 18.50vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.home-message-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.home-message-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}
	
	#initiative-details {
		padding: 10.88vw 0 13.00vw;
	}

	.initiative-details-title {
		margin: 0 0 8.75vw;
	}

	.initiative-details-title h1 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.initiative-details-title p {
		font-size: 1.00vw;
		line-height: 1.50vw;
	} 

	ul.initiative-details-list {
		width: 88.75vw;
	}

	ul.initiative-details-list li {
		margin: 0 0 15.00vw;
	}

	.initiative-details-list-image {
		width: 54.38vw;
	}

	.initiative-details-list-card {
		width: 37.75vw;
		height: 37.75vw;
		box-shadow: 1.56vw 1.56vw 3.13vw 0.00vw rgba(0, 0, 0, 0.08);
		border-radius: 0 0 6.13vw 0;
		margin: 0 0 -5.94vw -3.38vw;
	}

	ul.initiative-details-list li:nth-child(even) .initiative-details-list-card {
		margin: 0 -3.38vw -5.94vw 0;
		border-radius: 0 0 0 6.13vw;
	}

	.initiative-details-list-text {
		width: 28.75vw;
	}

	.initiative-details-list-text h3 {
		font-size: 2.25vw;
		line-height: 3.25vw;
		margin: 0 0 1.50vw;
	}

	.initiative-details-list-text img {
		margin: 0 0 3.25vw;
	}

	.initiative-details-list-text p {
		font-size: 1.13vw;
		line-height: 2.50vw;
	}

	#attempt-others {
		padding: 7.50vw 0 16.88vw;
		background-size: 120.00vw;
	}

	.attempt-others-title {
		margin: 0 0 5.75vw;
	}

	.attempt-others-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.attempt-others-title p {
		font-size: 1.00vw;
		line-height: 1.50vw;
	}

	ul.attempt-others-list {
		width: 88.75vw;
		row-gap: 4.75vw;
		column-gap: 4.75vw;
	}

	ul.attempt-others-list li {
		width: 26.00vw;
		height: 26.00vw;
		padding: 3.50vw 3.38vw 0;
	}

	ul.attempt-others-list li h3 {
		font-size: 1.56vw;
		line-height: 2.25vw;
		margin: 0 0 1.13vw;
	}

	ul.attempt-others-list li img {
		margin: 0 0 2.25vw;
	}

	ul.attempt-others-list li p {
		font-size: 1.13vw;
		line-height: 1.88vw;
	}
	
	.about-yka-banner {
		height: 64.38vw;
		padding: 10.63vw 6.25vw 0;
	}

	.about-yka-image {
		bottom: -0.06vw;
		width: 87.5vw;
	}

	.about-yka-title {
		width: 34.38vw;
		margin: 0 0 1.88vw auto;
	}

	.about-yka-title h1 {
		font-size: 5.88vw;
		line-height: 8.69vw;
	}

	.about-yka-title h1 span {
		font-size: 3.38vw;
		line-height: 4.94vw;
		margin: 0 0 0 0.63vw;
	}

	.about-yka-desc {
		width: 34.38vw;
		margin: 0 0 7.5vw auto;
	}

	.about-yka-name {
		column-gap: 1.5vw;
	}

	.about-yka-name span {
		font-size: 0.81vw;
		line-height: 1.06vw;
	}

	.about-yka-name img {
		width: 9.38vw;
	}

	#about-yka-message {
		margin: -6.56vw 0 0.31vw;
	}

	.about-yka-message-title {
		margin: 0 0 4vw;
	}

	.about-yka-message-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.about-yka-message-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	.about-yka-message-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	#about-yka-company {
		height: 75.31vw;
		padding: 20vw 6.25vw 0 56.88vw;
	}

	.about-yka-company-title {
		width: 31.56vw;
	}

	.about-yka-company-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.about-yka-company-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	.about-yka-company-divider {
		width: 0.04vw;
		height: 4.5vw;
		margin: 1.56vw 15.75vw;
	}

	.about-yka-company-text {
		margin: 0 1.56vw 4vw;
	}

	.about-yka-company-text h3 {
		font-size: 2.94vw;
		line-height: 3.88vw;
		margin: 0 0 2.5vw;
	}

	.about-yka-company-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	.about-yka-company-button {
		margin: 0 1.56vw;
	}

	.about-yka-company-button a {
		width: 18.5vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.about-yka-company-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.about-yka-company-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}

	#about-yka-facility {
		padding: 7.81vw 0 5.63vw;
		background-size: 120vw;
	}

	.about-yka-facility-title {
		margin: 0 0 5.63vw;
	}

	.about-yka-facility-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.about-yka-facility-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	ul.about-yka-facility-list {
		width: 87.5vw;
		margin: 0 auto 3.5vw;
		row-gap: 5.63vw;
		column-gap: 5.63vw;
	}

	ul.about-yka-facility-list li {
		width: 25.38vw;
	}

	ul.about-yka-facility-list li h3 {
		font-size: 2.44vw;
		line-height: 2.88vw;
		margin: 0 0 1.56vw;
		height: 5.75vw;
	}

	ul.about-yka-facility-list li img {
		margin: 0 0 2.5vw;
	}

	ul.about-yka-facility-list li img:first-child {
		margin: 0 0 3.13vw;
	}

	ul.about-yka-facility-list li p {
		font-size: 1.13vw;
		line-height: 2.5vw;
	}

	.about-yka-facility-button a {
		width: 18.5vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.about-yka-facility-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.about-yka-facility-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}

	#about-yka-recruitment {
		padding: 15.94vw 0 13.75vw;
	}

	.about-yka-recruitment-card {
		width: 95.13vw;
		padding: 6.25vw 50.25vw 6.25vw 8vw;
	}

	.about-yka-recruitment-title {
		margin: 0 0 1.25vw;
	}

	.about-yka-recruitment-title h3 {
		font-size: 2.44vw;
		line-height: 3.63vw;
	}

	.about-yka-recruitment-divider {
		margin: 0 0 4.38vw;
	}

	.about-yka-recruitment-text {
		margin: 0 0 3.75vw;
	}

	.about-yka-recruitment-text h3 {
		font-size: 2.44vw;
		line-height: 3.5vw;
		margin: 0 0 2.5vw;
	}

	.about-yka-recruitment-text p {
		font-size: 1.13vw;
		line-height: 2.5vw;
	}

	.about-yka-recruitment-button a {
		width: 18.5vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.about-yka-recruitment-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.about-yka-recruitment-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}

	.about-heian-banner {
		height: 64.38vw;
		padding: 10.63vw 6.25vw 0;
	}

	.about-heian-image {
		bottom: -0.06vw;
		width: 87.5vw;
	}

	.about-heian-title {
		margin: 0 0 22.25vw;
	}

	.about-heian-title h1 {
		font-size: 5.88vw;
		line-height: 8.69vw;
	}

	.about-heian-title h1 span {
		font-size: 3.38vw;
		line-height: 4.94vw;
		margin: 0 0 0 0.63vw;
	}

	.about-heian-title h1 span:first-child {
		margin: 0 0.63vw 0 0;
	}

	.about-heian-name {
		column-gap: 1.5vw;
	}

	.about-heian-name span {
		font-size: 0.81vw;
		line-height: 1.06vw;
	}

	.about-heian-name img {
		width: 9.38vw;
	}

	#about-heian-message {
		margin: -6.56vw 0 0.31vw;
	}

	.about-heian-message-title {
		margin: 0 0 4vw;
	}

	.about-heian-message-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.about-heian-message-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	.about-heian-message-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	#about-heian-company {
		height: 83.75vw;
		margin: -3.13vw 0 0;
		padding: 23.13vw 6.25vw 0;
	}

	.about-heian-company-title {
		width: 31.56vw;
	}

	.about-heian-company-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.about-heian-company-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	.about-heian-company-divider {
		width: 0.04vw;
		height: 4.5vw;
		margin: 1.56vw 15.75vw;
	}

	.about-heian-company-text {
		margin: 0 0 4vw;
	}

	.about-heian-company-text h3 {
		font-size: 2.94vw;
		line-height: 3.88vw;
		margin: 0 0 2.5vw;
	}

	.about-heian-company-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	.about-heian-company-button a {
		width: 18.5vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.about-heian-company-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.about-heian-company-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}

	#about-heian-facility {
		padding: 11.88vw 0 2.5vw;
		background-size: 120vw;
	}

	.about-heian-facility-title {
		margin: 0 0 5.25vw;
	}

	.about-heian-facility-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.about-heian-facility-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	ul.about-heian-facility-list {
		width: 87.5vw;
		row-gap: 5.25vw;
		column-gap: 5.25vw;
	}

	ul.about-heian-facility-list li {
		width: 25.63vw;
	}

	ul.about-heian-facility-list li > h3 {
		font-size: 2.44vw;
		line-height: 2.88vw;
		margin: 0 0 1.56vw;
	}

	ul.about-heian-facility-list li > h3 span {
		font-size: 1.25vw;
		line-height: 1.81vw;
	}

	ul.about-heian-facility-list li > img {
		margin: 0 0 2.25vw;
	}

	ul.about-heian-facility-list li > img:first-child {
		margin: 0 0 3vw;
		box-shadow: 0 0 0.63vw #EAD0CA;
	}

	ul.about-heian-facility-list li > p {
		font-size: 1.13vw;
		line-height: 2.5vw;
		height: 12.5vw;
		margin: 0 0 1.75vw;
	}

	.about-heian-facility-button a {
		width: 18.5vw;
		height: 3.56vw;
		padding: 0 1.31vw;
		border-radius: 3.56vw;
	}

	.about-heian-facility-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.about-heian-facility-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}

	#about-heian-community {
		height: 104vw;
		padding: 29.06vw 6.25vw 0 51.25vw;
	}

	.about-heian-community-title {
		margin: 0 0 2.5vw;
	}

	.about-heian-community-title h2 {
		font-size: 2.94vw;
		line-height: 3.88vw;
	}

	.about-heian-community-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}
	
	#yka-initiatives-intro {
		border-top: 0.03vw solid #1A1311;
		padding: 8.44vw 0 0;
		margin: 0 0 10.31vw;
	}

	.yka-initiatives-intro-title {
		margin: 0 0 2.81vw;
	}

	.yka-initiatives-intro-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.yka-initiatives-intro-text {
		margin: 0 0 4.25vw;
	}

	.yka-initiatives-intro-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	.yka-initiatives-intro-content {
		height: 50.5vw;
		padding: 29.38vw 0 0;
		background-size: 120vw;
	}

	.yka-initiatives-intro-content ul {
		width: 79.69vw;
	}

	.yka-initiatives-intro-content ul li {
		width: 33.63vw;
		height: 13.63vw;
		padding: 1.25vw;
	}

	.yka-initiatives-intro-content ul li h3 {
		font-size: 3.56vw;
		line-height: 5.31vw;
	}

	.yka-initiatives-intro-content ul li p {
		font-size: 1.88vw;
		line-height: 2.63vw;
		height: 5.25vw;
	}

	#yka-initiatives-1 {
		padding: 0 0 8.75vw;
		margin: 0 0 13.13vw;
		background-size: 120vw;
	}

	.yka-initiatives-1-title {
		margin: 0 0 2.81vw;
	}

	.yka-initiatives-1-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.yka-initiatives-1-title h2 span {
		font-size: 4.56vw;
		line-height: 6.75vw;
	}

	.yka-initiatives-1-text {
		margin: 0 0 7.19vw;
	}

	.yka-initiatives-1-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	ul.yka-initiatives-1-lists {
		width: 87.5vw;
		column-gap: 5vw;
	}

	ul.yka-initiatives-1-lists li {
		width: 25.63vw;
	}

	ul.yka-initiatives-1-lists li h3 {
		font-size: 2.25vw;
		line-height: 2.5vw;
		margin: 0 0 1.25vw;
		height: 5vw;
	}
	
	ul.yka-initiatives-1-lists li:nth-child(2) h3::after {
		top: -0.75vw;
		right: -0.375vw;
		font-size: 1.3125vw;
		line-height: 1.5vw;
	}

	ul.yka-initiatives-1-lists li img {
		margin: 0 0 2.25vw;
	}

	ul.yka-initiatives-1-lists li img:first-child {
		margin: 0 0 1.75vw;
	}

	ul.yka-initiatives-1-lists li p {
		font-size: 1.13vw;
		line-height: 2.5vw;
	}

	.yka-initiatives-1-note {
		font-size: 1vw;
		line-height: 1.88vw;
		margin: 0.31vw 0 0;
	}

	#yka-initiatives-2 {
		padding: 5.63vw 0 0;
		margin: 0 0 11.25vw;
		background-size: 120vw;
	}

	.yka-initiatives-2-title {
		margin: 0 0 3.25vw;
	}

	.yka-initiatives-2-title h2 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.yka-initiatives-2-title h2 span {
		font-size: 4.56vw;
		line-height: 6.75vw;
	}

	.yka-initiatives-2-text {
		margin: 0 0 7.19vw;
	}

	.yka-initiatives-2-text p {
		font-size: 1.44vw;
		line-height: 2.63vw;
	}

	.yka-initiatives-2-image {
		padding-left: 6.25vw;
		margin: 0 0 7.5vw;
	}

	ul.yka-initiatives-2-lists {
		width: 87.5vw;
		margin: 0 auto 7.19vw;
		column-gap: 5vw;
		row-gap: 5vw;
	}

	ul.yka-initiatives-2-lists > li {
		width: 25.63vw;
	}

	ul.yka-initiatives-2-lists > li h3 {
		font-size: 2.25vw;
		line-height: 2.94vw;
		margin: 0 0 1.25vw;
		height: 5.88vw;
	}

	ul.yka-initiatives-2-lists > li img {
		margin: 0 0 2vw;
	}

	ul.yka-initiatives-2-lists > li ul li {
		width: 25.63vw;
		column-gap: 0.5vw;
		font-size: 1.25vw;
		line-height: 2.25vw;
	}

	ul.yka-initiatives-2-lists > li ul li::before {
		font-size: 1.25vw;
		line-height: 2.25vw;
	}

	ul.yka-initiatives-2-lists > li:last-child ul {
		height: 4.5vw;
		column-gap: 5vw;
	}
	
	.yka-initiatives-2-button {
		column-gap: 5vw;
	}

	.yka-initiatives-2-button a {
		width: 21.38vw;
		height: 4.88vw;
		padding: 0 1.31vw;
		border-radius: 4.88vw;
	}

	.yka-initiatives-2-button a p {
		font-size: 1.25vw;
		line-height: 1.69vw;
	}

	.yka-initiatives-2-button a::after {
		width: 0.63vw;
		height: 0.75vw;
	}
	
	.tsunagu-page-breadcrumbs {
		border-top: 0.03vw solid #1A1311;
		padding: 1.88vw 0;    
		margin: 0 0 8.75vw;
	}

	.tsunagu-page-breadcrumbs p {
		column-gap: 2.25vw;
		width: 91.25vw;
		font-size: 1.06vw;
		line-height: 1.38vw;
	}

	.tsunagu-page-breadcrumbs p a {
		font-size: 1.06vw;
		line-height: 1.38vw;
	}

	.tsunagu-page-breadcrumbs p img {
		width: 0.56vw;
	}
	
	#institution-guide {
		border-top: 0.03vw solid #1A1311;
		padding: 8.44vw 0 20vw;
	}

	.institution-guide-title {
		margin: 0 0 7.5vw;
	}

	.institution-guide-title h1 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.institution-guide-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}

	.institution-guide-1 {
		padding: 0 6.25vw;
		margin: 0 0 22.5vw;
		background-size: 120vw;
		background-position: center 3.5vw;
	}

	.institution-guide-2 {
		padding: 0 6.25vw;
		margin: 0 0 22.5vw;
		background-size: 120vw;
		background-position: center 3.5vw;
	}

	.institution-guide-3 {
		padding: 0 6.25vw;
		background-size: 120vw;
		background-position: center 3.5vw;
	}

	.institution-guide-list-title {
		margin: 0 0 2.81vw;
	}

	.institution-guide-list-title h2 {
		font-size: 3.88vw;
		line-height: 5.69vw;
	}

	.institution-guide-list-text {
		margin: 0 0 3.5vw;
	}

	.institution-guide-list-text p {
		font-size: 1.13vw;
		line-height: 2.5vw;
	}

	.institution-guide-list-contact {
		width: 39.5vw;
		margin: 0 0 5.94vw;
	}

	.institution-guide-list-contact-row {
		margin: 0 0 0.31vw;
	}

	.institution-guide-list-contact-label {
		width: 11.88vw;
		font-size: 1.13vw;
		line-height: 1.5vw;
		padding: 0.88vw 1.38vw;
	}

	.institution-guide-list-contact-text {
		width: 27vw;
		font-size: 1.13vw;
		line-height: 1.5vw;
		padding: 0.88vw 1.38vw;
	}

	.institution-guide-list-thumbnail {
		top: 11.25vw;
		right: -10vw;
		width: 60.19vw;
	}

	.institution-guide-list-images {
		margin: 0 0 6.56vw;
		column-gap: 1.5vw;
	}

	.institution-guide-list-images img {
		width: 26.56vw;
	}

	.institution-guide-list-flow h3 {
		font-size: 2vw;
		line-height: 2.5vw;
		margin: 0 0 2.25vw;
	}

	.institution-guide-1 .institution-guide-list-flow img {
		width: 78.06vw;
		left: 4.56vw;
	}

	.institution-guide-2 .institution-guide-list-flow img {
		width: 80.94vw;
		left: -0.38vw;
	}

	.institution-guide-list-introducing {
		width: 82.63vw;
	}

	.institution-guide-list-introducing h3 {
		font-size: 2vw;
		line-height: 2.5vw;
		margin: 0 0 3vw;
	}

	.institution-guide-list-introducing-image {
		margin: 0 0 2.13vw;
	}

	.institution-guide-list-introducing-image img {
		width: 40.5vw;
	}

	.institution-guide-list-introducing ul {
		column-gap: 1.63vw;
		row-gap: 1vw;
	}

	.institution-guide-list-introducing ul li {
		width: 40.5vw;
		padding: 1.63vw;
		font-size: 1.69vw;
		line-height: 2.5vw;
	}

	.institution-guide-list-introducing ul li span {
		font-size: 1.13vw;
		line-height: 1.69vw;
	}

    #yka-awards {
        border-top: 0.03vw solid #1A1311;
		padding: 8.44vw 0 0;
    }

	.yka-awards-title {
		margin: 0 0 7.19vw;
	}

	.yka-awards-title h1 {
		font-size: 2.94vw;
		line-height: 4.38vw;
	}

	.yka-awards-title p {
		font-size: 1vw;
		line-height: 1.5vw;
	}
	
	.yka-awards-lists {
		padding: 8.33vw 0 13.33vw;
		background-size: 100vw;
	}

	.yka-awards-lists ul li {
		width: max-content;
		column-gap: 4.17vw;
		margin: 0 0 8.85vw;
	}

	.yka-awards-lists ul li:nth-child(2) {
		margin-bottom: 22.92vw;
	}

	.yka-awards-lists ul li:nth-child(3) {
		margin: 0 0 8.85vw auto;
	}

	.yka-awards-image {
		width: 45.83vw;
	}

	.yka-awards-content {
		width: 43.75vw;
	}

	.yka-awards-content h2 {
		font-size: 1.82vw;
		line-height: 3.02vw;
		margin: 0 0 2.60vw;
	}

	.yka-awards-content p {
		font-size: 1.125vw;
		line-height: 2.5vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p {
		column-gap: 2.5vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p img {
		width: 14vw;
	}
}

@media (max-width: 1280px) and (min-width: 640px) {
	.tsunagu-footer {
		border-top: 0.08vw solid #707070;
	}

	.footer-top {
		padding: 7.81vw 0 15.62vw;
		column-gap: 9.53vw;
	}

	.footer-logo {
		width: 16.56vw;
	}

	ul.footer-menu {
		width: 63.59vw;
		column-gap: 3.91vw;
		row-gap: 2.34vw;
	}

	ul.footer-menu li::before {
		font-size: 1.48vw;
		line-height: 1.8vw;
	}

	ul.footer-menu li a {
		font-size: 1.48vw;
		line-height: 1.8vw;
	}

	.footer-instagram {
		margin: 0 0 6.25vw;
	}

	.footer-instagram-logo {
		column-gap: 2.81vw;
		margin: 0 0 0.94vw;
	}

	.footer-instagram-logo img {
		width: 5.0vw;
	}

	.footer-instagram-logo p {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.footer-instagram-name {
		margin: 0 0 4.38vw;
	}

	.footer-instagram-name p {
		font-size: 1.41vw;
		line-height: 2.03vw;
	}

	.footer-copyright {
		border-top: 0.08vw solid #000000;
		padding: 1.95vw 0;
	}

	.footer-copyright p {
		font-size: 1.25vw;
		line-height: 1.56vw;
	}
	
	#home-news {
		padding: 12.11vw 0;
	}

	.home-news-title {
		margin: 0 0 10vw;
	}

	.home-news-title h2 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.home-news-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	.home-news-list {
		width: 89.06vw;
		height: 48.05vw;
	}

	.home-news-list ul {
		padding: 3.75vw 0;
	}

	.home-news-list ul li {
		column-gap: 3.12vw;
		width: 80.47vw;
		padding: 0 0 2.34vw;
		margin: 0 0 2.34vw;
		border-bottom: 0.03vw solid #000000;
	}

	.home-news-list-date {
		width: 11.09vw;
		height: 2.81vw;
		border: 0.04vw solid #535252;
		font-size: 1.02vw;
		line-height: 1.41vw;
		padding: 0.7vw;
	}

	h3.home-news-list-title {
		font-size: 1.33vw;
		line-height: 1.72vw;
	}

	a.home-news-list-button {
		width: 3.91vw;
		height: 3.91vw;
	}
	
	#home-message {
		padding: 12.5vw 0;
	}

	.home-message-title {
		margin: 0 0 4.38vw;
	}

	.home-message-title h2 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.home-message-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}
	
	#home-partner {
		padding: 15.23vw 0 22.27vw;
	}

	.home-partner-title {
		margin: 0 0 2.5vw;
	}

	.home-partner-title h2 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.home-partner-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	.home-partner-content {
		width: 80.47vw;
		height: 56.25vw;
		border: 0.05vw solid #000000;
		padding: 6.09vw;
	}

	.home-partner-content ul {
		margin: 0 0 4.69vw;
	}

	.home-partner-content ul li {
		padding: 0 0 5.86vw;
		margin: 0 0 2.11vw;
		border-bottom: 0.05vw solid #000000;
	}

	.home-partner-content ul li img {
		width: 35.47vw;
	}

	.home-partner-content ul li:last-child img {
		width: 23.13vw;
	}

	.home-partner-button a {
		width: 23.13vw;
		height: 4.45vw;
		padding: 0 1.64vw;
		border-radius: 4.45vw;
	}

	.home-partner-button a p {
		font-size: 1.56vw;
		line-height: 2.11vw;
	}

	.home-partner-button a::after {
		width: 0.78vw;
		height: 0.94vw;
	}

	#home-contact {
		padding: 11.72vw 0 19.53vw;
		border-radius: 5vw 5vw 0 0;
	}

	.home-contact-title {
		margin: 0 0 7.34vw;
	}

	.home-contact-title h2 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.home-contact-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	.home-contact-content {
		width: 90.63vw;
		padding: 6.41vw;
	}

	.home-contact-text {
		margin: 0 0 3.91vw;
	}

	.home-contact-text p {
		font-size: 1.64vw;
		line-height: 3.59vw;
	}

	.home-contact-button a {
		width: 29.06vw;
		height: 4.45vw;
		padding: 0 1.64vw;
		border-radius: 4.45vw;
	}

	.home-contact-button a p {
		font-size: 1.56vw;
		line-height: 2.11vw;
	}

	.home-contact-button a::after {
		width: 0.78vw;
		height: 0.94vw;
	}
	
	#initiative-details {
		padding: 13.59vw 0 16.25vw;
	}

	.initiative-details-title {
		margin: 0 0 10.94vw;
	}

	.initiative-details-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.initiative-details-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}
	
	#attempt-others {
		padding: 9.375vw 0 21.09vw;
		background-size: 150vw;
	}

	.attempt-others-title {
		margin: 0 0 7.19vw;
	}

	.attempt-others-title h2 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.attempt-others-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}
	
	#partner {
		padding: 7.81vw 0 20.7vw;
	}

	.partner-title {
		margin: 0 0 9.38vw;
	}

	.partner-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.partner-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	ul.partner-list {
		width: 87.5vw;
	}

	ul.partner-list li {
		padding: 4.69vw 10.31vw 8.59vw;
		margin: 0 0 12.11vw;
	}

	.partner-list-logo {
		width: 28.13vw;
		height: 14.53vw;
		margin: 0 auto 3.91vw;
	}

	.partner-list-detail {
		margin: 0 0 7.81vw;
		border-top: 0.05vw solid #000000;
	}

	.partner-list-detail-row {
		height: 8.91vw;
	}

	.partner-list-detail-label {
		width: 14.38vw;
		border-bottom: 0.05vw solid #fff;
	}

	.partner-list-detail-text {
		width: calc(100% - 14.38vw);
		border-bottom: 0.05vw solid #000000;
		padding: 0 4.22vw;
	}

	.partner-list-detail-row p {
		font-size: 1.72vw;
		line-height: 2.34vw;
	}

	.partner-list-detail-row a {
		font-size: 1.72vw;
		line-height: 2.34vw;
	}

	.partner-list-button {
		column-gap: 2.19vw;
	}

	.partner-list-button::before {
		width: 3.59vw;
		height: 3.59vw;
	}

	.partner-list-button a {
		column-gap: 2.19vw;
		width: 15.94vw;
		padding: 0 0 0.63vw 1.56vw;
		font-size: 2.03vw;
		line-height: 2.97vw;
		border-bottom: 0.03vw solid #000000;
	}

	.partner-list-button a::after {
		width: 0.59vw;
		height: 1.17vw;
	}
	
	#contact {
		padding: 11.72vw 0;
		border-top: 0.04vw solid #1A1311;
		border-bottom: 0.04vw solid #1A1311;
	}

	.contact-title {
		margin: 0 0 9.38vw;
	}

	.contact-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.contact-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	.contact-text {
		margin: 0 0 12.11vw;
	}

	.contact-text p {
		font-size: 1.41vw;
		line-height: 3.28vw;
	}

	.contact-form {
		width: 81.64vw;
		margin: 0 auto 5.63vw;
	}

	.form-group {
		margin: 0 0 6.25vw;
	}

	.form-group.privacy-policy {
		margin: 0 0 10.63vw;
	}

	.form-group > p > label {
		column-gap: 1.41vw;
		font-size: 1.48vw;
		line-height: 2.03vw;
		margin: 0 0 1.56vw;
	}

	.form-group.option-input > p > label {
		margin: 0 0 3.28vw;
	}

	.form-group.postcode-input > p {
		column-gap: 2.97vw;
	}

	.form-required {
		width: 6.88vw;
		height: 2.34vw;
		font-size: 1.02vw;
		line-height: 2.34vw;
		border-radius: 2.34vw;
	}

	.form-notrequired {
		width: 6.88vw;
		height: 2.34vw;
		font-size: 1.02vw;
		line-height: 2.34vw;
		border-radius: 2.34vw;
	}

	.form-group.option-input > p > .wpcf7-form-control-wrap {
		padding: 0 0 0 8.59vw;
	}

	.form-group.name-input > p > .wpcf7-form-control-wrap {
		width: 39.06vw;
	}

	.form-group.postcode-input > p > .wpcf7-form-control-wrap {
		width: 39.06vw;
	}
	
	.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap {
		width: 39.06vw;
	}
	
	.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap::after {
		width: 1.41vw;
		height: 0.705vw;
		top: 2.97vw;
		right: 2.5vw;
	}

	.form-group > p > .wpcf7-form-control-wrap input[type="text"],
	.form-group > p > .wpcf7-form-control-wrap input[type="tel"],
	.form-group > p > .wpcf7-form-control-wrap input[type="email"] {
		padding: 2.34vw 3.91vw;
		font-size: 1.48vw;
		line-height: 2.03vw;
		border: 0.08vw solid #CBCCCC;
		border-radius: 0.16vw;
	}
	
	.form-group > p > .wpcf7-form-control-wrap select {
		padding: 2.34vw 3.91vw;
		font-size: 1.48vw;
		line-height: 2.03vw;
		border: 0.08vw solid #CBCCCC;
		border-radius: 0.16vw;
	}

	.form-group > p > .wpcf7-form-control-wrap textarea {
		height: 26.56vw;
		padding: 2.34vw 3.91vw;
		font-size: 1.48vw;
		line-height: 2.03vw;
		border: 0.08vw solid #CBCCCC;
		border-radius: 0.16vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item {
		margin: 0 0 1.95vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label {
		column-gap: 1.72vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
		width: 2.03vw;
		height: 2.03vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
		font-size: 1.48vw;
		line-height: 2.03vw;
	}

	a#postcode-button {
		width: 22.97vw;
		height: 4.92vw;
		border-radius: 0.16vw;
		padding: 1.25vw 2.5vw 1.25vw 3.75vw;
		font-size: 1.48vw;
		line-height: 2.03vw;
	}

	a#postcode-button::after {
		width: 4.22vw;
		height: 0.94vw;
	}

	.contact-privacy-policy {
		border: 0.08vw solid #CBCCCC;
		border-radius: 0.16vw;
		padding: 6.25vw;
	}

	.contact-privacy-policy > h3 {
		font-size: 1.64vw;
		line-height: 2.19vw;
		margin: 0 0 2.66vw;
	}

	.contact-privacy-policy > p {
		font-size: 1.41vw;
		line-height: 2.5vw;
		margin: 0 0 4.22vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label {
		font-size: 1.41vw;
		line-height: 2.19vw;
		column-gap: 1.25vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label::before {
		width: 3.36vw;
		height: 3.36vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
		width: 2.19vw;
		height: 2.19vw;
		left: 18.43vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label a {
		font-size: 1.64vw;
		line-height: 2.19vw;
	}

	.wpcf7-form > p input[type="submit"] {
		width: 35.16vw;
		height: 6.25vw;
		padding: 1.56vw;
		font-size: 1.8vw;
		line-height: 3.13vw;
	}

	.form-group > p .wpcf7-not-valid-tip {
		font-size: 1.25vw;
		line-height: 1.88vw;
		margin: 0.78vw 0 0;
	}

	.contact-note p {
		font-size: 1.41vw;
		line-height: 2.5vw;
	}

	.contact-backtohome a {
		width: 23.13vw;
		height: 4.45vw;
		padding: 0 1.64vw;
		border-radius: 4.45vw;
	}

	.contact-backtohome a p {
		font-size: 1.56vw;
		line-height: 2.11vw;
	}

	.contact-backtohome a::before {
		width: 0.78vw;
		height: 0.94vw;
	}
	
	#preparation {
		padding: 11.72vw 0;
		border-top: 0.04vw solid #1A1311;
		border-bottom: 0.04vw solid #1A1311;
	}

	.preparation-title {
		margin: 0 0 9.38vw;
	}

	.preparation-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.preparation-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	.preparation-text p {
		font-size: 1.41vw;
		line-height: 3.28vw;
	}

	#privacy-policy {
		padding: 11.72vw 0 17.19vw;
		border-top: 0.04vw solid #1A1311;
		border-bottom: 0.04vw solid #1A1311;
	}

	.privacy-policy-title {
		margin: 0 0 12.19vw;
	}

	.privacy-policy-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.privacy-policy-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}

	.privacy-policy-text {
		margin: 0 0 5vw;
	}

	.privacy-policy-text p {
		font-size: 1.41vw;
		line-height: 3.28vw;
	}

	.privacy-policy-content {
		width: 84.38vw;
		margin: 0 auto 7.5vw;
	}

	.privacy-policy-content h2 {
		padding: 0.94vw;
		border: 0.04vw solid #000000;
		border-radius: 3.75vw;
		margin: 0 0 5.86vw;
		font-size: 1.41vw;
		line-height: 1.88vw;
	}

	.privacy-policy-content p {
		font-size: 1.41vw;
		line-height: 4.22vw;
		margin: 0 0 10.94vw;
	}

	.privacy-policy-note {
		width: 84.38vw;
	}

	.privacy-policy-note p {
		font-size: 1.41vw;
		line-height: 3.125vw;
		margin: 0 0 1.95vw;
		padding: 0 0 1.95vw;
		border-bottom: 0.04vw solid #1A1311;
	}

	#news-page {
		padding: 11.72vw 0 15.625vw;
		border-top: 0.04vw solid #1A1311;
		border-bottom: 0.04vw solid #1A1311;
	}

	.news-page-title {
		margin: 0 0 6.25vw;
	}

	.news-page-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.news-page-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}
	
	.news-list {
		width: 90.62vw;
	}

	.news-list ul li {
		column-gap: 3.12vw;
		padding: 0 0 3.12vw;
		margin: 0 0 1.88vw;
		border-bottom: 0.04vw solid #000000;
	}

	.news-list-date {
		font-size: 1.25vw;
		line-height: 1.72vw;
		margin: 0 0 1.72vw;
		padding: 0 0 0 0.31vw;
	}

	.news-list-category {
		width: 13.91vw;
		height: 3.59vw;
		border: 0.05vw solid #535252;
		font-size: 1.25vw;
		line-height: 1.72vw;
		padding: 0.94vw;
	}

	h3.news-list-title {
		font-size: 1.64vw;
		line-height: 2.19vw;
		padding: 0.7vw 0;
	}

	a.news-list-button {
		width: 4.3vw;
		height: 4.3vw;
	}

	.news-list-pagination{
		column-gap: 0.78vw;
		margin: 14.06vw 0 0;
	}

	.news-list-pagination .page-numbers {
		width: 3.12vw;
		height: 3.12vw;
		font-size: 1.8vw;
		line-height: 3.12vw;
	}

	.news-list-pagination .prev.page-numbers::after,
	.news-list-pagination .next.page-numbers::after {
		width: 0.7vw;
		height: 1.41vw;
	}

	#single-news {
		padding: 11.72vw 0;
		border-top: 0.04vw solid #1A1311;
		border-bottom: 0.04vw solid #1A1311;
	}

	.single-news-page-title {
		margin: 0 0 6.25vw;
	}

	.single-news-page-title h1 {
		font-size: 3.67vw;
		line-height: 5.47vw;
	}

	.single-news-page-title p {
		font-size: 1.25vw;
		line-height: 1.88vw;
	}
	
	.single-news-header {
		width: 90.62vw;
		padding: 0 0 3.12vw;
		margin: 0 auto 7.03vw;
		border-bottom: 0.04vw solid #000000;
	}

	.single-news-title h2 {
		font-size: 3.67vw;
		line-height: 4.92vw;
	}

	.single-news-date {
		font-size: 1.25vw;
		line-height: 1.72vw;
		margin: 0 0 1.72vw;
		padding: 0 0 0 0.31vw;
	}

	.single-news-category {
		width: 13.91vw;
		height: 3.59vw;
		border: 0.05vw solid #535252;
		font-size: 1.25vw;
		line-height: 1.72vw;
		padding: 0.94vw;
	}

	.single-news-image {
		width: 90.62vw;
		margin: 0 auto 6.25vw;
	}

	.single-news-content {
		width: 90.62vw;
		margin: 0 auto 6.25vw;
		padding: 0 0 6.25vw;
		border-bottom: 0.04vw solid #000000;
	}

	.single-news-content p {
		width: 72.81vw;
		font-size: 1.41vw;
		line-height: 2.97vw;
		margin: 0 auto 6.25vw;
	}

	.single-news-content strong {
		font-size: 1.41vw;
		line-height: 2.97vw;
	}

	.single-news-content h2 {
		width: 72.81vw;
		font-size: 1.88vw;
		line-height: 2.81vw;
		margin: 0 auto 6.25vw;
		padding: 0 0 0 1.56vw;
		border-left: 0.63vw solid #000000;
	}

	.single-news-content h3 {
		width: 72.81vw;
		font-size: 1.56vw;
		line-height: 2.27vw;
		margin: 0 auto 6.25vw;
		padding: 0 0 0.78vw;
		border-bottom: 0.08vw solid #000000;
	}

	.single-news-content blockquote {
		width: 72.81vw;
		margin: 0 auto 6.25vw;
		background: rgba(234, 110, 0, 0.25);
		padding: 1.17vw 1.56vw;
		border-left: 0.55vw solid #EA6E00;
	}

	.single-news-content blockquote p {
		font-size: 1.41vw;
		line-height: 2.97vw;
		margin: 0 auto 6.25vw;
	}

	.single-news-content ul {
		width: 72.81vw;
		margin: 0 auto 6.25vw;
	}

	.single-news-content ul li {
		font-size: 1.41vw;
		line-height: 2.97vw;
	}

	.single-news-content ul li::marker {
		font-size: 1.41vw;
		line-height: 2.97vw;
	}

	.single-news-content ol {
		width: 72.81vw;
		margin: 0 auto 6.25vw;
	}

	.single-news-content ol li {
		font-size: 1.41vw;
		line-height: 2.97vw;
	}

	.single-news-content p a {
		font-size: 1.41vw;
		line-height: 2.97vw;
	}

	.single-news-content p:has(img) {
		column-gap: 2.34vw;
		row-gap: 3.12vw;
	}

	.single-news-content p:has(img) img {
		max-width: calc((100% - 4.69vw)/3);
	}

	.single-news-pagination {
		width: 71.88vw;
		margin: 0 auto 2.03vw;
	}

	.single-news-pagination a {
		column-gap: 2.34vw;
		font-size: 1.8vw;
		line-height: 2.42vw;
	}

	.single-news-prev::before {
		width: 1.09vw;
		height: 2.19vw;
	}

	.single-news-next::before {
		width: 1.09vw;
		height: 2.19vw;
	}

	.single-news-backtolist a {
		width: 23.12vw;
		height: 4.45vw;
		padding: 0 1.64vw;
		border-radius: 4.45vw;
	}

	.single-news-backtolist a p {
		font-size: 1.56vw;
		line-height: 2.11vw;
	}

	.single-news-backtolist a::after {
		width: 0.78vw;
		height: 0.94vw;
	}














	
	#recaptcha-holder > .grecaptcha-badge {
		margin: 0 auto 3.125vw;
	}
}

@media screen and (max-width: 639px) {
	.site-header {
		height: 14.06vw;
	}

	.site-branding {
		width: 12.5vw;
		margin-left: 3.75vw;
	}

	.main-navigation {
		position: static;
	}

	.main-navigation .onepress-menu {
		width: 100% !important;
		display: block;
		height: 0px;
		overflow: hidden;
		background: #fff;
	}

	.onepress-menu.onepress-menu-mobile {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		z-index: 800;
		overflow: auto !important;
		background: #fff;
		/* height: max-content !important; */
		padding: 7.5vw 0;
	}

	.onepress-menu.onepress-menu-mobile li {
		width: 80vw;
		margin: 0 auto 8vw;
	}

	.onepress-menu.onepress-menu-mobile li a {
		padding: 0;
		font-size: 4vw;
		line-height: 5.6vw;
		text-align: left;
		color: #1A1311;
	}

	.onepress-menu.onepress-menu-mobile li a:hover {
		opacity: 0.7;
	}
	
	.onepress-menu.onepress-menu-mobile > li.menu-item-has-children > a {
		z-index: 2;
	}

	.onepress-menu.onepress-menu-mobile > li.menu-item-has-children > a::after {
		display: none;
	}

	.onepress-menu.onepress-menu-mobile > li.menu-item-has-children:hover > a:hover {
		opacity: 0.7;
	}

	.onepress-menu.onepress-menu-mobile ul {
		position: static;
		display: block;
		height: initial;
		overflow: initial;
		opacity: 1;
		background: none;
		padding: 0;
	}

	.onepress-menu.onepress-menu-mobile ul li {
		margin: 8vw 0 0;
	}

	.onepress-menu.onepress-menu-mobile ul li:last-child {
		margin: 8vw 0 0;
	}
	
	.onepress-menu.onepress-menu-mobile ul li a {
		display: flex;
		align-items: center;
	}
	
	.onepress-menu.onepress-menu-mobile ul li a::before {
		display: block;
		content: "ー";
		margin: 0 3.2vw 0 0;
	}

	.header-contact a {
		width: 80vw;
		height: 21vw;
		column-gap: 3.75vw;
		font-size: 5.6vw;
		line-height: 7.5vw;
		margin: 0 auto;
		color: #fff !important;
	}

	.header-contact a::before {
		width: 9.84vw;
		height: 6.56vw;
	}

	.header-menu {
		width: 11.25vw;
		margin-right: 2.8125vw;
	}

	#nav-toggle {
		display: block;
	}

	#nav-toggle {
		position: relative;
		width: 11.25vw;
		white-space: nowrap;
		color: transparent;
	}

	#nav-toggle span {
		position: absolute;
		top: 50%;
		right: 0;
		margin: 0;
		-webkit-transition: rotate 0.2s, translate 0.2s;
		-moz-transition: rotate 0.2s, translate 0.2s;
		transition: rotate 0.2s, translate 0.2s;
		display: inline-block;
		height: 0.2vw;
		width: 11.25vw;
		background: #000000;
	}

	#nav-toggle span:before {
		top: -2.4vw;
	}

	#nav-toggle span:after {
		top: 2.4vw;
	}

	#nav-toggle span:before, #nav-toggle span:after {
		position: absolute;
		display: inline-block;
		height: 0.2vw;
		width: 11.25vw;
		background: #000000;
		content: "";
		right: 0;
		-webkit-transform: translateZ(0);
		-moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		-o-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-transform-origin: 0% 50%;
		-moz-transform-origin: 0% 50%;
		-ms-transform-origin: 0% 50%;
		-o-transform-origin: 0% 50%;
		transform-origin: 0% 50%;
		-webkit-transition: -webkit-transform 0.2s;
		-moz-transition: -moz-transform 0.2s;
		transition: transform 0.2s;
	}

	#nav-toggle.nav-is-visible span {
		background: transparent;
	}

	#nav-toggle.nav-is-visible span:before {
		-webkit-transform: translateX(2vw) translateY(-1.6vw) rotate(45deg);
		-moz-transform: translateX(2vw) translateY(-1.6vw) rotate(45deg);
		-ms-transform: translateX(2vw) translateY(-1.6vw) rotate(45deg);
		-o-transform: translateX(2vw) translateY(-1.6vw) rotate(45deg);
		transform: translateX(2vw) translateY(-1.6vw) rotate(45deg);
	}

	#nav-toggle.nav-is-visible span:after {
		-webkit-transform: translateX(2vw) translateY(1.6vw) rotate(-45deg);
		-moz-transform: translateX(2vw) translateY(1.6vw) rotate(-45deg);
		-ms-transform: translateX(2vw) translateY(1.6vw) rotate(-45deg);
		-o-transform: translateX(2vw) translateY(1.6vw) rotate(-45deg);
		transform: translateX(2vw) translateY(1.6vw) rotate(-45deg);
	}

	#nav-toggle.nav-is-visible span:before, #nav-toggle.nav-is-visible span:after {
		background: #2F2009;
		height: 0.2vw;
		width: 11.25vw;
	}

	.tsunagu-footer {
		border-top: 0.16vw solid #707070;
	}
	
	.footer-top {
		padding: 20.31vw 0 27.5vw;
		display: block;
	}

	.footer-logo {
		width: 28.125vw;
		margin: 0 auto 15.31vw;
	}

	ul.footer-menu {
		width: 73.75vw;
		column-gap: 9.375vw;
		row-gap: 7.5vw;
		margin: 0 auto;
	}

	ul.footer-menu li::before {
		font-size: 3.59vw;
		line-height: 4.375vw;
	}

	ul.footer-menu li a {
		font-size: 3.59vw;
		line-height: 4.375vw;
	}

	.footer-instagram {
		margin: 0 0 7.8125vw;
	}

	.footer-instagram-logo {
		column-gap: 5.625vw;
		margin: 0 0 1.875vw;
	}

	.footer-instagram-logo img {
		width: 10vw;
	}

	.footer-instagram-logo p {
		font-size: 7.5vw;
		line-height: 10.625vw;
	}

	.footer-instagram-name {
		margin: 0 0 5.625vw;
	}

	.footer-instagram-name p {
		font-size: 2.8125vw;
		line-height: 4.0625vw;
	}

	.footer-instagram-image #sb_instagram #sbi_images {
		grid-template-columns: repeat(4,2fr);
	}

	.footer-copyright {
		border-top: 0.15vw solid #000000;
		padding: 3.75vw 0;
	}

	.footer-copyright p {
		font-size: 2.5vw;
		line-height: 3.125vw;
	}
	
	.site-content {
		padding-top: 14.06vw;
	}
		
	#banner {
		height: 128.75vw;
		padding: 6.875vw 0 0 8.75vw;
		background: url(./images/banner-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center bottom;
	}

	.banner-text {
		width: 70.625vw;
	}
	
	#home-about {
		height: 336.875vw;
		padding: 15vw 0;
		background: url(./images/home-about-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center top;
	}

	.home-about-image {
		width: 30.94vw;
		margin: 0 auto 9.06vw;
	}

	.home-greeting-text {
		margin: 0 0 140vw;
	}

	.home-greeting-text p {
		font-size: 3.59vw;
		line-height: 6.25vw;
	}

	.home-about-title {
		width: 90.625vw;
		padding-left: 0;
		margin: 0 auto 4.06vw;
	}

	.home-about-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
		margin: 0 0 2.125vw;
	}

	.home-about-title h2 {
		font-size: 7.34vw;
		line-height: 10.9375vw;
	}

	.home-about-text {
		padding-left: 0;
		width: 90.625vw;
		margin: 0 auto;
	}

	.home-about-text p {
		width: 110%;
		font-size: 3.47vw;
		line-height: 8vw;
	}

	#home-vision {
		height: 414.53vw;
		padding: 17.5vw 0;
		background: url(./images/home-vision-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center top;
	}

	.home-vision-text {
		margin: 0 0 30.625vw;
	}

	.home-vision-text p {
		font-size: 3.90vw;
		line-height: 7.03vw;
	}

	.home-vision-image {
		position: absolute;
		width: 74.69vw;
		margin: 0 auto;
		top: 160vw;
		left: 0;
		right: 0;
	}

	.home-vision-content {
		display: block;
		margin: 0 0 15.31vw;
	}

	.home-vision-container {
		position: static;
	}

	.home-vision-container:first-child {
		width: 100vw;
		margin: 0 auto 56.25vw;
	}

	.home-vision-container:last-child {
		width: 92.81vw;
		margin: 0 auto;
	}
	
	.home-vision-content-image {
		width: 54.06vw;
		margin: 0 auto -21.6vw;
	}
	
	.home-vision-container:last-child .home-vision-content-image {
		margin: 0 auto -20vw;
	}

	.home-vision-content-title {
		margin: 0 0 11.88vw;
	}

	.home-vision-container:last-child .home-vision-content-title {
		margin: 0 0 6.88vw;
	}

	.home-vision-content-title h3 {
		font-size: 3.44vw;
		line-height: 5vw;
	}

	.home-vision-content-text h4 {
		width: 43.44vw;
		height: 8.125vw;
		margin: 4.375vw auto 1.88vw;
		font-size: 3.75vw;
		line-height: 8.125vw;
	}

	.home-vision-content-text p {
		font-size: 3.28vw;
		line-height: 5.93vw;
	}

	.home-vision-button a {
		width: 57.66vw;
		height: 11.25vw;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.home-vision-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.home-vision-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#home-news {
		padding: 8.75vw 0;
	}

	.home-news-title {
		margin: 0 0 8.44vw;
	}

	.home-news-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.home-news-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.home-news-list {
		width: 91.25vw;
		height: 129.375vw;
	}

	.home-news-list ul {
		padding: 9.6875vw 0;
	}

	.home-news-list ul li {
		width: 82.19vw;
		display: block;
		position: relative;
		padding: 0 0 3.44vw;
		margin: 0 0 9.06vw;
		border-bottom: 0.06vw solid #000000;
	}

	.home-news-list-date {
		letter-spacing: initial;
		width: 22.19vw;
		height: 5.625vw;
		border: 0.08vw solid #535252;
		font-size: 2.03vw;
		line-height: 2.8125vw;
		margin: 0 0 1.875vw;
		padding: 1.41vw;
	}

	h3.home-news-list-title {
		font-size: 2.66vw;
		line-height: 3.43vw;
	}

	a.home-news-list-button {
		position: absolute;
		width: 7.8125vw;
		height: 7.8125vw;
		right: 0;
		top: 2.19vw;
	}

	#home-message {
		position: relative;
		z-index: 1;
		padding: 16.56vw 0 0;
		background: #FFF;
	}

	.home-message-title {
		margin: 0 0 8.125vw;
	}

	.home-message-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.home-message-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}
	
	.home-message-content {
		height: 223.43vw;
		padding: 18.125vw 0 0;
		background: url(./images/message-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center top;
		display: block;
	}

	.home-message-container {
		width: 50.625vw;
		margin-right: 3.44vw;
		margin-left: auto;
	}

	.home-message-container:last-child {
		margin: 20vw 0 0;
		width: 43.125vw;
		margin-left: 7.19vw;
	}

	.home-message-company {
		margin: 0 0 4.375vw;
	}

	.home-message-company p {
		font-size: 4.6875vw;
		line-height: 6.25vw;
	}

	.home-message-name {
		display: block;
		margin: 0 0 3.44vw;
	}

	.home-message-name span {
		font-size: 13px;
		line-height: 17px;
		margin: 0 0 2.5vw;
	}

	.home-message-name img {
		width: 29.375vw;
	}

	.home-message-text {
		margin: 0 0 10.3125vw;
	}
	
	.home-message-button {
		width: 57.66vw;
		margin-left: -7.035vw;
	}
	
	.home-message-container:last-child .home-message-button {
		margin-left: -3.44vw;
	}

	.home-message-button a {
		width: 57.66vw;
		height: 11.25vw;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}	
	
	.home-message-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.home-message-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#home-partner {
		padding: 14.375vw 0 21.56vw;
	}

	.home-partner-title {
		margin: 0 0 5.94vw;
	}

	.home-partner-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.home-partner-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.home-partner-content {
		width: 87.19vw;
		height: 132.19vw;
		border: 0.07 solid #000000;
		padding: 20vw 3.75vw 0;
	}

	.home-partner-content ul {
		margin: 0 0 12.5vw;
	}

	.home-partner-content ul li {
		padding: 0 0 10.625vw;
		margin: 0 0 10.625vw;
		border-bottom: 0.06vw solid #000000;
	}

	.home-partner-content ul li img {
		width: 65.3125vw;
	}

	.home-partner-content ul li:last-child img {
		width: 42.5vw;
	}

	.home-partner-button a {
		width: 57.66vw;
		height: 11.25vw;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}	
	
	.home-partner-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.home-partner-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#home-contact {
		padding: 17.5vw 0 23.75vw;
		border-radius: 5.625vw 5.625vw 0 0;
	}

	.home-contact-title {
		margin: 0 0 7.18vw;
	}

	.home-contact-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.home-contact-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.home-contact-content {
		width: 87.19vw;
		padding: 20.625vw 0 17.8125vw;
	}

	.home-contact-text {
		margin: 0 0 14.375vw;
	}

	.home-contact-text p {
		font-size: 3.59vw;
		line-height: 7.96vw;
	}

	.home-contact-button a {
		width: 72.5vw;
		height: 11.25vw;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}	
	
	.home-contact-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.home-contact-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}
	
	#initiative-details {
		padding: 23.75vw 0 30vw;
	}

	.initiative-details-title {
		margin: 0 0 8.44vw;
	}

	.initiative-details-title h1 {
		font-size: 5.625vw;
		line-height: 8.75vw;
	}

	.initiative-details-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	ul.initiative-details-list {
		width: 100%;
	}

	ul.initiative-details-list li {
		width: 94.06vw;
		display: block;
		margin: 0 0 25vw;
		margin-right: auto;
	}
	
	ul.initiative-details-list li:nth-child(even) {
		margin: 0 0 25vw;
		margin-left: auto;
	}

	.initiative-details-list-image {
		width: 100%;
	}

	.initiative-details-list-card {
		width: 86.56vw;
		height: auto;
		box-shadow: 3vw 3vw 6vw 0px rgba(0, 0, 0, 0.08);
		border-radius: 0 0 13.125vw 0;
		margin: -9.375vw auto 0;
		padding: 8.44vw;
	}

	ul.initiative-details-list li:nth-child(even) .initiative-details-list-card {
		margin: -9.375vw auto 0;
		border-radius: 0 0 0 13.125vw;
	}

	.initiative-details-list-text {
		width: 100%;
		position: static;
		transform: translate(-0, 0);
	}

	.initiative-details-list-text h3 {
		font-size: 5.31vw;
		line-height: 7.81vw;
		margin: 0 0 3.125vw;
	}

	.initiative-details-list-text img {
		margin: 0 0 6.25vw;
	}

	.initiative-details-list-text p {
		font-size: 3.59vw;
		line-height: 7.66vw;
	}

	#attempt-others {
		padding: 15vw 0;
		background: url(./images/attempt-others-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center center;
		border-radius: 5.625vw 5.625vw 0 0;
	}

	.attempt-others-title {
		margin: 0 0 6.25vw;
	}

	.attempt-others-title h2 {
		font-size: 5.625vw;
		line-height: 8.75vw;
	}

	.attempt-others-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	ul.attempt-others-list {
		width: 93.13vw;
		display: block;
	}

	ul.attempt-others-list li {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 7.5vw 8.125vw;
	}
	
	ul.attempt-others-list li:last-child {
		margin: 0;
	}

	ul.attempt-others-list li h3 {
		font-size: 5.31vw;
		line-height: 7.81vw;
		margin: 0 0 3.125vw;
	}

	ul.attempt-others-list li img {
		margin: 0 0 5.625vw;
	}

	ul.attempt-others-list li p {
		font-size: 3.59vw;
		line-height: 7.66vw;
	}
	
	#partner {
		padding: 13.125vw 0 20.625vw;
	}

	.partner-title {
		margin: 0 0 4.375vw;
	}

	.partner-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.partner-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	ul.partner-list {
		width: 93.125vw;
	}

	ul.partner-list li {
		padding: 7.5vw 2.5vw 10vw;
		margin: 0 0 14.375vw;
	}

	.partner-list-logo {
		width: 56.25vw;
		height: 28.75vw;
		margin: 0 auto 10.625vw;
	}

	.partner-list-detail {
		margin: 0 0 10vw;
		border-top: 0.08vw solid #000000;
	}

	.partner-list-detail-row {
		height: 15.94vw;
	}

	.partner-list-detail-label {
		width: 20.94vw;
		border-bottom: 0.08vw solid #fff;
	}

	.partner-list-detail-text {
		width: calc(100% - 20.94vw);
		border-bottom: 0.08vw solid #000000;
		padding: 0 3.125vw;
	}

	.partner-list-detail-row p {
		font-size: 3.125vw;
		line-height: 4.375vw;
	}
	
	.partner-list-detail-row a {
		font-size: 3.125vw;
		line-height: 4.375vw;
	}

	.partner-list-button {
		column-gap: 4.375vw;
	}

	.partner-list-button::before {
		width: 7.19vw;
		height: 7.19vw;
	}

	.partner-list-button a {
		column-gap: 4.375vw;
		width: 31.875vw;
		padding: 0 0 1.25vw 3.125vw;
		font-size: 4.06vw;
		line-height: 5.94vw;
		border-bottom: 0.0625vw solid #000000;
	}

	.partner-list-button a::after {
		width: 1.25vw;
		height: 2.5vw;
	}
	
	
	
	
	
	
	
	
	
	#contact {
		padding: 13.125vw 0 18.125vw;
		border-top: 0.08vw solid #1A1311;
		border-bottom: 0.08vw solid #1A1311;
	}

	.contact-title {
		margin: 0 0 10.625vw;
	}

	.contact-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.contact-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.contact-text {
		margin: 0 0 23.125vw;
	}

	.contact-text p {
		font-size: 3.59vw;
		line-height: 7.97vw;
	}
	
	.contact-form {
		width: 87.5vw;
		margin: 0 auto 7.5vw;
	}

	.form-group {
		margin: 0 0 11.25vw;
	}
	
	.form-group.address-detail {
		margin: -7.1875vw 0 11.25vw;
	}
	
	.form-group.privacy-policy {
		margin: 0 0 16.25vw;
	}

	.form-group > p {
		display: block;
	}

	.form-group > p > label {
		column-gap: 0;
		font-size: 3.75vw;
		line-height: 5vw;
		margin: 0 0 4.69vw;
	}

	.form-group.option-input > p > label {
		margin: 0 0 6.88vw;
	}
	
	.form-group.address-detail > p > label {
		margin: 0 0 2.5vw;
	}

	.form-required {
		width: 17.8125vw;
		height: 5.9375vw;
		font-size: 2.66vw;
		line-height: 5.9375vw;
		border-radius: 5.9375vw;
		position: relative;
		left: -3.44vw;
	}

	.form-notrequired {
		width: 17.8125vw;
		height: 5.9375vw;
		font-size: 2.66vw;
		line-height: 5.9375vw;
		border-radius: 5.9375vw;
		position: relative;
		left: -3.44vw;
	}

	.form-group > p > .wpcf7-form-control-wrap {
		display: block;
		width: 100%;
	}

	.form-group.option-input > p > .wpcf7-form-control-wrap {
		padding: 0;
	}

	.form-group.name-input > p > .wpcf7-form-control-wrap {
		/* width: 78.125vw; */
		width: 100%;
		margin: 0 0 2.28vw;
	}
	
	.form-group.name-input > p > .wpcf7-form-control-wrap:last-child {
		margin: 0;
	}

	.form-group.postcode-input > p > .wpcf7-form-control-wrap {
		/* width: 78.125vw; */
		width: 100%;
	}
	
	.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap {
		width: 100%;
	}
	
	.form-group.postcode-dropdown > p > .wpcf7-form-control-wrap::after {
		width: 2.81vw;
		height: 1.41vw;
		top: 5.94vw;
		right: 3.75vw;
	}

	.form-group > p > .wpcf7-form-control-wrap input[type="text"],
	.form-group > p > .wpcf7-form-control-wrap input[type="tel"],
	.form-group > p > .wpcf7-form-control-wrap input[type="email"] {
		padding: 4.6875vw 7.8125vw;
		font-size: 2.97vw;
		line-height: 4.0625vw;
		border: 0.16vw solid #CBCCCC;
		border-radius: 0.31vw;
	}
	
	.form-group > p > .wpcf7-form-control-wrap select {
		padding: 4.6875vw 7.8125vw;
		font-size: 2.97vw;
		line-height: 4.0625vw;
		border: 0.16vw solid #CBCCCC;
		border-radius: 0.31vw;
	}

	.form-group > p > .wpcf7-form-control-wrap textarea {
		width: 100%;
		height: 53.125vw;
		padding: 4.6875vw 7.8125vw;
		font-size: 2.97vw;
		line-height: 4.0625vw;
		border: 0.16vw solid #CBCCCC;
		border-radius: 0.31vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item {
		margin: 0 0 5vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item.last {
		margin: 0;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label {
		column-gap: 4.375vw;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
		width: 5.3125vw;
		height: 5.3125vw;
		flex-shrink: 0;
	}

	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
		font-size: 3.75vw;
		line-height: 5vw;
	}
	
	.form-group > p > .wpcf7-form-control-wrap > .wpcf7-checkbox .wpcf7-list-item.first label .wpcf7-list-item-label {
		width: 48vw;
	}

	a#postcode-button {
		width: 45.94vw;
		height: 10vw;
		border-radius: 0.3125vw;
		margin: 5.625vw 0 0;
		padding: 2.5vw 5vw 2.5vw 7.5vw;
		font-size: 2.97vw;
		line-height: 4.06vw;
	}

	a#postcode-button::after {
		width: 8.44vw;
		height: 1.875vw;
	}

	.contact-privacy-policy {
		border: 0.16vw solid #CBCCCC;
		border-radius: 0.3125vw;
		padding: 13.125vw 10vw 15.625vw;
	}

	.contact-privacy-policy > h3 {
		font-size: 3.28vw;
		line-height: 4.375vw;
		margin: 0 0 5.3125vw;
		text-align: center;
	}

	.contact-privacy-policy > p {
		font-size: 2.8125vw;
		line-height: 5vw;
		margin: 0 0 7.5vw;
		text-align: center;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label {
		align-items: start;
		font-size: 2.8125vw;
		line-height: 6.25vw;
		column-gap: 2.5vw;
		left: -2vw;
	}
	
	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
		display: block;
		/* padding: 1.07vw 0 0; */
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label::before {
		width: 6.56vw;
		height: 6.56vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
		width: 4.375vw;
		height: 4.375vw;
		left: 15.6vw;
		top: 1.07vw;
	}

	.contact-privacy-policy > p .wpcf7-acceptance .wpcf7-list-item label a {
		font-size: 3.28vw;
		line-height: 6.25vw;
	}

	.wpcf7-form > p input[type="submit"] {
		width: 70.3125vw;
		height: 12.5vw;
		padding: 3.125vw;
		font-size: 3.59vw;
		line-height: 6.25vw;
	}

	.form-group > p .wpcf7-not-valid-tip {
		font-size: 3.73vw;
		line-height: 5.6vw;
		margin: 2.8vw 0 0;
	}
	
	.contact-note p {
		font-size: 2.81vw;
		line-height: 5vw;
	}

	.contact-backtohome a {
		width: 57.66vw;
		height: 11.25vw;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.contact-backtohome a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.contact-backtohome a::before {
		width: 2.03vw;
		height: 2.34vw;
	}
	
	#preparation {
		padding: 13.125vw 0 18.125vw;
		border-top: 0.08vw solid #1A1311;
		border-bottom: 0.08vw solid #1A1311;
	}

	.preparation-title {
		margin: 0 0 10.625vw;
	}

	.preparation-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.preparation-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.preparation-text p {
		font-size: 3.59vw;
		line-height: 7.97vw;
	}
	
	#privacy-policy {
		padding: 13.125vw 0 23.125vw;
		border-top: 0.08vw solid #1A1311;
		border-bottom: 0.08vw solid #1A1311;
	}

	.privacy-policy-title {
		margin: 0 0 10.625vw;
	}

	.privacy-policy-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.privacy-policy-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.privacy-policy-text {
		margin: 0 0 24.375vw;
	}

	.privacy-policy-text p {
		font-size: 3.59vw;
		line-height: 6.56vw;
	}

	.privacy-policy-content {
		width: 93.125vw;
		margin: 0 auto 25.625vw;
	}

	.privacy-policy-content h2 {
		padding: 2.5vw;
		border: 0.08vw solid #000000;
		border-radius: 10vw;
		margin: 0 0 7.18vw;
		font-size: 3.59vw;
		line-height: 5vw;
	}

	.privacy-policy-content p {
		font-size: 3.59vw;
		line-height: 8.44vw;
		margin: 0 0 25.625vw;
	}

	.privacy-policy-note {
		width: 93.75vw;
		margin: 0 auto;
	}

	.privacy-policy-note p {
		font-size: 3.59vw;
		line-height: 6.25vw;
		margin: 0 0 6.56vw;
		padding: 0 0 6.56vw;
		border-bottom: 0.08vw solid #1A1311;
	}
	
	#news-page {
		padding: 13.125vw 0 32.5vw;
		border-top: 0.08vw solid #1A1311;
		border-bottom: 0.08vw solid #1A1311;
	}

	.news-page-title {
		margin: 0 0 8.125vw;
	}

	.news-page-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.news-page-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.news-list {
		width: 87.81vw;
	}

	.news-list ul li {
		display: block;
		position: relative;
		padding: 0 0 16.875vw;
		margin: 0 0 11.72vw;
		border-bottom: 0.08vw solid #000000;
	}

	.news-list-date {
		font-size: 4.6875vw;
		line-height: 6.25vw;
		margin: 0 0 2.8vw;
		padding: 0;
	}

	.news-list-category {
		width: 27.81vw;
		height: 7.03vw;
		border: 0.09vw solid #535252;
		font-size: 2.5vw;
		line-height: 3.44vw;
		margin: 0 0 5.3125vw;
		padding: 1.975vw;
	}

	h3.news-list-title {
		font-size: 4.53vw;
		line-height: 7.19vw;
		padding: 0;
	}

	a.news-list-button {
		position: absolute;
		bottom: 16.875vw;
		right: 0;
		width: 10.3125vw;
		height: 10.3125vw;
		margin: 0;
	}

	.news-list-pagination{
		column-gap: 2.5vw;
		margin: 13.125vw 0 0;
	}

	.news-list-pagination .page-numbers {
		width: 9vw;
		height: 9vw;
		font-size: 5vw;
		line-height: 9vw;
		border: 0.07vw solid #707070;
	}

	.news-list-pagination .prev.page-numbers::after,
	.news-list-pagination .next.page-numbers::after {
		width: 1.88vw;
		height: 3.75vw;
	}
	
	#single-news {
		padding: 13.125vw 0 25vw;
		border-top: 0.08vw solid #1A1311;
		border-bottom: 0.08vw solid #1A1311;
	}

	.single-news-page-title {
		margin: 0 0 8.125vw;
	}

	.single-news-page-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.single-news-page-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.single-news-header {
		display: block;
		width: 93.75vw;
		padding: 0 2.8125vw 2.06vw;
		margin: 0 auto 8.125vw;
		border-bottom: 0.08vw solid #000000;
	}

	.single-news-title h2 {
		font-size: 6.72vw;
		line-height: 9.84vw;
	}

	.single-news-meta {
		margin: 0 0 2.5vw;
	}

	.single-news-date {
		font-size: 4.6875vw;
		line-height: 6.25vw;
		margin: 0 0 2.8125vw;
		padding: 0;
	}

	.single-news-category {
		width: 27.81vw;
		height: 7.03vw;
		border: 0.09vw solid #535252;
		font-size: 2.5vw;
		line-height: 3.44vw;
		padding: 1.975vw;
	}

	.single-news-image {
		width: 93.75vw;
		margin: 0 auto 6.25vw;
	}

	.single-news-content {
		width: 93.75vw;
		margin: 0 auto 10vw;
		padding: 0 0 10vw;
		border-bottom: 0.08vw solid #000000;
	}

	.single-news-content p {
		width: 100%;
		font-size: 3.91vw;
		line-height: 9.375vw;
		margin: 0 auto 7.5vw;
	}

	.single-news-content strong {
		font-size: 3.91vw;
		line-height: 9.375vw;
	}
	
	.single-news-content h2 {
		width: 100%;
		font-size: 5.87vw;
		line-height: 9.6vw;
		margin: 0 auto 7.5vw;
		padding: 0 0 0 4vw;
		border-left: 2.13vw solid #000000;
	}

	.single-news-content h3 {
		width: 100%;
		font-size: 5.33vw;
		line-height: 8vw;
		margin: 0 auto 7.5vw;
		padding: 0 0 6vw;
		border-bottom: 0.27vw solid #000000;
	}

	.single-news-content blockquote {
		width: 100%;
		margin: 0 auto 7.5vw;
		padding: 4vw 5.6vw;
		border-left: 1.87vw solid #EA6E00;
	}

	.single-news-content blockquote p {
		font-size: 3.91vw;
		line-height: 9.375vw;
		margin: 0 auto 7.5vw;
	}

	.single-news-content ul {
		width: 100%;
		margin: 0 auto 7.5vw;
	}

	.single-news-content ul li {
		font-size: 3.91vw;
		line-height: 9.375vw;
	}

	.single-news-content ul li::marker {
		font-size: 3.91vw;
		line-height: 9.375vw;
	}

	.single-news-content ol {
		width: 100%;
		margin: 0 auto 7.5vw;
	}

	.single-news-content ol li {
		font-size: 18px;
		line-height: 38px;
	}

	.single-news-content p a {
		font-size: 3.91vw;
		line-height: 9.375vw;
	}

	.single-news-content p:has(img) {
		width: 100%;
		column-gap: 2.5vw;
		row-gap: 3.125vw;
	}

	.single-news-content p:has(img) img {
		display: block;
		width: 100%;
		max-width: 44vw;
	}

	.single-news-pagination {
		width: 100%;
		justify-content: center;
		align-items: center;
		column-gap: 40vw;
		margin: 0 auto 18.75vw;
	}

	.single-news-pagination a {
		display: block;
		font-size: 4.375vw;
		line-height: 5.78vw;
	}

	.single-news-prev::before {
		width: 3.125vw;
		height: 6.25vw;
		margin: 0 auto 2.5vw;
	}

	.single-news-next::before {
		width: 3.125vw;
		height: 6.25vw;
		margin: 0 auto 2.5vw;
	}

	.single-news-backtolist a {
		width: 57.66vw;
		height: 11.25vw;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.single-news-backtolist a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.single-news-backtolist a::after {
		width: 2.03vw;
		height: 2.34vw;
	}
	
	.about-yka-banner {
		height: 178.91vw;
		background: url(./images/about-yka-banner-mobile.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
		padding: 6.5625vw 0 0;
	}

	.about-yka-image {
		bottom: -19.69vw;
		width: 93.125vw;
	}

	.about-yka-title {
		width: 100%;
		margin: 0 0 6.25vw;
	}

	.about-yka-title h1 {
		font-size: 14.69vw;
		line-height: 21.72vw;
		text-align: center;
	}

	.about-yka-title h1 span {
		font-size: 8.44vw;
		line-height: 12.5vw;
		margin: 0 0 0 1.56vw;
	}

	.about-yka-desc {
		width: 80.78vw;
		margin: 0 auto 26.25vw;
	}

	.about-yka-name {
		display: block;
		margin: 0;
		padding-left: 66.88vw;
	}

	.about-yka-name span {
		display: block;
		font-size: 3.28vw;
		line-height: 4.375vw;
		margin: 0 0 2.5vw;
	}

	.about-yka-name img {
		display: block;
		width: 28.8vw;
	}

	#about-yka-message {
		margin: -4.5vw 0 0;
	}

	.about-yka-message-title {
		margin: 0 0 7.5vw;
	}

	.about-yka-message-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.about-yka-message-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}
	
	.about-yka-message-text {
		width: 87.5vw;
		margin: 0 auto;
	}

	.about-yka-message-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
		text-align: left;
	}

	#about-yka-company {
		height: 263.28vw;
		padding: 126.25vw 0 0;
		background: url(./images/about-yka-company-bg-mobile.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
		margin: -12.5vw 0 0;
	}

	.about-yka-company-title {
		width: 100%;
	}

	.about-yka-company-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.about-yka-company-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.about-yka-company-divider {
		width: 0.09vw;
		height: 11.25vw;
		margin: 7.5vw auto;
	}

	.about-yka-company-text {
		width: 68.125vw;
		margin: 0 auto 9.375vw;
	}

	.about-yka-company-text h3 {
		font-size: 7.34vw;
		line-height: 9.69vw;
		margin: 0 1.875vw 6.25vw;
		padding: 0;
	}

	.about-yka-company-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
	}

	.about-yka-company-button {
		margin: 0;
	}

	.about-yka-company-button a {
		width: 57.66vw;
		height: 11.25vw;
		margin: 0 auto;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.about-yka-company-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.about-yka-company-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#about-yka-facility {
		padding: 17.5vw 0;
		background: url(./images/about-yka-facility-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center top;
	}

	.about-yka-facility-title {
		margin: 0 0 8.75vw;
	}

	.about-yka-facility-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.about-yka-facility-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	ul.about-yka-facility-list {
		width: 87.5vw;
		margin: 0 auto 11.25vw;
		display: block;
	}

	ul.about-yka-facility-list li {
		width: 100%;
		margin: 0 0 12vw;
		padding: 0;
	}
	
	ul.about-yka-facility-list li:last-child {
		margin: 0;
	}

	ul.about-yka-facility-list li h3 {
		font-size: 5.3125vw;
		line-height: 7.8125vw;
		margin: 0 0 4.06vw;
		height: auto;
		display: block;
	}

	ul.about-yka-facility-list li img {
		margin: 0 0 5.625vw;
	}

	ul.about-yka-facility-list li img:first-child {
		margin: 0 0 6.25vw;
	}

	ul.about-yka-facility-list li p {
		font-size: 3.59vw;
		line-height: 7.66vw;
	}

	.about-yka-facility-button a {
		width: 57.66vw;
		height: 11.25vw;
		margin: 0 auto;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.about-yka-facility-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.about-yka-facility-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#about-yka-recruitment {
		padding: 0;
	}

	.about-yka-recruitment-card {
		width: 100%;
		background: url(./images/about-yka-recruitment-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center center;
		height: 241.41vw;
		padding: 16.25vw 6.25vw;
	}

	.about-yka-recruitment-title {
		margin: 0 0 2.5vw;
	}

	.about-yka-recruitment-title h3 {
		font-size: 6.09vw;
		line-height: 9.06vw;
	}

	.about-yka-recruitment-divider {
		margin: 0 0 10.94vw;
	}

	.about-yka-recruitment-text {
		margin: 0 0 112.5vw;
	}

	.about-yka-recruitment-text h3 {
		font-size: 6.09vw;
		line-height: 8.75vw;
		margin: 0 0 5.94vw;
	}

	.about-yka-recruitment-text p {
		font-size: 3.59vw;
		line-height: 7.66vw;
	}

	.about-yka-recruitment-button a {
		width: 57.66vw;
		height: 11.25vw;
		margin: 0 auto;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.about-yka-recruitment-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.about-yka-recruitment-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}
	
	.about-heian-banner {
		height: 178.91vw;
		background: url(./images/about-heian-banner-mobile.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
		padding: 6.5625vw 0 0;
	}

	.about-heian-image {
		bottom: -19.69vw;
		width: 93.125vw;
	}

	.about-heian-title {
		width: 100%;
		margin: 0 0 33.75vw;
	}

	.about-heian-title h1 {
		font-size: 14.69vw;
		line-height: 21.72vw;
		text-align: center;
	}

	.about-heian-title h1 span {
		font-size: 8.44vw;
		line-height: 12.5vw;
		margin: 0;
	}

	.about-heian-title h1 span:first-child {
		font-size: 6.25vw;
		line-height: 9.375vw;
		margin: 0;
	}

	.about-heian-name {
		display: block;
		margin: 0;
		padding-left: 66.88vw;
	}

	.about-heian-name span {
		display: block;
		font-size: 3.28vw;
		line-height: 4.375vw;
		margin: 0 0 2.5vw;
	}

	.about-heian-name img {
		display: block;
		width: 28.8vw;
	}

	#about-heian-message {
		margin: -4.5vw 0 0;
	}

	.about-heian-message-title {
		margin: 0 0 7.5vw;
	}

	.about-heian-message-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.about-heian-message-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.about-heian-message-text {
		width: 87.5vw;
		margin: 0 auto;
	}

	.about-heian-message-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
		text-align: left;
	}

	#about-heian-company {
		height: 263.28vw;
		padding: 126.25vw 0 0;
		background: url(./images/about-heian-company-bg-mobile.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
		margin: -12.5vw 0 0;
	}

	.about-heian-company-title {
		width: 100%;
	}

	.about-heian-company-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.about-heian-company-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.about-heian-company-divider {
		width: 0.09vw;
		height: 11.25vw;
		margin: 7.5vw auto;
	}

	.about-heian-company-text {
		width: 100%;
		margin: 0 auto 9.375vw;
	}

	.about-heian-company-text h3 {
		font-size: 7.34vw;
		line-height: 9.69vw;
		margin: 0 0 6.25vw;
		padding: 0;
		text-align: center;
	}

	.about-heian-company-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
		text-align: center;
		letter-spacing: -0.3vw;
	}

	.about-heian-company-button {
		margin: 0;
	}

	.about-heian-company-button a {
		width: 57.66vw;
		height: 11.25vw;
		margin: 0 auto;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.about-heian-company-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.about-heian-company-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#about-heian-facility {
		padding: 17.5vw 0 11.25vw;
		background: url(./images/about-heian-facility-bg-mobile.png) no-repeat;
		background-size: cover;
		background-position: center top;
	}

	.about-heian-facility-title {
		margin: 0 0 8.75vw;
	}

	.about-heian-facility-title h2 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.about-heian-facility-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	ul.about-heian-facility-list {
		width: 87.5vw;
		margin: 0 auto;
		display: block;
	}

	ul.about-heian-facility-list li {
		width: 100%;
		margin: 0 0 24vw;
		padding: 0;
	}
	
	ul.about-heian-facility-list li:last-child {
		margin: 0;
	}

	ul.about-heian-facility-list li > h3 {
		display: flex;
		justify-content: start;
		align-items: center;
		column-gap: 2.5vw;
		font-size: 5.3125vw;
		line-height: 7.8125vw;
		margin: 0 0 5vw;
	}

	ul.about-heian-facility-list li > h3 span {
		font-size: 4.06vw;
		line-height: 5.94vw;
	}

	ul.about-heian-facility-list li > img {
		margin: 0 0 5.625vw;
	}

	ul.about-heian-facility-list li > img:first-child {
		margin: 0 0 7.5vw;
		box-shadow: 0 0 1.56vw #EAD0CA;
	}

	ul.about-heian-facility-list li > p {
		font-size: 3.59vw;
		line-height: 7.66vw;
		height: auto;
		margin: 0 0 7.5vw;
	}

	.about-heian-facility-button a {
		width: 57.66vw;
		height: 11.25vw;
		margin: 0 auto;
		padding: 0 4.06vw;
		border-radius: 11.25vw;
	}

	.about-heian-facility-button a p {
		font-size: 3.91vw;
		line-height: 5.31vw;
	}

	.about-heian-facility-button a::after {
		width: 2.03vw;
		height: 2.34vw;
	}

	#about-heian-community {
		height: 257.03vw;
		padding: 111.25vw 4vw 40vw 11vw;
		background: url(./images/about-heian-community-bg-mobile.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
	}

	.about-heian-community-title {
		margin: 0 0 4.375vw;
	}

	.about-heian-community-title h2 {
		font-size: 7.34vw;
		line-height: 9.69vw;
	}

	.about-heian-community-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
	}
	
	#yka-initiatives-intro {
		border-top: 0.08vw solid #1A1311;
		padding: 14.69vw 0 0;
		margin: 0 0 19.38vw;
	}

	.yka-initiatives-intro-title {
		margin: 0 0 4.38vw;
	}

	.yka-initiatives-intro-title h2 {
		font-size: 7.34vw;
		line-height: 10.94vw;
	}

	.yka-initiatives-intro-text {
		margin: 0 0 15.625vw;
	}

	.yka-initiatives-intro-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
	}

	.yka-initiatives-intro-content {
		height: 193.13vw;
		padding: 59.375vw 0 0;
		background: url(./images/yka-initiatives-intro-content-bg-mobile.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
	}

	.yka-initiatives-intro-content ul {
		width: 71.88vw;
		display: block;
	}

	.yka-initiatives-intro-content ul li {
		width: 100%;
		height: 29.06vw;
		margin: 0 0 62.5vw;
		padding: 0;
	}

	.yka-initiatives-intro-content ul li h3 {
		font-size: 8.91vw;
		line-height: 13.28vw;
	}

	.yka-initiatives-intro-content ul li p {
		font-size: 4.6875vw;
		line-height: 6.56vw;
		height: 13.125vw;
	}

	#yka-initiatives-1 {
		padding: 0 0 19.375vw;
		margin: 0 0 25,625vw;
		background: url(./images/yka-initiatives-1-bg-mobile.png) no-repeat;
		background-size: 100vw;
		background-position: center bottom;
	}

	.yka-initiatives-1-title {
		margin: 0 0 7.03vw;
	}

	.yka-initiatives-1-title h2 {
		font-size: 7.34vw;
		line-height: 10.94vw;
	}

	.yka-initiatives-1-title h2 span {
		font-size: 11.41vw;
		line-height: 16.875vw;
	}

	.yka-initiatives-1-text {
		margin: 0 0 18.75vw;
	}

	.yka-initiatives-1-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
		letter-spacing: -0.16vw;
	}

	ul.yka-initiatives-1-lists {
		width: 87.5vw;
		margin: 0 auto;
		display: block;
	}

	ul.yka-initiatives-1-lists li {
		width: 100%;
		margin: 0 0 15.625vw;
	}
	
	ul.yka-initiatives-1-lists li:last-child {
		margin: 0;
	}

	ul.yka-initiatives-1-lists li h3 {
		font-size: 5.31vw;
		line-height: 7.8125vw;
		margin: 0 0 4.06vw;
		height: auto;
	}
	
	ul.yka-initiatives-1-lists li:nth-child(2) h3::after {
		top: -1.77vw;
		right: -0.89vw;
		font-size: 3.09vw;
		line-height: 3.54vw;
	}

	ul.yka-initiatives-1-lists li img {
		margin: 0 0 6.25vw;
	}

	ul.yka-initiatives-1-lists li img:first-child {
		margin: 0 0 4.375vw;
	}

	ul.yka-initiatives-1-lists li p {
		font-size: 3.59vw;
		line-height: 7.66vw;
	}

	.yka-initiatives-1-note {
		font-size: 3.59vw;
		line-height: 6.25vw;
		margin: 3.125vw 0 0;
	}

	#yka-initiatives-2 {
		padding: 0 0 13.125vw;
		margin: 0;
		background: url(./images/yka-initiatives-2-bg-mobile.png) no-repeat;
		background-size: 100vw;
		background-position: center bottom;
	}

	.yka-initiatives-2-title {
		margin: 0 0 7.03vw;
	}

	.yka-initiatives-2-title h2 {
		font-size: 7.34vw;
		line-height: 10.94vw;
	}

	.yka-initiatives-2-title h2 span {
		font-size: 11.41vw;
		line-height: 16.875vw;
	}

	.yka-initiatives-2-text {
		margin: 0 0 11.25vw;
	}

	.yka-initiatives-2-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
		letter-spacing: -0.16vw;
	}

	.yka-initiatives-2-image {
		width: 100%;
		padding-left: 0;
		margin: 0 0 9.375vw;
	}

	ul.yka-initiatives-2-lists {
		width: 87.5vw;
		margin: 0 auto 10.625vw;
		display: block;
	}

	ul.yka-initiatives-2-lists > li {
		width: 100%;
		margin: 0 0 13.75vw;
	}

	ul.yka-initiatives-2-lists > li:last-child {
		width: 100%;
		margin: 0;
	}

	ul.yka-initiatives-2-lists > li h3 {
		font-size: 5.31vw;
		line-height: 7.03vw;
		margin: 0 0 4.06vw;
		height: auto;
		display: block;
	}
	
	ul.yka-initiatives-2-lists > li p {
		font-family: "Shippori Mincho", serif;
		font-weight: 400;
		color: #1A1311;
		font-size: 3.59vw;
		line-height: 7.66vw;
		margin: 0 0 2.5vw;
	}

	ul.yka-initiatives-2-lists > li img {
		display: block;
		width: 100%;
		margin: 0 0 5.31vw;
	}
	
	ul.yka-initiatives-2-lists > li img.desktop-only {
		display: none;
	}
	
	ul.yka-initiatives-2-lists > li img.mobile-only {
		display: block;
	}

	ul.yka-initiatives-2-lists > li ul li {
		width: 100%;
		column-gap: 1.56vw;
		font-size: 3.59vw;
		line-height: 5.625vw;
	}

	ul.yka-initiatives-2-lists > li ul li::before {
		font-size: 3.59vw;
		line-height: 5.625vw;
	}

	ul.yka-initiatives-2-lists > li:last-child ul {
		display: block;
		height: auto;
	}
	
	.yka-initiatives-2-button {
		display: block;
	}

	.yka-initiatives-2-button a {
		width: 59.06vw;
		height: 14.06vw;
		margin: 0 auto 8vw;
		padding: 0 3.75vw;
		border-radius: 14.06vw;
	}
	
	.yka-initiatives-2-button a:last-child {
		margin: 0 auto;
	}

	.yka-initiatives-2-button a p {
		font-size: 3.91vw;
		line-height: 4.68vw;
	}

	.yka-initiatives-2-button a::after {
		width: 1.56vw;
		height: 1.88vw;
	}
	
	.tsunagu-page-breadcrumbs {
		display: none;
	}
	
	#institution-guide {
		padding: 17.5vw 0 24.375vw;
	}

	.institution-guide-title {
		margin: 0 0 16.875vw;
	}

	.institution-guide-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.institution-guide-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.institution-guide-1 {
		position: relative;
		width: 100%;
		padding: 0;
		margin: 0 0 52.5vw;
		background: url(./images/institution-guide-1-bg-mobile.png) no-repeat;
		background-size: 100vw;
		background-position: center 13.125vw;
	}

	.institution-guide-2 {
		position: relative;
		width: 100%;
		padding: 0;
		margin: 0 0 52.5vw;
		background: url(./images/institution-guide-2-bg-mobile.png) no-repeat;
		background-size: 100vw;
		background-position: center 21.88vw;
	}

	.institution-guide-3 {
		position: relative;
		width: 100%;
		padding: 0;
		margin: 0 0 52.5vw;
		background: url(./images/institution-guide-3-bg-mobile.png) no-repeat;
		background-size: 100vw;
		background-position: center 13.125vw;
	}

	.institution-guide-list-title {
		width: 91.25vw;
		margin: 0 auto 5.94vw;
	}

	.institution-guide-list-title h2 {
		font-size: 7.34vw;
		line-height: 8.75vw;
	}

	.institution-guide-list-text {
		width: 87.5vw;
		margin: 0 auto 11.88vw;
	}

	.institution-guide-list-text p {
		font-size: 3.91vw;
		line-height: 9.22vw;
		letter-spacing: -0.15vw;
	}

	.institution-guide-list-contact {
		width: 93.75vw;
		margin: 0 auto 22.5vw;
	}

	.institution-guide-list-contact-row {
		margin: 0 0 0.83vw;
		height: 8.44vw;
	}
	
	.institution-guide-list-contact-row:first-child {
		height: 11.56vw;
	}

	.institution-guide-list-contact-label {
		width: 29.69vw;
		font-size: 3.59vw;
		line-height: 4.06vw;
		padding: 0 3.44vw;
	}

	.institution-guide-list-contact-text {
		width: 64.06vw;
		font-size: 3.59vw;
		line-height: 4.06vw;
		padding: 0 0 0 3.44vw;
	}

	.institution-guide-list-thumbnail {
		position: static;
		width: 96.56vw;
		margin: 0 0 1.48vw auto;
	}

	.institution-guide-list-images {
		justify-content: space-between;
		flex-wrap: wrap;
		width: 96.56vw;
		margin: 0 0 6.56vw auto;
		column-gap: 0;
		row-gap: 1.48vw;
	}

	.institution-guide-list-images img {
		width: 47.19vw;
	}
	
	.institution-guide-3 .institution-guide-list-images img:first-child {
		width: 100%;
	}

	.institution-guide-list-flow h3 {
		font-size: 6.09vw;
		line-height: 7.5vw;
		margin: 0 0 8.125vw;
	}

	.institution-guide-list-flow img {
		position: static;
		display: block;
		margin: 0 auto;
	}

	.institution-guide-1 .institution-guide-list-flow img {
		width: 97.5vw;
	}

	.institution-guide-2 .institution-guide-list-flow img {
		width: 97.5vw;
	}

	.institution-guide-list-introducing {
		width: 100%;
	}

	.institution-guide-list-introducing h3 {
		font-size: 6.09vw;
		line-height: 7.5vw;
		margin: 0 0 3.75vw;
	}

	.institution-guide-list-introducing-image {
		display: block;
		width: 93.75vw;
		margin: 0 auto;
	}

	.institution-guide-list-introducing-image img {
		width: 100%;
		margin: 0 0 3.53vw;
	}

	.institution-guide-list-introducing ul {
		width: 93.75vw;
		display: block;
		margin: 0 auto;
	}

	.institution-guide-list-introducing ul li {
		width: 100%;
		padding: 4.06vw 7.5vw;
		font-size: 5vw;
		line-height: 6.25vw;
		margin: 0 0 2.27vw;
	}
	
	.institution-guide-list-introducing ul li:last-child {
		margin: 0;
	}

	.institution-guide-list-introducing ul li span {
		font-size: 3.91vw;
		line-height: 5.16vw;
		margin: 1.44vw 0 0;
	}

	#yka-awards {
		border-top: 0.08vw solid #1A1311;
		padding: 11.88vw 0 0;
	}

	.yka-awards-title {
		margin: 0 0 10vw;
	}

	.yka-awards-title h1 {
		font-size: 5.625vw;
		line-height: 8.125vw;
	}

	.yka-awards-title p {
		font-size: 2.5vw;
		line-height: 3.75vw;
	}

	.yka-awards-lists {
		padding: 12.5vw 0 15vw;
		background: url(./images/yka-awards-bg-mobile.png) no-repeat;
		background-size: 100vw;
		background-position: center center;
	}

	.yka-awards-lists ul li {
		width: 88.75vw;
		display: block;
		margin: 0 0 18.75vw;
		margin-right: auto;
	}

	.yka-awards-lists ul li:nth-child(2) {
		margin-bottom: 50vw;
	}

	.yka-awards-lists ul li:nth-child(3) {
		margin: 0 0 18.75vw auto;
	}

	.yka-awards-lists ul li:last-child {
		margin: 0 0 0 auto;
	}

	.yka-awards-image {
		width: 100%;
		margin: 0 0 8.75vw;
	}

	.yka-awards-content {
		width: 100%;
		padding: 0;
		padding-left: 11.25vw;
	}

	.yka-awards-lists ul li:nth-child(3) .yka-awards-content,
	.yka-awards-lists ul li:nth-child(4) .yka-awards-content {
		padding: 0;
		padding-right: 11.25vw;
	}

	.yka-awards-content h2 {
		font-size: 5.47vw;
		line-height: 9.06vw;
		margin: 0 0 6.88vw;
		width: auto;
	}
	
	.yka-awards-lists ul li:nth-child(4) .yka-awards-content h2 {
		width: max-content;
	}

	.yka-awards-content p {
		width: 80vw;
		font-size: 3.59vw;
		line-height: 7.66vw;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p {
		display: block;
	}

	.yka-awards-lists ul li:first-child .yka-awards-content p img {
		display: block;
		width: 45.94vw;
		margin: 7.5vw auto 0;
	}
	
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}
	
	#recaptcha-holder > .grecaptcha-badge {
		margin: 0 auto 10.8vw
	}

}
