@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Shippori+Mincho:wght@400;700&family=Lato:wght@400;700&display=swap");

/* Reset */
/*-----------------------------------------------*/
html {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  width: auto !important;
  width: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /*font-size: 62.5%;*/
  overflow: auto;
}

body {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: 'Lato', 'Noto Sans JP', "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  /*font-size: 1.6rem;*/
  line-height: 2;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  vertical-align: baseline;
  color: #2d0b00;
  word-break: break-all !important;
  box-sizing: padding-box;
  border: 0;
  outline: 0;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
  outline: none !important;
}

:root {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

section, article, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1.6rem;
  line-height: 1.4;
}

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

ol, ul ,li{
  list-style: none;
}

img, iframe {
  vertical-align: bottom;
}

blockquote, q {
  quotes: none;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
}

table th, table td {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: underline;
  color: #2d0b00;
  cursor: pointer;
  outline: none;
  transition: all 0.1s;
}

a:visited, a:focus, a:active {
  text-decoration: none;
  color: #2d0b00;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

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

img {
  height: auto;
  vertical-align: bottom;
}

input, select, textarea {
  margin: 0 !important;
  padding: 7px 10px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "fot-tsukuardgothic-std", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
}

select::-ms-expand {
  display: none;
}

button {
  letter-spacing: 0.05em;
  border: 0;
  cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
/* line 166, ../scss/_reset.scss */
input[type="submit"],
input[type="button"],
input[type="password"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none !important;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* clearfix */
/*-----------------------------------------------*/
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

/* text style */
/*-----------------------------------------------*/
.center {
  text-align: center !important;
}

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

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

.rightBox {
  float: right !important;
}

.leftBox {
  float: left !important;
}

.clear {
  clear: both;
}

/*-----------------------------------------------*/
/* Reset */

/* ----------------------------------------
	body
---------------------------------------- */
body.fixed {
  position: relative !important;
  overflow: hidden !important;
}

body.fixed::after {
  position: fixed !important;
  top: 0;
  bottom: -50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
}

.inner {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  
}

.inner02 {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  
}
@media print, screen and (min-width: 1201px) {
  .inner {
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 64px;
  }
  .inner02 {
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }
}

.inner02{
  padding: 0 20px;
}
@media print, screen and (min-width: 1201px) {
  .inner02 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}


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

.btn-df a {
  display: block;
  max-width: 220px;
  margin-right: auto;
  margin-left: auto;
  padding: 13px 20px;
  font-weight: 700;
  background: #7ab220;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
}
@media print, screen and (min-width: 1201px) {
  .btn-df a:hover {
    color: #7ab220;
    background: #f4e730;
  }
}

.img-frame {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  vertical-align: middle;
}

.img-frame img {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

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

@media print, screen and (min-width: 768px) {
  .center-tab {
    text-align: center;
  }
}

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

@media print, screen and (min-width: 1201px) {
  .onlySpTab {
    display: none;
  }
}

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

.pankuzu {
  margin: 10px 20px 0;
  text-align: right;
  font-size: 1.2rem;
}

.pankuzu a {
  color: #000;
}

.pankuzu a:hover {
  color: #7ab220;
}

.pankuzu a::after {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", "Font Awesome 5 Brands";
  font-weight: 300;
  content: '\f105';
  margin: 0 10px 0;
  display: inline-block;
  color: #000 !important;
}
@media print, screen and (min-width: 1201px) {
  .pankuzu {
    font-size: 1.3rem;
  }
}

.title{
	font-family: 'cardo', 'Shippori Mincho', serif;
	
	font-size: 2rem;
	text-align: center;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.title span{
  display: inline-block;
font-size: 1.2rem;
letter-spacing: 0.2em;
line-height: 1.6!important;
}

.title02{
font-size: 1.6rem;
text-align: center;
}

@media print,
screen and (min-width: 768px) {
.title strong{
font-size: 2.4rem;
}
}

.text01{
  font-size: 1.4rem;
}

.text02{
  font-size: 1.6rem;
  font-weight: 700;
}

.marker01{
  background: linear-gradient(transparent 50%, #FFF2D7 50%);
  font-weight: 700;
  display: inline;
}

.cl-red {
  color: #BA0024;
}

.list-indent li {
  padding-left: 1em;
  text-indent: -1em;
}



.indent {
  padding-left: 1em;
  text-indent: -1em;
}



.must {
  color: #BA0024;
  font-weight: 700;
}

.tbl-df {
  border-top: 1px solid #7ab220;
}

.tbl-df th {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .tbl-df th, .tbl-df td {
    display: block;
    width: 100%;
  }

  .tbl-df th {
    padding: 15px 10px 5px;
    font-weight: 700;
  }

  .tbl-df td {
    padding: 5px 10px 15px;
    border-bottom: 1px solid #7ab220;
  }
}
@media print, screen and (min-width: 768px) {

  .tbl-df tr {
    border-bottom: 1px solid #7ab220;
  }

  .tbl-df th, .tbl-df td {
    padding: 25px 10px;
  }

  .tbl-df th {
    width: 200px;
    font-weight: 700;
  }
}

.link-top {
  display: block;
  margin-top: -40px;
  padding-top: 40px;
}
@media print, screen and (min-width: 1201px) {
  .link-top {
    margin-top: -180px;
    padding-top: 180px;
  }
}


.movie {
  position: relative;
  width: 100%;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
}

.movie::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------
	header
---------------------------------------- */

header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 160px;
  padding: 10px 0 0 !important;
  transition: all .3s ease-out;
  background: url("../img/common/bg.svg") repeat-x;
}
@media print, screen and (min-width: 768px) {
  header {
    height: 175px;
  }
}
@media print, screen and (min-width: 1201px) {
  header {
    height: 355px;
  }
}

header .site-title {
  margin: 0 auto;
  text-align: center;
}

header .site-title .logo {
  position: relative;
  overflow: hidden;
  height: 125px;
}

header .site-title img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1170px;
  height: 125px;
  max-width: none !important;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 1201px) {
  header .site-title a {
    display: block;
  }

  header .site-title .logo {
    height: 250px;
    margin-bottom: 20px;
  }

  header .site-title img {
    width: 2340px;
    height: 250px;
  }
}

header #nav-global a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  header .hamburger {
    display: block;
    position: fixed;
    z-index: 99;
    right: 3%;
    top: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    background: #7ab220;
    border-radius: 3px;
  }

  header .hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
    width: 60%;
    height: 2px;
    display: block;
    background: #fff;
    margin: 0 auto;
    transition: all .3s;
  }

  header .hamburger span:nth-child(2) {
    top: 25px;
  }

  header .hamburger span:nth-child(3) {
    top: 35px;
  }

  header .hamburger.active span {
    background: #fff;
  }

  header .hamburger.active span:nth-child(1) {
    top: 25px;
    transform: rotate(45deg);
  }

  header .hamburger.active span:nth-child(2) {
    transform: scaleX(0);
  }

  header .hamburger.active span:nth-child(3) {
    top: 25px;
    transform: rotate(135deg);
  }
 
  header #nav-global {
    position: fixed;
    z-index: 98;
    top: 0;
    right: 0;
    background: #7ab220;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.3s;
    width: 85%;
    height: 100%;
    opacity: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  header #nav-global.active {
    transform: translateX(0%);
    opacity: 1;
  }

  header #nav-global #nav-main {
    margin: 0 auto;
    padding: 80px 5% 0;
    max-width: 500px;
    width: 100%;
  }

  header #nav-global #nav-main li {
    position: relative;
    list-style-type: none;
    padding: 0;
    width: 100%;
  }

  header #nav-global #nav-main li a {
    position: relative;
    padding: 10px 15px;
    color: #fff;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: 2px solid #f4e730;
  }
}
@media print, screen and (min-width: 1201px) {
  header .hamburger {
    display: none;
  }
 
  header #nav-global {
    display: flex;
    flex-flow: column-reverse;
    z-index: 90;
  }

  header #nav-main {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 99;
    transition: all .3s ease-out;
  }

  header #nav-main > li {
    margin: 0 30px;
  }

  header #nav-main > li a {
    padding: 10px 0;
    white-space: nowrap;
    transition: all .3s ease-out;
    text-decoration: none !important;
  }

  header #nav-main span {
    position: relative;
  }

  header #nav-main span::after {
    position: absolute;
    z-index: 0;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    content: "";
    transition-duration: 0.3s;
    opacity: 0;
    background: url("../img/common/tanpopo.svg") no-repeat;
  }

  header #nav-main span:hover::after {
    opacity: 1;
  }
}

/* ----------------------------------------
	content
---------------------------------------- */

main, artical {
  display: block;
}

#pagetop {
  position: fixed;
  z-index: 4 !important;
  right: 3px;
  bottom: -160px;
  width: 40px;
  cursor: pointer;
  text-align: right;
  line-height: 1;
  transition: all .25s ease-out;
}

#pagetop span {
  position: relative;
  height: 150px;
  font-size: 1.4rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#pagetop span::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 1px;
  height: 70px;
  margin: auto;
}

#pagetop span::after {
  position: absolute;
  content: "●";
  right: -1px;
  top: -6px;
}
@media print, screen and (min-width: 768px) {
  #pagetop {
    right: 20px;
  }
}

.link-text {
  text-decoration: underline !important;
}

.link-text:hover {
  text-decoration: none !important;
}

/* ----------------------------------------
	footer
---------------------------------------- */
footer {
  color: #fff;
  background: #6E6467;
}

footer a {
  color: #fff !important;
}
@media print, screen and (min-width: 1201px) {
  footer {
    padding: 60px 20px;
  }
}

.copy {
  font-size: 1.2rem;
}
