@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: bottom;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
  font-family: 'Noto Serif JP', 'Noto Sans JP', 'メイリオ', Meiryo, 'Osaka', '游ゴシック Medium', '游ゴシック体',
    'Yu Gothic Medium', YuGothic, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #15171a;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

a {
  text-decoration: none;
  color: #15171a;
}

/* clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
@media screen and (min-width: 768px) {
  #create:not(:disabled) .rover-hover:hover,
  .rover-hover:hover {
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

@keyframes hoverUnderLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes unHoverUnderLine {
  from {
    width: 100%;
    left: 0;
  }
  to {
    width: 0;
    left: 100%;
  }
}
@keyframes hoverGradation {
}
@keyframes fadeInBlur {
  from {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes infiniteScrollVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes infiniteScrollVerticalSP {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes faqShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes faqHide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes faqOpen {
  from {
    grid-template-rows: 0fr;
    margin: 0;
    padding: 0;
  }
  to {
    grid-template-rows: 1fr;
    margin: 0 0 2.9090909091vw;
    padding: 2.9090909091vw;
  }
}
@keyframes faqClose {
  from {
    grid-template-rows: 1fr;
    margin: 0 0 2.9090909091vw;
    padding: 2.9090909091vw;
  }
  to {
    grid-template-rows: 0fr;
    margin: 0;
    padding: 0;
  }
}
@keyframes faqOpenSP {
  from {
    grid-template-rows: 0fr;
    margin: 0;
    padding-top: 0;
  }
  to {
    grid-template-rows: 1fr;
    margin: 0 0 3.8647342995vw;
    padding: 3.8647342995vw;
  }
}
@keyframes faqCloseSP {
  from {
    grid-template-rows: 1fr;
    margin: 0 0 3.8647342995vw;
    padding: 3.8647342995vw;
  }
  to {
    grid-template-rows: 0fr;
    margin: 0;
    padding-top: 0;
  }
}
@keyframes slideDownSubMenu {
  from {
    grid-template-rows: 0fr;
  }
  to {
    grid-template-rows: 1fr;
  }
}
@keyframes slideUpSubMenu {
  from {
    grid-template-rows: 1fr;
  }
  to {
    grid-template-rows: 0fr;
    margin-top: 0;
  }
}
@keyframes fadeInSubMenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutSubMenu {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOutCurtain {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes scaleUpSPMenu {
  from {
    transform: scale(0.4);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scaleDownSPMenu {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.4);
  }
}
@keyframes fadeInAndShow {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOutAndHide {
  from {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  to {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.mainContents img{
    width: 100%;
}

.section-title {
  position: relative;
  margin: 0 0 4.3636363636vw;
  font-size: 2.9090909091vw;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 7.729468599vw;
    margin-bottom: 12.5603864734vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-title {
    margin-bottom: 48px;
    font-size: 32px;
  }
}
.section-title.gradation {
  background: linear-gradient(180deg, rgba(47, 71, 55, 1) 0%, rgba(80, 139, 100, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.gradation2 {
  background: var(--LinearBg5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.bg-q:before {
  content: '';
  position: absolute;
  top: -8.3636363636vw;
  left: 50%;
  width: 6.0909090909vw;
  height: 6.0909090909vw;
  background-image: url('../img/ico_question.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-background-size: 100%;
  background-size: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-title.bg-q:before {
    top: -22.2222222222vw;
    width: 16.1835748792vw;
    height: 16.1835748792vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-title.bg-q:before {
    top: -92px;
    width: 67px;
    height: 67px;
  }
}
.section-title.bg-q:after {
  content: '';
  position: absolute;
  bottom: -2.9090909091vw;
  left: 50%;
  width: 8.1818181818vw;
  height: 1.5454545455vw;
  background-image: url('../img/bg_down.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-background-size: 100%;
  background-size: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-title.bg-q:after {
    bottom: -7.729468599vw;
    width: 21.7391304348vw;
    height: 4.1062801932vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-title.bg-q:after {
    bottom: -32px;
    width: 90px;
    height: 17px;
  }
}
.section-title.bg-belt {
  margin: 0 0 3.1818181818vw;
  padding: 2.6363636364vw 0 2.5454545455vw;
  background: linear-gradient(100deg, rgba(47, 71, 55, 1) 0%, rgba(80, 139, 100, 1) 100%);
}
@media screen and (max-width: 767px) {
  .section-title.bg-belt {
    margin-bottom: 6.5217391304vw;
    padding: 7.0048309179vw 3.6231884058vw 7.4879227053vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-title.bg-belt {
    margin-bottom: 35px;
    padding: 29px 0 28px;
  }
}
.section-title.mb-30 {
  margin-bottom: 2.7272727273vw;
}
@media screen and (max-width: 767px) {
  .section-title.mb-30 {
    margin-bottom: 6.038647343vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-title.mb-30 {
    margin-bottom: 30px;
  }
}
.section-title.mb-23 {
  margin-bottom: 2.0909090909vw;
}
@media screen and (max-width: 767px) {
  .section-title.mb-23 {
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-title.mb-23 {
    margin-bottom: 23px;
  }
}

.section-subTitle {
  margin: 0 0 2.1818181818vw;
  font-size: 1.8181818182vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .section-subTitle {
    padding: 0 3.6231884058vw;
    font-size: 4.8309178744vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-subTitle {
    padding-bottom: 24px;
    font-size: 20px;
  }
}
.section-subTitle.mb-30 {
  margin-bottom: 2.7272727273vw;
}
@media screen and (max-width: 767px) {
  .section-subTitle.mb-30 {
    margin-bottom: 10.1449275362vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-subTitle.mb-30 {
    margin-bottom: 30px;
  }
}
.section-subTitle .brown {
  color: #890e0e;
}
.section-subTitle .small {
  font-size: 1.0909090909vw;
  line-height: 1.9em;
}
@media screen and (max-width: 767px) {
  .section-subTitle .small {
    font-size: 2.8985507246vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-subTitle .small {
    font-size: 12px;
  }
}

.section-text {
  margin: 0 0 2.1818181818vw;
  font-size: 1.4545454545vw;
  text-align: center;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .section-text {
    margin-bottom: 6.038647343vw;
    padding: 0 3.6231884058vw;
    font-size: 3.8647342995vw;
    text-align: left;
  }
}
@media screen and (min-width: 1100px) {
  .section-text {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.section-text.mb-32 {
  margin-bottom: 2.9090909091vw;
}
@media screen and (max-width: 767px) {
  .section-text.mb-32 {
    margin-bottom: 6.038647343vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-text.mb-32 {
    margin-bottom: 32px;
  }
}
.section-text.mb-17 {
  margin-bottom: 1.5454545455vw;
}
@media screen and (max-width: 767px) {
  .section-text.mb-17 {
    margin-bottom: 7.2463768116vw;
  }
}
@media screen and (min-width: 1100px) {
  .section-text.mb-17 {
    margin-bottom: 17px;
  }
}
.section-text.white {
  color: #ffffff;
}

.table-wrapper {
  margin: 0 0 2.7272727273vw;
}
@media screen and (max-width: 767px) {
  .table-wrapper {
    margin-bottom: 7.2463768116vw;
    padding: 0 3.6231884058vw;
    overflow-x: scroll;
  }
}
@media screen and (min-width: 1100px) {
  .table-wrapper {
    margin-bottom: 30px;
  }
}
.table-wrapper table {
  width: 692px;
  margin: 0 auto;
}
.table-wrapper table thead tr {
  background: linear-gradient(100deg, rgba(47, 71, 55, 1) 0%, rgba(80, 139, 100, 1) 100%);
}
.table-wrapper table tbody tr {
  background: var(--LinearBgTableCell);
}
.table-wrapper table tr th {
  height: 51px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.77em;
  vertical-align: middle;
  border-right: 1px solid #ffffff;
}
.table-wrapper table tr th:first-of-type {
  width: 190px;
}
.table-wrapper table tr th:nth-of-type(2) {
  width: 256px;
}
.table-wrapper table tr th:nth-of-type(3) {
  width: 246px;
}
.table-wrapper table tr th:last-of-type {
  border: none;
}
.table-wrapper table tr td {
  padding: 17px 0 16px;
  font-size: 19.375px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid #21cab5;
  background-color: #fff;
}
.table-wrapper table tr td:last-of-type {
  border-right: none;
}
.table-wrapper table tr td p {
  margin: 2px;
  font-size: 10.396px;
}
.table-wrapper table tr td.price {
  font-size: 31.25px;
  line-height: 1.6em;
}
.table-wrapper table tr td.price .yen {
  font-size: 19.375px;
  line-height: 2.2em;
}
.table-wrapper table tr td.brown {
  color: #890e0e;
}
.table-wrapper table.loan {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table-wrapper table.loan {
    width: 956px;
  }
}
.table-wrapper table.loan thead tr th {
  font-size: 16px;
  line-height: 1.25em;
}
.table-wrapper table.loan thead tr th:first-of-type {
  width: 213px;
}
.table-wrapper table.loan thead tr th:nth-of-type(2) {
  width: 98px;
}
.table-wrapper table.loan thead tr th:nth-of-type(3) {
  width: 212px;
}
.table-wrapper table.loan thead tr th:nth-of-type(4) {
  width: 221px;
}
.table-wrapper table.loan thead tr th:nth-of-type(5) {
  width: 212px;
}
.table-wrapper table.loan tbody tr {
  border-bottom: 1px solid #21cab5;
}
.table-wrapper table.loan tbody tr td {
  vertical-align: middle;
  font-size: 16px;
  background-color: #fff;
}
.table-wrapper table.loan tbody tr td.brown {
  font-size: 18px;
}
.table-wrapper table.loan tbody tr td.price {
  font-size: 24px;
}
.table-wrapper table.loan tbody tr:last-of-type {
  border-bottom: none;
}

.notoserifjp {
  font-family: 'Noto Serif JP', sans-serif;
}

.notosansjp {
  font-family: 'Noto Sans JP', sans-serif;
}

:root {
  --LinearBg1: linear-gradient(269deg, #28cdff 1.42%, #dab307 43.88%, #14b131 96.84%);
  --LinearBg2: linear-gradient(270deg, #28cdff 0.13%, #14b131 98.04%);
  --LinearBg3: linear-gradient(105deg, #14b238 0.8%, #26d4e7 100.52%);
  --LinearBg4: linear-gradient(180deg, #14b239 0%, #26d3e5 100%);
  --LinearBg5: linear-gradient(180deg, #fff020 0%, #ffebdb 100%);
  --LinearBgTableHeader: linear-gradient(105deg, #14b238 0.8%, #26d4e7 100.52%);
  --LinearBgTableCell: linear-gradient(105deg, rgba(20, 178, 56, 0.08) 0.8%, rgba(38, 212, 231, 0.08) 100.52%);
}

body {
  background-color: #fff;
}
body .mainContents {
  /*padding: 80px 0 115px;*/
}
body .mainContents .mainVisual {
  height: 55.1818181818vw;
  padding: 12.1818181818vw 0 0 6.5454545455vw;
  box-sizing: border-box;
  background-image: url('../img/bg_mv.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  body .mainContents .mainVisual {
    height: 165.7004830918vw;
    padding: 8.4541062802vw 3.6231884058vw 0;
    background-image: url('../img/bg_mv_sp.png');
    background-position: 50% 0%;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .mainVisual {
    height: 607px;
    padding: 134px 0 0 72px;
  }
}
body .mainContents .mainVisual .main-title {
  font-size: 5.5454545455vw;
  font-weight: 700;
  line-height: normal;
  background: #2f4737;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  body .mainContents .mainVisual .main-title {
    margin: 0 0 3.3816425121vw;
    font-size: 11.1111111111vw;
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .mainVisual .main-title {
    font-size: 61px;
  }
}
body .mainContents .mainVisual .main-title-ruby {
  margin: 0 0 2.9090909091vw;
  font-size: 2.1818181818vw;
  font-weight: 700;
  line-height: normal;
  background: #2f4737;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  body .mainContents .mainVisual .main-title-ruby {
    margin-bottom: 3.3816425121vw;
    font-size: 5.7971014493vw;
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .mainVisual .main-title-ruby {
    margin-bottom: 32px;
    font-size: 24px;
  }
}
body .mainContents .mainVisual .main-lead {
  width: 58.3636363636vw;
  font-size: 1.4545454545vw;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  body .mainContents .mainVisual .main-lead {
    width: 100%;
    font-size: 3.3816425121vw;
    line-height: 1.71em;
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .mainVisual .main-lead {
    width: 642px;
    font-size: 16px;
  }
}
body .mainContents .history {
  padding: 5.4545454545vw 0 5.0909090909vw;
  background: linear-gradient(100deg, rgba(47, 71, 55, 1) 0%, rgba(80, 139, 100, 1) 100%);
}
@media screen and (max-width: 767px) {
  body .mainContents .history {
    padding-top: 10.38647343vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .history {
    padding: 60px 0 56px;
  }
}
body .mainContents .history .history-image {
  width: 68.8181818182vw;
  margin: 0 auto 3.4545454545vw;
}
@media screen and (max-width: 767px) {
  body .mainContents .history .history-image {
    width: 100%;
    margin-bottom: 9.1787439614vw;
    padding-right: 3.6231884058vw;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .history .history-image {
    width: 757px;
    margin-bottom: 38px;
  }
}
body .mainContents .history .history-description {
  width: 69.2727272727vw;
  margin: 0 auto;
  font-size: 1.4545454545vw;
  color: #ffffff;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  body .mainContents .history .history-description {
    width: 92.7536231884vw;
    margin-bottom: 7.2463768116vw;
    font-size: 3.3816425121vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .history .history-description {
    width: 762px;
    font-size: 16px;
  }
}
body .mainContents .qa {
  padding: 13.6363636364vw 0 3.5454545455vw;
  background-image: url('../img/bg_qa_textured.webp');
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa {
    padding-top: 34.0579710145vw;
    padding-bottom: 12.3188405797vw;
    background-image: url('../img/bg_qa_textured_sp.webp');
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa {
    padding: 150px 0 39px;
  }
}
body .mainContents .qa .section-title {
  margin-bottom: 4.2727272727vw;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .section-title {
    margin-bottom: 11.1111111111vw;
    padding: 0 3.6231884058vw;
    line-height: 1.43em;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .section-title {
    margin-bottom: 47px;
  }
}
body .mainContents .qa .answer-text {
  margin: 0 0 5.2727272727vw;
  font-size: 1.8181818182vw;
  font-weight: 700;
  line-height: 1.6em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .answer-text {
    margin-bottom: 9.6618357488vw;
    padding: 0 3.6231884058vw;
    font-size: 4.8309178744vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .answer-text {
    margin-bottom: 58px;
    font-size: 20px;
  }
}
body .mainContents .qa .answer-text.--2 {
  margin-bottom: 2.0909090909vw;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .answer-text.--2 {
    margin-bottom: 6.038647343vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .answer-text.--2 {
    margin-bottom: 23px;
  }
}
body .mainContents .qa .answer-text.--3 {
  margin-bottom: 0;
}
body .mainContents .qa .answer-text span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
body .mainContents .qa .answer-image {
  width: 48.6363636364vw;
  margin: 0 auto 13.3636363636vw;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .answer-image {
    width: 100%;
    margin-bottom: 37.1980676329vw;
    padding: 0 3.6231884058vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .answer-image {
    width: 535px;
    margin-bottom: 147px;
  }
}
body .mainContents .qa .answer-image.--2 {
  width: 49.0909090909vw;
  margin-bottom: 11.9090909091vw;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .answer-image.--2 {
    width: 100%;
    margin-bottom: 37.6811594203vw;
    padding: 0 3.6231884058vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .answer-image.--2 {
    width: 700px;
    margin-bottom: 131px;
  }
}
body .mainContents .qa .answer-image.--3 {
  width: 54.0909090909vw;
  margin-top: -1.8181818182vw;
  margin-bottom: 0vw;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .answer-image.--3 {
    width: 100%;
    padding: 0 3.6231884058vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .answer-image.--3 {
    width: 700px;
    margin-top: 15px;
    margin-bottom: 0;
  }
}
body .mainContents .qa .qa-notice {
  width: 90.9090909091vw;
  margin: 0 auto;
  font-size: 1.2727272727vw;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  body .mainContents .qa .qa-notice {
    width: 100%;
    padding: 0 3.1400966184vw;
    box-sizing: border-box;
    font-size: 3.3816425121vw;
    line-height: 1.42em;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .qa .qa-notice {
    width: 1000px;
    font-size: 14px;
  }
}

body .mainContents .benefits {
  background: #e8ffe3;
}

@media screen and (max-width: 767px) {
  body .mainContents .benefits {
    gap: 6.038647343vw;
    margin-bottom: 10.1449275362vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits {
    gap: 91px;
    margin-bottom: 49px;
  }
}
body .mainContents .benefits .inner {
  width: 90.9090909091vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .inner {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .inner {
    width: 1000px;
  }
}
body .mainContents .benefits .section-title {
  line-height: 1.31em;
}
body .mainContents .benefits .yearly-benefit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 52.8181818182vw;
  height: 8.4545454545vw;
  margin: 0 auto 1.7272727273vw;
  color: #ffffff;
  background: #890e0e;
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .yearly-benefit {
    width: 92.270531401vw;
    height: 23.9130434783vw;
    margin-bottom: 6.038647343vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .yearly-benefit {
    width: 581px;
    height: 93px;
    margin-bottom: 19px;
  }
}
body .mainContents .benefits .yearly-benefit:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -1.6363636364vw;
  width: 7.3636363636vw;
  height: 1.6363636364vw;
  background-image: url('../img/bg_arrow.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-background-size: 100%;
  background-size: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .yearly-benefit:before {
    background-image: url('../img/bg_arrow_sp.svg');
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .yearly-benefit:before {
    top: -18px;
    width: 81px;
    height: 18px;
  }
}
body .mainContents .benefits .yearly-benefit .benefit-main {
  margin: 0 0 0.5454545455vw;
  font-size: 3.2297272727vw;
  font-weight: 700;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .yearly-benefit .benefit-main {
    margin-bottom: 1.4492753623vw;
    font-size: 8.5814009662vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .yearly-benefit .benefit-main {
    margin-bottom: 6px;
    font-size: 35.527px;
  }
}
body .mainContents .benefits .yearly-benefit .benefit-main span {
  font-size: 2.2511818182vw;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .yearly-benefit .benefit-main span {
    font-size: 5.9814009662vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .yearly-benefit .benefit-main span {
    font-size: 24.763px;
  }
}
body .mainContents .benefits .yearly-benefit .benefit-remarks {
  font-size: 1.4394545455vw;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .yearly-benefit .benefit-remarks {
    font-size: 3.8246376812vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .yearly-benefit .benefit-remarks {
    font-size: 15.834px;
  }
}
body .mainContents .benefits .benefits-notice {
  font-size: 0.9090909091vw;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .benefits-notice {
    padding: 0 3.6231884058vw;
    font-size: 2.4154589372vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .benefits-notice {
    font-size: 10px;
  }
}
body .mainContents .benefits .benefits-notice li {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
body .mainContents .benefits .benefit-detail {
  width: 90.9090909091vw;
  margin: 0 auto;
  padding: 4vw 2vw 4.2727272727vw;
  box-sizing: border-box;
  /* background-color: #e8ffe3; */
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .benefit-detail {
    width: 92.7536231884vw;
    padding: 6.7632850242vw 3.3816425121vw 7.729468599vw 4.5893719807vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .benefits .benefit-detail {
    width: 1000px;
    padding: 44px 22px 47px;
  }
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .benefit-detail .section-subTitle,
  body .mainContents .benefits .benefit-detail .benefits-notice,
  body .mainContents .benefits .benefit-detail .table-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .benefit-detail .caption {
    margin: 0 0 1.690821256vw;
    font-size: 3.3816425121vw;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  body .mainContents .benefits .benefit-detail .table-wrapper {
    margin-bottom: 4.5893719807vw;
  }
}
body .mainContents .footer-navi {
  height: 13vw;
  background-image: url('../img/bg_footer.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  body .mainContents .footer-navi {
    height: auto;
    background-image: url('../img/bg_footer_sp.png');
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .footer-navi {
    height: 143px;
  }
}
body .mainContents .footer-navi .navi-list {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  width: 90.9090909091vw;
  margin: 0 auto;
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  body .mainContents .footer-navi .navi-list {
    display: block;
    width: 100%;
    border-top: 1px solid #ffffff;
    border-left: none;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .footer-navi .navi-list {
    width: 1000px;
  }
}
body .mainContents .footer-navi .navi-list li {
  height: 100%;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  body .mainContents .footer-navi .navi-list li {
    height: 27.0531400966vw;
    border-right: none;
    border-bottom: 1px solid #ffffff;
  }
}
body .mainContents .footer-navi .navi-list li:last-of-type {
  border-bottom: none;
}
body .mainContents .footer-navi .navi-list li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.8181818182vw;
  font-weight: 700;
  line-height: 1.6em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.41);
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  body .mainContents .footer-navi .navi-list li a {
    padding: 0 0 0 3.1400966184vw;
    justify-content: flex-start;
    box-sizing: border-box;
    font-size: 4.8309178744vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .footer-navi .navi-list li a {
    font-size: 20px;
  }
}
body .mainContents .footer-navi .navi-list li a:hover {
  opacity: 0.7;
}
body .mainContents .footer-navi .navi-list li a:after {
  content: '>';
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  body .mainContents .footer-navi .navi-list li a:after {
    right: 4.347826087vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .footer-navi .navi-list li a:after {
    right: 22px;
  }
}
body .mainContents .visitMerit {
  padding: 5.2727272727vw 0 4.3636363636vw;
  background-color: #4f4f4f;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit {
    padding-top: 13.0434782609vw;
    padding-bottom: 11.5942028986vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit {
    padding: 58px 0 48px;
  }
}
body .mainContents .visitMerit .benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.7272727273vw;
  width: 90.9090909091vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 7.2463768116vw;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit .benefits-list {
    gap: 30px;
    width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list li {
    width: 75.845410628vw;
  }
}
body .mainContents .visitMerit .benefits-list li .benefit-lead {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8181818182vw;
  align-items: center;
  margin: 0 0 1.3636363636vw;
  padding: 0 0 0 1.7272727273vw;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead {
    gap: 1.9323671498vw;
    margin-bottom: 1.690821256vw;
    padding-left: 4.5893719807vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead {
    margin-bottom: 15px;
    padding-left: 19px;
  }
}
body .mainContents .visitMerit .benefits-list li .benefit-lead .number {
  width: 3.4545454545vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .number {
    width: 10.38647343vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .number {
    width: 38px;
  }
}
body .mainContents .visitMerit .benefits-list li .benefit-lead .number .prefix {
  font-size: 1.6952727273vw;
  background: var(--LinearBg5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .number .prefix {
    font-size: 4.5043478261vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .number .prefix {
    font-size: 18.648px;
  }
}
body .mainContents .visitMerit .benefits-list li .benefit-lead .number .body {
  font-size: 2.8526363636vw;
  background: var(--LinearBg5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .number .body {
    font-size: 7.579468599vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .number .body {
    font-size: 31.379px;
  }
}
body .mainContents .visitMerit .benefits-list li .benefit-lead .benefit-lead-text {
  width: 22.0909090909vw;
  font-size: 1.2727272727vw;
  line-height: 1.57em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .benefit-lead-text {
    width: 55.7971014493vw;
    font-size: 3.3816425121vw;
  }
}
@media screen and (min-width: 1100px) {
  body .mainContents .visitMerit .benefits-list li .benefit-lead .benefit-lead-text {
    width: 243px;
    font-size: 14px;
  }
}

body .mainContents .kari {
  background: url('../img/bg_qa_textured.webp') repeat;
  background-size: cover;
}

.kari {
  padding: 60px 0;
  /* background-color: #ffffe4; */
}

.kari-image {
  width: 70%;
  margin: 0 auto;
}

body .mainContents .zeh-m  {
  padding: 60px 0;
  background: url('../img/bg_qa_textured.webp') repeat;
  background-size: cover;
}
body .mainContents .zeh-m .section-title {
    margin-bottom: 0;
}

body .mainContents .zeh {
  padding: 60px 0 56px;
  background: url('../img/bg_zeh_img.png') repeat;
  background-size: cover;
  /* background-color: #ffffe4; */
}
body .mainContents .zeh .ttl-image {
  width: 35%;
  margin: 20px auto;
}

@media screen and (max-width: 767px) {
  body .mainContents .zeh .ttl-image {
    width: 90%;
  }
}

body .mainContents .zeh .zeh-text {
  margin-bottom: 58px;
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1.6em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body .mainContents .zeh .zeh-text {
    font-size: 12px;
  }
}

body .mainContents .zeh-image {
  width: 70%;
  margin: 0 auto;
  padding: 20px;
}

body .mainContents .zeh .zeh-notice {
  width: 70%;
  font-size: 14px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body .mainContents .zeh .zeh-notice {
    width: 90%;
  }
}

@font-face {
  font-family: 'Big caslon', serif;
  src: url('../fonts/BigCaslon.woff2') format('woff2'), /* WOFF 2.0 */
       url('../fonts/BigCaslon.woff') format('woff'); /* WOFF 1.0 */
}
body.scroll {
  position: relative !important;
}
header,
footer {
  font-family: 'Zen Old Mincho', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
}
header img,
footer img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
header a img,
footer a img {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
}
/* device */
.sp {
  display: none;
}
.pc {
  display: block;
}
/* flexbox */
.row_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  a[href^='tel:'] {
    pointer-events: auto;
  }
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
.row_box {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contents_inner {
  width: 90%;
  max-width: 1336px;
  margin: 0 auto;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
  padding-right: 125px;
  margin: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
  transition: 0.3s;
}
header.fixed {
  background: #2f4737;
}
header a:hover {
  opacity: 1 !important;
}
header .contents_inner {
  width: 100%;
  max-width: initial;
  align-items: center;
  position: relative;
  z-index: 999;
}
header .logo_box {
  width: 421px;
  justify-content: flex-start;
  align-items: center;
}
header .logo_box .no {
  margin-left: 21px;
  transform: translateZ(0);
}
header .logo_box .no:hover {
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.3));
}
header .logo_box .qu {
  margin-left: 23px;
  transform: translateZ(0);
}
header .logo_box .qu:hover {
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.3));
}
header .search_box {
  width: 146px;
}
header .search_box a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05px;
  text-align: center;
  color: #ffffff;
  width: 100%;
  padding: 11.5px 0;
  border: 1px solid #ffffff;
}
header .search_box a:hover {
  color: #366342;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  header .search_box.pc {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  header {
    padding-right: 80px;
  }
  header .logo_box .header_logo {
    width: 84.5px;
  }
  header .logo_box .no {
    width: 82.7px;
    margin-left: 9px;
  }
  header .logo_box .qu {
    width: 72px;
    margin-top: 3px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 350px) {
  header {
    padding-right: 63px;
  }
  header .logo_box .no {
    width: 72.7px;
  }
  header .logo_box .qu {
    width: 62px;
    margin-top: 0;
  }
}
/*-----------------------------------
	nav
-----------------------------------*/
#nav {
  display: block;
  position: relative;
}
#nav .btn_container,
#nav .overlay {
  display: block;
}
/*-----------------------------------
  btn_container
-----------------------------------*/
#nav .btn_container {
  width: 70px;
  height: 24px;
  position: fixed;
  top: 23px;
  right: 31px;
  z-index: 998;
  transform: translateZ(0);
  transition: opacity 0.2s ease;
  cursor: pointer;
  mix-blend-mode: hard-light;
}
#nav .btn_container:hover {
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.3));
}
#nav .btn_container:after {
  content: "MENU";
  font-size: 14px;
  font-family: 'Big caslon', serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06px;
  color: #ffffff;
  margin: auto;
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  transition: ease 0.2s;
}
#nav .btn_container.active:after {
  display: none;
}
#nav .btn_container span {
  background: #ffffff;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
#nav .btn_container span:not(.ct) {
  opacity: 0;
}
#nav .btn_container span.ct {
  top: auto;
  bottom: 0;
}
#nav .btn_container span.bm {
  top: 11px;
}
#nav .btn_container.active .tp {
  opacity: 1;
  top: -4px;
  transform: translateY(11px) translateX(0) rotate(30deg);
}
#nav .btn_container.active .ct {
  display: none;
}
#nav .btn_container.active .bm {
  opacity: 1;
  top: 7px;
  transform: translateY(-1px) translateX(0) rotate(-30deg);
}
@media screen and (max-width: 640px) {
  #nav .btn_container {
    width: 50px; 
    top: 27px;
    top: 7px;
    right: 13.5px;
  }
  #nav .btn_container:after {
    font-size: 10px;
    top: 7px;
  }
  #nav .btn_container.active .tp {
    top: 5px;
  }
  #nav .btn_container.active .bm {
    top: 17px;
  }
}
/*-----------------------------------
  overlay
-----------------------------------*/
#nav .overlay {
  background: #2f4737;
  width: 100vw;
  min-height: 100vh;
  height: 100svh;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 997;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
}
#nav .overlay.open {
  opacity: 1;
  visibility: visible;
}
#nav .overlay .overlay-menu {
  width: 90%;
  max-width: 1048px;
  margin: auto;
  justify-content: flex-start;
  align-items: center;
  gap: 155px;
  position: relative;
  top: 231px;
  left: 0;
  right: 0;
}
#nav .overlay .title_box {
  margin-bottom: 17px;
}
#nav .overlay .title_box h2 {
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0;
  color: #d9d9d9;
  margin-bottom: 66px;
}
#nav .overlay .title_box .sub {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05px;
  text-align: center;
  color: #d9d9d9;
  width: 100%;
  max-width: 224px;
  margin: 0 auto;
  transform: translateX(-3px);
  position: relative;
}
#nav .overlay .title_box .sub::before,
#nav .overlay .title_box .sub::after {
  content: "";
  display: block;
  background: #5f7165;
  width: 1px;
  height: 38px;
  margin: auto;
  transform: rotate(26deg);
  position: absolute;
  top: 0;
  bottom: 0;
}
#nav .overlay .title_box .sub::before {
  left: 0;
}
#nav .overlay .title_box .sub::after {
  right: 0;
}
#nav .overlay .main_box li {
  margin-bottom: 50px;
}
#nav .overlay .main_box li:not(.search_box) a {
  display: block;
  font-size: 32px;
  font-family: 'Big caslon', serif;
  font-weight: 500;
  color: #dcdcdc;
}
#nav .overlay .main_box li:not(.search_box) a:hover span {
  color: #dcdcdc;
}
#nav .overlay .main_box li:not(.search_box) a span {
  display: block;
  font-size: 13px;
  font-family: 'Zen Old Mincho', sans-serif;
  font-weight: 500;
  color: #7c8b81;
  padding-top: 11px;
  transition: 0.3s;
}
@media screen and (max-width: 840px) {
  #nav .overlay .overlay-menu {
    justify-content: space-evenly;
    gap: 0;
  }
  #nav .overlay .title_box h2 {
    font-size: 33px;
  }
}
@media screen and (max-width: 768px) {
  header .search_box.sp {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  #nav .overlay .overlay-menu {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24%;
    top: 86px;
  }
  #nav .overlay .title_box {
    writing-mode: vertical-rl;
    margin-bottom: 0;
  }
  #nav .overlay .title_box h2 {
    display: inline-block;
    font-size: 21px;
    margin-bottom: 22px;
  }
  #nav .overlay .title_box .sub {
    display: inline-block;
    font-size: 13px;
    transform: none;
  }
  #nav .overlay .title_box .sub::before,
  #nav .overlay .title_box .sub::after {
    height: 30px;
    left: 8px !important;
    right: 0 !important;
    transform: rotate(115deg);
  }
  #nav .overlay .title_box .sub::before {
    top: -28px !important;
    bottom: auto;
  }
  #nav .overlay .title_box .sub::after {
    top: auto;
    bottom: -30px !important;
  }
  #nav .overlay .main_box {
    margin-top: 11px;
  }
  #nav .overlay .main_box li {
    margin-bottom: 42px;
  }
  #nav .overlay .main_box li:nth-of-type(4) {
    margin-bottom: 58px;
  }
  #nav .overlay .main_box li:not(.search_box) a {
    font-size: 24px;
  }
  #nav .overlay .main_box li:not(.search_box) a span {
    font-size: 10px;
    padding-top: 9px;
  }
  header .search_box.sp a {
    width: 179px;
  }
}
@media screen and (max-width: 425px) {
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  cursor: pointer;
  z-index: 998;
}
@media screen and (max-width: 640px) {
  #pagetop {
    width: 50px;
    height: 50px;
    right: 15px;
  }
}
/*-----------------------------------
	footer
-----------------------------------*/
footer {
  color: #dcdcdc;
  background: #2f4737;
  text-align: center;
  padding: 194px 0 61.5px;
}
footer .details h3 {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01px;
  margin-bottom: 43.2px;
}
footer .details {
  margin-bottom: 182px;
}
footer .details p {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0;
  text-align: left;
  color: #ffffff;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 115px;
}
footer .details #footer_logo img {
  width: 196px;
}
footer small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01px; 
}
footer .small1 {
  line-height: 1.81;
  margin-bottom: 41px;
}
@media screen and (max-width: 640px) {
  footer {
    padding: 88.4px 0 33px;
  }
  footer .details {
    margin-bottom: 59px;
  }
  footer .details h3 {
    font-size: 27px;
    line-height: 1.48;
    margin-bottom: 17.4px;
  }
  footer .details p {
    font-size: 13px;
    margin: 0 auto 67.4px;
  }
  footer small {
    font-size: 10px;
  }
  footer .small1 {
    margin-bottom: 26px;
  }
}

/*-----------------------------------

	info_block

-----------------------------------*/
#info_block {
    background-color: #2F4737;
    color: #dcdcdc;
    padding: 30px 0;
}

#info_block .swiper-container {
    width: 95%;
    max-width: 1459px;
    margin: 0 auto;
    position: relative;
}

#info_block .swiper {
    width: 91.6%;
}

#info_block .swiper-button-prev,
#info_block .swiper-button-next {
    width: 31px;
    height: 61px;
    top: 44%;
}

#info_block .swiper-button-prev {
    left: 0;
}

#info_block .swiper-button-next {
    right: 0;
}

#info_block .swiper-button-prev::after,
#info_block .swiper-button-next::after {
    display: none;
}

#info_block .title_box.tp {
    line-height: 1.2;
    margin-left: 16px;
    margin-bottom: 83px;
}

#info_block .title_box.tp .en {
    font-size: 42px;
    font-family: 'Big caslon', serif;
    font-weight: 500;
    letter-spacing: 1.6px;
    margin-right: 22px;
}

#info_block .title_box.tp .ja {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01px;
}

#info_block .news_wrapper .news_box {
    display: flex;
    flex-direction: column;
}

#info_block .news_wrapper .news_box .img_box {
    width: 100%;
    max-width: 350px;
}

#info_block .news_wrapper .news_box .text_box {
    color: #fff;
    padding-bottom: 12px;
}

#info_block .news_wrapper .news_box .text_box .title_box {
    padding-bottom: 8.5px;
    border-bottom: 1px dashed #596c5f;
}

#info_block .news_wrapper .news_box .text_box .title_box h3 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 16px;
    margin-bottom: 7px;
}

#info_block .news_wrapper .news_box .text_box .title_box p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.53;
}

#info_block .news_wrapper .news_box .text_box .access_box {
    color: #97a39b;
    margin-top: 9px;
    margin-bottom: 36px;
}

#info_block .news_wrapper .news_box2 .text_box .access_box,
#info_block .news_wrapper .news_box4 .text_box .access_box {
    margin-bottom: 17.9px;
}

#info_block .news_wrapper .news_box .text_box .access_box p.en {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.03px;
    margin-bottom: 2px;
}

#info_block .news_wrapper .news_box .text_box .access_box p.ja {
    font-size: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-feature-settings: "palt";
    line-height: 1.58;
    letter-spacing: 0.01px;
}

#info_block .news_wrapper .news_box .text_box .btn_box {
    font-size: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01px;
    color: #dcdcdc;
    width: 137px;
    margin-left: auto;
    align-items: center;
    transform: translateZ(0);
    position: relative;
}

#info_block .news_wrapper .news_box .text_box .btn_box:hover {
    filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.3));
}

#info_block .news_wrapper .news_box .text_box .btn_box:hover img.bk {
    opacity: 1;
}

#info_block .news_wrapper .news_box .text_box .btn_box:hover img.wh {
    opacity: 0;
}

#info_block .news_wrapper .news_box .text_box .btn_box img {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.3s;
    width: 33px;
}

#info_block .news_wrapper .news_box .text_box .btn_box img.bk {
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    #info_block .swiper-button-prev {
        left: -10px;
    }

    #info_block .swiper-button-next {
        right: -10px;
    }
}

@media screen and (max-width: 640px) {
    #info_block .swiper {
        width: 100%;
    }

    #info_block .swiper-container {
        width: 90%;
    }

    #info_block .swiper-button-prev,
    #info_block .swiper-button-next {
        width: 16px;
        height: 36px;
    }

    #info_block .swiper-button-prev {
        left: -4.5%;
    }

    #info_block .swiper-button-next {
        right: -4.5%;
    }

    #info_block .news_wrapper .news_box .img_box {
        max-width: initial;
    }

    #info_block .news_wrapper .news_box .text_box .title_box h3 {
        font-size: 17px;
    }

    #info_block .news_wrapper .news_box .text_box .title_box p {
        font-size: 13px;
    }

    #info_block .news_wrapper .news_box .text_box .access_box p.en {
        font-size: 10px;
    }

    #info_block .news_wrapper .news_box .text_box .access_box p.ja {
        font-size: 11px;
    }

    #info_block .news_wrapper .news_box .text_box .btn_box {
        margin-right: 4px;
    }
}
/*# sourceMappingURL=index.css.map */
