@charset "UTF-8";

/**
 * Common Styles
 *
 * 01. Reset
 * 02. Base
 * 03. Layout
 * 04. Parts
 * 05. Responisive
 *
 */
/* ==========================================================================
   01. Reset
   ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* ==========================================================================
   02. Base
   ========================================================================== */
html {
  color: #333;
  font-size: 62.5%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.47vw;
  }
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 160%;
  -webkit-text-size-adjust: 100%;
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 768px),
print {
  body {
    line-height: 1.357;
    min-width: 1280px;
  }
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.75;
    font-size: 160%;
  }
}

#main {
  display: block;
}

/* link
   ========================================================================== */
a {
  color: #333;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

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

/* image
   ========================================================================== */
img {
  height: auto;
  line-height: 1;
  max-width: 100%;
  vertical-align: top;
}

table th img,
table td img {
  vertical-align: middle;
}

/* ClearFix
   ========================================================================== */
.clear {
  clear: both;
}

.clearfix,
.fbox,
#contents {
  display: block;
}

.clearfix:after,
.fbox:after,
#contents:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* float
   ========================================================================== */
.fr {
  float: right;
}

.fl {
  float: left;
}

ul.fbox li {
  float: left;
  display: inline;
}

/* margin
   ========================================================================== */
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

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

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

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

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

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

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

/* form label
   ========================================================================== */
input,
textarea,
label {
  vertical-align: middle;
}

/* position
   ========================================================================== */
.text-r {
  text-align: right !important;
}

.text-c,
table.text-c th,
table.text-c td,
table.th-c th {
  text-align: center !important;
}

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

/* block
   ========================================================================== */
/* 左右余白確保用 */
@media screen and (min-width: 768px),
print {
  .pc-pdg {
    padding-left: 85px;
    padding-right: 85px;
  }
}

@media screen and (max-width: 767px) {
  .sp-pdg {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* sticky
   ========================================================================== */
.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.sticky.sticky-fixed.is-sticky {
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sticky.sticky-fixed.is-sticky:not([style*="margin-top"]) {
  margin-top: 0 !important;
}

.sticky.sticky-fixed.is-sticky:not([style*="margin-bottom"]) {
  margin-bottom: 0 !important;
}

.sticky.sticky-fixed.is-absolute {
  position: absolute;
}

/* ==========================================================================
   03. Layout
   ========================================================================== */
/* wrapper
   ========================================================================== */
.pg-laoding::before {
  opacity: 1;
}

html,
body {
  height: 100%;
}

#pg-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1536px;
  margin-right: auto;
  margin-left: auto;
}

/* #contentsを囲むブロック要素 */
#wrapper {
  width: 100%;
}

/* #mainと#sideを囲むブロック要素 */
/* メインエリア */
@media screen and (min-width: 768px),
print {
  #main {
    padding-left: 85px;
    max-width: 1536px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px),
print {
  .main-area {
    margin-right: 30px;
  }
}

/* header
   ========================================================================== */
#head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
}

@media screen and (min-width: 768px),
print {
  #head {
    max-width: 1536px;
    height: 72px;
    height: 95px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 380px;
    padding-left: 85px;
  }
}

@media screen and (max-width: 767px) {
  #head {
    padding-right: 3.7vw;
    padding-left: 3.7vw;
    height: 17.78vw;
    height: 19.75vw;
  }
}

/* ヘッダー内のロゴ */
@media screen and (min-width: 768px),
print {
  .head-logo {
    padding-left: 15px;
    width: 200px;
  }

  .head-logo img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .head-logo {
    width: 45.93vw;
  }
}

.head-btn a {
  border-radius: 5px;
}

@media screen and (min-width: 768px),
print {
  .head-btn a {
    padding: 12px 33px 12px 24px;
  }
}

@media screen and (max-width: 767px) {
  .head-btn a {
    padding: 1.23vw 2.84vw;
  }

  .head-btn a .btn-inner::before {
    display: none;
  }
}

/* side
   ========================================================================== */
.side {
  position: relative;
}

@media screen and (min-width: 768px),
print {
  .side {
    width: 350px;
    min-height: calc(100% + 72px);
    padding: 15px;
    min-width: 350px;
    background-color: #e8e7f3;
    margin-top: -72px;
  }
}

@media screen and (max-width: 767px) {
  .side {
    padding-top: 3.7vw;
    padding-right: 7.41vw;
    padding-left: 7.41vw;
    padding-bottom: 3.7vw;
    background-color: #e8e7f3;
  }
}

.entry-box {
  border: 1px solid #1e3420;
  background-color: #fff;
}

@media screen and (min-width: 768px),
print {
  .entry-box {
    padding: 0 25px 25px 25px;
    top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .entry-box {
    margin-top: -7.41vw;
    padding: 0 3.7vw 5.93vw 3.7vw;
  }
}

.entry-ttl {
  font-weight: 600;
  text-align: center;
  color: #fff;
  background-color: #1e3420;
  position: relative;
}

.entry-ttl span {
  display: block;
  color: #FFE055;
}

@media screen and (min-width: 768px),
print {
  .entry-ttl {
    font-size: 20px;
    font-size: 2rem;
    padding: 9.5px 5px;
    margin-top: -16px;
  }

  .entry-ttl span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .entry-ttl {
    font-size: 4.94vw;
    padding: 0.62vw;
    margin-top: -3.95vw;
  }

  .entry-ttl span {
    font-size: 3.46vw;
  }
}

.entry-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CCC;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px),
print {
  .entry-info-wrap {
    margin-top: 18px;
    padding-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .entry-info-wrap {
    margin-top: 6.17vw;
    padding-bottom: 4.44vw;
    padding-right: 2.47vw;
    padding-left: 2.47vw;
  }
}

@media screen and (min-width: 768px),
print {
  .entry-info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.entry-info-inner span {
  position: relative;
}

.entry-info-inner span:not(.circle) {
  font-family: "caslons-egyptian", sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1.1;
}

@media screen and (min-width: 768px),
print {
  .entry-info-inner span:not(.circle) {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .entry-info-inner span:not(.circle) {
    font-size: 5.93vw;
  }
}

.entry-info-inner .-yobi {
  display: inline;
  color: #1e3420;
}

@media screen and (min-width: 768px),
print {
  .entry-info-inner .-yobi {
    font-size: 17px !important;
    font-size: 1.7rem !important;
  }
}

.entry-info-inner .circle {
  position: relative;
  display: inline-block;
  line-height: 2;
  text-align: center;
}

.entry-info-inner .circle::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #1e3420;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 768px),
print {
  .entry-info-inner .circle {
    width: 20px;
    height: 20px;
    margin-left: .2em;
  }

  .entry-info-inner .circle::before {
    top: .5em;
    left: -0.1em;
  }
}

@media screen and (max-width: 767px) {
  .entry-info-inner .circle {
    width: 4.94vw;
    height: 4.94vw;
    margin-left: 0.49vw;
  }

  .entry-info-inner .circle::before {
    width: 100%;
    height: 100%;
    top: .3em;
    left: -0.1em;
  }
}

.entry-info-inner .holiday {
  color: #c00;
}

.entry-info-inner .holiday::before {
  border: 1px solid #c00;
}

.entry-info-ttl {
  text-align: center;
}

@media screen and (min-width: 768px),
print {
  .entry-info-ttl {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .entry-info-ttl {
    font-size: 3.46vw;
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px),
print {
  .entry-info-inner {
    margin-left: 20px;
  }

  .entry-info-inner+.entry-info-inner {
    margin-top: 10px;
  }

  .entry-info-inner p:not(.entry-date) {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
  }
}

@media screen and (max-width: 767px) {
  .entry-info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1.73vw;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .entry-info-inner+.entry-info-inner {
    margin-top: 1.23vw;
  }

  .entry-info-inner p:not(.entry-date) {
    font-size: 3.95vw;
    font-weight: 600;
  }
}

.entry-date {
  color: #1e3420;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .entry-date {
    font-size: 3.46vw;
    white-space: nowrap;
  }

  .entry-info-inner:last-of-type .entry-date span {
    margin-right: 0.49vw;
  }
}

.entry-date-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}

.entry-date-list li {
  color: #1e3420;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .entry-date-list li {
    font-size: 2.96vw;
    line-height: 1.21429;
  }
}

.entry-date-list li+li {
  position: relative;
}

.entry-date-list li+li::before {
  font-family: "caslons-egyptian", sans-serif;
  font-weight: 800;
  font-style: normal;
  content: "~";
  position: absolute;
  font-weight: bold;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .entry-date-list li+li::before {
    bottom: 0.99vw;
  }
}

@media screen and (min-width: 768px),
print {
  .entry-date-list li+li {
    padding-left: 1.3em;
    margin-left: .3em;
  }

  .entry-date-list li+li::before {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .entry-date-list li+li {
    padding-left: 3.7vw;
    margin-left: 0.74vw;
  }

  .entry-date-list li+li::before {
    font-size: 6.91vw;
    line-height: .5;
  }
}

@media screen and (min-width: 768px),
print {
  .entry-date-list {
    margin-left: 10px;
  }
}

.entry-btn a {
  border-radius: 10px;
}

@media screen and (min-width: 768px),
print {
  .entry-btn {
    margin-top: 24px;
  }

  .entry-btn a {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 29.5px 10px;
  }
}

@media screen and (max-width: 767px) {
  .entry-btn {
    margin-top: 5.93vw;
  }

  .entry-btn a {
    font-size: 4.94vw;
    padding: 6.91vw 0;
  }
}

/* footer
   ========================================================================== */
#foot {
  text-align: center;
}

@media screen and (min-width: 768px),
print {
  #foot {
    max-width: 1536px;
    margin-top: 64px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 41px;
  }
}

@media screen and (max-width: 767px) {
  #foot {
    background-color: #fff;
    padding-bottom: 17.28vw;
  }
}

.foot-logo {
  margin-right: auto;
  margin-left: auto;
}

.foot-logo img {
  width: 100%;
}

@media screen and (min-width: 768px),
print {
  .foot-logo {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .foot-logo {
    width: 74.07vw;
    margin-top: 3.7vw;
  }
}

/* コピーライト */
.foot-copy {
  text-align: center;
  font-family: "caslons-egyptian", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: lighter;
}

@media screen and (min-width: 768px),
print {
  .foot-copy {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 38px;
  }
}

@media screen and (max-width: 767px) {
  .foot-copy {
    font-size: 1.98vw;
    margin-top: 3.7vw;
  }
}

/* ページトップ */
@media screen and (min-width: 768px),
print {
  #pagetop {
    position: absolute;
    right: 20px;
    margin-left: auto;
    width: 70px;
    z-index: 5;
  }

  #pagetop a {
    color: #1e3420;
    display: block;
    position: relative;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    font-size: 1.2rem;
    font-family: "caslons-egyptian", sans-serif;
  }

  #pagetop a:hover span:before {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  #pagetop.fixed {
    position: fixed;
    top: inherit;
    bottom: 30px;
  }

  #pagetop span {
    display: block;
    padding-top: 8px;
  }

  #pagetop span:before {
    content: '';
    display: block;
    height: 30px;
    width: 30px;
    margin: 0 auto 8px;
    background: url(img/icon_pagetop.svg) no-repeat center center;
    background-size: contain;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
}

@media screen and (max-width: 767px) {
  #pagetop {
    text-align: center;
  }

  #pagetop.fixed {
    position: fixed;
    right: 4.94vw;
    bottom: 19.75vw;
    z-index: 10;
  }

  #pagetop.fixed a {
    width: 14.81vw;
    height: 14.81vw;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.98vw;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding-top: 8.64vw;
  }

  #pagetop.fixed a::before {
    top: 2.96vw;
  }

  #pagetop a {
    font-size: 2.47vw;
    font-family: "caslons-egyptian", sans-serif;
    color: #1e3420;
    position: relative;
    padding-top: 6.91vw;
    display: inline-block;
  }

  #pagetop a::before {
    content: "";
    display: block;
    position: absolute;
    width: 3.46vw;
    height: 4.94vw;
    background: url(img/icon_pagetop.svg) no-repeat center center;
    background-size: contain;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* ロゴ変更 */
.footer-note {
  max-width: 85%;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

@media screen and (min-width: 768px),
print {
  .footer-note {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .footer-note {
    padding-top: 3.7vw;
    padding-bottom: 7.41vw;
  }
}

/* ==========================================================================
   04. Parts
   ========================================================================== */
/* ボックス
   ========================================================================== */
/* センターボックス */
@media screen and (min-width: 768px),
print {
  .box-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 1706px;
    padding-left: 85px;
    padding-right: 85px;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .box-center {
    position: relative;
  }
}

/* 横並びボックス（flex） */
@media screen and (min-width: 768px),
print {
  .box-col2 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 20px;
  }

  .box-col2>* {
    margin: 20px 20px 0 0;
    overflow: hidden;
    width: 50%;
  }

  .box-col2>*:nth-child(2n) {
    margin-right: -20px;
  }

  .box-col2>*:nth-child(-n+2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col2>* {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px),
print {
  .box-col3 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 40px;
  }

  .box-col3>* {
    margin: 20px 20px 0 0;
    overflow: hidden;
    width: 33.33333%;
  }

  .box-col3>*:nth-child(3n) {
    margin-right: -40px;
  }

  .box-col3>*:nth-child(-n+3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col3>* {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px),
print {
  .box-col4 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 60px;
  }

  .box-col4>* {
    margin: 20px 20px 0 0;
    overflow: hidden;
    width: 25%;
  }

  .box-col4>*:nth-child(4n) {
    margin-right: -60px;
  }

  .box-col4>*:nth-child(-n+4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col4>* {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px),
print {
  .box-col2-parsent {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .box-col2-parsent>* {
    overflow: hidden;
    width: 49%;
  }

  .box-col2-parsent>*:nth-child(n+1) {
    margin: 2% 2% 0 0;
  }

  .box-col2-parsent>*:nth-child(2n) {
    margin-right: 0;
  }

  .box-col2-parsent>*:nth-child(-n+2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col2-parsent>* {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px),
print {
  .box-col3-parsent {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .box-col3-parsent>* {
    overflow: hidden;
    width: 32%;
  }

  .box-col3-parsent>*:nth-child(n+1) {
    margin: 2% 2% 0 0;
  }

  .box-col3-parsent>*:nth-child(3n) {
    margin-right: 0;
  }

  .box-col3-parsent>*:nth-child(-n+3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col3-parsent>* {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 768px),
print {
  .box-col4-parsent {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .box-col4-parsent>* {
    overflow: hidden;
    width: 23.5%;
  }

  .box-col4-parsent>*:nth-child(n+1) {
    margin: 2% 2% 0 0;
  }

  .box-col4-parsent>*:nth-child(4n) {
    margin-right: 0;
  }

  .box-col4-parsent>*:nth-child(-n+4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .box-col4-parsent>* {
    margin-bottom: 15px;
  }
}

/* 画像左、テキスト右 */
@media screen and (min-width: 768px),
print {
  .box-img-l {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  .box-img-l .box-img {
    padding-right: 40px;
  }

  .box-img-l .box-text {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .box-img-l .box-img {
    margin-bottom: 20px;
  }

  .box-img-l .box-img img {
    height: auto;
    width: 100%;
  }
}

/* 画像右、テキスト左 */
@media screen and (min-width: 768px),
print {
  .box-img-r {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .box-img-r .box-img {
    padding-left: 40px;
  }

  .box-img-r .box-text {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .box-img-r .box-img {
    margin-bottom: 20px;
  }

  .box-img-r .box-img img {
    height: auto;
    width: 100%;
  }
}

/* ボタン
   ========================================================================== */
/* ボタンの基本スタイル */
.btn01,
.btn02 {
  display: inline-block;
  line-height: 1.2;
  outline: none;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn01:hover,
.btn02:hover {
  color: #fff;
}

/* スタイル別クラス */
.btn01 {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  color: #fff;
  border-radius: 10px;
}

.btn01.-color-primary {
  background-color: #840930;
}

.btn01.-color-primary:hover {
  background-color: #1e3420;
}

.btn01 .btn-inner {
  position: relative;
  padding-right: 0.8em;
}

.btn01 .btn-inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: 0;
}

.btn01 .txt-s {
  font-size: 86%;
  font-weight: normal;
  margin-left: 5px;
}

.btn02 {
  font-weight: 600;
  display: block;
  color: #fff;
  border-radius: 10px;
  line-height: 1.6;
  background-color: #f29f05;
  opacity: 1;
}

.btn02:hover {
  opacity: 0.75;
}

.btn02 .btn-inner {
  display: block;
  position: relative;
  padding-right: 1.3em;
  text-align: left;
}

.btn02 .btn-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: 0;
}

@media screen and (min-width: 768px),
print {
  .btn02 {
    font-size: 20px;
    font-size: 2rem;
    padding: 16px 97px;
    white-space: nowrap;
  }

  .btn02 .btn-inner::before {
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .btn02 {
    font-size: 4.44vw;
    padding: 3.58vw 9.88vw;
  }

  .btn02 .btn-inner::before {
    width: 1.98vw;
    height: 1.98vw;
    border-top: 0.49vw solid #fff;
    border-right: 0.49vw solid #fff;
  }
}

/* アイコン
   ========================================================================== */
/*
icomoonを使用する場合はコメントアウトを外してください
*/
@font-face {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  src: url("fonts/icomoon.eot?kuviic");
  src: url("fonts/icomoon.eot?kuviic#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?kuviic") format("truetype"), url("fonts/icomoon.woff?kuviic") format("woff"), url("fonts/icomoon.svg?kuviic#icomoon") format("svg");
}

[class*=" icon-"] span:after,
[class^="icon-"] span:after {
  color: #333;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow {
  position: relative;
  padding-right: 19px;
}

.icon-arrow span::after {
  content: "\e902";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 17px;
  font-size: 1.7rem;
  color: #707070;
}

.icon-pg-link {
  position: relative;
  padding-left: 19px;
}

.icon-pg-link span::after {
  content: "\e902";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  font-size: 17px;
  font-size: 1.7rem;
  color: #fff;
}

/* リスト
   ========================================================================== */
/* 新規ウィンドウ */
/* PDF */
/* リスト
   ========================================================================== */
/* 黒丸付きリスト */
.list-disc {
  margin-left: 1.5em;
}

.list-disc li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.list-disc li:last-child {
  margin-bottom: 0;
}

/* 番号付きリスト */
.list-decimal {
  margin-left: 1.5em;
}

.list-decimal li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

.list-decimal li:last-child {
  margin-bottom: 0;
}

/* その他パーツ
   ========================================================================== */
/* 画像を幅100%にする */
img.img-full,
.img-full img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* object fit image */
img.img-ofi-cover,
.img-ofi-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* sp-tel */
@media screen and (min-width: 768px),
print {
  .sp-tel {
    cursor: text;
    pointer-events: none;
    text-decoration: none;
  }

  .contact-box .sp-tel {
    color: #fff;
  }
}

/* 下層 共通 ロゴ */
.pg-cmn-logo {
  position: absolute;
  z-index: 10;
}

@media screen and (min-width: 768px),
print {
  .pg-cmn-logo {
    top: -71px;
    right: 0;
    padding: 30px 0 39px 38px;
    background: url(img/bg_main.png) repeat;
    background-size: 177px;
    background-attachment: fixed;
  }
}

@media screen and (max-width: 767px) {
  .pg-cmn-logo {
    width: 31.11vw;
    top: 4.2vw;
    right: 0;
    background: none;
  }
}

/* テキストカラー */
.t-pink {
  color: #840930;
}

.t-orange {
  color: #eb6142;
}

/* タイトル
   ========================================================================== */
/* cmn-ttl03 */
.cmn-ttl03 {
  font-weight: bold;
  color: #1e3420;
  font-family: "caslons-egyptian", sans-serif;
  line-height: 1.21875;
}

@media screen and (min-width: 768px),
print {
  .cmn-ttl03 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .cmn-ttl03 {
    font-size: 5.93vw;
  }
}

/* Webフォント
   ========================================================================== */
/* ==========================================================================
   05. Responisive
   ========================================================================== */
/* display
   ========================================================================== */
.block {
  display: block;
}

.sp-item {
  display: none;
}

.pc-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp-item {
    display: block;
  }

  .pc-item {
    display: none !important;
  }

  .pc-block {
    display: inline;
  }

  .sp-block {
    display: block;
  }
}

/*# sourceMappingURL=common.css.map */