@charset "UTF-8";
/***************************************

main

***************************************/
/*---------------------------------------
base
---------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul li, ol li {
  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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* 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;
}

/***************************************

variables

***************************************/
/*---------------------------------------
break point
---------------------------------------*/
/*---------------------------------------
color
---------------------------------------*/
/***************************************

mixins

***************************************/
/*---------------------------------------
media queries
---------------------------------------*/
/*---------------------------------------
clearfix
---------------------------------------*/
/*---------------------------------------
vwのサイズ計算
---------------------------------------*/
/***************************************

base

***************************************/
/*---------------------------------------
HTML要素のデフォルト設定
---------------------------------------*/
* {
  box-sizing: border-box;
  font-weight: 400;
  font-feature-settings: "palt";
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (max-width: 1160px) {
  * {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  * {
    font-size: 4.8vw;
  }
}

html {
  margin: 0 !important;
  overflow-y: scroll;
}
html.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-width: 1160px;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  letter-spacing: 0;
  word-wrap: break-word;
  position: relative;
  color: #000;
  background: #fff;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
    min-width: inherit;
  }
}
body.fixed {
  position: fixed;
}

::placeholder {
  color: #cfcfcf;
}

/* img要素の扱いを簡単にする */
img {
  /* max-width: 100%; */
  vertical-align: bottom;
  height: auto;
}

/*リンク*/
a {
  text-decoration: none;
  word-wrap: break-word;
}

a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

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

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1; /* 1 */
  margin: 0; /* 2 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

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

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

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

small,
picture,
button {
  display: block;
}

/* IE11でmainタグを使うための設定 */
main {
  display: block;
}

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

.SP {
  display: none;
}
@media screen and (max-width: 768px) {
  .SP {
    display: block;
  }
}

/*---------------------------------------
#bread
---------------------------------------*/
#bread {
  margin: 0 auto;
  padding: 76px 0 0;
}
@media screen and (max-width: 768px) {
  #bread {
    padding: 14vw 0 0;
  }
}
#bread ul {
  display: flex;
  flex-wrap: wrap;
}
#bread ul li {
  font-size: 11px;
  padding: 0 18px 0 0;
  margin: 0 18px 0 0;
  border-right: 1px solid #a8a8a8;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #bread ul li {
    font-size: 2.2666666667vw;
    padding: 0 4.5333333333vw 0 0;
    margin: 0 4.5333333333vw 0 0;
    max-width: 46.6666666667vw;
  }
}
#bread ul li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

/*---------------------------------------
#fv_common
---------------------------------------*/
#fv_common {
  padding: 122px 0 0;
}
@media screen and (max-width: 768px) {
  #fv_common {
    padding: 11.3333333333vw 0 0;
  }
}
#fv_common h2 {
  padding: 0 0 48px;
}
@media screen and (max-width: 768px) {
  #fv_common h2 {
    padding: 0 0 5.6vw;
  }
}
#fv_common h2 span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 23px 0 0;
}
@media screen and (max-width: 768px) {
  #fv_common h2 span {
    font-size: 2.9333333333vw;
    padding: 3.2vw 0 0;
  }
}
#fv_common .fv_image img {
  width: 100%;
}

/*---------------------------------------
#introduction
---------------------------------------*/
#introduction {
  padding: 56px 0 62px;
  background-color: #a41034;
}
@media screen and (max-width: 768px) {
  #introduction {
    padding: 4.8vw 0;
  }
}
#introduction.blue {
  background-color: #004e6e;
}
#introduction.gray {
  background-color: #004e6e;
}
#introduction.gray .inner4 p {
  color: #fff;
}
#introduction.base {
  background-color: #004e6e;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  #introduction.base {
    padding: 4.8vw 0;
  }
}
#introduction.base .inner4 p {
  color: #fff;
}
#introduction .inner4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #introduction .inner4 {
    display: block;
  }
}
#introduction .inner4 p {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 48px;
  color: #fff;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #introduction .inner4 p {
    font-size: 3.2vw;
    line-height: 6vw;
    text-align: center;
  }
}
#introduction .inner4 .img_wrap {
  width: 400px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #introduction .inner4 .img_wrap {
    width: auto;
    padding: 1.3333333333vw 0 0;
  }
}

/*---------------------------------------
.pickup_container
---------------------------------------*/
.pickup_container {
  display: flex;
  justify-content: center;
  gap: 0 62px;
}
@media screen and (max-width: 768px) {
  .pickup_container {
    flex-wrap: wrap;
    gap: 0 5.0666666667vw;
  }
}
.pickup_container li {
  width: 292px;
}
@media screen and (max-width: 768px) {
  .pickup_container li {
    width: 40.8vw;
    padding: 0 0 5.0666666667vw;
  }
}
.pickup_container li a {
  display: block;
}
.pickup_container li a .img_wrap img {
  width: 292px;
  height: 187px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .pickup_container li a .img_wrap img {
    width: 100%;
    height: 26vw;
  }
}
.pickup_container li a .contents_wrap {
  background-color: #fff;
  padding: 20px 12px;
  height: 188px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .pickup_container li a .contents_wrap {
    padding: 1.3333333333vw 2.6666666667vw 2vw;
    height: auto;
    min-height: 27.6vw;
  }
}
.pickup_container li a .contents_wrap .meta_wrap {
  width: 100%;
}
.pickup_container li a .contents_wrap .meta_wrap .column_title {
  font-size: 18px;
  line-height: 29px;
  padding: 0 0 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pickup_container li a .contents_wrap .meta_wrap .column_title {
    font-size: 3.3333333333vw;
    line-height: 4.6666666667vw;
    letter-spacing: 0.05em;
    padding: 0 0 0.6666666667vw;
  }
}
.pickup_container li a .contents_wrap .meta_wrap time {
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pickup_container li a .contents_wrap .meta_wrap time {
    font-size: 2.6666666667vw;
    letter-spacing: 0.05em;
  }
}
.pickup_container li a .contents_wrap .category {
  font-size: 12px;
  font-weight: 500;
  display: block;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px solid #9e9e9e;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pickup_container li a .contents_wrap .category {
    font-size: 2.6666666667vw;
    padding: 1.6vw 0 0;
  }
}
.pickup_container.index {
  flex-wrap: wrap;
}
.pickup_container.index li:first-child {
  width: 100%;
  padding: 0 0 130px;
}
@media screen and (max-width: 768px) {
  .pickup_container.index li:first-child {
    padding: 0 0 9.3333333333vw;
  }
}
.pickup_container.index li:first-child a {
  display: flex;
}
@media screen and (max-width: 768px) {
  .pickup_container.index li:first-child a {
    display: block;
  }
}
.pickup_container.index li:first-child a .img_wrap {
  width: 567px;
}
@media screen and (max-width: 768px) {
  .pickup_container.index li:first-child a .img_wrap {
    width: 100%;
  }
}
.pickup_container.index li:first-child a .contents_wrap {
  width: 433px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .pickup_container.index li:first-child a .contents_wrap {
    width: 100%;
    min-height: 22.9333333333vw;
  }
}
.pickup_container.index li:first-child a .contents_wrap .meta_wrap {
  margin: auto 0 0;
}
@media screen and (max-width: 768px) {
  .pickup_container.index li:first-child a .contents_wrap .meta_wrap {
    margin: 0;
  }
}
.pickup_container.index li:first-child a .contents_wrap .meta_wrap h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pickup_container.index li:first-child a .contents_wrap .meta_wrap h4 {
    -webkit-line-clamp: 2;
  }
}

.empty {
  font-size: 20px;
  text-align: center;
  padding: 0 0 165px;
}
@media screen and (max-width: 768px) {
  .empty {
    font-size: 3.2vw;
    padding: 0 0 20vw;
  }
}

/*---------------------------------------
#other_lineup
---------------------------------------*/
#other_lineup {
  padding: 115px 0 200px;
}
@media screen and (max-width: 768px) {
  #other_lineup {
    padding: 10.4vw 0;
  }
}
#other_lineup ul {
  width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #other_lineup ul {
    width: 86.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #other_lineup ul li {
    width: 40.8vw;
  }
}
#other_lineup ul li .img_wrap {
  padding: 0 0 20px;
}
@media screen and (max-width: 768px) {
  #other_lineup ul li .img_wrap {
    padding: 0 0 4vw;
  }
}
#other_lineup ul li .img_wrap img {
  width: 381px;
  height: 220px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #other_lineup ul li .img_wrap img {
    width: 100%;
    height: 23.3333333333vw;
  }
}
#other_lineup ul li h4 {
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  #other_lineup ul li h4 {
    display: flex;
  }
  #other_lineup ul li h4 img {
    width: auto;
    height: 2.4vw;
  }
}
#other_lineup ul li h4::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: -16px;
}
@media screen and (max-width: 768px) {
  #other_lineup ul li h4::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    right: -2.4vw;
  }
}
#other_lineup ul li.target h4:after {
  width: 17px;
  height: 17px;
  border: none;
  transform: translateY(-50%);
  right: -65px;
  background: url("../img/common/2408/icn_target.svg") no-repeat center center;
}
@media screen and (max-width: 768px) {
  #other_lineup ul li.target h4:after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    right: -7.7333333333vw;
  }
}

/*---------------------------------------
.btn_common
---------------------------------------*/
.btn_common, .form_btn {
  width: 261px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .btn_common, .form_btn {
    width: 56vw;
  }
}
.btn_common a, .btn_common input[type=submit], .form_btn a, .form_btn input[type=submit] {
  color: #fff;
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  background-color: #a41034;
  padding: 0 0 0 25px;
  border-radius: 35px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn_common a, .btn_common input[type=submit], .form_btn a, .form_btn input[type=submit] {
    height: 14vw;
    line-height: 14vw;
    padding: 0 0 0 6vw;
    border-radius: 8vw;
    font-size: 3.2vw;
  }
}
.btn_common a::before, .btn_common input[type=submit]::before, .form_btn a::before, .form_btn input[type=submit]::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 25px;
}
@media screen and (max-width: 768px) {
  .btn_common a::before, .btn_common input[type=submit]::before, .form_btn a::before, .form_btn input[type=submit]::before {
    width: 2vw;
    height: 2vw;
    right: 3.7333333333vw;
  }
}
.btn_common a.blank::before, .btn_common input[type=submit].blank::before, .form_btn a.blank::before, .form_btn input[type=submit].blank::before {
  width: 19px;
  height: 19px;
  border: none;
  transform: translateY(-50%);
  background: url("../img/common/icn_blank.svg") no-repeat center center;
}
@media screen and (max-width: 768px) {
  .btn_common a.blank::before, .btn_common input[type=submit].blank::before, .form_btn a.blank::before, .form_btn input[type=submit].blank::before {
    width: 3.2vw;
    height: 3.2vw;
  }
}
.btn_common.submit, .form_btn.submit {
  position: relative;
}
.btn_common.submit::after, .form_btn.submit::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 25px;
}
@media screen and (max-width: 768px) {
  .btn_common.submit::after, .form_btn.submit::after {
    width: 2vw;
    height: 2vw;
    right: 3.7333333333vw;
  }
}
.btn_common .btn_b, .form_btn .btn_b {
  background-color: #9e9e9e !important;
  margin: 0 0 30px !important;
}
@media screen and (max-width: 768px) {
  .btn_common .btn_b, .form_btn .btn_b {
    margin: 0 0 5.3333333333vw !important;
  }
}

/***************************************

pickup_archive

***************************************/
#pickup_archive {
  padding: 200px 0 196px;
  background-color: #f0f1f1;
}
@media screen and (max-width: 768px) {
  #pickup_archive {
    padding: 17.3333333333vw 0 20vw;
  }
}
#pickup_archive h3.common_title {
  justify-content: center;
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #pickup_archive h3.common_title {
    padding: 0 0 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #pickup_archive h3.common_title .en img {
    width: 10.4vw;
  }
}
#pickup_archive h3.common_title .jp {
  padding: 24px 0 0 30px;
}
@media screen and (max-width: 768px) {
  #pickup_archive h3.common_title .jp {
    padding: 4.6666666667vw 0 0 2.9333333333vw;
  }
  #pickup_archive h3.common_title .jp img {
    width: 45.7333333333vw;
  }
}
#pickup_archive .pickup_container {
  padding: 0 0 125px;
}
@media screen and (max-width: 768px) {
  #pickup_archive .pickup_container {
    padding: 0 0 9.3333333333vw;
  }
}
#pickup_archive .pickup_container p {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #pickup_archive .pickup_container p {
    font-size: 3.2vw;
    padding: 0 0 8vw;
  }
}

/*---------------------------------------
.pagination
---------------------------------------*/
.pagination ul {
  width: fit-content;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: flex-end;
}
.pagination ul li {
  padding: 3px;
  margin-top: 22px;
  margin: 0 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagination ul li {
    padding: 0;
    min-width: 4vw;
  }
}
.pagination ul li .current {
  color: #93907c;
}
@media screen and (max-width: 768px) {
  .pagination ul li .current {
    font-size: 4vw;
  }
}
.pagination ul li a {
  display: block;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pagination ul li a {
    font-size: 4vw;
  }
}
.pagination ul li a.prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul li a.prev::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagination ul li a.prev::before {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}
.pagination ul li a.next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul li a.next::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagination ul li a.next::before {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
  }
}

/*---------------------------------------
.inner
---------------------------------------*/
.inner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 86.6666666667vw;
  }
}

.inner2 {
  width: 945px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner2 {
    width: 86.6666666667vw;
  }
}

.inner3 {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner3 {
    width: 86.6666666667vw;
  }
}

.inner4 {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner4 {
    width: 86.6666666667vw;
  }
}

/*---------------------------------------
.animate
---------------------------------------*/
.Animate {
  visibility: visible;
  animation-duration: 1.5s;
}
.Animate.Animated {
  visibility: visible;
  animation-fill-mode: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
dt,
dd {
  max-height: 100%;
}

/***************************************

anim

***************************************/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes BlurIn {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.BlurIn {
  animation-name: BlurIn;
}

@keyframes Anime_Height {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
.Anime_Height::after {
  animation: Anime_Height 1s forwards;
}

@keyframes Anime_Width {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.Anime_Width::after {
  animation: Anime_Width forwards;
  animation-duration: 0.5s;
}
@media screen and (max-width: 768px) {
  .Anime_Width::after {
    animation: Anime_Height forwards;
    animation-duration: 0.5s;
    width: 100%;
  }
}

/*---------------------------------------
structures
---------------------------------------*/
/***************************************

header

***************************************/
header {
  z-index: 100;
  transition: transform 0.5s;
}
header.top {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px 0 0;
}
@media screen and (max-width: 768px) {
  header.top {
    text-align: left;
    padding: 0 6vw 0;
  }
  header.top h1 img {
    width: 20.8vw;
  }
}
header.top h1:nth-of-type(2) {
  display: none;
}
header.top #menu {
  position: absolute;
  top: 30px;
  right: 100px;
}
@media screen and (max-width: 768px) {
  header.top #menu {
    top: 8.6666666667vw;
    right: 5.6vw;
  }
}
@media screen and (max-width: 768px) {
  header.top #menu button {
    border: 0.2666666667vw solid #fff;
  }
}
header.top #menu .border_wrap {
  display: block;
}
header.top #menu .border_wrap span {
  background: #fff;
  height: 2px;
}
@media screen and (max-width: 768px) {
  header.top #menu .border_wrap span {
    height: 0.2666666667vw;
  }
}
header.top.scroll_header {
  padding: 12px 0;
  top: -58px;
  transform: translateY(58px);
}
@media screen and (max-width: 768px) {
  header.top.scroll_header {
    padding: 3.3333333333vw 0 3.0666666667vw;
  }
}
header.top.scroll_header h1:first-child {
  display: none;
}
header.top.scroll_header h1:nth-of-type(2) {
  display: block;
}
header.top.scroll_header #menu {
  position: static;
}
@media screen and (max-width: 768px) {
  header.top.scroll_header #menu {
    position: absolute;
    top: 50%;
    right: 5.6vw;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  header.top.scroll_header #menu button {
    border: 0.2666666667vw solid #a41034;
  }
}
header.top.scroll_header #menu .border_wrap {
  display: block;
}
header.top.scroll_header #menu .border_wrap span {
  background: #a41034;
}
header.top.scroll_header #menu.on .border_wrap span {
  background: #fff;
}
header.common, header.scroll_header {
  padding: 12px 0;
  border-bottom: 1px solid #EEEEEE;
  background-color: #fff;
  width: 100%;
  min-width: 1160px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  header.common, header.scroll_header {
    padding: 3.3333333333vw 0 3.0666666667vw;
    min-width: inherit;
  }
}
header.common .inner3, header.scroll_header .inner3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header.common .inner3, header.scroll_header .inner3 {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  header.common .inner3 h1 img, header.scroll_header .inner3 h1 img {
    width: 29.3333333333vw;
  }
}
header #menu {
  pointer-events: none;
  z-index: 110;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  header #menu {
    position: absolute;
    top: 50%;
    right: 5.6vw;
    transform: translateY(-50%);
  }
}
header #menu.hidden {
  opacity: 0;
  visibility: hidden;
}
header #menu button {
  width: 45px;
  height: 25px;
  pointer-events: all;
  color: #a41034;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header #menu button {
    width: 8.1333333333vw;
    height: 8.1333333333vw;
    border-radius: 50%;
    border: 0.2666666667vw solid #a41034;
  }
}
header #menu .border_wrap {
  display: block;
}
header #menu .border_wrap span {
  position: absolute;
  width: 42px;
  height: 2px;
  background: #a41034;
  top: 13px;
  right: 3px;
  transition: transform 0.5s ease, width 0.5s ease;
  perspective: 1000;
}
@media screen and (max-width: 768px) {
  header #menu .border_wrap span {
    width: 3.2vw;
    height: 0.2666666667vw;
    top: 3.6vw;
    right: 2.1333333333vw;
  }
}
header #menu .border_wrap span:nth-child(1) {
  transform: translate(0, -8px);
}
@media screen and (max-width: 768px) {
  header #menu .border_wrap span:nth-child(1) {
    transform: translate(0, -1.0666666667vw);
  }
}
header #menu .border_wrap span:nth-child(2) {
  transform: translate(0, 0);
}
header #menu .border_wrap span:nth-child(3) {
  transform: translate(0, 8px);
}
@media screen and (max-width: 768px) {
  header #menu .border_wrap span:nth-child(3) {
    transform: translate(0, 1.0666666667vw);
  }
}
@media screen and (max-width: 768px) {
  header #menu.on button {
    border: 0.2666666667vw solid #fff;
  }
  header #menu.on button span {
    width: 4vw;
    right: 1.7333333333vw;
  }
}
header #menu.on .border_wrap span {
  background: #fff;
}
header #menu.on .border_wrap span:nth-child(1) {
  transform: translate(0, 0) rotate(45deg);
}
header #menu.on .border_wrap span:nth-child(2) {
  transform: translate(0, 0) rotate(-45deg);
}
header #menu.on .border_wrap span:nth-child(3) {
  transform: translate(0, 8px);
  width: 0;
}

/***************************************

side menu

***************************************/
#side_bar {
  position: fixed;
  right: -23px;
  top: 50%;
  z-index: 10;
  transition: transform 0.5s;
  transform: translate(149px, -50%);
}
@media screen and (max-width: 768px) {
  #side_bar {
    transition: none;
    transform: none;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
#side_bar:hover {
  transform: translate(-23px, -50%);
}
@media screen and (max-width: 768px) {
  #side_bar:hover {
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  #side_bar nav ul {
    display: flex;
    width: 100%;
  }
}
#side_bar nav ul li {
  width: 230px;
  height: 65px;
  background-color: #580011;
  transition: 0.5s;
}
#side_bar nav ul li div {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #side_bar nav ul li div {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #side_bar nav ul li {
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #side_bar nav ul li picture {
    display: flex;
    justify-content: center;
  }
  #side_bar nav ul li:first-child {
    width: 34.5333333333vw;
  }
  #side_bar nav ul li:first-child img {
    width: 3.4666666667vw;
  }
  #side_bar nav ul li:nth-child(2) {
    width: 18.6666666667vw;
  }
  #side_bar nav ul li:nth-child(2) img {
    width: 3.4666666667vw;
  }
  #side_bar nav ul li:nth-child(3) {
    width: 18.6666666667vw;
  }
  #side_bar nav ul li:nth-child(3) img {
    width: 3.3333333333vw;
  }
  #side_bar nav ul li:last-child {
    width: 28.1333333333vw;
  }
  #side_bar nav ul li:last-child img {
    width: 3.4666666667vw;
  }
}
#side_bar nav ul li:hover {
  background-color: #a41034;
}
#side_bar nav ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #side_bar nav ul li a {
    display: block;
    text-align: center;
    height: auto;
  }
}
#side_bar nav ul li a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100%;
  border-right: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #side_bar nav ul li a .icon {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 1.6vw;
    border: none;
  }
}
#side_bar nav ul li a span {
  width: 160px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 0 0 8px;
  display: block;
}
@media screen and (max-width: 768px) {
  #side_bar nav ul li a span {
    width: auto;
    font-size: 2.6666666667vw;
    padding: 0;
  }
}

/***************************************

#hamburger_menu

***************************************/
#hamburger_menu {
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  background-color: #a41034;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  overflow: scroll;
  scroll-snap-type: y mandatory;
}
@media screen and (max-width: 768px) {
  #hamburger_menu {
    overflow: auto;
    scroll-snap-type: inherit;
  }
}
#hamburger_menu .flex_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  scroll-snap-align: start;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap {
    display: block;
    padding: 0;
  }
}
#hamburger_menu .flex_wrap .menu_wrap {
  display: flex;
  justify-content: space-between;
  width: 900px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link {
    padding: 20vw 0 0;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li {
  padding: 0 0 38px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li {
    padding: 0 0 8.6666666667vw 10vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li a {
  position: relative;
  display: block;
  width: fit-content;
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li a img {
  display: block;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li a {
    padding: 0 2.1333333333vw 0 0;
  }
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li a img {
    width: auto;
    height: 4vw;
    display: block;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li a::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    right: -2.6666666667vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child {
  padding: 0 0 45px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child {
    padding: 0 0 8.6666666667vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child h4 {
  padding: 0 0 10px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child h4 {
    padding: 0 0 1.7333333333vw 10vw;
  }
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child h4 img {
    width: 25.4666666667vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container {
    margin: 0.8vw 0 0;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a {
  padding: 7px 40px 7px 30px;
  display: flex;
  align-items: center;
  border-left: 1px solid #fff;
  position: relative;
  width: 100%;
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a img {
  display: block;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a {
    height: 12.8vw;
    padding: 0 0 0 10vw;
    border: none;
    background: #580011;
    gap: 0 3.7333333333vw;
  }
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a .en img {
    width: auto;
    height: 4vw;
  }
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a .jp {
    display: flex;
  }
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a .jp img {
    width: auto;
    height: 2.6666666667vw;
  }
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a .jp img.american {
    height: 7.4666666667vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a .jp {
  display: none;
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a::after {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% + 2px);
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    right: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container:first-child {
    margin: 0;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container:first-child a {
  padding: 7px 40px 7px 0;
  border: none;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:first-child .flex_box .flex_container:first-child a {
    padding: 0 0 0 10vw;
  }
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:nth-child(2) {
    padding: 0 0 7.3333333333vw 10vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:nth-child(2) a::after {
  right: -24px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:nth-child(2) a::after {
    right: -2.6666666667vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .main_link ul li:last-child {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .main_link ul li:last-child {
    padding: 0 0 0 10vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link {
  width: 238px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link {
    width: 100%;
    padding: 14vw 6vw 16.6666666667vw 10vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .top {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .top {
    display: none;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .top li {
  border-top: 1px solid #fff;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .top li a {
  display: block;
  padding: 25px 0 30px;
  position: relative;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .top li a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(50% - 3px);
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .top li a img {
  display: block;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom_wrap {
  margin: auto 0 0;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .sns li {
  margin: 0 0 0 36px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .sns li {
    margin: 0 0 0 7.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .sns li img.youtube {
    width: 10.4vw;
  }
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .sns li img.facebook {
    width: 11.8666666667vw;
  }
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .sns li img.insta {
    width: 12.5333333333vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .sns li:first-child {
  margin: 0;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom {
  padding: 0 0 50px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom {
    display: flex;
    gap: 0 9.3333333333vw;
    padding: 0 0 9.3333333333vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li a {
  padding: 0 12px 0 0;
  position: relative;
  width: fit-content;
  display: block;
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li a img {
  display: block;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li a {
    padding: 0 3.4666666667vw 0 0;
    width: fit-content;
  }
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li a img {
    width: auto;
    height: 3.4666666667vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
#hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li:first-child {
  margin: 0 0 26px;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .flex_wrap .menu_wrap .sub_link .bottom li:first-child {
    margin: 0;
  }
}
#hamburger_menu .catch_wrap {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  background: url("../img/common/menu/menu_cover.jpg") no-repeat center center/cover;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #hamburger_menu .catch_wrap {
    display: none;
  }
}

/***************************************

#contact

***************************************/
/***************************************

footer

***************************************/
footer {
  position: relative;
}
footer .cta_wrap {
  background-color: #a41034;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap {
    padding: 14.6666666667vw 0;
  }
}
footer .cta_wrap h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap h3 {
    font-size: 4.8vw;
    line-height: 6.9333333333vw;
    padding: 0 0 16vw;
  }
}
footer .cta_wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 829px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap ul {
    display: block;
    width: 86.6666666667vw;
  }
}
footer .cta_wrap ul li {
  width: 261px;
  height: 70px;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap ul li {
    width: 100%;
    height: 11.7333333333vw;
    margin: 4.6666666667vw 0 0;
  }
}
footer .cta_wrap ul li:first-child {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap ul li:first-child {
    margin: 0;
  }
}
footer .cta_wrap ul li a {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  padding: 0 0 0 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap ul li a {
    justify-content: center;
    border-radius: 5.8666666667vw;
    padding: 0;
  }
}
footer .cta_wrap ul li a::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-top: 1px solid #a41034;
  border-right: 1px solid #a41034;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  footer .cta_wrap ul li a::before {
    width: 2vw;
    height: 2vw;
    right: 4.2666666667vw;
    border-top: 0.2666666667vw solid #a41034;
    border-right: 0.2666666667vw solid #a41034;
  }
}
footer .cta_wrap ul li a span {
  font-size: 18px;
  color: #a41034;
  padding: 0 0 2px;
}
@media screen and (max-width: 768px) {
  footer .cta_wrap ul li a span {
    font-size: 3.7333333333vw;
    padding: 0 0 0.2666666667vw;
  }
}
footer .footer {
  padding: 55px 0 40px;
  background-color: #f0f1f1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 9.0666666667vw 0 6.9333333333vw;
  }
}
footer .footer h2 {
  padding: 0 0 55px;
}
@media screen and (max-width: 768px) {
  footer .footer h2 {
    padding: 0 0 14.6666666667vw;
  }
  footer .footer h2 img {
    width: 34.9333333333vw;
  }
}
footer .footer .address_wrap {
  padding: 0 0 40px;
}
@media screen and (max-width: 768px) {
  footer .footer .address_wrap {
    padding: 0 0 10.6666666667vw;
  }
}
footer .footer .address_wrap .tel_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 6px;
  padding: 0 0 14px;
}
@media screen and (max-width: 768px) {
  footer .footer .address_wrap .tel_wrap {
    gap: 0 1.3333333333vw;
    padding: 3.3333333333vw 8vw 4.2666666667vw;
    width: fit-content;
    margin: 0 auto 4vw;
    border-radius: 14.6666666667vw;
    background-color: #9a1034;
  }
}
footer .footer .address_wrap .tel_wrap .icn_tel {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a41034;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .footer .address_wrap .tel_wrap .icn_tel {
    font-size: 4.2666666667vw;
    letter-spacing: 0.04em;
    color: #fff;
  }
}
footer .footer .address_wrap .tel_wrap .number {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a41034;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  footer .footer .address_wrap .tel_wrap .number {
    font-size: 6.9333333333vw;
    letter-spacing: 0.04em;
    color: #fff;
  }
}
footer .footer .address_wrap span.business_hour {
  color: #a41034;
  display: block;
  padding: 0 0 30px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  footer .footer .address_wrap span.business_hour {
    font-size: 3.7333333333vw;
    padding: 0 0 9.3333333333vw;
  }
}
footer .footer .address_wrap .address {
  font-size: 16px;
  color: #a41034;
  padding: 0 0 5px;
  border-bottom: 1px solid #a41034;
}
@media screen and (max-width: 768px) {
  footer .footer .address_wrap .address {
    font-size: 3.7333333333vw;
    padding: 0 0 1.0666666667vw;
  }
}
footer .footer ul {
  display: flex;
  justify-content: center;
}
footer .footer ul li {
  padding: 0 0 0 26px;
}
@media screen and (max-width: 768px) {
  footer .footer ul li {
    padding: 0 0 0 5.3333333333vw;
  }
  footer .footer ul li img {
    width: 11.3333333333vw;
  }
}
footer .footer ul li:first-child {
  padding: 0;
}
footer .copyright {
  margin: 0 auto;
  padding: 15px 0;
  background-color: #a41034;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding: 4.6666666667vw 0 12vw;
  }
}
footer .copyright .inner4 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .copyright .inner4 {
    align-items: center;
    display: block;
  }
}
footer .copyright ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .copyright ul {
    justify-content: center;
    padding: 0 0 5.3333333333vw;
  }
}
footer .copyright ul li {
  margin: 0 50px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .copyright ul li {
    margin: 0 4.6666666667vw 0 0;
  }
}
footer .copyright ul li:last-child {
  margin: 0;
}
footer .copyright ul li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  footer .copyright ul li::after {
    width: 2.2666666667vw;
    height: 2.2666666667vw;
    border-top: 0.2666666667vw solid #fff;
    border-right: 0.2666666667vw solid #fff;
  }
}
footer .copyright ul li a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #a41034;
  display: block;
  padding: 0 14px 0 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .copyright ul li a {
    font-size: 3.7333333333vw;
    font-weight: 500;
    padding: 0 1.6vw 0 0;
  }
}
footer .copyright small {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #a41034;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .copyright small {
    font-size: 2.9333333333vw;
    text-align: center;
  }
}
footer #page-top {
  position: absolute;
  bottom: 90px;
  right: 100px;
}
@media screen and (max-width: 768px) {
  footer #page-top {
    bottom: 12vw;
    right: 6.6666666667vw;
  }
}
footer #page-top a {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid #a41034;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer #page-top a {
    width: 8vw;
    height: 8vw;
  }
}
footer #page-top a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid #a41034;
  border-left: 1px solid #a41034;
  position: absolute;
  left: 50%;
  top: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  footer #page-top a::before {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    top: calc(50% + 0.6666666667vw);
  }
}

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