@charset "UTF-8";
:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: calc(0.8333333333 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: calc(1.3333333333 * var(--vw));
  }
}

body {
  color: #222;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.mainSection {
  margin-top: calc(7.0833333333 * var(--vw));
  margin-bottom: calc(8.3333333333 * var(--vw));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .mainSection {
    margin-top: calc(10.6666666667 * var(--vw));
    margin-bottom: calc(16 * var(--vw));
  }
}

.contents_wrapper {
  display: flex;
  flex-direction: column;
  width: calc(100% - 24.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_wrapper {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    overflow: hidden;
  }
}

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

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

.btn {
  display: inline-block;
  width: 220px;
  height: 55px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .btn {
    width: 60%;
    margin: 30px auto 0;
  }
}
.btn:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 20px;
  position: absolute;
  transition: 0.3s;
}
.btn:hover {
  background-color: #fff;
  border-color: #333;
  color: #333;
}
.btn:hover:after {
  right: 18px;
  border-color: #333;
}
.btn span {
  display: block;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.6;
}

.sec_in {
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 20px + (100vw - 767px) * (30 - 20) / (1400 - 767), 30px);
}
.sec_in.sec_in_bg {
  padding: clamp(60px, 60px + (100vw - 767px) * (120 - 60) / (1400 - 767), 120px) clamp(20px, 20px + (100vw - 767px) * (30 - 20) / (1400 - 767), 30px);
}

.topic_path {
  display: flex;
  margin: 10px auto 50px;
  width: 1100px;
}
@media only screen and (max-width: 767px) {
  .topic_path {
    max-width: inherit;
    display: none;
  }
}
.topic_path li {
  margin-right: 10px;
  font-size: 12px;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}
.topic_path li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
}
.topic_path li:first-child {
  padding-left: 0;
}
.topic_path li:first-child:before {
  display: none;
}
.topic_path li a {
  display: block;
  font-size: 12px;
}
.topic_path li a:hover {
  text-decoration: underline;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.txt_c {
  text-align: center !important;
}

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

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

.txt_w {
  color: #fff;
}

.txt_b {
  color: #000;
}

.txt_base {
  color: #231815;
}

.f-serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}

.mt25-120 {
  margin-top: calc(2.0833333333 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .mt25-120 {
    margin-top: calc(16 * var(--vw)) !important;
  }
}

.header {
  height: calc(7.0833333333 * var(--vw));
  width: 100%;
  top: 0;
  z-index: 100;
  background: #fff;
  position: fixed;
  /* box-shadow */
}
@media only screen and (max-width: 767px) {
  .header {
    height: calc(10.6666666667 * var(--vw));
    display: flex;
    justify-content: flex-start;
  }
}
.header .header_in {
  height: calc(7 * var(--vw));
  margin: 0 auto;
  margin-top: calc(-0.25 * var(--vw));
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media only screen and (max-width: 767px) {
  .header .header_in {
    width: 100%;
    height: calc(10.6666666667 * var(--vw));
    justify-content: flex-start;
  }
}
.header .header_in .top_logo {
  width: 47%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 calc(4.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .header .header_in .top_logo {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .header .header_in .menu_box {
    width: 53%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header .header_in .menu_box .menu1 {
    width: calc(11.6666666667 * var(--vw));
    text-align: right;
    font-size: calc(1.3333333333 * var(--vw));
    font-weight: 600;
  }
  .header .header_in .menu_box .menu1 a {
    height: calc(8.3333333333 * var(--vw));
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header .header_in .menu_box .menu1 a:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .header .header_in .menu_box .menu1 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .header .header_in .menu_box .menu2 {
    background-image: url(../img/common/menu-y.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    width: calc(16.6666666667 * var(--vw));
    font-size: calc(1.3333333333 * var(--vw));
    font-weight: 600;
  }
  .header .header_in .menu_box .menu2 a {
    height: calc(8.3333333333 * var(--vw));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header_in .menu_box .menu2 a:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .header .header_in .menu_box .menu2 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .header .header_in .menu_box .menu3 {
    text-align: center;
    width: calc(10 * var(--vw));
    font-size: calc(1.3333333333 * var(--vw));
    font-weight: 600;
  }
  .header .header_in .menu_box .menu3 a {
    height: calc(8.3333333333 * var(--vw));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header_in .menu_box .menu3 a:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .header .header_in .menu_box .menu3 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .header .header_in .menu_box .menu4 {
    text-align: center;
    color: #fff;
    background-image: url(../img/common/menu-g.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    width: calc(18 * var(--vw));
    font-size: calc(1.3333333333 * var(--vw));
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(8.3333333333 * var(--vw));
  }
  .header .header_in .menu_box .menu4 .tel {
    font-size: calc(1.8333333333 * var(--vw));
    font-weight: 600;
    padding-left: calc(2.5 * var(--vw));
  }
  .header .header_in .menu_box .menu4 .info {
    font-size: calc(0.8333333333 * var(--vw));
    padding-left: calc(2.5 * var(--vw));
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .header .header_in .menu_box .menu4 {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in .menu_box {
    display: none;
  }
}
.header .header_in h1 {
  font-size: calc(2.3333333333 * var(--vw));
  color: #231815;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .header .header_in h1 {
    top: 20px;
    font-size: calc(3.7333333333 * var(--vw));
    width: 20%;
  }
}
.header .header_in h1 img {
  height: calc(7.5 * var(--vw));
}
.header .header_in .ttl1 {
  font-size: calc(1.1666666667 * var(--vw));
  line-height: calc(1.6666666667 * var(--vw));
  font-weight: 600;
  padding-left: calc(2.0833333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .header .header_in .ttl1 {
    font-size: calc(2.9333333333 * var(--vw));
    line-height: calc(3.7333333333 * var(--vw));
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .header .header_in .telinfo {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav {
    width: 100%;
    position: absolute;
    top: calc(8 * var(--vw));
    left: 0;
    right: 0;
  }
  .header .header_in nav .telinfo {
    display: flex;
    justify-content: center;
    padding-top: calc(4 * var(--vw));
  }
  .header .header_in nav .telinfo .tel {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
    padding-left: calc(4 * var(--vw));
  }
  .header .header_in nav .telinfo .info {
    font-size: calc(2.6666666667 * var(--vw));
    padding-left: calc(4 * var(--vw));
  }
}
.header .header_in nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul {
    display: none;
    height: 100vh;
  }
}
.header .header_in nav ul li {
  position: relative;
}
.header .header_in nav ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 14px;
  background-color: #aaa;
}
.header .header_in nav ul li a {
  font-weight: bold;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul li a {
    border-bottom: 1px solid #ddd;
    padding: 18px;
    position: relative;
    font-size: calc(2.9333333333 * var(--vw));
  }
  .header .header_in nav ul li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 25px;
  }
}
.header .header_in nav ul li a:hover {
  opacity: 0.6;
}
.header .header_in .hum_menu {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .header .header_in .hum_menu {
    padding: calc(1.3333333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header .hum_box {
    position: absolute;
    right: calc(2 * var(--vw));
    top: calc(1.3333333333 * var(--vw));
    width: calc(9.4666666667 * var(--vw));
    height: calc(10.2666666667 * var(--vw));
    background-image: url(../img/menu_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.header .nav_toggle {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header .nav_toggle {
    display: block;
    width: calc(6.9333333333 * var(--vw));
    height: calc(5.3333333333 * var(--vw));
    position: absolute;
    top: calc(1.3333333333 * var(--vw));
    z-index: 100;
    right: calc(1.3333333333 * var(--vw));
    transition: 0.2s;
    /*開閉ボタンopen時*/
  }
  .header .nav_toggle span {
    display: block;
    height: calc(0.8 * var(--vw));
    background: #fde0a8;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.3s ease-in-out;
  }
  .header .nav_toggle span:nth-child(1) {
    top: 0;
  }
  .header .nav_toggle span:nth-child(2) {
    top: calc(2.1333333333 * var(--vw));
  }
  .header .nav_toggle span:nth-child(3) {
    top: calc(4.2666666667 * var(--vw));
  }
  .header .nav_toggle.open {
    top: calc(0.5333333333 * var(--vw));
  }
  .header .nav_toggle.open span:nth-child(1) {
    top: calc(3.2 * var(--vw));
    transform: rotate(135deg);
  }
  .header .nav_toggle.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .header .nav_toggle.open span:nth-child(3) {
    top: calc(3.2 * var(--vw));
    transform: rotate(-135deg);
  }
}

.footer {
  background: #00360C;
  padding: calc(2.0833333333 * var(--vw)) 0;
  bottom: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: calc(3.7333333333 * var(--vw)) 0;
    width: 100%;
    position: initial;
  }
}
.footer .footer_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in {
    align-items: center;
  }
}
.footer .footer_in nav {
  margin-bottom: 40px;
}
.footer .footer_in nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 25px;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in nav ul {
    display: none;
  }
}
.footer .footer_in nav ul li {
  position: relative;
}
.footer .footer_in nav ul li a {
  transition: 0.2s;
}
.footer .footer_in nav ul li a:hover {
  opacity: 0.4;
}
.footer .footer_in .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: calc(1.5 * var(--vw));
  line-height: calc(1.5 * var(--vw));
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .menu {
    width: 100%;
    font-size: calc(2.6666666667 * var(--vw));
    line-height: calc(1.6666666667 * var(--vw));
  }
}
.footer .footer_in .menu .br {
  border-right: solid 1px #fff;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .menu .br {
    width: 47%;
    border-right: initial;
  }
}
.footer .footer_in .menu .br_n {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .menu .br_n {
    width: 47%;
  }
}
.footer .footer_in .menu .waku_a {
  padding: calc(0.1666666667 * var(--vw)) calc(3.75 * var(--vw));
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .menu .waku_a {
    padding: calc(0.6666666667 * var(--vw)) calc(6 * var(--vw));
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
.footer .footer_in .menu .waku_n {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .menu .waku_n {
    padding: calc(0.6666666667 * var(--vw)) calc(6.1333333333 * var(--vw));
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
.footer .footer_in .logo {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer .footer_in .logo {
    font-size: calc(2.5333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  .footer .footer_in .logo {
    font-size: calc(1.4166666667 * var(--vw));
  }
}
.footer .footer_in .c_right {
  font-size: 10px;
  text-align: center;
  line-height: 1.4;
}
.footer-logo {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: space-between;
  padding: calc(6.6666666667 * var(--vw)) 0;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer-logo {
    padding: calc(8 * var(--vw)) calc(1.3333333333 * var(--vw));
    width: 85%;
    justify-content: center;
    gap: 5%;
    align-items: center;
  }
}
.footer-logo .logo {
  width: calc(24.1666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .footer-logo .logo {
    width: 35%;
  }
}
.footer-logo .adrs {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(1.5833333333 * var(--vw));
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .footer-logo .adrs {
    width: 60%;
    font-size: calc(2.4 * var(--vw));
    line-height: calc(2.6666666667 * var(--vw));
  }
}
.footer .cpyr {
  width: 100%;
  text-align: center;
  font-size: calc(1.1666666667 * var(--vw));
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .cpyr {
    font-size: calc(2.1333333333 * var(--vw));
  }
}
.footer a:hover {
  opacity: 0.7;
}

.btn_top {
  width: 100px;
  height: 100px;
  background: #00360C;
  position: fixed;
  display: none;
  right: 25px;
  bottom: 110px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .btn_top {
    width: 45px;
    height: 45px;
    right: 10px;
  }
}
.btn_top:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 40px;
  left: 40px;
}
@media only screen and (max-width: 767px) {
  .btn_top:after {
    width: 12px;
    height: 12px;
    top: 18px;
    left: 15px;
  }
}

.side_wrapper {
  background-color: #e9e1cf;
  position: fixed;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .side_wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .side_wrapper {
    width: calc(24.1666666667 * var(--vw));
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(5.8333333333 * var(--vw));
  }
}
.side_wrapper .btn_pos {
  text-align: center;
}
.side_wrapper .btn_mgn {
  margin-top: calc(18.75 * var(--vw));
}
.side_wrapper .link_a::after {
  content: "▼";
  font-size: calc(1.25 * var(--vw));
  color: #f9c158;
  position: absolute;
  right: 40px;
  margin-top: 5px;
}
.side_btn {
  width: calc(18.3333333333 * var(--vw));
  margin-bottom: calc(1 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .side_btn {
    display: none;
  }
}
.side_btn_area {
  width: calc(18.3333333333 * var(--vw));
  font-size: calc(1.6666666667 * var(--vw));
  border-top: solid 2px #f5f2e9;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side_btn_area a {
  width: 100%;
  padding: calc(2.6666666667 * var(--vw)) 0;
}
.side_btn_area:hover {
  background-color: #f5f2e9;
  opacity: 0.6;
}
.side_btn_area1 {
  width: calc(18.3333333333 * var(--vw));
  font-size: calc(1.6666666667 * var(--vw));
  border-top: solid 2px #f5f2e9;
  border-bottom: solid 2px #f5f2e9;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side_btn_area1 a {
  width: 100%;
  padding: calc(2.9166666667 * var(--vw)) 0;
}
.side_btn_area1:hover {
  background-color: #f5f2e9;
  opacity: 0.6;
}

#TOP .main-v {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}
#TOP .main-v .main-v-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#TOP .main-v .top_txt1 {
  position: absolute;
  left: calc(3.9166666667 * var(--vw));
  top: calc(3.25 * var(--vw));
  width: calc(30.1666666667 * var(--vw));
  z-index: 10;
}
#TOP .main-v .top_txt2 {
  position: absolute;
  bottom: calc(1.8333333333 * var(--vw));
  right: calc(0 * var(--vw));
  width: calc(57.6666666667 * var(--vw));
  z-index: 10;
}
#TOP .slide_box {
  width: 83%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: calc(8.3333333333 * var(--vw));
  background-color: rgba(162, 232, 173, 0.5);
}
@media only screen and (max-width: 767px) {
  #TOP .slide_box {
    width: 100%;
  }
}
#TOP .slide_cobox {
  width: calc(55.3333333333 * var(--vw));
  height: calc(34.5833333333 * var(--vw));
  border: solid calc(0.3333333333 * var(--vw)) #00360C;
  border-radius: calc(1.3333333333 * var(--vw));
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #TOP .slide_cobox {
    width: 90%;
    height: initial;
    border: solid calc(0.8 * var(--vw)) #00360C;
    border-radius: calc(2.6666666667 * var(--vw));
  }
}
#TOP .slide-bx {
  display: flex;
  justify-content: center;
}
#TOP .s-cont_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: calc(1.9166666667 * var(--vw));
  font-weight: 600;
  line-height: calc(2.3333333333 * var(--vw));
  border-bottom: solid 1px #00360C;
  text-align: center;
  width: 41.5%;
}
@media only screen and (max-width: 767px) {
  #TOP .s-cont_ttl {
    font-size: calc(3.0666666667 * var(--vw));
    line-height: calc(3.7333333333 * var(--vw));
    margin-bottom: calc(1.3333333333 * var(--vw));
    padding-bottom: calc(1.3333333333 * var(--vw));
    padding-top: calc(1.3333333333 * var(--vw));
  }
}
#TOP .s-cont_txt {
  font-size: calc(1.3333333333 * var(--vw));
  font-weight: 600;
  line-height: calc(1.6666666667 * var(--vw));
  text-align: center;
  width: 83%;
  height: 22%;
}
@media only screen and (max-width: 767px) {
  #TOP .s-cont_txt {
    font-size: calc(2.1333333333 * var(--vw));
    line-height: calc(3.2 * var(--vw));
    width: 95%;
    height: initial;
  }
}
#TOP .s-cont_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #TOP .s-cont_box {
    padding: calc(5.3333333333 * var(--vw)) calc(4 * var(--vw));
  }
}
#TOP .s-cont_box .tbl {
  width: 56.5%;
  border: none;
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(1.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .s-cont_box .tbl {
    width: 75%;
    font-size: calc(2.1333333333 * var(--vw));
    line-height: calc(2.6666666667 * var(--vw));
  }
}
#TOP .s-cont_box .tbl .tdw {
  width: 33%;
}
#TOP .s-cont_box .tbl td {
  height: calc(4.5833333333 * var(--vw));
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  #TOP .s-cont_box .tbl td {
    height: calc(6.2666666667 * var(--vw));
    line-height: calc(2.6666666667 * var(--vw));
  }
}
#TOP .s-cont_box .img {
  width: 18.7%;
}
@media only screen and (max-width: 767px) {
  #TOP .s-cont_box .img {
    width: 25%;
  }
}
#TOP .footer-info {
  background-image: url(../img/top/top_form01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
}
#TOP .footer-info .ttl {
  width: 100%;
  text-align: center;
  padding-top: calc(12.5 * var(--vw));
  padding-bottom: calc(3.9166666667 * var(--vw));
  font-size: calc(3.3333333333 * var(--vw));
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
  text-shadow: 0 calc(0.3333333333 * var(--vw)) calc(0.6666666667 * var(--vw)) rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  #TOP .footer-info .ttl {
    padding-top: calc(20 * var(--vw));
    padding-bottom: calc(6.2666666667 * var(--vw));
    font-size: calc(5.3333333333 * var(--vw));
    text-shadow: 0 calc(0.5333333333 * var(--vw)) calc(1.0666666667 * var(--vw)) rgba(0, 0, 0, 0.25);
  }
}
#TOP .footer-info .cont-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: calc(6.3333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #TOP .footer-info .cont-btn {
    padding-bottom: calc(10.1333333333 * var(--vw));
  }
}
#TOP .footer-info .cont-btn .y-btn {
  font-size: calc(2 * var(--vw));
  font-weight: 600;
  padding: calc(1.6666666667 * var(--vw)) calc(5 * var(--vw));
  text-align: center;
  border-radius: calc(2.5 * var(--vw));
  background-color: #FEE100;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #000;
  box-shadow: calc(0.3333333333 * var(--vw)) calc(0.6666666667 * var(--vw)) calc(1.25 * var(--vw)) calc(-0.5833333333 * var(--vw)) rgba(0, 0, 0, 0.25);
}
#TOP .footer-info .cont-btn .y-btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  #TOP .footer-info .cont-btn .y-btn {
    font-size: calc(4 * var(--vw)) !important;
    padding: calc(2.6666666667 * var(--vw)) calc(8 * var(--vw)) !important;
  }
}

.contents_top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contents_top_box {
  display: flex;
  flex-direction: row;
  gap: calc(0.8333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_top_box {
    gap: calc(0.9333333333 * var(--vw));
  }
}
.contents_top_box .menu_btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: calc(22.4166666667 * var(--vw));
  height: calc(7.25 * var(--vw));
  font-size: calc(2.25 * var(--vw));
  background-color: #f9c158;
  border-radius: calc(1.6666666667 * var(--vw)) calc(1.6666666667 * var(--vw)) 0 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .contents_top_box .menu_btn {
    width: calc(17.6 * var(--vw));
    height: calc(11.2 * var(--vw));
    font-size: calc(3.0666666667 * var(--vw));
    font-weight: 600;
    flex-direction: column;
    justify-content: center;
    margin-top: calc(0.6666666667 * var(--vw));
  }
}
.contents_top_box .menu_btn .img1 {
  width: calc(3.5 * var(--vw));
  margin-left: calc(1.6666666667 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_top_box .menu_btn .img1 {
    width: calc(3.6 * var(--vw));
    margin-left: initial;
  }
}
.contents_top_box .menu_btn .img2 {
  width: calc(4.1666666667 * var(--vw));
  margin-left: calc(1.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_top_box .menu_btn .img2 {
    width: calc(4.2666666667 * var(--vw));
    margin-left: initial;
  }
}
.contents_top_box .menu_btn .img3 {
  width: calc(4.25 * var(--vw));
  margin-left: calc(1.5833333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_top_box .menu_btn .img3 {
    width: calc(4.4 * var(--vw));
    margin-left: initial;
  }
}
.contents_top_box .menu_btn .img4 {
  width: calc(3.8333333333 * var(--vw));
  margin-left: calc(1.75 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_top_box .menu_btn .img4 {
    width: calc(4 * var(--vw));
    margin-left: initial;
  }
}
.contents_top_box .menu_btn .img5 {
  width: calc(4.5833333333 * var(--vw));
  margin-left: calc(1.8333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_top_box .menu_btn .img5 {
    width: calc(4.6666666667 * var(--vw));
    margin-left: initial;
  }
}
.contents_top_box .text_area {
  text-align: left;
  font-size: calc(2.25 * var(--vw));
  padding-left: calc(1.0833333333 * var(--vw));
}
.contents_top_box .menu_btn:hover {
  background-color: #f29100;
  color: #fff;
}
.contents_top_box_low {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: calc(123.3333333333 * var(--vw));
  background-color: #f1ede1;
}
@media only screen and (max-width: 767px) {
  .contents_top_box_low {
    width: calc(92 * var(--vw));
    flex-direction: column;
    justify-content: center;
  }
}
.contents_top_box_low .box_left {
  padding: calc(4.5833333333 * var(--vw)) calc(0 * var(--vw)) calc(5 * var(--vw)) calc(3.75 * var(--vw));
  width: 54%;
}
@media only screen and (max-width: 767px) {
  .contents_top_box_low .box_left {
    width: 100%;
    text-align: center;
    padding: calc(4.2666666667 * var(--vw)) calc(0 * var(--vw));
  }
}
.contents_top_box_low .box_left .title_txt {
  font-size: calc(4.1666666667 * var(--vw));
  line-height: calc(5 * var(--vw));
  margin-bottom: calc(3.75 * var(--vw));
}
.contents_top_box_low .box_left .title_txt .fnt_c {
  color: #f29100;
}
@media only screen and (max-width: 767px) {
  .contents_top_box_low .box_left .title_txt {
    font-size: calc(5.4666666667 * var(--vw));
    line-height: calc(6.5333333333 * var(--vw));
  }
}
.contents_top_box_low .box_left .index_txt {
  font-size: calc(2.0833333333 * var(--vw));
  line-height: calc(3.75 * var(--vw));
  color: #44403f;
}
@media only screen and (max-width: 767px) {
  .contents_top_box_low .box_left .index_txt {
    font-size: calc(2.9333333333 * var(--vw));
    line-height: calc(5.2 * var(--vw));
  }
}
.contents_top_box_low .box_right {
  width: 45%;
  padding: calc(4.5833333333 * var(--vw)) calc(3.75 * var(--vw)) calc(5 * var(--vw)) 0;
}
@media only screen and (max-width: 767px) {
  .contents_top_box_low .box_right {
    width: 100%;
    padding: 0 calc(3.2 * var(--vw)) calc(4.5333333333 * var(--vw)) calc(3.2 * var(--vw));
  }
}
.contents_top_box_low .box_right img {
  width: 100%;
}
.contents_mainbox {
  width: 100%;
  position: relative;
}
.contents_cobox1 {
  width: 100%;
  position: relative;
  padding-top: calc(7.75 * var(--vw));
}
.contents_cobox1m {
  width: 100%;
  position: relative;
  padding-top: calc(7.75 * var(--vw));
  margin-top: calc(3.5833333333 * var(--vw));
  display: flex;
  justify-content: center;
}
.contents_cobox11 {
  display: flex;
  position: absolute;
  top: calc(4.0833333333 * var(--vw));
  justify-content: center;
  align-items: center;
  height: calc(16.1666666667 * var(--vw));
  background-image: url(../img/common/titile_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 100%;
}
.contents_cobox11 p {
  font-size: calc(2.6666666667 * var(--vw));
  line-height: calc(3.25 * var(--vw));
  font-weight: 600;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media only screen and (max-width: 767px) {
  .contents_cobox11 p {
    font-size: calc(4.6666666667 * var(--vw));
    line-height: calc(5.2 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .contents_cobox11 {
    top: calc(4 * var(--vw));
    height: calc(23.0666666667 * var(--vw));
    width: 100%;
  }
}
.contents_cobox11-1 {
  display: flex;
  position: absolute;
  top: calc(5.8333333333 * var(--vw));
  justify-content: center;
  align-items: center;
  height: calc(16.1666666667 * var(--vw));
  background-image: url(../img/common/titile_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 100%;
}
.contents_cobox11-1 p {
  font-size: calc(2.6666666667 * var(--vw));
  line-height: calc(3.25 * var(--vw));
  font-weight: 600;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media only screen and (max-width: 767px) {
  .contents_cobox11-1 p {
    font-size: calc(4.6666666667 * var(--vw));
    line-height: calc(5.2 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .contents_cobox11-1 {
    top: calc(4 * var(--vw));
    height: calc(23.0666666667 * var(--vw));
    width: 100%;
  }
}
.contents_cobox12 {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  column-gap: 4%;
  align-items: flex-start;
  margin-top: calc(4.1666666667 * var(--vw));
}
@media only screen and (min-width: 768px) {
  .contents_cobox12 {
    background-image: url(../img/top/bg1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
  }
}
.contents_cobox12 .box-l {
  padding: calc(14.1666666667 * var(--vw)) 0 calc(10.8333333333 * var(--vw)) 0;
  width: 43%;
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(1.5833333333 * var(--vw));
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .contents_cobox12 .box-l {
    order: 2;
    padding: 0 0 calc(10.8 * var(--vw)) 0;
    width: 90%;
    font-size: calc(2.8 * var(--vw));
    line-height: initial;
  }
}
.contents_cobox12 .box-r {
  padding: calc(14.1666666667 * var(--vw)) 0 calc(10.8333333333 * var(--vw)) 0;
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .contents_cobox12 .box-r {
    padding: calc(14.1333333333 * var(--vw)) 0 calc(2.8 * var(--vw)) 0;
    width: 90%;
  }
}
.contents_cobox12 .box-r img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contents_cobox12 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: calc(8 * var(--vw));
    background-color: rgba(162, 232, 173, 0.5);
  }
}
.contents_cobox13 {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  margin-top: calc(4.1666666667 * var(--vw));
  background-image: url(../img/top/top_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 {
    margin-top: calc(8 * var(--vw));
  }
}
.contents_cobox13 .boxs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2%;
  padding: calc(18.3333333333 * var(--vw)) 0 calc(9 * var(--vw)) 0;
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .boxs {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: calc(18.2666666667 * var(--vw)) 0 0 0;
  }
}
.contents_cobox13 .box-l {
  width: 28%;
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(1.5833333333 * var(--vw));
  text-align: justify;
  border: solid calc(0.25 * var(--vw)) #00360C;
  border-radius: calc(0.8333333333 * var(--vw));
  background-color: #fff;
  box-shadow: calc(0.3333333333 * var(--vw)) calc(0.6666666667 * var(--vw)) calc(0.8333333333 * var(--vw)) calc(-0.5833333333 * var(--vw)) rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .box-l {
    width: 70%;
    font-size: calc(1.3333333333 * var(--vw));
    line-height: calc(1.6 * var(--vw));
    text-align: justify;
    border: solid calc(0.5333333333 * var(--vw)) #00360C;
    border-radius: calc(4 * var(--vw));
    background-color: #fff;
    margin-bottom: calc(12 * var(--vw));
  }
}
.contents_cobox13 .box-l .ttl-img {
  text-align: center;
  margin-top: calc(-3.2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .box-l .ttl-img {
    margin-top: calc(-4.1333333333 * var(--vw));
  }
}
.contents_cobox13 .box-l .ttl-img img {
  width: calc(19.8333333333 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .box-l .ttl-img img {
    width: calc(47.6 * var(--vw));
  }
}
.contents_cobox13 .box-l .ttl {
  padding: calc(2.6666666667 * var(--vw)) 0;
  font-size: calc(1.6666666667 * var(--vw));
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .box-l .ttl {
    font-size: calc(4.2666666667 * var(--vw));
    padding: calc(4.2666666667 * var(--vw)) 0;
  }
}
.contents_cobox13 .box-l .txt-box {
  padding: 0 calc(2 * var(--vw)) calc(4.1666666667 * var(--vw)) calc(2 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .box-l .txt-box {
    font-size: calc(2.8 * var(--vw));
    line-height: calc(5.2 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) calc(8 * var(--vw)) calc(8.5333333333 * var(--vw)) calc(8 * var(--vw));
  }
}
.contents_cobox13 .cont-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: calc(4.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .cont-btn {
    padding-bottom: calc(7.2 * var(--vw));
  }
}
.contents_cobox13 .cont-btn .y-btn {
  font-size: calc(2 * var(--vw));
  font-weight: 600;
  padding: calc(1.6666666667 * var(--vw)) calc(5 * var(--vw));
  text-align: center;
  border-radius: calc(2.5 * var(--vw));
  background-color: #FEE100;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #000;
  box-shadow: calc(0.3333333333 * var(--vw)) calc(0.6666666667 * var(--vw)) calc(1.25 * var(--vw)) calc(-0.5833333333 * var(--vw)) rgba(0, 0, 0, 0.25);
}
.contents_cobox13 .cont-btn .y-btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .contents_cobox13 .cont-btn .y-btn {
    font-size: calc(4 * var(--vw)) !important;
    padding: calc(2.6666666667 * var(--vw)) calc(8 * var(--vw)) !important;
  }
}
.contents_slide {
  margin-top: calc(4.5833333333 * var(--vw));
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .contents_slide {
    margin-top: calc(4.8 * var(--vw));
    justify-content: flex-start;
  }
}
.contents_slide_box {
  width: calc(123.3333333333 * var(--vw));
}
.contents_slide_box .title {
  font-size: calc(2 * var(--vw));
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contents_slide_box .title {
    font-size: calc(2.4 * var(--vw));
    font-weight: 600;
  }
}
.contents_slide_box .bg_red {
  background-color: #e60012;
  border-radius: calc(0.8333333333 * var(--vw));
  margin-left: calc(0.8333333333 * var(--vw));
  padding: calc(0.25 * var(--vw)) calc(0.5 * var(--vw));
  color: #fff;
  font-size: calc(1 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_slide_box .bg_red {
    font-size: calc(2.2666666667 * var(--vw));
    padding: 0 calc(1.0666666667 * var(--vw));
    border-radius: calc(1.3333333333 * var(--vw));
    line-height: calc(3.8666666667 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  .contents_sp_button {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .contents_sp_button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #f1ede1;
    margin: calc(8 * var(--vw)) 0 calc(10 * var(--vw));
    padding: calc(3.3333333333 * var(--vw));
  }
}
.contents_sp_button .btn_pos {
  width: 48%;
}
.contents_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .contents_wrapper {
    max-width: calc(83.3333333333 * var(--vw));
  }
}
.contents_wrapper .cont-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: calc(4.5 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contents_wrapper .cont-btn {
    padding-bottom: calc(7.2 * var(--vw));
  }
}
.contents_wrapper .cont-btn .y-btn {
  font-size: calc(2 * var(--vw));
  font-weight: 600;
  padding: calc(1.6666666667 * var(--vw)) calc(5 * var(--vw));
  text-align: center;
  border-radius: calc(2.5 * var(--vw));
  background-color: #FEE100;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #000;
  box-shadow: calc(0.3333333333 * var(--vw)) calc(0.6666666667 * var(--vw)) calc(1.25 * var(--vw)) calc(-0.5833333333 * var(--vw)) rgba(0, 0, 0, 0.25);
}
.contents_wrapper .cont-btn .y-btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .contents_wrapper .cont-btn .y-btn {
    font-size: calc(4 * var(--vw)) !important;
    padding: calc(2.6666666667 * var(--vw)) calc(8 * var(--vw)) !important;
  }
}

.mci_slider {
  margin: 0;
  width: calc(68.3333333333 * var(--vw));
}
.mci_slider .slick-list {
  margin-bottom: 30px;
  padding: 0;
}
.mci_slider .slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .mci_slider .slick-dots {
    display: none !important;
  }
}
.mci_slider .slick-dots li button {
  display: block;
  padding: 1px;
  border-radius: 50%;
  line-height: 1;
  font-family: inherit;
  text-align: center;
  color: #efefef;
  overflow: hidden;
  transition: background-color 0.3s, color 0.3s;
}
.mci_slider .slick-dots li button:hover, .mci_slider .slick-dots li button:active {
  background-color: #f9c158;
  color: #f9c158;
}
.mci_slider .slick-dots li.slick-active button {
  background-color: #f9c158;
  color: #f9c158;
  margin-top: calc(0.4 * var(--vw));
}
.mci_slider p {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .mci_slider .slick-list {
    padding: calc(2.9166666667 * var(--vw)) 0;
  }
  .mci_slider .slick-slide {
    padding: 0 calc(0.8333333333 * var(--vw));
  }
  .mci_slider .slick-slide p {
    margin-top: calc(1.6666666667 * var(--vw));
    font-size: calc(2 * var(--vw));
    font-weight: 700;
  }
  .mci_slider .slick-dots {
    display: none !important;
    gap: calc(1 * var(--vw)) calc(2 * var(--vw));
  }
  .mci_slider .slick-dots li {
    margin: 0;
    height: auto;
    margin: 0;
    border: none;
    border-radius: 0;
  }
  .mci_slider .slick-dots button {
    width: calc(1.3333333333 * var(--vw));
    font-size: calc(1.1666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .mci_slider {
    width: 100%;
  }
  .mci_slider .slick-list {
    margin-bottom: 4vw;
    padding: calc(1.3333333333 * var(--vw)) 0 calc(3.3333333333 * var(--vw));
  }
  .mci_slider .slick-slide {
    padding: 0 calc(3.0666666667 * var(--vw));
  }
  .mci_slider .slick-slide p {
    margin-top: 1.6vw;
    font-size: 4vw;
    font-weight: 700;
  }
  .mci_slider .slick-dots {
    position: static;
    gap: 1.6vw 3.2vw;
  }
  .mci_slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    border: none;
  }
  .mci_slider .slick-dots li button {
    width: 4.2vw;
    border-radius: 0%;
    overflow: hidden;
  }
}

@media only screen and (min-width: 768px) {
  .slide-arrow {
    background-color: #333;
    bottom: 0;
    height: 0;
    margin: auto;
    position: absolute;
    top: calc(-7.5 * var(--vw));
    width: 0;
    z-index: 10;
  }
  .prev-arrow {
    left: calc(3.8333333333 * var(--vw));
    width: calc(5.5 * var(--vw));
    cursor: pointer;
  }
  .next-arrow {
    cursor: pointer;
    right: calc(3.8333333333 * var(--vw));
    width: calc(5.5 * var(--vw));
  }
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slide-arrow {
    background-color: #333;
    bottom: 0;
    height: 0;
    margin: auto;
    position: absolute;
    top: calc(-12 * var(--vw));
    width: 0;
    z-index: 10;
  }
  .prev-arrow {
    left: calc(3.8333333333 * var(--vw));
    width: calc(7.0833333333 * var(--vw));
    cursor: pointer;
  }
  .next-arrow {
    cursor: pointer;
    right: calc(3.8333333333 * var(--vw));
    width: calc(7.0833333333 * var(--vw));
  }
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    bottom: calc(-6 * var(--vw)) !important;
    height: calc(6 * var(--vw)) !important;
    padding-top: calc(0.6666666667 * var(--vw)) !important;
  }
  .slick-dots li {
    margin: calc(0.2666666667 * var(--vw)) 0 !important;
  }
}

.slick-dots li button:before {
  font-size: calc(1 * var(--vw)) !important;
}
@media only screen and (max-width: 767px) {
  .slick-dots li button:before {
    font-size: calc(2.1333333333 * var(--vw)) !important;
  }
}

/*
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 4.5vw;
    height: 4.5vw;
    margin: 0 getvw(5);
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 4.5vw;
    height: 4.5vw;
    padding: getvw(5);
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:before {
    //content:"●";
    content: "■";
    font-size: 5vw;
    line-height: 4.2vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 4.5vw;
    height: 4.5vw;
    text-align: center;
    opacity: 0.25;
    color: #cfcfcf;
}
 *//*# sourceMappingURL=style.css.map */