@charset "UTF-8";
/* Box sizing rules */
/* Box sizingの定義 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* line 3, ../sass/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
/* line 11, ../sass/_reset.scss */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
/* line 18, ../sass/_reset.scss */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
/* line 37, ../sass/_reset.scss */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
/* line 46, ../sass/_reset.scss */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
/* line 53, ../sass/_reset.scss */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
/* line 59, ../sass/_reset.scss */
img {
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
/* line 66, ../sass/_reset.scss */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
/* line 72, ../sass/_reset.scss */
input,
button,
textarea,
select {
  font: inherit;
}

/* JS object fit images 用 */
/* line 80, ../sass/_reset.scss */
.object-fit {
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  /* line 88, ../sass/_reset.scss */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* line 31, ../sass/_button.scss */
.btn {
  text-decoration: none !important;
  position: relative;
  display: inline-block;
  margin: 0.5em 0.5em 1em;
}
/* line 37, ../sass/_button.scss */
.btn span {
  -moz-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  background: #FFF;
  border: 2px solid #000;
  -moz-border-radius: 3em;
  -webkit-border-radius: 3em;
  border-radius: 3em;
  cursor: pointer;
  color: #000;
  font-size: 16px;
  padding: 0.7em 2em;
  display: inline-block;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1399px) {
  /* line 37, ../sass/_button.scss */
  .btn span {
    font-size: 1.14286vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 37, ../sass/_button.scss */
  .btn span {
    font-size: 4.26667vw;
  }
}
/* line 58, ../sass/_button.scss */
.btn span:hover {
  color: #fff;
  background: #1f893b;
  text-decoration: none;
  border: 2px solid #000;
  -moz-transform: translate(0, 6px);
  -ms-transform: translate(0, 6px);
  -webkit-transform: translate(0, 6px);
  transform: translate(0, 6px);
}
/* line 71, ../sass/_button.scss */
.btn.mini span {
  padding: 0.2em 2em 0.3em !important;
}
/* line 75, ../sass/_button.scss */
.btn.dispB {
  display: block;
}
/* line 77, ../sass/_button.scss */
.btn.dispB span {
  display: block;
}
/* line 82, ../sass/_button.scss */
.btn.maru:after {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/* line 86, ../sass/_button.scss */
.btn:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 6px;
  border: 2px solid #000;
  -moz-border-radius: 3em;
  -webkit-border-radius: 3em;
  border-radius: 3em;
  background: -webkit-linear-gradient(45deg, #000 15%, #fff 15%, #fff 50%, #000 50%, #000 65%, #fff 65%, #fff);
  background: linear-gradient(45deg, #000000 15%, #ffffff 15%, #ffffff 50%, #000000 50%, #000000 65%, #ffffff 65%, #ffffff);
  background-size: 8px 8px;
}
/* line 101, ../sass/_button.scss */
.btn.arrow span {
  padding: 0.7em 3em;
}
/* line 103, ../sass/_button.scss */
.btn.arrow span:after {
  content: "";
  width: 12px;
  height: 13px;
  background: url(../img/svg/yazirusi_1.svg) left center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1399px) {
  /* line 103, ../sass/_button.scss */
  .btn.arrow span:after {
    width: 0.85714vw;
    height: 0.92857vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 103, ../sass/_button.scss */
  .btn.arrow span:after {
    width: 3.2vw;
    height: 3.46667vw;
  }
}
/* line 126, ../sass/_button.scss */
.btn.arrow span:focus:after, .btn.arrow span:hover:after {
  background: url(../img/svg/yazirusi_1on.svg) left center no-repeat;
  background-size: contain;
}
/* line 136, ../sass/_button.scss */
.btn.reverse span {
  padding: 0.7em 3em;
}
/* line 138, ../sass/_button.scss */
.btn.reverse span:after {
  content: "";
  width: 12px;
  height: 13px;
  background: url(../img/svg/yazirusi_1.svg) left center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translate(100%, -50%) rotate(180deg);
  -ms-transform: translate(100%, -50%) rotate(180deg);
  -webkit-transform: translate(100%, -50%) rotate(180deg);
  transform: translate(100%, -50%) rotate(180deg);
}
/* line 153, ../sass/_button.scss */
.btn.reverse span:focus:after, .btn.reverse span:hover:after {
  background: url(../img/svg/yazirusi_1on.svg) left center no-repeat;
}
/* line 164, ../sass/_button.scss */
.btn.nomark span:after {
  display: none;
}
/* line 183, ../sass/_button.scss */
.btn[target="_blank"] span {
  padding: 0.7em 3em;
}
/* line 185, ../sass/_button.scss */
.btn[target="_blank"] span:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 400 !important;
  font-size: 1em;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  /* line 185, ../sass/_button.scss */
  .btn[target="_blank"] span:after {
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
}
/* line 208, ../sass/_button.scss */
.btn[href$=".pdf"] span, .btn[href$=".xls"] span, .btn[href$=".xlsx"] span, .btn[href$=".doc"] span, .btn[href$=".docx"] span, .btn[href$=".ppt"] span, .btn[href$=".pptx"] span {
  padding: 0.7em 3em;
}
/* line 210, ../sass/_button.scss */
.btn[href$=".pdf"] span:after, .btn[href$=".xls"] span:after, .btn[href$=".xlsx"] span:after, .btn[href$=".doc"] span:after, .btn[href$=".docx"] span:after, .btn[href$=".ppt"] span:after, .btn[href$=".pptx"] span:after {
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media screen and (max-width: 768px) {
  /* line 210, ../sass/_button.scss */
  .btn[href$=".pdf"] span:after, .btn[href$=".xls"] span:after, .btn[href$=".xlsx"] span:after, .btn[href$=".doc"] span:after, .btn[href$=".docx"] span:after, .btn[href$=".ppt"] span:after, .btn[href$=".pptx"] span:after {
    margin-left: 0.2em;
    margin-right: 0.2em;
  }
}
/* line 227, ../sass/_button.scss */
.btn[href$=".pdf"] span:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 400 !important;
  font-size: 1em;
  color: #d71f28;
  margin-left: 0.5em;
  margin-right: 0.5em;
  vertical-align: baseline;
}
/* line 236, ../sass/_button.scss */
.btn[href$=".doc"] span:after, .btn[href$=".docx"] span:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 400 !important;
  font-size: 1em;
  color: #2b579a;
  margin-left: 0.5em;
  margin-right: 0.5em;
  vertical-align: baseline;
}
/* line 246, ../sass/_button.scss */
.btn[href$=".xls"] span:after, .btn[href$=".xlsx"] span:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 400 !important;
  font-size: 1em;
  color: #007233;
  margin-left: 0.5em;
  margin-right: 0.5em;
  vertical-align: baseline;
}
/* line 257, ../sass/_button.scss */
.btn[href$=".ppt"] span:after, .btn[href$=".pptm"] span:after, .btn[href$=".pptx"] span:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 400 !important;
  font-size: 1em;
  color: #f5624a;
  margin-left: 0.5em;
  margin-right: 0.5em;
  vertical-align: baseline;
}

/* line 270, ../sass/_button.scss */
a.anc {
  color: #333;
  text-decoration: none !important;
  font-weight: 700;
  padding: 0 3em 0.5em 0;
  margin: 1em 0.5em 0.5em;
  display: inline-block;
  border-bottom: 3px solid #c7c7c7;
  position: relative;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
/* line 280, ../sass/_button.scss */
a.anc.dispB {
  display: block;
}
/* line 283, ../sass/_button.scss */
a.anc:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 600 !important;
  font-size: 1em;
  position: absolute;
  top: 45%;
  right: 0;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) {
  /* line 290, ../sass/_button.scss */
  a.anc:hover {
    border-bottom: 3px solid #FCCE34;
  }
}
@media screen and (max-width: 768px) {
  /* line 270, ../sass/_button.scss */
  a.anc {
    display: block;
    border: 2px solid #c7c7c7;
    -moz-border-radius: 1.5em;
    -webkit-border-radius: 1.5em;
    border-radius: 1.5em;
    padding: 0.5em 1.5em;
    text-align: center;
  }
  /* line 301, ../sass/_button.scss */
  a.anc:after {
    top: 50%;
    right: 0.5em;
  }
}

/* line 311, ../sass/_button.scss */
a.catLink {
  color: #333;
  text-decoration: none !important;
  font-weight: 700;
  padding: 0.5em 1.5em 0.6em;
  margin: 1em 0.5em 0.5em;
  display: inline-block;
  border: 2px solid #c7c7c7;
  line-height: 1;
  text-align: center;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
/* line 323, ../sass/_button.scss */
a.catLink.dispB {
  display: block;
}
/* line 333, ../sass/_button.scss */
a.catLink.now, a.catLink:hover {
  border: 2px solid #FCCE34;
  background: #FCCE34;
}
@media screen and (max-width: 768px) {
  /* line 311, ../sass/_button.scss */
  a.catLink {
    display: block;
  }
}

/* line 355, ../sass/_button.scss */
section.main.ovWidth.ann.list .annBox .bustUp:target .btn span,
section.main.ovWidth.ann.list .annBox .bustUp:hover .btn span {
  color: #fff;
  background: #1f893b;
  text-decoration: none;
  border: 2px solid #000;
  -moz-transform: translate(0, 6px);
  -ms-transform: translate(0, 6px);
  -webkit-transform: translate(0, 6px);
  transform: translate(0, 6px);
}

/* line 372, ../sass/_button.scss */
.btn.mfp_element_submit.mfp_element_all {
  padding: 0;
  width: 100%;
  border: none;
  background: none;
  max-width: unset;
  text-shadow: none;
  margin-left: 0;
  margin-right: 0;
}
/* line 381, ../sass/_button.scss */
.btn.mfp_element_submit.mfp_element_all span {
  width: 100%;
  background: #FCCE34;
}
/* line 384, ../sass/_button.scss */
.btn.mfp_element_submit.mfp_element_all span:hover {
  background: #1f893b;
}
@media all and (-ms-high-contrast: none) {
  /* line 372, ../sass/_button.scss */
  .btn.mfp_element_submit.mfp_element_all {
    background: #FCCE34;
    -moz-border-radius: 3em;
    -webkit-border-radius: 3em;
    border-radius: 3em;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  /* line 402, ../sass/_button.scss */
  .btn.mfp_element_submit.mfp_element_all:hover {
    background: #fff;
  }
  /* line 405, ../sass/_button.scss */
  .btn.mfp_element_submit.mfp_element_all:after {
    display: none;
  }
  /* line 408, ../sass/_button.scss */
  .btn.mfp_element_submit.mfp_element_all span {
    background: transparent;
  }
}

/* line 9, ../sass/_interactions.scss */
.ui-arrow-1 {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
}
/* line 15, ../sass/_interactions.scss */
.ui-arrow-1:before, .ui-arrow-1:after {
  content: '';
  background-color: #333;
  position: absolute;
  top: 50%;
  width: 1px;
  height: calc(70% - 1px);
  margin-top: -35%;
}
/* line 25, ../sass/_interactions.scss */
.ui-arrow-1:before {
  left: 50%;
  margin-left: -25%;
  transform: rotate(-45deg);
}
/* line 30, ../sass/_interactions.scss */
.ui-arrow-1:after {
  right: 50%;
  margin-right: -25%;
  transform: rotate(45deg);
}
/* line 35, ../sass/_interactions.scss */
.ui-arrow-1:before, .ui-arrow-1:after {
  transition: transform 0.34s ease;
}
/* line 40, ../sass/_interactions.scss */
.ui-arrow-1.is-active:before {
  transform: rotate(45deg);
}
/* line 43, ../sass/_interactions.scss */
.ui-arrow-1.is-active:after {
  transform: rotate(-45deg);
}

/* line 48, ../sass/_interactions.scss */
.ui-arrow-2 {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  transition: transform 0.3s ease;
}
/* line 55, ../sass/_interactions.scss */
.ui-arrow-2:before, .ui-arrow-2:after {
  content: '';
  background-color: #333;
  position: absolute;
  top: 50%;
  width: 1px;
  height: calc(70% - 1px);
  margin-top: -35%;
}
/* line 65, ../sass/_interactions.scss */
.ui-arrow-2:before {
  left: 50%;
  margin-left: -25%;
  transform: rotate(-45deg);
}
/* line 70, ../sass/_interactions.scss */
.ui-arrow-2:after {
  right: 50%;
  margin-right: -25%;
  transform: rotate(45deg);
}
/* line 75, ../sass/_interactions.scss */
.ui-arrow-2.is-active {
  transform: rotate(-180deg);
}

/* line 79, ../sass/_interactions.scss */
.ui-hamburger-1 {
  width: 30px;
  height: 26px;
  border: none;
  position: relative;
  background: linear-gradient(to bottom, #333333, #333333);
  background-size: 100% 20%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-size 0.2s 0.25s ease;
  cursor: pointer;
}
/* line 90, ../sass/_interactions.scss */
.ui-hamburger-1:before, .ui-hamburger-1:after {
  height: 20%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #333;
  content: '';
  transition: transform 0.3s ease;
}
/* line 100, ../sass/_interactions.scss */
.ui-hamburger-1:before {
  top: 0;
  transform-origin: 9% 150%;
}
/* line 104, ../sass/_interactions.scss */
.ui-hamburger-1:after {
  bottom: 0;
  transform-origin: 9% -50%;
}
/* line 108, ../sass/_interactions.scss */
.ui-hamburger-1.is-active {
  background-size: 0 20%;
  transition-delay: 0s;
}
/* line 111, ../sass/_interactions.scss */
.ui-hamburger-1.is-active:before {
  transform: rotate(45deg);
  transition-delay: 0.15s;
}
/* line 115, ../sass/_interactions.scss */
.ui-hamburger-1.is-active:after {
  transform: rotate(-45deg);
  transition-delay: 0.15s;
}

/* line 121, ../sass/_interactions.scss */
.ui-hamburger-2 {
  width: 30px;
  height: 26px;
  border: none;
  position: relative;
  background: linear-gradient(to bottom, #333333, #333333);
  background-size: 100% 20%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-size 0.2s 0.25s ease;
  cursor: pointer;
}
/* line 132, ../sass/_interactions.scss */
.ui-hamburger-2:before, .ui-hamburger-2:after {
  height: 20%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #333;
  content: '';
  transition: transform 0.3s ease;
}
/* line 142, ../sass/_interactions.scss */
.ui-hamburger-2:before {
  top: 0;
  transform-origin: 91% 150%;
}
/* line 146, ../sass/_interactions.scss */
.ui-hamburger-2:after {
  bottom: 0;
  transform-origin: 91% -50%;
}
/* line 150, ../sass/_interactions.scss */
.ui-hamburger-2.is-active {
  background-size: 0 20%;
  transition-delay: 0s;
}
/* line 153, ../sass/_interactions.scss */
.ui-hamburger-2.is-active:before {
  transform: rotate(-45deg);
  transition-delay: 0.15s;
}
/* line 157, ../sass/_interactions.scss */
.ui-hamburger-2.is-active:after {
  transform: rotate(45deg);
  transition-delay: 0.15s;
}

/* line 163, ../sass/_interactions.scss */
.ui-hamburger-3 {
  width: 30px;
  height: 26px;
  border: none;
  position: relative;
  background: linear-gradient(to bottom, #333333 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 100% 40%;
  background-repeat-x: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  transition: background-size 0.2s 0.45s ease;
}
/* line 174, ../sass/_interactions.scss */
.ui-hamburger-3:before, .ui-hamburger-3:after {
  height: 20%;
  width: 0;
  position: absolute;
  background-color: #333;
  content: '';
  transform: rotate(0);
  top: 40%;
  transition: transform 0.3s ease, width 0.3s 0.2s ease;
}
/* line 185, ../sass/_interactions.scss */
.ui-hamburger-3:before, .ui-hamburger-3:after {
  left: 0;
}
/* line 189, ../sass/_interactions.scss */
.ui-hamburger-3.is-active {
  background-size: 0 40%;
  transition-delay: 0s;
}
/* line 192, ../sass/_interactions.scss */
.ui-hamburger-3.is-active:before, .ui-hamburger-3.is-active:after {
  width: 100%;
  transition: width 0.3s 0.2s ease, transform 0.3s 0.4s ease;
}
/* line 197, ../sass/_interactions.scss */
.ui-hamburger-3.is-active:before {
  transform: rotate(-45deg);
}
/* line 200, ../sass/_interactions.scss */
.ui-hamburger-3.is-active:after {
  transform: rotate(45deg);
}

/* line 205, ../sass/_interactions.scss */
.ui-hamburger-4 {
  width: 30px;
  height: 26px;
  border: none;
  position: relative;
  background: linear-gradient(to bottom, #333333 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 100% 40%;
  background-repeat-x: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  transition: background-position 0.2s 0.45s ease;
}
/* line 216, ../sass/_interactions.scss */
.ui-hamburger-4:before, .ui-hamburger-4:after {
  height: 20%;
  width: 0;
  position: absolute;
  background-color: #333;
  content: '';
  transform: rotate(0);
  top: 40%;
  transition: transform 0.3s ease, width 0.3s 0.2s ease;
}
/* line 227, ../sass/_interactions.scss */
.ui-hamburger-4:before, .ui-hamburger-4:after {
  right: 0;
}
/* line 231, ../sass/_interactions.scss */
.ui-hamburger-4.is-active {
  background-position: 30px 0;
  transition-delay: 0s;
}
/* line 234, ../sass/_interactions.scss */
.ui-hamburger-4.is-active:before, .ui-hamburger-4.is-active:after {
  width: 100%;
  transition: width 0.3s 0.2s ease, transform 0.3s 0.4s ease;
}
/* line 239, ../sass/_interactions.scss */
.ui-hamburger-4.is-active:before {
  transform: rotate(-45deg);
}
/* line 242, ../sass/_interactions.scss */
.ui-hamburger-4.is-active:after {
  transform: rotate(45deg);
}

/* line 247, ../sass/_interactions.scss */
.ui-hamburger-5 {
  width: 30px;
  height: 26px;
  border: none;
  position: relative;
  background: linear-gradient(to bottom, #333333, #333333);
  background-size: 100% 20%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-size 0.2s 0.25s ease;
  cursor: pointer;
  transition: background-size 0.3s 0.2s ease;
}
/* line 259, ../sass/_interactions.scss */
.ui-hamburger-5:before, .ui-hamburger-5:after {
  height: 20%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #333;
  content: '';
  transition: transform 0.3s ease;
}
/* line 269, ../sass/_interactions.scss */
.ui-hamburger-5:before {
  top: 0;
}
/* line 272, ../sass/_interactions.scss */
.ui-hamburger-5:after {
  bottom: 0;
}
/* line 275, ../sass/_interactions.scss */
.ui-hamburger-5:before, .ui-hamburger-5:after {
  transition: 0.3s ease;
}
/* line 279, ../sass/_interactions.scss */
.ui-hamburger-5.is-active {
  background-size: 0 0;
}
/* line 281, ../sass/_interactions.scss */
.ui-hamburger-5.is-active:before, .ui-hamburger-5.is-active:after {
  transition-delay: 0.3s;
}
/* line 285, ../sass/_interactions.scss */
.ui-hamburger-5.is-active:before {
  transform: translateY(200%) rotate(45deg);
}
/* line 288, ../sass/_interactions.scss */
.ui-hamburger-5.is-active:after {
  transform: translateY(-200%) rotate(-45deg);
}

/* line 293, ../sass/_interactions.scss */
.ui-hamburger-6 {
  width: 30px;
  height: 26px;
  border: none;
  position: relative;
  cursor: pointer;
}
/* line 299, ../sass/_interactions.scss */
.ui-hamburger-6:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #333333 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 100% 40%;
  background-repeat-x: no-repeat;
  background-position: 0 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* line 312, ../sass/_interactions.scss */
.ui-hamburger-6:after {
  width: 80%;
  height: 90%;
  top: 5%;
  left: 10%;
  content: '';
  position: absolute;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 40%, #333333 40%, #333333 60%, rgba(0, 0, 0, 0) 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #333333 40%, #333333 60%, rgba(0, 0, 0, 0) 60%);
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* line 324, ../sass/_interactions.scss */
.ui-hamburger-6.is-active:before {
  opacity: 0;
  transform: scale(0);
}
/* line 328, ../sass/_interactions.scss */
.ui-hamburger-6.is-active:after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
  transition-delay: 0.3s ease;
}

/* line 334, ../sass/_interactions.scss */
.ui-plus-1 {
  position: relative;
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 30px;
  height: 30px;
}
/* line 341, ../sass/_interactions.scss */
.ui-plus-1:before, .ui-plus-1:after {
  content: "";
  height: 20%;
  width: 100%;
  background-color: #333;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10%;
}
/* line 352, ../sass/_interactions.scss */
.ui-plus-1:before {
  transform: rotate(90deg);
}
/* line 355, ../sass/_interactions.scss */
.ui-plus-1:before {
  transition: transform 0.3s ease;
}
/* line 358, ../sass/_interactions.scss */
.ui-plus-1.is-active:before {
  transform: rotate(0);
}

/* line 362, ../sass/_interactions.scss */
.ui-plus-2 {
  position: relative;
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 30px;
  height: 30px;
}
/* line 369, ../sass/_interactions.scss */
.ui-plus-2:before, .ui-plus-2:after {
  content: "";
  height: 20%;
  width: 100%;
  background-color: #333;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10%;
}
/* line 380, ../sass/_interactions.scss */
.ui-plus-2:before {
  transform: rotate(90deg);
}
/* line 383, ../sass/_interactions.scss */
.ui-plus-2:before {
  transition: transform 0.3s ease;
}
/* line 386, ../sass/_interactions.scss */
.ui-plus-2.is-active:before {
  transform: rotate(-180deg);
}

@-moz-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/* line 422, ../sass/_interactions.scss */
.ui-loading-1 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}
/* line 432, ../sass/_interactions.scss */
.ui-loading-1:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  background-color: #333;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
/* line 443, ../sass/_interactions.scss */
.ui-loading-1:after {
  content: '';
  border: solid 2px #fff;
  border-left-color: transparent;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  margin-top: -8px;
  margin-left: -8px;
  opacity: 0;
  transition: opacity 0.2s 0.1s ease;
}
/* line 458, ../sass/_interactions.scss */
.ui-loading-1.is-active:before {
  transform: scaleX(1);
}
/* line 461, ../sass/_interactions.scss */
.ui-loading-1.is-active:after {
  animation: rotation 0.5s infinite linear;
  opacity: 1;
}

@-moz-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/* line 500, ../sass/_interactions.scss */
.ui-loading-2 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 511, ../sass/_interactions.scss */
.ui-loading-2:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  background-color: #333;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

/* line 522, ../sass/_interactions.scss */
.ui-loading-2:after {
  content: '';
  border: solid 2px #fff;
  border-left-color: transparent;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  margin-top: -8px;
  margin-left: -8px;
  opacity: 0;
  transition: opacity 0.2s 0.1s ease;
}

/* line 537, ../sass/_interactions.scss */
.ui-loading-2.is-active:before {
  transform: scaleY(1);
}

/* line 540, ../sass/_interactions.scss */
.ui-loading-2.is-active:after {
  animation: rotation 0.5s infinite linear;
  opacity: 1;
}

@-moz-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/* line 577, ../sass/_interactions.scss */
.ui-loading-3 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 588, ../sass/_interactions.scss */
.ui-loading-3:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  background-color: #333;
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.1s 0.3s;
}

/* line 600, ../sass/_interactions.scss */
.ui-loading-3:after {
  content: '';
  border: solid 2px #fff;
  border-left-color: transparent;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  margin-top: -8px;
  margin-left: -8px;
  opacity: 0;
  transition: opacity 0.2s 0.1s ease;
}

/* line 615, ../sass/_interactions.scss */
.ui-loading-3.is-active:before {
  transition: opacity 0.3s ease;
  transform: translateX(0);
  opacity: 1;
}

/* line 620, ../sass/_interactions.scss */
.ui-loading-3.is-active:after {
  animation: rotation 0.5s infinite linear;
  opacity: 1;
}

/* line 625, ../sass/_interactions.scss */
.ui-toggle-1 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 636, ../sass/_interactions.scss */
.ui-toggle-1:before {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
}

/* line 647, ../sass/_interactions.scss */
.ui-toggle-1.is-active {
  color: #fff;
}

/* line 650, ../sass/_interactions.scss */
.ui-toggle-1:before {
  transform: translateX(calc(-100% - 1px));
}

/* line 653, ../sass/_interactions.scss */
.ui-toggle-1.is-active:before {
  transform: translateX(0);
}

/* line 657, ../sass/_interactions.scss */
.ui-toggle-2 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 668, ../sass/_interactions.scss */
.ui-toggle-2:before {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
}

/* line 679, ../sass/_interactions.scss */
.ui-toggle-2.is-active {
  color: #fff;
}

/* line 682, ../sass/_interactions.scss */
.ui-toggle-2:before {
  transform: translateX(calc(100% + 1px));
}

/* line 685, ../sass/_interactions.scss */
.ui-toggle-2.is-active:before {
  transform: translateX(0);
}

/* line 689, ../sass/_interactions.scss */
.ui-toggle-3 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 700, ../sass/_interactions.scss */
.ui-toggle-3:before {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
}

/* line 711, ../sass/_interactions.scss */
.ui-toggle-3.is-active {
  color: #fff;
}

/* line 714, ../sass/_interactions.scss */
.ui-toggle-3:before {
  transform: translateY(-100%);
}

/* line 717, ../sass/_interactions.scss */
.ui-toggle-3.is-active:before {
  transform: translateY(0);
}

/* line 721, ../sass/_interactions.scss */
.ui-toggle-4 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 732, ../sass/_interactions.scss */
.ui-toggle-4:before {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
}

/* line 743, ../sass/_interactions.scss */
.ui-toggle-4.is-active {
  color: #fff;
}

/* line 746, ../sass/_interactions.scss */
.ui-toggle-4:before {
  transform: translateY(100%);
}

/* line 749, ../sass/_interactions.scss */
.ui-toggle-4.is-active:before {
  transform: translateY(0);
}

/* line 753, ../sass/_interactions.scss */
.ui-toggle-5 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 764, ../sass/_interactions.scss */
.ui-toggle-5:before,
.ui-toggle-5:after {
  position: absolute;
  content: '';
  background-color: #333;
  width: 50%;
  top: 0;
  height: 100%;
  transition: transform 0.3s ease;
  z-index: -1;
}

/* line 775, ../sass/_interactions.scss */
.ui-toggle-5:before {
  left: 0;
  transform: translateX(-100%);
}

/* line 779, ../sass/_interactions.scss */
.ui-toggle-5:after {
  right: 0;
  transform: translateX(100%);
}

/* line 783, ../sass/_interactions.scss */
.ui-toggle-5.is-active {
  color: #fff;
}

/* line 786, ../sass/_interactions.scss */
.ui-toggle-5.is-active:before,
.ui-toggle-5.is-active:after {
  transform: translateX(0);
}

/* line 791, ../sass/_interactions.scss */
.ui-toggle-6 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 802, ../sass/_interactions.scss */
.ui-toggle-6:before,
.ui-toggle-6:after {
  position: absolute;
  content: '';
  background-color: #333;
  width: 100%;
  left: 0;
  height: 50%;
  transition: transform 0.3s ease;
  z-index: -1;
}

/* line 813, ../sass/_interactions.scss */
.ui-toggle-6:before {
  top: 0;
  transform: translateY(-100%);
}

/* line 817, ../sass/_interactions.scss */
.ui-toggle-6:after {
  bottom: 0;
  transform: translateY(100%);
}

/* line 821, ../sass/_interactions.scss */
.ui-toggle-6.is-active {
  color: #fff;
}

/* line 824, ../sass/_interactions.scss */
.ui-toggle-6.is-active:before,
.ui-toggle-6.is-active:after {
  transform: translateY(0);
}

/* line 829, ../sass/_interactions.scss */
.ui-toggle-7 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 840, ../sass/_interactions.scss */
.ui-toggle-7:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  left: 0;
  top: 0;
  transform-origin: top left;
  transform: rotate(-90deg);
}

/* line 853, ../sass/_interactions.scss */
.ui-toggle-7.is-active {
  color: #fff;
}

/* line 856, ../sass/_interactions.scss */
.ui-toggle-7.is-active:before {
  transform: rotate(0);
}

/* line 860, ../sass/_interactions.scss */
.ui-toggle-8 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 871, ../sass/_interactions.scss */
.ui-toggle-8:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  left: 0;
  top: 0;
  transform-origin: top left;
  transform: rotate(90deg);
}

/* line 884, ../sass/_interactions.scss */
.ui-toggle-8.is-active {
  color: #fff;
}

/* line 887, ../sass/_interactions.scss */
.ui-toggle-8.is-active:before {
  transform: rotate(0);
}

/* line 891, ../sass/_interactions.scss */
.ui-toggle-9 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 902, ../sass/_interactions.scss */
.ui-toggle-9:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  left: 0;
  bottom: 0;
  transform-origin: bottom left;
  transform: rotate(-90deg);
}

/* line 915, ../sass/_interactions.scss */
.ui-toggle-9.is-active {
  color: #fff;
}

/* line 918, ../sass/_interactions.scss */
.ui-toggle-9.is-active:before {
  transform: rotate(0);
}

/* line 922, ../sass/_interactions.scss */
.ui-toggle-10 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 933, ../sass/_interactions.scss */
.ui-toggle-10:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  left: 0;
  bottom: 0;
  transform-origin: bottom left;
  transform: rotate(90deg);
}

/* line 946, ../sass/_interactions.scss */
.ui-toggle-10.is-active {
  color: #fff;
}

/* line 949, ../sass/_interactions.scss */
.ui-toggle-10.is-active:before {
  transform: rotate(0);
}

/* line 953, ../sass/_interactions.scss */
.ui-toggle-11 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 964, ../sass/_interactions.scss */
.ui-toggle-11:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  right: -1px;
  width: calc(100% + 1px);
  top: 0;
  transform-origin: top right;
  transform: rotate(-90deg);
}

/* line 978, ../sass/_interactions.scss */
.ui-toggle-11.is-active {
  color: #fff;
}

/* line 981, ../sass/_interactions.scss */
.ui-toggle-11.is-active:before {
  transform: rotate(0);
}

/* line 985, ../sass/_interactions.scss */
.ui-toggle-12 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 996, ../sass/_interactions.scss */
.ui-toggle-12:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  right: 0;
  top: -1px;
  height: calc(100% + 1px);
  transform-origin: top right;
  transform: rotate(90deg);
}

/* line 1010, ../sass/_interactions.scss */
.ui-toggle-12.is-active {
  color: #fff;
}

/* line 1013, ../sass/_interactions.scss */
.ui-toggle-12.is-active:before {
  transform: rotate(0);
}

/* line 1017, ../sass/_interactions.scss */
.ui-toggle-13 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 1028, ../sass/_interactions.scss */
.ui-toggle-13:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  right: 0;
  bottom: -1px;
  height: calc(100% + 1px);
  transform-origin: bottom right;
  transform: rotate(-90deg);
}

/* line 1042, ../sass/_interactions.scss */
.ui-toggle-13.is-active {
  color: #fff;
}

/* line 1045, ../sass/_interactions.scss */
.ui-toggle-13.is-active:before {
  transform: rotate(0);
}

/* line 1049, ../sass/_interactions.scss */
.ui-toggle-14 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 1060, ../sass/_interactions.scss */
.ui-toggle-14:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  transition: transform 0.35s ease;
  z-index: -1;
  background-color: #333;
  right: -1px;
  bottom: 0;
  width: calc(100% + 1px);
  transform-origin: bottom right;
  transform: rotate(90deg);
}

/* line 1074, ../sass/_interactions.scss */
.ui-toggle-14.is-active {
  color: #fff;
}

/* line 1077, ../sass/_interactions.scss */
.ui-toggle-14.is-active:before {
  transform: rotate(0);
}

/* line 1081, ../sass/_interactions.scss */
.ui-toggle-15 {
  padding: 15px 25px;
  color: #333;
  cursor: pointer;
  border: solid 1px #333;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* line 1092, ../sass/_interactions.scss */
.ui-toggle-15:before,
.ui-toggle-15:after {
  top: 0;
  position: absolute;
  width: calc(50% + 21px);
  height: 100%;
  content: '';
  background-color: #333;
  transition: transform 0.35s ease;
  z-index: -1;
}

/* line 1103, ../sass/_interactions.scss */
.ui-toggle-15:before {
  left: 0;
  transform: skewX(-20deg) translateX(calc(-100% - 20px));
}

/* line 1107, ../sass/_interactions.scss */
.ui-toggle-15:after {
  right: 0;
  transform: skewX(-20deg) translateX(calc(100% + 20px));
}

/* line 1111, ../sass/_interactions.scss */
.ui-toggle-15.is-active {
  color: #fff;
}

/* line 1114, ../sass/_interactions.scss */
.ui-toggle-15.is-active:before {
  transform: skewX(-20deg) translateX(-20px);
}

/* line 1117, ../sass/_interactions.scss */
.ui-toggle-15.is-active:after {
  transform: skewX(-20deg) translateX(20px);
}

/* line 8, ../sass/_pc-layout.scss */
html {
  overflow-x: hidden;
}

/* line 14, ../sass/_pc-layout.scss */
body {
  font-family: 'Noto Sans JP', sans-serif;
}

/* line 22, ../sass/_pc-layout.scss */
.fa-youtube {
  color: #CA5546;
}

/* line 27, ../sass/_pc-layout.scss */
.debug {
  position: relative;
  width: fit-content;
  z-index: 99;
  top: 0;
  left: 0;
  border: 1px solid #f00;
  background: #fff;
  padding: 3px;
}

/* line 38, ../sass/_pc-layout.scss */
*:focus {
  outline: none;
}

/* line 47, ../sass/_pc-layout.scss */
h1, h2, h3, h4 {
  margin-top: 60px;
}

/* line 50, ../sass/_pc-layout.scss */
h5 {
  margin-top: 60px;
}

/* line 57, ../sass/_pc-layout.scss */
body {
  font-size: 16px;
  word-wrap: normal;
}
@media screen and (max-width: 1399px) {
  /* line 57, ../sass/_pc-layout.scss */
  body {
    font-size: 1.14286vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 57, ../sass/_pc-layout.scss */
  body {
    font-size: 4.26667vw;
  }
}

/* line 61, ../sass/_pc-layout.scss */
.leadbun {
  font-size: 20px;
}
@media screen and (max-width: 1399px) {
  /* line 61, ../sass/_pc-layout.scss */
  .leadbun {
    font-size: 1.42857vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 61, ../sass/_pc-layout.scss */
  .leadbun {
    font-size: 5.33333vw;
  }
}

/* line 65, ../sass/_pc-layout.scss */
.bgGray {
  background: #F5F5F5;
}

/* line 73, ../sass/_pc-layout.scss */
p {
  line-height: 1.5;
  margin-bottom: 1em;
}

/* line 78, ../sass/_pc-layout.scss */
ul, ol {
  margin-top: 1.5em;
  margin-bottom: 2em;
  margin-left: 1.5em;
}
/* line 82, ../sass/_pc-layout.scss */
ul li, ol li {
  line-height: 1.5;
  margin-bottom: 0.5em;
}

/* line 89, ../sass/_pc-layout.scss */
[class^="icon-"], [class*=" icon-"] {
  margin: 0 5px;
}

/* line 105, ../sass/_pc-layout.scss */
#sResults a.gs-image:after {
  display: none;
}
/* line 111, ../sass/_pc-layout.scss */
#sResults form.gsc-search-box table td {
  border: none;
}
/* line 116, ../sass/_pc-layout.scss */
#sResults .gsc-input-box {
  border: none;
}

/* line 125, ../sass/_pc-layout.scss */
.inner {
  width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1400px) {
  /* line 125, ../sass/_pc-layout.scss */
  .inner {
    width: 100%;
  }
}
/* line 132, ../sass/_pc-layout.scss */
.inner.w1200 {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  width: 1200px;
}
/* line 139, ../sass/_pc-layout.scss */
.inner.w1120 {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  width: 1120px;
}

/* line 157, ../sass/_pc-layout.scss */
#bodyOuter #wrapper .ovWidth {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  padding-left: calc(((100vw - 100%) / 2) * 1);
  padding-right: calc(((100vw - 100%) / 2) * 1);
}
/* line 164, ../sass/_pc-layout.scss */
#bodyOuter #wrapper .ovLeft {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  padding-left: calc(((100vw - 100%) / 2) * 1);
}
/* line 168, ../sass/_pc-layout.scss */
#bodyOuter #wrapper .ovRight {
  margin-right: calc(((100vw - 100%) / 2) * -1);
  padding-right: calc(((100vw - 100%) / 2) * 1);
}

@media screen and (min-width: 769px) {
  /* line 175, ../sass/_pc-layout.scss */
  .spOnly {
    display: none !important;
  }
}
/* line 177, ../sass/_pc-layout.scss */
#blackBg {
  display: none;
}

/* line 184, ../sass/_pc-layout.scss */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #fff;
  color: #333;
  height: 100px;
  padding-bottom: 12px;
}
/* line 197, ../sass/_pc-layout.scss */
#header:after {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: -webkit-linear-gradient(45deg, #000 15%, #fff 15%, #fff 50%, #000 50%, #000 65%, #fff 65%, #fff);
  background: linear-gradient(45deg, #000000 15%, #ffffff 15%, #ffffff 50%, #000000 50%, #000000 65%, #ffffff 65%, #ffffff);
  background-size: 8px 8px;
}
/* line 208, ../sass/_pc-layout.scss */
#header .inner {
  background: #fff;
  position: relative;
  height: 100%;
}
/* line 216, ../sass/_pc-layout.scss */
#header .inner .logo {
  width: 400px;
  height: 93px;
  position: absolute;
  left: 0;
  top: -4px;
  z-index: 1;
}
/* line 231, ../sass/_pc-layout.scss */
#header .inner .gNavi {
  text-align: right;
  padding-left: 226px;
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/* line 239, ../sass/_pc-layout.scss */
#header .inner .gNavi a {
  display: inline-block;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* line 248, ../sass/_pc-layout.scss */
#header .inner .gNavi a img {
  width: 98px;
  height: 93px;
  vertical-align: bottom;
}
/* line 254, ../sass/_pc-layout.scss */
#header .inner .gNavi a.now, #header .inner .gNavi a:hover {
  text-decoration: none;
  border-color: #1f893B;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* line 260, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp {
  width: 98px;
  height: 93px;
  background-image: url(../img/gnavi.png);
  background-repeat: no-repeat;
  background-position: 0 -93px;
  background-size: 709px 186px;
  -moz-transition: 0s;
  -o-transition: 0s;
  -webkit-transition: 0s;
  transition: 0s;
}
/* line 269, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs1.now, #header .inner .gNavi a.cssSp#cs1:hover {
  background-position: 0 0;
}
/* line 273, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs2 {
  background-position: -98px -93px;
}
/* line 275, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs2.now, #header .inner .gNavi a.cssSp#cs2:hover {
  background-position: -98px 0;
}
/* line 279, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs3 {
  background-position: -196px -93px;
}
/* line 281, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs3.now, #header .inner .gNavi a.cssSp#cs3:hover {
  background-position: -196px 0;
}
/* line 285, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs4 {
  background-position: -294px -93px;
}
/* line 287, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs4.now, #header .inner .gNavi a.cssSp#cs4:hover {
  background-position: -294px 0;
}
/* line 291, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs5 {
  background-position: -392px -93px;
}
/* line 293, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs5.now, #header .inner .gNavi a.cssSp#cs5:hover {
  background-position: -392px 0;
}
/* line 297, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs6 {
  width: 121px;
  background-position: -490px -93px;
}
/* line 300, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs6.now, #header .inner .gNavi a.cssSp#cs6:hover {
  background-position: -490px 0;
}
/* line 304, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs7 {
  background-position: -611px -93px;
}
/* line 306, ../sass/_pc-layout.scss */
#header .inner .gNavi a.cssSp#cs7.now, #header .inner .gNavi a.cssSp#cs7:hover {
  background-position: -611px 0;
}
/* line 313, ../sass/_pc-layout.scss */
#header .inner .sideNavi {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 126px;
  right: 0;
  text-align: center;
}
/* line 321, ../sass/_pc-layout.scss */
#header .inner .sideNavi a:after {
  display: none;
}
/* line 327, ../sass/_pc-layout.scss */
#header.subPage {
  color: #333;
}
/* line 331, ../sass/_pc-layout.scss */
#header.subPage:after {
  display: none;
}
/* line 334, ../sass/_pc-layout.scss */
#header.subPage .inner {
  position: relative;
  height: 100%;
}

/* line 342, ../sass/_pc-layout.scss */
#spGNavi {
  display: none;
}

/* line 349, ../sass/_pc-layout.scss */
#pcSrcBtn {
  background: #1f893B;
}
/* line 351, ../sass/_pc-layout.scss */
#pcSrcBtn img.open {
  display: block;
}
/* line 354, ../sass/_pc-layout.scss */
#pcSrcBtn img.close {
  display: none;
}
/* line 358, ../sass/_pc-layout.scss */
#pcSrcBtn.active img.open {
  display: none;
}
/* line 361, ../sass/_pc-layout.scss */
#pcSrcBtn.active img.close {
  display: block;
}

/* line 366, ../sass/_pc-layout.scss */
#pcSrcArea {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  z-index: 11;
  width: 100%;
  background: #1f893B;
  color: #fff;
  height: auto;
  padding: 40px;
}
/* line 378, ../sass/_pc-layout.scss */
#pcSrcArea .searchForm {
  background: #fff;
  border: 2px solid #000;
  padding: 0.5em 1em;
  position: relative;
  width: 680px;
  margin: 0 auto;
  -moz-border-radius: 3em;
  -webkit-border-radius: 3em;
  border-radius: 3em;
}
/* line 386, ../sass/_pc-layout.scss */
#pcSrcArea .searchForm .word {
  width: 600px;
  border: none;
  outline: none;
}
/* line 391, ../sass/_pc-layout.scss */
#pcSrcArea .searchForm .submit_button {
  position: absolute;
  top: 50%;
  right: 1em;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 18px;
}

/* line 404, ../sass/_pc-layout.scss */
#pnkz {
  background: #F5F5F5;
  font-size: 14px;
  padding: 1em 0;
}
@media screen and (max-width: 1399px) {
  /* line 404, ../sass/_pc-layout.scss */
  #pnkz {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 404, ../sass/_pc-layout.scss */
  #pnkz {
    font-size: 3.73333vw;
  }
}
/* line 409, ../sass/_pc-layout.scss */
#pnkz span:after {
  content: "/";
  margin: 0 0.5em;
}
/* line 415, ../sass/_pc-layout.scss */
#pnkz span:last-of-type:after {
  display: none;
}

/* line 425, ../sass/_pc-layout.scss */
.contHead {
  margin-top: 100px;
  background-position: center;
  height: 148px;
  color: #000;
  position: relative;
}
/* line 433, ../sass/_pc-layout.scss */
.contHead.noContHead {
  height: 0;
}
/* line 447, ../sass/_pc-layout.scss */
.contHead .inner {
  height: 100%;
  position: relative;
}
/* line 451, ../sass/_pc-layout.scss */
.contHead .inner h1 {
  font-size: 46px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  position: absolute;
  top: 46%;
  left: 0;
  margin-top: 0;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
}
@media screen and (max-width: 1399px) {
  /* line 451, ../sass/_pc-layout.scss */
  .contHead .inner h1 {
    font-size: 3.28571vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 451, ../sass/_pc-layout.scss */
  .contHead .inner h1 {
    font-size: 6.4vw;
  }
}

/* line 470, ../sass/_pc-layout.scss */
table {
  border-collapse: collapse;
  border: 1px solid #c7c7c7;
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
}
/* line 476, ../sass/_pc-layout.scss */
table th, table td {
  border: 1px solid #c7c7c7;
  padding: 1em;
  text-align: left;
}
/* line 481, ../sass/_pc-layout.scss */
table th {
  background: #F5F5F5;
  font-weight: bold;
  width: 25%;
}
/* line 486, ../sass/_pc-layout.scss */
table.type2 {
  border-width: 1px 0;
}
/* line 488, ../sass/_pc-layout.scss */
table.type2 th, table.type2 td {
  background: transparent;
  border-width: 1px 0;
}

/* line 498, ../sass/_pc-layout.scss */
section.main {
  padding: 0 0px;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  background: #fff;
  min-height: 70vh;
}
/* line 509, ../sass/_pc-layout.scss */
section.main > h2:first-of-type {
  margin-top: 0;
}
/* line 512, ../sass/_pc-layout.scss */
section.main .aka {
  color: #ff013a;
}
/* line 515, ../sass/_pc-layout.scss */
section.main figure {
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  /* line 515, ../sass/_pc-layout.scss */
  section.main figure {
    margin-bottom: 3.64583vw;
  }
}
/* line 519, ../sass/_pc-layout.scss */
section.main img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}
/* line 523, ../sass/_pc-layout.scss */
section.main img.max {
  width: 100%;
}
/* line 527, ../sass/_pc-layout.scss */
section.main a {
  text-decoration: underline;
}
/* line 529, ../sass/_pc-layout.scss */
section.main a:hover {
  text-decoration: none;
}
/* line 533, ../sass/_pc-layout.scss */
section.main img.bdr {
  border: 1px solid #ccc;
}
/* line 547, ../sass/_pc-layout.scss */
section.main .objFit {
  width: 100%;
  height: 100% !important;
  max-width: none !important;
}
/* line 551, ../sass/_pc-layout.scss */
section.main .objFit.contain {
  object-fit: contain;
  font-family: 'object-fit: contain;';
  /*IE対策*/
}
/* line 555, ../sass/_pc-layout.scss */
section.main .objFit.cover {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}
/* line 560, ../sass/_pc-layout.scss */
section.main .wysiwyg p img {
  vertical-align: middle;
}

/* line 568, ../sass/_pc-layout.scss */
.bgDot {
  background-image: url(../img/bgDot.png);
}

/* line 575, ../sass/_pc-layout.scss */
.bgGreenDot {
  background-image: url(../img/bgGreenDot.png);
}

/* line 582, ../sass/_pc-layout.scss */
.bgGreen {
  background: #1f893b;
}

/* line 589, ../sass/_pc-layout.scss */
.bgYellow {
  background-image: url(../img/kari/bgTopSlide.jpg);
}

/* line 596, ../sass/_pc-layout.scss */
.whiteBox {
  background: #fff;
  color: #333;
  border: 4px solid #000;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  border-radius: 18px;
}
/* line 601, ../sass/_pc-layout.scss */
.whiteBox .bdrBtm {
  border-bottom: 4px solid #000;
}

/* line 609, ../sass/_pc-layout.scss */
.card {
  text-decoration: none !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
}
/* line 614, ../sass/_pc-layout.scss */
.card .newMark {
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url(../img/svg/newMark.svg);
  background-size: 60px 60px;
  background-position: top left;
  top: -3px;
  left: -3px;
  z-index: 2;
}
/* line 626, ../sass/_pc-layout.scss */
.card.is-hidden {
  display: none;
}
/* line 641, ../sass/_pc-layout.scss */
.card .desc {
  color: #333;
}
/* line 644, ../sass/_pc-layout.scss */
.card .date {
  color: #b3b3b3;
  margin-top: 0.5em;
  font-size: 16px;
}
@media screen and (max-width: 1399px) {
  /* line 644, ../sass/_pc-layout.scss */
  .card .date {
    font-size: 1.14286vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 644, ../sass/_pc-layout.scss */
  .card .date {
    font-size: 3.73333vw;
  }
}
/* line 649, ../sass/_pc-layout.scss */
.card .progTitle {
  color: #c95446;
  font-weight: 600;
  font-size: 22px;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 1399px) {
  /* line 649, ../sass/_pc-layout.scss */
  .card .progTitle {
    font-size: 1.57143vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 649, ../sass/_pc-layout.scss */
  .card .progTitle {
    font-size: 4.8vw;
  }
}
/* line 656, ../sass/_pc-layout.scss */
.card .title {
  color: #333;
  margin-top: 0.5em;
  font-weight: 600;
}
/* line 661, ../sass/_pc-layout.scss */
.card .cate {
  background: #666;
  color: #fff;
  font-size: 80%;
  padding: 0.1em 0.5em 0.2em;
  vertical-align: text-bottom;
  text-align: center;
  min-width: 6em;
  margin-right: 0.5em;
}
/* line 670, ../sass/_pc-layout.scss */
.card .cate.news {
  background: #2990d0;
}
/* line 671, ../sass/_pc-layout.scss */
.card .cate.ossm {
  background: #c95446;
}
/* line 672, ../sass/_pc-layout.scss */
.card .cate.event {
  background: #e5a43e;
}
/* line 673, ../sass/_pc-layout.scss */
.card .cate.cate-event {
  background: #e5a43e;
}
/* line 674, ../sass/_pc-layout.scss */
.card .cate.movie {
  background: #1f893b;
}
/* line 675, ../sass/_pc-layout.scss */
.card .cate.cate-movie {
  background: #1f893b;
}
/* line 676, ../sass/_pc-layout.scss */
.card .cate.ann {
  background: #9866d0;
}
/* line 677, ../sass/_pc-layout.scss */
.card .cate.recipe {
  background: #13b5b1;
}
/* line 679, ../sass/_pc-layout.scss */
.card .image {
  position: relative;
  width: 100%;
  margin-bottom: 0.5em;
}
/* line 684, ../sass/_pc-layout.scss */
.card .image.tatePoster:before {
  padding-top: 141.4%;
}
/* line 688, ../sass/_pc-layout.scss */
.card .image:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
/* line 693, ../sass/_pc-layout.scss */
.card .image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}

/* line 711, ../sass/_pc-layout.scss */
.trendsBox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
/* line 714, ../sass/_pc-layout.scss */
.trendsBox .title {
  font-size: 18px;
  font-weight: 600;
  color: #1f893B;
  width: 10em;
  text-align: center;
  padding: 0.5em;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  -webkit-justify-content: center;
  /* 横方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
}
@media screen and (max-width: 1399px) {
  /* line 714, ../sass/_pc-layout.scss */
  .trendsBox .title {
    font-size: 1.28571vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 714, ../sass/_pc-layout.scss */
  .trendsBox .title {
    font-size: 4.8vw;
  }
}
/* line 724, ../sass/_pc-layout.scss */
.trendsBox .trends {
  flex: 1;
  padding: 0.5em;
  border-left: 4px solid #F5F5F5;
  line-height: 2;
}
/* line 730, ../sass/_pc-layout.scss */
.trendsBox .trends a.trend {
  text-decoration: none;
  margin: 0 1em 0 0;
  color: #0c99fb;
  font-weight: 600;
  font-size: 14px;
}
@media screen and (max-width: 1399px) {
  /* line 730, ../sass/_pc-layout.scss */
  .trendsBox .trends a.trend {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 730, ../sass/_pc-layout.scss */
  .trendsBox .trends a.trend {
    font-size: 3.73333vw;
  }
}
/* line 736, ../sass/_pc-layout.scss */
.trendsBox .trends a.trend:hover {
  text-decoration: underline;
}

/* line 746, ../sass/_pc-layout.scss */
.newsList {
  margin-top: 1em;
}
/* line 748, ../sass/_pc-layout.scss */
.newsList .date {
  font-weight: 600;
  padding-right: 1em;
}
/* line 752, ../sass/_pc-layout.scss */
.newsList .cate {
  background: #666;
  color: #fff;
  font-size: 80%;
  padding: 0.5em;
  line-height: 1;
  vertical-align: text-bottom;
  text-align: center;
  min-width: 6em;
  margin-right: 1em;
}
/* line 762, ../sass/_pc-layout.scss */
.newsList .cate.oshirase {
  background: #28822f;
}
/* line 765, ../sass/_pc-layout.scss */
.newsList .cate.kengaku {
  background: #eeb44f;
}
/* line 769, ../sass/_pc-layout.scss */
.newsList li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  border-bottom: 2px dotted #d9d9d9;
  padding: 1em 0;
  margin-bottom: 0;
}
/* line 774, ../sass/_pc-layout.scss */
.newsList li a.title {
  flex: 1;
  text-decoration: none;
}
/* line 777, ../sass/_pc-layout.scss */
.newsList li a.title:hover {
  text-decoration: underline;
}

/* line 785, ../sass/_pc-layout.scss */
.sideNavi .newsList li {
  padding: 0;
}
/* line 787, ../sass/_pc-layout.scss */
.sideNavi .newsList li a {
  width: 100%;
  padding: 1em 0;
}
/* line 790, ../sass/_pc-layout.scss */
.sideNavi .newsList li a span {
  padding: 0.2em 0.5em;
  vertical-align: baseline;
  line-height: 1.7;
}

/* line 803, ../sass/_pc-layout.scss */
.prArea {
  background: #F5F5F5;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  /* line 803, ../sass/_pc-layout.scss */
  .prArea {
    margin: 1em 0;
  }
  /* line 810, ../sass/_pc-layout.scss */
  .prArea .fCol4 {
    margin-bottom: 0.5em !important;
  }
  /* line 813, ../sass/_pc-layout.scss */
  .prArea img {
    width: 100%;
  }
}

/* line 822, ../sass/_pc-layout.scss */
.image16_9 {
  position: relative;
  width: 100%;
  margin-bottom: 0.5em;
  overflow: hidden;
}
/* line 827, ../sass/_pc-layout.scss */
.image16_9:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
/* line 832, ../sass/_pc-layout.scss */
.image16_9 img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}

/* line 849, ../sass/_pc-layout.scss */
.column2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
/* line 851, ../sass/_pc-layout.scss */
.column2 .alpha {
  width: 890px;
}
/* line 854, ../sass/_pc-layout.scss */
.column2 .beta {
  width: 270px;
}
/* line 857, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu {
  border: 10px solid #F5F5F5;
}
/* line 859, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li {
  border-bottom: 2px dotted #c7c7c7;
  margin-bottom: 0;
}
/* line 862, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li a {
  display: block;
  padding: 1em;
  text-decoration: none;
  color: #333;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
/* line 868, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li a.now, .column2 .beta nav.sideNavi ul.menu li a:hover {
  background-color: #FED657;
}
/* line 872, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li a.now.flex .icon, .column2 .beta nav.sideNavi ul.menu li a:hover.flex .icon {
  height: 64px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
/* line 880, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li a.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* line 888, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li a.flex .txt,
.column2 .beta nav.sideNavi ul.menu li a.flex .icon {
  align-self: center;
}
/* line 892, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li a.flex .icon {
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  max-width: 100%;
  height: 1em;
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 902, ../sass/_pc-layout.scss */
.column2 .beta nav.sideNavi ul.menu li:last-of-type {
  border-bottom: none;
}

/* line 914, ../sass/_pc-layout.scss */
.snsArea {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  margin-top: 2em;
}
/* line 917, ../sass/_pc-layout.scss */
.snsArea span {
  align-self: center;
  font-size: 18px;
  margin: 0 0.25em;
  font-weight: 600;
}
@media screen and (max-width: 1399px) {
  /* line 917, ../sass/_pc-layout.scss */
  .snsArea span {
    font-size: 1.28571vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 917, ../sass/_pc-layout.scss */
  .snsArea span {
    font-size: 4.26667vw;
  }
}
/* line 923, ../sass/_pc-layout.scss */
.snsArea a {
  align-self: center;
  width: 36px;
  height: 36px;
  margin: 0 0.15em;
}
@media screen and (min-width: 769px) and (max-width: 1399px) {
  /* line 923, ../sass/_pc-layout.scss */
  .snsArea a {
    width: 2.57143vw;
    height: 2.57143vw;
  }
}

/* line 939, ../sass/_pc-layout.scss */
#alertBox {
  padding-top: 120px;
  margin-bottom: -80px;
}
/* line 942, ../sass/_pc-layout.scss */
#alertBox .alert_toggle {
  margin-bottom: 10px;
  background-color: #E10000;
  border: 3px solid #E10000;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
/* line 947, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_header {
  width: 13em;
  background-color: #E10000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
}
/* line 954, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_body {
  flex: 1;
  background-color: #fff;
  padding-right: 1.5em;
  position: relative;
}
/* line 959, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_body.switch {
  cursor: pointer;
}
/* line 960, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_body.switch:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "" !important;
  font-weight: 600 !important;
  font-size: 1em;
  color: #707070;
  position: absolute;
  right: 0.5em;
  bottom: 0.5em;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
/* line 970, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_body.switch.on:after {
  -moz-transform: translate(0, 0) rotate(-180deg);
  -ms-transform: translate(0, 0) rotate(-180deg);
  -webkit-transform: translate(0, 0) rotate(-180deg);
  transform: translate(0, 0) rotate(-180deg);
}
/* line 975, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_body .body_header {
  padding: 0.5em;
}
/* line 978, ../sass/_pc-layout.scss */
#alertBox .alert_toggle .alert_body .expand {
  display: none;
  padding: 0.5em;
}

/* line 1001, ../sass/_pc-layout.scss */
.acdjs dt {
  padding-right: 4rem;
}
/* line 1003, ../sass/_pc-layout.scss */
.acdjs dt:after {
  font-size: 2.4rem;
}

/* line 1012, ../sass/_pc-layout.scss */
#footer {
  background: #F5F5F5;
  color: #333;
  position: relative;
  padding-top: 12px;
}
/* line 1018, ../sass/_pc-layout.scss */
#footer .fLogo {
  width: 308px;
  height: 40px;
}
/* line 1022, ../sass/_pc-layout.scss */
#footer:before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: -webkit-linear-gradient(45deg, #000 15%, #fff 15%, #fff 50%, #000 50%, #000 65%, #fff 65%, #fff);
  background: linear-gradient(45deg, #000000 15%, #ffffff 15%, #ffffff 50%, #000000 50%, #000000 65%, #ffffff 65%, #ffffff);
  background-size: 8px 8px;
}
/* line 1033, ../sass/_pc-layout.scss */
#footer .inner {
  font-size: 16px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1399px) {
  /* line 1033, ../sass/_pc-layout.scss */
  #footer .inner {
    font-size: 1.14286vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1033, ../sass/_pc-layout.scss */
  #footer .inner {
    font-size: 6.4vw;
  }
}
/* line 1038, ../sass/_pc-layout.scss */
#footer .inner .fNavi {
  border-bottom: 2px dotted #767676;
  padding: 0 6em 1em;
  margin-bottom: 2em;
}
/* line 1043, ../sass/_pc-layout.scss */
#footer .inner .fNavi .btn span {
  width: 220px;
}
/* line 1050, ../sass/_pc-layout.scss */
#footer .inner .menues {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  font-size: 14px;
}
@media screen and (max-width: 1399px) {
  /* line 1050, ../sass/_pc-layout.scss */
  #footer .inner .menues {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1050, ../sass/_pc-layout.scss */
  #footer .inner .menues {
    font-size: 3.73333vw;
  }
}
/* line 1053, ../sass/_pc-layout.scss */
#footer .inner .menues li {
  padding: 0 1em;
  border-right: 1px solid #333;
  line-height: 1;
}
/* line 1057, ../sass/_pc-layout.scss */
#footer .inner .menues li a {
  color: #333;
}
/* line 1060, ../sass/_pc-layout.scss */
#footer .inner .menues li:last-of-type {
  border-right: none;
}
/* line 1065, ../sass/_pc-layout.scss */
#footer .inner .copy {
  font-size: 14px;
  color: #9e9e9e;
}
@media screen and (max-width: 1399px) {
  /* line 1065, ../sass/_pc-layout.scss */
  #footer .inner .copy {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1065, ../sass/_pc-layout.scss */
  #footer .inner .copy {
    font-size: 3.2vw;
  }
}

/* line 1075, ../sass/_pc-layout.scss */
.pagebute {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
/* line 1077, ../sass/_pc-layout.scss */
.pagebute .link_before,
.pagebute .link_next,
.pagebute .link_page,
.pagebute .current_page {
  width: 40px;
  height: 40px;
  border: 2px solid #252525;
  color: #252525;
  margin: 0.5em;
  text-align: center;
  line-height: 35px;
  text-decoration: none !important;
  font-weight: bold;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* line 1093, ../sass/_pc-layout.scss */
.pagebute .link_before:hover,
.pagebute .link_next:hover,
.pagebute .link_page:hover,
.pagebute .current_page:hover {
  background: #252525;
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/* line 1100, ../sass/_pc-layout.scss */
.pagebute .current_page {
  background: #252525;
  color: #fff;
}

/* line 1110, ../sass/_pc-layout.scss */
.presentList .present {
  background: #fff;
  padding: 50px 10px 70px;
  position: relative;
  border: 2px solid #c7c7c7;
  height: 100%;
}
/* line 1116, ../sass/_pc-layout.scss */
.presentList .present .ribbon {
  font-size: 16px;
  min-width: 8em;
  background: #DC000C;
  color: #fff;
  padding: 3px 15px;
  position: absolute;
  top: 10px;
  left: -9px;
}
@media screen and (max-width: 1399px) {
  /* line 1116, ../sass/_pc-layout.scss */
  .presentList .present .ribbon {
    font-size: 1.14286vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1116, ../sass/_pc-layout.scss */
  .presentList .present .ribbon {
    font-size: 3.73333vw;
  }
}
/* line 1125, ../sass/_pc-layout.scss */
.presentList .present .ribbon:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 9px 0;
  border-color: transparent #A7152A transparent transparent;
  position: absolute;
  left: 0;
  bottom: -9px;
}
/* line 1136, ../sass/_pc-layout.scss */
.presentList .present .ribbon:after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  background-image: url(../img/svg/ribbonCut.svg);
  background-size: 10px 100%;
  background-repeat: no-repeat;
  background-position: right center;
}
/* line 1149, ../sass/_pc-layout.scss */
.presentList .present .text {
  min-height: 4em;
}
/* line 1151, ../sass/_pc-layout.scss */
.presentList .present .text .title {
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 1399px) {
  /* line 1151, ../sass/_pc-layout.scss */
  .presentList .present .text .title {
    font-size: 1.14286vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1151, ../sass/_pc-layout.scss */
  .presentList .present .text .title {
    font-size: 3.73333vw;
  }
}
/* line 1155, ../sass/_pc-layout.scss */
.presentList .present .text .date {
  color: #9B9B9B;
  font-size: 14px;
  text-align: left;
}
@media screen and (max-width: 1399px) {
  /* line 1155, ../sass/_pc-layout.scss */
  .presentList .present .text .date {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1155, ../sass/_pc-layout.scss */
  .presentList .present .text .date {
    font-size: 3.2vw;
  }
}
/* line 1160, ../sass/_pc-layout.scss */
.presentList .present .text .win {
  color: #1f893B;
  font-weight: 600;
}
/* line 1165, ../sass/_pc-layout.scss */
.presentList .present .btnBox {
  position: absolute;
  width: 90%;
  bottom: 10px;
  left: 5%;
}
@media screen and (min-width: 769px) and (max-width: 1399px) {
  /* line 1173, ../sass/_pc-layout.scss */
  .presentList .present {
    padding: 3.57143vw 0.71429vw 5vw;
  }
  /* line 1175, ../sass/_pc-layout.scss */
  .presentList .present .ribbon {
    padding: 0.21429vw 1.07143vw;
    top: 0.71429vw;
    left: -0.64286vw;
  }
  /* line 1179, ../sass/_pc-layout.scss */
  .presentList .present .ribbon:before {
    border-width: 0 0.64286vw 0.64286vw 0;
    bottom: -0.64286vw;
  }
  /* line 1183, ../sass/_pc-layout.scss */
  .presentList .present .ribbon:after {
    width: 0.71429vw;
    right: -1px;
    background-size: 0.71429vw 100%;
  }
  /* line 1189, ../sass/_pc-layout.scss */
  .presentList .present .btnBox {
    bottom: 0.71429vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1195, ../sass/_pc-layout.scss */
  .presentList .present {
    padding: 13.33333vw 2.66667vw 2.66667vw;
  }
  /* line 1197, ../sass/_pc-layout.scss */
  .presentList .present .ribbon {
    padding: 0.8vw 4vw;
    top: 2.66667vw;
    left: -2.4vw;
  }
  /* line 1201, ../sass/_pc-layout.scss */
  .presentList .present .ribbon:before {
    border-width: 0 2.4vw 2.4vw 0;
    bottom: -2.4vw;
  }
  /* line 1205, ../sass/_pc-layout.scss */
  .presentList .present .ribbon:after {
    width: 2.66667vw;
    right: -1px;
    background-size: 2.66667vw 100%;
  }
  /* line 1211, ../sass/_pc-layout.scss */
  .presentList .present .spLayout {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: flex-start;
    align-content: flex-start;
  }
  /* line 1213, ../sass/_pc-layout.scss */
  .presentList .present .spLayout .image {
    width: 29.33333vw;
  }
  /* line 1216, ../sass/_pc-layout.scss */
  .presentList .present .spLayout .text {
    flex: 1;
    padding-left: 1em;
  }
  /* line 1221, ../sass/_pc-layout.scss */
  .presentList .present .btnBox {
    position: static;
    width: 100%;
    bottom: unset;
    left: unset;
  }
  /* line 1226, ../sass/_pc-layout.scss */
  .presentList .present .btnBox span {
    font-size: 3.73333vw;
  }
}

/* line 1238, ../sass/_pc-layout.scss */
#ossm {
  padding-top: 30px;
  padding-bottom: 20px;
}
/* line 1257, ../sass/_pc-layout.scss */
#ossm #ossmSlider .slide {
  text-align: center;
  margin: 0 5px;
  border: 4px solid #fff;
  display: block;
  text-decoration: none;
}
/* line 1263, ../sass/_pc-layout.scss */
#ossm #ossmSlider .slide img {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
}
/* line 1269, ../sass/_pc-layout.scss */
#ossm #ossmSlider .next {
  position: absolute;
  width: 67px;
  height: 66px;
  top: 50%;
  right: -84px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}
/* line 1277, ../sass/_pc-layout.scss */
#ossm #ossmSlider .next .btn {
  margin: 0;
}
/* line 1279, ../sass/_pc-layout.scss */
#ossm #ossmSlider .next .btn span {
  border-width: 3px;
}
/* line 1282, ../sass/_pc-layout.scss */
#ossm #ossmSlider .next .btn:after {
  border-width: 3px;
}
/* line 1286, ../sass/_pc-layout.scss */
#ossm #ossmSlider .next .btn:hover span {
  color: #fff;
}
/* line 1290, ../sass/_pc-layout.scss */
#ossm #ossmSlider .next .btn span {
  font-size: 20px;
  line-height: 1;
  padding: 12px 12px 14px 14px;
  color: #1f893b;
}
/* line 1298, ../sass/_pc-layout.scss */
#ossm #ossmSlider .prev {
  position: absolute;
  width: 67px;
  height: 66px;
  top: 50%;
  left: 0px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}
/* line 1306, ../sass/_pc-layout.scss */
#ossm #ossmSlider .prev .btn {
  margin: 0;
}
/* line 1308, ../sass/_pc-layout.scss */
#ossm #ossmSlider .prev .btn span {
  border-width: 3px;
}
/* line 1311, ../sass/_pc-layout.scss */
#ossm #ossmSlider .prev .btn:after {
  border-width: 3px;
}
/* line 1315, ../sass/_pc-layout.scss */
#ossm #ossmSlider .prev .btn:hover span {
  color: #fff;
}
/* line 1319, ../sass/_pc-layout.scss */
#ossm #ossmSlider .prev .btn span {
  font-size: 20px;
  line-height: 1;
  padding: 12px 14px 14px 12px;
  color: #1f893b;
}

/* line 1332, ../sass/_pc-layout.scss */
.bangumiCard {
  border: 1px solid #ccc;
  padding: 0.5em;
  background: #fff;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* line 1340, ../sass/_pc-layout.scss */
  section.main h4 {
    padding: 7px 0 0 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1399px) {
  /* line 6, ../sass/_mid-layout.scss */
  h1, h2, h3, h4 {
    margin-top: 4.28571vw;
  }

  /* line 9, ../sass/_mid-layout.scss */
  h5 {
    margin-top: 4.28571vw;
  }

  /* line 16, ../sass/_mid-layout.scss */
  .inner {
    width: 100%;
  }
  /* line 18, ../sass/_mid-layout.scss */
  .inner.w1200 {
    width: 85.71429vw;
  }
  /* line 21, ../sass/_mid-layout.scss */
  .inner.w1120 {
    width: 80vw;
  }

  /* line 29, ../sass/_mid-layout.scss */
  #header {
    height: 7.14286vw;
    padding-bottom: 0.85714vw;
  }
  /* line 32, ../sass/_mid-layout.scss */
  #header:after {
    height: 0.85714vw;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
  /* line 38, ../sass/_mid-layout.scss */
  #header .inner .logo {
    width: 27.57143vw;
    height: 6.64286vw;
    left: 0.71429vw;
    top: -0.28571vw;
  }
  /* line 44, ../sass/_mid-layout.scss */
  #header .inner .gNavi {
    padding-left: 16.14286vw;
  }
  /* line 47, ../sass/_mid-layout.scss */
  #header .inner .gNavi a img {
    width: 7vw;
    height: 6.64286vw;
  }
  /* line 52, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp {
    width: 7vw;
    height: 6.64286vw;
    background-position: 0 -6.64286vw;
    background-size: 50.64286vw 13.28571vw;
  }
  /* line 61, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs1.now, #header .inner .gNavi a.cssSp#cs1:hover {
    background-position: 0 0;
  }
  /* line 65, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs2 {
    background-position: -7vw -6.64286vw;
  }
  /* line 67, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs2.now, #header .inner .gNavi a.cssSp#cs2:hover {
    background-position: -7vw -1px;
  }
  /* line 71, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs3 {
    background-position: -14vw -6.64286vw;
  }
  /* line 73, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs3.now, #header .inner .gNavi a.cssSp#cs3:hover {
    background-position: -14vw -1px;
  }
  /* line 77, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs4 {
    background-position: -21vw -6.64286vw;
  }
  /* line 79, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs4.now, #header .inner .gNavi a.cssSp#cs4:hover {
    background-position: -21vw -1px;
  }
  /* line 83, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs5 {
    background-position: -28vw -6.64286vw;
  }
  /* line 85, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs5.now, #header .inner .gNavi a.cssSp#cs5:hover {
    background-position: -28vw -1px;
  }
  /* line 89, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs6 {
    width: 8.64286vw;
    background-position: -35vw -6.64286vw;
  }
  /* line 92, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs6.now, #header .inner .gNavi a.cssSp#cs6:hover {
    background-position: -35vw -1px;
  }
  /* line 96, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs7 {
    background-position: -43.64286vw -6.64286vw;
  }
  /* line 98, ../sass/_mid-layout.scss */
  #header .inner .gNavi a.cssSp#cs7.now, #header .inner .gNavi a.cssSp#cs7:hover {
    background-position: -43.64286vw -1px;
  }
  /* line 105, ../sass/_mid-layout.scss */
  #header .inner .sideNavi {
    width: 6.42857vw;
    height: 6.42857vw;
    top: 9vw;
    right: -1px;
    text-align: center;
  }

  /* line 118, ../sass/_mid-layout.scss */
  #pcSrcArea {
    top: 6.28571vw;
    padding: 2.85714vw;
  }
  /* line 121, ../sass/_mid-layout.scss */
  #pcSrcArea .searchForm {
    width: 48.57143vw;
  }
  /* line 123, ../sass/_mid-layout.scss */
  #pcSrcArea .searchForm .word {
    width: 42.85714vw;
  }
  /* line 126, ../sass/_mid-layout.scss */
  #pcSrcArea .searchForm .submit_button {
    width: 1.28571vw;
  }

  /* line 155, ../sass/_mid-layout.scss */
  .contHead {
    margin-top: 7.14286vw;
    height: 10.57143vw;
  }

  /* line 164, ../sass/_mid-layout.scss */
  section.main {
    padding-top: 4.28571vw !important;
    padding-bottom: 4.28571vw !important;
  }

  /* line 172, ../sass/_mid-layout.scss */
  .whiteBox {
    border: 4px solid #000;
    -moz-border-radius: 1.28571vw;
    -webkit-border-radius: 1.28571vw;
    border-radius: 1.28571vw;
  }
  /* line 175, ../sass/_mid-layout.scss */
  .whiteBox .bdrBtm {
    border-bottom: 0.28571vw solid #000;
  }

  /* line 184, ../sass/_mid-layout.scss */
  .card .newMark {
    width: 4.28571vw;
    height: 4.28571vw;
    background-size: 4.28571vw 4.28571vw;
    top: -0.21429vw;
    left: -0.21429vw;
  }

  /* line 198, ../sass/_mid-layout.scss */
  .trendsBox .title img.icon {
    width: 1.64286vw;
    height: 1.07143vw;
  }

  /* line 209, ../sass/_mid-layout.scss */
  ul.newsList li {
    border-bottom: 0.14286vw dotted #d9d9d9;
  }

  /* line 219, ../sass/_mid-layout.scss */
  .column2 .alpha {
    width: 63.57143vw;
  }
  /* line 222, ../sass/_mid-layout.scss */
  .column2 .beta {
    width: 19.28571vw;
  }
  /* line 225, ../sass/_mid-layout.scss */
  .column2 .beta nav.sideNavi ul.menu {
    border: 0.71429vw solid #F5F5F5;
  }
  /* line 240, ../sass/_mid-layout.scss */
  .column2 .beta nav.sideNavi ul.menu li a.now.flex .icon, .column2 .beta nav.sideNavi ul.menu li a:hover.flex .icon {
    height: 4.57143vw;
  }

  /* line 280, ../sass/_mid-layout.scss */
  .wysiwyg ul li:before {
    width: 0.64286vw;
    height: 0.64286vw;
    border-radius: 0.64286vw;
  }

  /* line 292, ../sass/_mid-layout.scss */
  #alertBox {
    padding-top: 8.57143vw;
    margin-bottom: -5.71429vw;
  }
  /* line 295, ../sass/_mid-layout.scss */
  #alertBox .alert_toggle {
    margin-bottom: 0.71429vw;
  }

  /* line 365, ../sass/_mid-layout.scss */
  #footer {
    padding-top: 0.85714vw;
  }
  /* line 367, ../sass/_mid-layout.scss */
  #footer .fLogo {
    width: 22vw;
    height: 2.85714vw;
  }
  /* line 371, ../sass/_mid-layout.scss */
  #footer:before {
    border-top: 0.14286vw solid #000;
    border-bottom: 0.14286vw solid #000;
    height: 0.85714vw;
  }
  /* line 376, ../sass/_mid-layout.scss */
  #footer .inner {
    padding-top: 2.85714vw;
    padding-bottom: 2.85714vw;
  }
  /* line 379, ../sass/_mid-layout.scss */
  #footer .inner .fNavi {
    border-bottom: 0.14286vw dotted #767676;
  }
  /* line 382, ../sass/_mid-layout.scss */
  #footer .inner .fNavi .btn span {
    width: 15.71429vw;
  }

  /* line 395, ../sass/_mid-layout.scss */
  .pagebute .link_before,
  .pagebute .link_next,
  .pagebute .link_page,
  .pagebute .current_page {
    width: 2.85714vw;
    height: 2.85714vw;
    line-height: 2.5vw;
  }

  /* line 427, ../sass/_mid-layout.scss */
  #pageTop {
    right: 0.71429vw;
    width: 8.14286vw;
    height: 10vw;
  }
  /* line 433, ../sass/_mid-layout.scss */
  #pageTop a {
    width: 8.14286vw;
    height: 10vw;
  }

  /* line 453, ../sass/_mid-layout.scss */
  #ossm {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  /* line 456, ../sass/_mid-layout.scss */
  #ossm .whiteBox {
    padding: 2vw 2.85714vw 0.71429vw;
  }
  /* line 458, ../sass/_mid-layout.scss */
  #ossm .whiteBox h2 {
    width: 19.42857vw;
    height: 19.28571vw;
    left: 2.14286vw;
    top: -1.28571vw;
  }
  /* line 464, ../sass/_mid-layout.scss */
  #ossm .whiteBox #ossmSlider {
    width: 58.14286vw;
    margin-left: 21.07143vw;
  }
  /* line 467, ../sass/_mid-layout.scss */
  #ossm .whiteBox #ossmSlider .slide {
    margin: 0 0.35714vw;
  }
  /* line 470, ../sass/_mid-layout.scss */
  #ossm .whiteBox #ossmSlider .next {
    width: 4.78571vw;
    height: 4.71429vw;
    right: -6vw;
  }
  /* line 476, ../sass/_mid-layout.scss */
  #ossm .whiteBox #ossmSlider .next .btn span {
    font-size: 1.42857vw;
    padding: 0.85714vw 0.85714vw 1vw 1vw;
  }
  /* line 482, ../sass/_mid-layout.scss */
  #ossm .whiteBox #ossmSlider .prev {
    width: 4.78571vw;
    height: 4.71429vw;
  }
  /* line 487, ../sass/_mid-layout.scss */
  #ossm .whiteBox #ossmSlider .prev .btn span {
    font-size: 1.42857vw;
    padding: 0.85714vw 1vw 1vw 0.85714vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, ../sass/_sp-layout.scss */
  #bodyOuter #wrapper .ovWidthSp {
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding-left: calc(((100vw - 100%) / 2) * 1);
    padding-right: calc(((100vw - 100%) / 2) * 1);
  }
  /* line 33, ../sass/_sp-layout.scss */
  #bodyOuter #wrapper .ovLeftSp {
    margin-left: calc(((100vw - 100%) / 2) * -1);
    padding-left: calc(((100vw - 100%) / 2) * 1);
  }
  /* line 37, ../sass/_sp-layout.scss */
  #bodyOuter #wrapper .ovRightSp {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding-right: calc(((100vw - 100%) / 2) * 1);
  }

  /* line 45, ../sass/_sp-layout.scss */
  h1, h2, h3, h4 {
    margin-top: 7.8125vw;
  }

  /* line 48, ../sass/_sp-layout.scss */
  h5 {
    margin-top: 7.8125vw;
  }

  /* line 52, ../sass/_sp-layout.scss */
  #blackBg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 8;
  }

  /* line 62, ../sass/_sp-layout.scss */
  .pcOnly {
    display: none !important;
  }

  /* line 63, ../sass/_sp-layout.scss */
  .spOnly {
    display: block;
  }

  /* line 78, ../sass/_sp-layout.scss */
  .inner {
    width: 100%;
    padding: 0;
  }
  /* line 82, ../sass/_sp-layout.scss */
  .inner.w1200 {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 1em;
  }
  /* line 90, ../sass/_sp-layout.scss */
  .inner.w1120 {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  /* line 100, ../sass/_sp-layout.scss */
  .wysiwyg ol {
    padding-left: 0;
  }
  /* line 104, ../sass/_sp-layout.scss */
  .wysiwyg ul {
    margin-left: 0;
    padding-left: 1.2em;
  }
  /* line 108, ../sass/_sp-layout.scss */
  .wysiwyg ul li:before {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 2.4vw;
  }
  /* line 115, ../sass/_sp-layout.scss */
  .wysiwyg table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
  }

  /* line 127, ../sass/_sp-layout.scss */
  #header {
    height: 18.93333vw;
    padding-bottom: 2.13333vw;
  }
  /* line 130, ../sass/_sp-layout.scss */
  #header:after {
    height: 2.13333vw;
  }
  /* line 134, ../sass/_sp-layout.scss */
  #header .inner .logo {
    width: 48.53333vw;
    height: 5.33333vw;
    left: 8vw;
    top: 5.86667vw;
  }
  /* line 142, ../sass/_sp-layout.scss */
  #header .inner .logo img {
    width: 100%;
  }
  /* line 150, ../sass/_sp-layout.scss */
  #header .inner .gNavi {
    display: none;
  }
  /* line 176, ../sass/_sp-layout.scss */
  #header .inner .sideNavi {
    display: none;
  }
  /* line 185, ../sass/_sp-layout.scss */
  #header .inner .spMenu {
    position: absolute;
    top: 0;
    right: 0;
  }
  /* line 189, ../sass/_sp-layout.scss */
  #header .inner .spMenu img {
    width: 17.06667vw;
    height: 17.6vw;
  }

  /* line 200, ../sass/_sp-layout.scss */
  #pcSrcArea {
    display: none;
  }

  /* line 207, ../sass/_sp-layout.scss */
  #spGNavi {
    display: block;
    position: fixed;
    background: #1f893B;
    color: #fff;
    width: 100%;
    height: 100vh;
    top: 0;
    right: -120vw;
    z-index: 12;
    padding: 1em 0;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    overflow-x: hidden;
    overflow-y: auto;
  }
  /* line 219, ../sass/_sp-layout.scss */
  #spGNavi.is-active {
    right: 0;
  }
  /* line 224, ../sass/_sp-layout.scss */
  #spGNavi .close01 {
    width: 11.2vw;
    height: 12.53333vw;
  }
  /* line 228, ../sass/_sp-layout.scss */
  #spGNavi .close02 {
    width: 26.4vw;
    height: 7.73333vw;
  }
  /* line 232, ../sass/_sp-layout.scss */
  #spGNavi .in {
    padding: 0 5.33333vw 16vw;
  }
  /* line 234, ../sass/_sp-layout.scss */
  #spGNavi .in .searchForm {
    background: #fff;
    border: 2px solid #000;
    padding: 0.5em 1em;
    position: relative;
    -moz-border-radius: 3em;
    -webkit-border-radius: 3em;
    border-radius: 3em;
  }
  /* line 240, ../sass/_sp-layout.scss */
  #spGNavi .in .searchForm .word {
    width: 73.6vw;
    border: none;
    outline: none;
  }
  /* line 245, ../sass/_sp-layout.scss */
  #spGNavi .in .searchForm .submit_button {
    position: absolute;
    top: 50%;
    right: 1em;
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 4.8vw;
  }
  /* line 253, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox {
    border-width: 2px;
    padding: 2.66667vw 2.66667vw 1.86667vw;
    margin-top: 2.66667vw;
    margin-bottom: 2.66667vw;
    -moz-border-radius: 2.66667vw;
    -webkit-border-radius: 2.66667vw;
    border-radius: 2.66667vw;
  }
  /* line 260, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .mainNavi .fCol2 {
    margin-bottom: 0.8vw !important;
  }
  /* line 262, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .mainNavi .fCol2 img {
    width: 100%;
  }
  /* line 267, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .subNavi {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    border-bottom: 1px solid #acacac;
    margin-top: 1.5em;
  }
  /* line 271, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .subNavi a {
    display: block;
    width: 50%;
    border-top: 1px solid #acacac;
    padding: 0.8em 1.2em 0.8em 0.5em;
    color: #333;
    font-weight: 600;
    position: relative;
  }
  /* line 279, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .subNavi a:after {
    content: "▶";
    position: absolute;
    font-size: 50%;
    top: 50%;
    right: 0.5em;
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  /* line 287, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .subNavi a:nth-of-type(2n) {
    border-left: 1px solid #acacac;
  }
  /* line 292, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .wysiwyg {
    padding: 0;
  }
  /* line 294, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .wysiwyg ul {
    margin-left: 0;
    padding-left: 1.5em;
  }
  /* line 298, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .wysiwyg ul li:before {
    background: #1f893B;
  }
  /* line 305, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .spGNBanners a {
    display: block;
    margin-bottom: 0.5em;
  }
  /* line 308, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .spGNBanners a img {
    width: 100%;
  }
  /* line 314, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .spSNS a {
    margin: 0 0.5em;
  }
  /* line 316, ../sass/_sp-layout.scss */
  #spGNavi .in .whiteBox .spSNS a img {
    width: 13.06667vw;
    height: 13.06667vw;
  }

  /* line 342, ../sass/_sp-layout.scss */
  #pageTop {
    width: 11.71875vw;
    height: 11.71875vw;
    bottom: 1.30208vw;
    right: 1.30208vw;
  }
  /* line 347, ../sass/_sp-layout.scss */
  #pageTop a {
    width: 11.71875vw;
    height: 11.71875vw;
  }
  /* line 350, ../sass/_sp-layout.scss */
  #pageTop a i {
    font-size: 10.41667vw;
  }

  /* line 359, ../sass/_sp-layout.scss */
  #pnkz {
    display: none;
  }

  /* line 367, ../sass/_sp-layout.scss */
  .contHead {
    margin-top: 18.93333vw;
    height: auto;
  }
  /* line 371, ../sass/_sp-layout.scss */
  .contHead .inner h1 {
    position: static;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    padding: 1em 0.5em;
  }

  /* line 388, ../sass/_sp-layout.scss */
  table th, table td {
    padding: 0.5em;
    width: auto !important;
  }
  /* line 394, ../sass/_sp-layout.scss */
  table th {
    width: 33.3333%;
  }

  /* line 411, ../sass/_sp-layout.scss */
  section.main {
    padding-top: 0 !important;
    padding-bottom: 13.02083vw !important;
  }
  /* line 414, ../sass/_sp-layout.scss */
  section.main h2 {
    margin-bottom: 7.8125vw;
  }
  /* line 424, ../sass/_sp-layout.scss */
  section.main h3:before {
    content: "";
    height: 0.9em;
  }
  /* line 429, ../sass/_sp-layout.scss */
  section.main h4 {
    line-height: 1.2;
  }

  /* line 438, ../sass/_sp-layout.scss */
  .card .spflex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
  }
  /* line 440, ../sass/_sp-layout.scss */
  .card .spflex .image {
    width: 32vw;
  }
  /* line 443, ../sass/_sp-layout.scss */
  .card .spflex .txt {
    flex: 1;
    padding-left: 1em;
  }
  /* line 446, ../sass/_sp-layout.scss */
  .card .spflex .txt .date {
    margin-top: 0;
  }
  /* line 449, ../sass/_sp-layout.scss */
  .card .spflex .txt .title {
    font-size: 3.73333vw;
    margin-top: 0.3em;
    line-height: 1.2;
  }
  /* line 456, ../sass/_sp-layout.scss */
  .card .newMark {
    width: 13.33333vw;
    height: 13.33333vw;
    background-size: 13.33333vw 13.33333vw;
    top: -0.53333vw;
    left: -0.53333vw;
  }

  /* line 468, ../sass/_sp-layout.scss */
  .trendsBox {
    border: 4px solid #1f893B;
  }
  /* line 471, ../sass/_sp-layout.scss */
  .trendsBox .title {
    font-size: 4.8vw;
    width: 100%;
    padding: 0.5em;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    -webkit-justify-content: center;
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    /* 横方向中央揃え */
  }
  /* line 480, ../sass/_sp-layout.scss */
  .trendsBox .title img.icon {
    width: 6.13333vw;
    height: 4vw;
  }
  /* line 485, ../sass/_sp-layout.scss */
  .trendsBox .trends {
    flex: unset;
    width: 100%;
    line-height: 2;
    font-size: 3.73333vw;
  }

  /* line 508, ../sass/_sp-layout.scss */
  ul.newsList {
    margin-top: 0;
    margin-bottom: 1em;
  }
  /* line 537, ../sass/_sp-layout.scss */
  ul.newsList li a.title {
    flex: unset;
    width: 100%;
    margin-top: 0.5em;
  }

  /* line 554, ../sass/_sp-layout.scss */
  .column2 .alpha {
    width: 100%;
  }
  /* line 557, ../sass/_sp-layout.scss */
  .column2 .beta {
    width: 100%;
  }
  /* line 575, ../sass/_sp-layout.scss */
  .column2 .beta nav.sideNavi ul.menu li a.now.flex .icon, .column2 .beta nav.sideNavi ul.menu li a:hover.flex .icon {
    height: 17.06667vw;
  }

  /* line 617, ../sass/_sp-layout.scss */
  .snsArea {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    margin: 1em 0;
  }
  /* line 620, ../sass/_sp-layout.scss */
  .snsArea span {
    width: 100%;
    text-align: center;
  }
  /* line 627, ../sass/_sp-layout.scss */
  .snsArea a {
    width: 11.2vw;
    height: 11.2vw;
    margin: 0 0.5em;
  }
  /* line 632, ../sass/_sp-layout.scss */
  .snsArea a img {
    width: 100%;
  }

  /* line 641, ../sass/_sp-layout.scss */
  #alertBox {
    padding: 18.66667vw 0 0 0 !important;
    margin: 0 0 -13.33333vw 0 !important;
  }
  /* line 644, ../sass/_sp-layout.scss */
  #alertBox .alert_toggle {
    margin-bottom: 2.66667vw;
    border: 3px solid #E10000;
  }
  /* line 649, ../sass/_sp-layout.scss */
  #alertBox .alert_toggle .alert_header {
    width: 100%;
  }
  /* line 656, ../sass/_sp-layout.scss */
  #alertBox .alert_toggle .alert_body {
    flex: unset;
    width: 100%;
  }

  /* line 701, ../sass/_sp-layout.scss */
  #ossm {
    padding-top: 0;
    padding-bottom: 0;
    height: 40vw;
  }
  /* line 706, ../sass/_sp-layout.scss */
  #ossm #ossmSlider.slick-dotted.slick-slider {
    margin-bottom: 2.66667vw;
  }
  /* line 709, ../sass/_sp-layout.scss */
  #ossm #ossmSlider .slick-dots {
    bottom: -5.33333vw;
  }
  /* line 711, ../sass/_sp-layout.scss */
  #ossm #ossmSlider .slick-dots li {
    margin: 0;
  }
  /* line 713, ../sass/_sp-layout.scss */
  #ossm #ossmSlider .slick-dots li button:before {
    color: #fff;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  /* line 718, ../sass/_sp-layout.scss */
  #ossm #ossmSlider .slick-dots li.slick-active button:before {
    color: #FED657;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  /* line 731, ../sass/_sp-layout.scss */
  #ossm #ossmSlider .slide img {
    object-fit: cover;
    width: 100%;
  }

  /* line 802, ../sass/_sp-layout.scss */
  #pageTop {
    bottom: 10.41667vw;
    right: 2.60417vw;
    width: 17.70833vw;
    height: 17.70833vw;
  }
  /* line 807, ../sass/_sp-layout.scss */
  #pageTop a {
    width: 17.70833vw;
    height: 17.70833vw;
    line-height: 17.70833vw;
  }
  /* line 811, ../sass/_sp-layout.scss */
  #pageTop a img {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  /* line 822, ../sass/_sp-layout.scss */
  .pagebute .link_before,
  .pagebute .link_next,
  .pagebute .link_page,
  .pagebute .current_page {
    width: 10.66667vw;
    height: 10.66667vw;
    border: 0.53333vw solid #252525;
    margin: 1.06667vw;
    line-height: 9.33333vw;
  }

  /* line 855, ../sass/_sp-layout.scss */
  .acdjs dt, .acdjs dd {
    padding: 1em 3.5em 1em 1em;
  }
  /* line 858, ../sass/_sp-layout.scss */
  .acdjs dt {
    margin-top: 1.5em;
  }
  /* line 860, ../sass/_sp-layout.scss */
  .acdjs dt .intBtn {
    width: 8vw;
    height: 8vw;
    right: 0;
    -moz-transform: translate(-25%, -50%) scale(0.7);
    -ms-transform: translate(-25%, -50%) scale(0.7);
    -webkit-transform: translate(-25%, -50%) scale(0.7);
    transform: translate(-25%, -50%) scale(0.7);
  }
  /* line 869, ../sass/_sp-layout.scss */
  .acdjs dt:before {
    left: 0.3em;
  }
  /* line 873, ../sass/_sp-layout.scss */
  .acdjs dd {
    padding: 1em;
  }
  /* line 875, ../sass/_sp-layout.scss */
  .acdjs dd:before {
    left: 0.3em;
  }

  /* line 885, ../sass/_sp-layout.scss */
  #footer:before {
    height: 2.13333vw;
  }
  /* line 888, ../sass/_sp-layout.scss */
  #footer .inner {
    padding-top: 0;
    padding-bottom: 2.66667vw;
  }
  /* line 891, ../sass/_sp-layout.scss */
  #footer .inner .fLogo {
    width: 53.33333vw;
    height: auto;
  }
}
@media print {
  /* line 50, ../sass/common.scss */
  body {
    -webkit-print-color-adjust: exact;
    width: 1280px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
}


/* 20240725追加 snsページ改修 */
.snsItem {
  width: calc( ( 100% - 20px ) / 2 );
  margin-left: 0 !important;
  margin-right: 20px !important;
  padding: 20px 0;
}
.snsItem:nth-child(even) {
  margin-right: 0 !important;
}
.snsItem .flex {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.snsItem .snsImg {
  width: 100px;
  height: 100px;
}
.snsItem .snsImg img {
  border-radius: 50%;
  border: 1px solid #e0e0e0;
}
.snsItem .snsCont {
  width: calc(100% - 120px);
  margin-left: 20px;
}
.snsItem .snsCont .snsTit {
  border-left: 0 !important;
  padding-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}
.snsItem .snsCont .snsText {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .snsItem {
    padding: 15px 0;
    margin-right: 0 !important;
  }
}
.snsLinks {
  justify-content: flex-start;
  padding-left: 0 !important;
}
.snsLinks > li {
  width: 40px;
  max-height: 40px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.snsLinks > li:nth-child( 7n + 1 ) {
  margin-left: 0 !important;
}
@media screen and (max-width:768px) {
  .snsLinks > li:nth-child( 7n + 1 ) {
    margin-left: 20px !important;
  }
  .snsLinks > li:nth-child( 4n + 1 ) {
    margin-left: 0 !important;
  }
}
.snsLinks > li::before {
  content: none !important;
  width: 0;
  height: 0;
}
.snsLinks > li > a {
  width: 100%;
}
.snsLinks > li > a .snsIcon {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 3px;
}
.snsLinks > li > a .snsIconTwitter {
  background-image: url(/img/svg/icon_x.png);
}
.snsLinks > li > a .snsIconInstagram {
  background-image: url(/img/svg/icon_instagram.svg);
}
.snsLinks > li > a .snsIconLine {
  background-image: url(/img/svg/icon_line.png);
}
.snsLinks > li > a .snsIconYoutube {
  background-image: url(/img/svg/icon_youtube.svg);
}
.snsLinks > li > a .snsIconFacebook {
  background-image: url(/img/svg/icon_facebook.png);
}

/* フッター */
#footer .footerBanner {
  width: calc( 880px + 3vw );
  margin: 0 auto 20px;
}
#footer .footerBanner img {
  border-radius: 50px;
  -webkit-box-shadow: 0 2px 5px #ccc;
  box-shadow: 0 2px 5px #ccc;
}
@media screen and (min-width: 769px) and (max-width: 1399px) {
  #footer .footerBanner {
    width: 65.85716vw;
  }
}


/* 20250328 */
.anaNoLink {
  width: calc(90% - 1em);
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  padding: 0.2em 0 0.3em 0 !important;
  background: #FFF;
  border: 2px solid #000;
  border-radius: 3em;
  color: #000;
  z-index: 1;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
}
.anaNoLink.tenki::after {
  display: block;
  content: "気象予報士";
  font-size: 10px;
}
@media screen and (max-width:768px) {
  .anaNoLink {
    width: calc( 100% - 1em );
    margin-top: 0.5em;
    margin-bottom: 0;
    font-size: 3.73333vw;
    bottom: -55px;
  }
}