@charset "UTF-8";
/*CSSリセット*/
/* リセットCSS */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset,
legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var, i {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  * font-size: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  color: #000;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.modal_bg {
  display: none;
  content: '　';
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  z-index: 2;
}
.modal_bg:hover {
  opacity: 1;
}

.modal_box {
  z-index: 10;
  display: none;
  width: 80%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #eee;
}

/* CSS セット */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v53-japanese-regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/noto-sans-jp-v53-japanese-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-jp-v53-japanese-regular.woff2") format("woff2"), url("../fonts/noto-sans-jp-v53-japanese-regular.woff") format("woff"), url("../fonts/noto-sans-jp-v53-japanese-regular.ttf") format("truetype"), url("../fonts/noto-sans-jp-v53-japanese-regular.svg#NotoSansJP") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v53-japanese-700.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/noto-sans-jp-v53-japanese-700.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-jp-v53-japanese-700.woff2") format("woff2"), url("../fonts/noto-sans-jp-v53-japanese-700.woff") format("woff"), url("../fonts/noto-sans-jp-v53-japanese-700.ttf") format("truetype"), url("../fonts/noto-sans-jp-v53-japanese-700.svg#NotoSansJP") format("svg");
  /* Legacy iOS */
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/noto-sans-jp-v53-japanese-900.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/noto-sans-jp-v53-japanese-900.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-jp-v53-japanese-900.woff2") format("woff2"), url("../fonts/noto-sans-jp-v53-japanese-900.woff") format("woff"), url("../fonts/noto-sans-jp-v53-japanese-900.ttf") format("truetype"), url("../fonts/noto-sans-jp-v53-japanese-900.svg#NotoSansJP") format("svg");
  /* Legacy iOS */
}
/*ミックスイン定義*/
@media screen and (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 820px) {
  html {
    font-size: 1.951vw;
  }
}
@media screen and (max-width: 428px) {
  html {
    font-size: 3.738vw;
  }
}
@media (max-width: 428px) {
  .pc {
    display: none;
  }
}

@media (max-width: 428px) {
  .pc_tab {
    display: none;
  }
}

@media (max-width: 820px) {
  .tab {
    display: none;
  }
}

.tab_sp {
  display: none;
}
@media (max-width: 820px) {
  .tab_sp {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 428px) {
  .sp {
    display: block;
  }
}

@media (max-width: 428px) {
  .indent01 {
    padding-left: 1em;
  }
}

.fade_in_target {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.fade_in_target.fade_in {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

a {
  transition: opacity .3s ease,color .3s ease;
}
a:hover, a:active {
  opacity: .8;
}

a img {
  will-change: opacity;
}

.select_box {
  width: fit-content;
  position: relative;
}
.select_box select {
  display: block;
  font-weight: 700;
  cursor: pointer;
  padding: .75em 3.5em .75em 1em;
  outline: 0;
  border: 0;
  border-radius: 5px;
  background: #9fa0a0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  position: relative;
  transition: background .3s;
}
.select_box select::-ms-expand {
  display: none;
}
.select_box select:hover, .select_box select:focus {
  color: #000;
  background: #939393;
}
.select_box select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select_box .select__arrow {
  position: absolute;
  width: 1.3em;
  top: 43%;
  right: 1em;
  transform: translate(0%, -31%);
  margin: auto 0;
  pointer-events: none;
  line-height: 0;
}

.title_border {
  padding: 0 calc((50vw - 50%) );
  padding-left: calc((50vw - 50%) );
  margin-left: calc((50% - 50vw) );
  width: 100dvw;
  position: relative;
  text-align: center;
  border-bottom: 5px solid #c50018;
  margin-top: 5%;
}
@media (max-width: 820px) {
  .title_border {
    margin-top: 10%;
  }
}
@media (max-width: 428px) {
  .title_border {
    padding: 0;
    margin-left: auto;
    width: 100%;
    margin-top: 15%;
  }
}
.title_border.margin01 {
  margin-top: 0;
}
.title_border.bottom01 {
  line-height: 0;
  position: absolute;
  bottom: -6.5vw;
  z-index: -1;
}
@media (min-width: 1920px) {
  .title_border.bottom01 {
    bottom: -120px;
  }
}
@media (max-width: 428px) {
  .title_border.bottom01 {
    bottom: 0;
    position: relative;
  }
}
.title_border a, .title_border h2 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  color: #fff;
  background-color: #c50018;
  padding: .5em 3em .6em;
  border-radius: 100px;
  transition: background .3s;
}
@media (max-width: 1200px) {
  .title_border a, .title_border h2 {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  .title_border a, .title_border h2 {
    font-size: 4.21vw;
  }
}
.title_border a:hover, .title_border a:active, .title_border h2:hover, .title_border h2:active {
  opacity: 1;
  background-color: #e02b35;
}
.title_border a.bottom01, .title_border h2.bottom01 {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 0%);
  line-height: calc((26/16));
}
.title_border img.bg {
  object-fit: cover;
  width: 100dvw;
  padding: 0 calc((50vw - 100%) );
  padding-left: calc((50vw - 100%) );
  margin-left: calc((50% - 50vw) );
  height: calc((525/1920)*100vw);
}
@media (min-width: 1920px) {
  .title_border img.bg {
    height: 525px;
  }
}
@media (max-width: 428px) {
  .title_border img.bg {
    padding: 0;
    margin-left: 0;
    width: 100%;
    height: auto;
  }
}

header .mainphoto_box {
  border-top: 5px solid #c50018;
  border-bottom: 5px solid #c50018;
  position: relative;
  line-height: 0;
}
@media (max-width: 428px) {
  header .mainphoto_box {
    border-top: 4px solid #c50018;
    border-bottom: 4px solid #c50018;
  }
}
header .mainphoto_box.headress {
  border-top: none;
}
header .mainphoto_box img {
  height: 464px;
  object-fit: cover;
}
@media (max-width: 1920px) {
  header .mainphoto_box img {
    height: auto;
  }
}
@media (max-width: 428px) {
  header .mainphoto_box img {
    height: auto;
  }
}

section {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 1920px) {
  section {
    max-width: 100%;
    margin-bottom: calc((100/1920)*100%);
  }
}
@media (max-width: 428px) {
  section {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((88/428)*100%);
  }
}
section.wide {
  max-width: 100%;
}
section .telphone_banner {
  background-color: #FFFFEE;
  border: 3px solid #c50018;
  border-bottom-right-radius: 30px;
  padding: 3% 5%;
  box-sizing: border-box;
}
@media (max-width: 428px) {
  section .telphone_banner {
    padding: 7% 8%;
    border: 2px solid #c50018;
  }
}
section .telphone_banner dl dt {
  width: calc((700/1280)*100%);
  margin-inline: auto;
  margin-bottom: 2%;
}
@media (max-width: 428px) {
  section .telphone_banner dl dt {
    width: 100%;
    border-bottom: 2px solid #c50018;
    padding-bottom: 5%;
    margin-bottom: 7%;
  }
}
section .telphone_banner dl dd {
  display: flex;
  align-items: center;
  column-gap: calc((40/1280)*100%);
}
@media (max-width: 428px) {
  section .telphone_banner dl dd {
    display: block;
  }
}
section .telphone_banner dl dd strong {
  width: 54%;
  display: block;
}
@media (max-width: 428px) {
  section .telphone_banner dl dd strong {
    width: 100%;
    margin-bottom: 5%;
  }
}
section .telphone_banner dl dd p {
  width: 46%;
}
@media (max-width: 428px) {
  section .telphone_banner dl dd p {
    width: 100%;
  }
}
section .telphone_banner dl dd p a {
  display: flex;
  justify-content: space-between;
  box-shadow: 6px 6px 0 0 #00512B;
  transition: box-shadow 0.2s ease,transform 0.2s ease;
  background: #c50018;
  color: #fff;
  font-size: 20px;
  border-radius: 100px;
  padding: 3% 7%;
}
@media (max-width: 1920px) {
  section .telphone_banner dl dd p a {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section .telphone_banner dl dd p a {
    font-size: 3.738vw;
    box-shadow: 3px 3px 0 0 #00512B;
  }
}
section .telphone_banner dl dd p a:hover {
  opacity: 1;
  transform: translate(6px, 6px);
  box-shadow: 0px 0px 0 0 #00512B;
}
@media (max-width: 428px) {
  section .telphone_banner dl dd p a:hover {
    transform: translate(3px, 3px);
  }
}
section .telphone_banner dl dd p a:hover img.arrow {
  transform: translateX(5px);
}
@media (max-width: 428px) {
  section .telphone_banner dl dd p a:hover img.arrow {
    transform: translateX(3px);
  }
}
section .telphone_banner dl dd p a img {
  width: calc((30/515)*100%);
  transition: transform 0.5s ease;
}
section .telphone_banner dl dd p a img:hover {
  opacity: 1;
}
section h3.title {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: #c50018;
  text-align: center;
  line-height: 2;
  z-index: 10;
  position: relative;
  background-image: url("../images/underline_yellow.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  margin-bottom: 5%;
}
@media (max-width: 1920px) {
  section h3.title {
    font-size: 2.5vw;
  }
}
@media (max-width: 428px) {
  section h3.title {
    font-size: 5.37vw;
    margin-bottom: 10%;
  }
}

@keyframes arrow_move01 {
  0% {
    opacity: 1;
    background-position: right center;
  }
  45% {
    opacity: 0;
    background-position: right -40px center;
  }
  50% {
    opacity: 0;
    background-position: left -40px center;
  }
  100% {
    opacity: 1;
    background-position: left center;
  }
}
*:focus {
  outline: none;
}

html * {
  visibility: hidden;
}

html.wf-active * {
  visibility: visible;
}

body {
  font-family: "Noto Sans JP";
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: calc(26 / 16);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: #FFF;
  overflow-x: hidden;
}
body.active {
  height: 100%;
  overflow: hidden;
}

header {
  overflow: hidden;
  position: relative;
  margin-bottom: calc((120/1920)*100%);
}
@media (min-width: 1920px) {
  header {
    margin-bottom: 120px;
  }
}
@media (max-width: 428px) {
  header {
    margin-bottom: calc((36/428)*100%);
  }
}
header.top {
  margin-bottom: calc((90/1920)*100%);
}
@media (min-width: 1920px) {
  header.top {
    margin-bottom: 90px;
  }
}
@media (max-width: 428px) {
  header.top {
    margin-bottom: calc((36/428)*100%);
  }
}
header h2 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc((38/1280)*100%);
  padding-bottom: .25em;
  padding-right: .5em;
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-align: center;
  z-index: 10;
  position: relative;
  background-image: url("../images/underline_yellow.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media (max-width: 1920px) {
  header h2 {
    font-size: 3.13vw;
  }
}
@media (min-width: 1920px) {
  header h2 {
    padding-top: 38px;
  }
}
@media (max-width: 428px) {
  header h2 {
    padding-top: calc((60/428)*100%);
    font-size: 6.07vw;
  }
}
header .border_line {
  margin-bottom: .3em;
  border-bottom: 5px solid #c50018;
}
@media (max-width: 428px) {
  header .border_line {
    margin-bottom: .25em;
    border-bottom: 4px solid #c50018;
  }
}
header .border_line .inbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  max-width: 1830px;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc((25/1830)*100%);
  margin-bottom: calc((25/1830)*100%);
  transition: opacity .3s ease,background-color .3s ease;
}
@media (min-width: 1920px) {
  header .border_line .inbox {
    padding-top: 25px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1920px) {
  header .border_line .inbox {
    max-width: 95%;
  }
}
@media (max-width: 428px) {
  header .border_line .inbox {
    padding-top: calc((20/428)*100%);
    margin-bottom: calc((34/428)*100%);
    align-items: center;
  }
}
header .border_line .inbox h1, header .border_line .inbox strong {
  line-height: 0;
  width: calc((490/1920)*100%);
  margin-bottom: .5%;
}
@media (min-width: 1920px) {
  header .border_line .inbox h1, header .border_line .inbox strong {
    width: 490px;
  }
}
@media (max-width: 428px) {
  header .border_line .inbox h1, header .border_line .inbox strong {
    width: calc((300/428)*100%);
  }
}
header .border_line .inbox .member_sp {
  width: 55px;
  margin-right: 65px;
  font-size: 2.8vw;
  text-align: center;
}
header .border_line .inbox .member_sp img {
  display: inline-block;
  width: 16px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(314deg) brightness(200%) contrast(100%);
}
header .border_line .inbox .member_sp a {
  color: #fff;
}
header .border_line .inbox nav {
  font-size: 19px;
  width: calc((1165/1830)*100%);
}
@media (max-width: 1920px) {
  header .border_line .inbox nav {
    font-size: 0.99vw;
  }
}
@media (max-width: 428px) {
  header .border_line .inbox nav {
    display: none;
  }
}
header .border_line .inbox nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .border_line .inbox nav ul li {
  flex: 0 0 auto;
}
header .border_line .inbox nav ul li a {
  transition: opacity none;
  transition: color .3s ease;
}
header .border_line .inbox nav ul li a:hover, header .border_line .inbox nav ul li a.active {
  opacity: 1;
  color: #c50018;
}
header .border_line .inbox nav ul li.contact {
  width: calc((226/1165)*100%);
}
header .border_line .inbox nav ul li.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c50018;
  font-size: 20px;
  color: #fff;
  border-radius: 100px;
  padding: 7% 0;
  transition: background-color .3s ease;
}
@media (max-width: 1920px) {
  header .border_line .inbox nav ul li.contact a {
    font-size: 1.04vw;
  }
}
header .border_line .inbox nav ul li.contact a:hover {
  background-color: #e02b35;
}
header .border_line .inbox nav ul li.contact a i {
  width: calc((30/208)*100%);
  margin-right: 5%;
  line-height: 0;
}

/* ***********************************************************
* バーガーメニュー #global-nav
* *********************************************************** */
.open #global-nav {
  z-index: 1000;
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: opacity .5s,transform .5s;
  transition-delay: .2s;
}
.open #global-nav ul {
  display: table-cell;
}

#global-nav {
  display: none;
}
@media (max-width: 428px) {
  #global-nav {
    position: fixed;
    display: table;
    opacity: 0;
    width: auto;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transition: opacity 0s,transform 0s;
    transform: translate(-40%, -50%);
    -webkit-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    color: #fff;
    font-size: 4.67vw;
  }
  #global-nav ul {
    display: none;
    vertical-align: middle;
    list-style: none;
    margin-top: 7%;
  }
  #global-nav ul li:last-child a {
    padding-bottom: 0;
  }
  #global-nav ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 7% 0;
    opacity: 1;
    transition: opacity .3s;
  }
  #global-nav ul li a:hover, #global-nav ul li a:active {
    opacity: .6;
  }
}

/* ***********************************************************
* #nav-bg
* *********************************************************** */
#nav-bg {
  display: none;
}
@media (max-width: 428px) {
  #nav-bg {
    display: block;
    content: "";
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    position: fixed;
    background-color: transparent;
    -webkit-transform: translateX(150vw);
    transform: translateX(150vw);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 100;
  }
}

.open #nav-bg {
  background-color: #1c2955;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* ***********************************************************
* #nav-toggle
* *********************************************************** */
#nav-toggle {
  display: none;
}
@media (max-width: 428px) {
  #nav-toggle {
    display: block;
    position: fixed;
    right: calc((20/428)*100vw);
    top: calc((35/428)*100vw);
    width: calc((42/428)*100vw);
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
  }
  #nav-toggle .close_btn {
    display: none;
  }
}

.open #nav-toggle {
  background: transparent;
}
.open #nav-toggle .burger_menu {
  display: none;
}
.open #nav-toggle .close_btn {
  display: block;
  position: fixed;
  right: calc((20/428)*100vw);
  top: calc((35/428)*100vw);
  width: calc((30/428)*100vw);
  cursor: pointer;
}

header.top .mainphoto_box img {
  height: auto;
}
header.top .mainphoto_box .slick-list {
  margin: 0 -18px;
}
@media (max-width: 741px) {
  header.top .mainphoto_box .slick-list {
    margin: 0;
  }
}
header.top .mainphoto_box .slick-slide {
  margin: 0 18px;
}
@media (max-width: 741px) {
  header.top .mainphoto_box .slick-slide {
    margin: 0;
  }
}
header.top .mainphoto_box .slick-dots {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 5px 10px;
  border-radius: 20px;
}
header.top .mainphoto_box .slick-dots li {
  margin: 0 10px;
}
@media (max-width: 741px) {
  header.top .mainphoto_box .slick-dots li {
    max-width: 100%;
    width: auto;
  }
}
header.top .mainphoto_box .slick-dots li button:before {
  color: white;
  font-size: 16px;
  opacity: 1;
  color: #888;
}
header.top .mainphoto_box .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ccc;
}
header.top .mainphoto_box li {
  max-width: 741px;
}
@media (max-width: 740px) {
  header.top .mainphoto_box li {
    max-width: auto;
    width: 100%;
  }
}
header.top .mainphoto_box .arrow_box {
  width: 806px;
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transition: all .3s;
}
@media (max-width: 803px) {
  header.top .mainphoto_box .arrow_box {
    width: 100%;
  }
}
header.top .mainphoto_box .arrow_box .slide-arrow {
  position: absolute;
  transition: all .3s;
  border: none;
}
header.top .mainphoto_box .arrow_box .slide-arrow:hover, header.top .mainphoto_box .arrow_box .slide-arrow:active {
  cursor: pointer;
}
@media (max-width: 428px) {
  header.top .mainphoto_box .arrow_box .slide-arrow {
    top: 38%;
  }
}
header.top .mainphoto_box .arrow_box .prev-arrow {
  left: 0;
  width: 65px;
  height: 65px;
  background: url("../../top/slide_arrow.svg") no-repeat left center;
  background-size: 100% auto;
}
@media (max-width: 428px) {
  header.top .mainphoto_box .arrow_box .prev-arrow {
    width: 40px;
    height: 40px;
    left: -6%;
  }
}
header.top .mainphoto_box .arrow_box .next-arrow {
  right: 0;
  width: 65px;
  height: 65px;
  background: url("../../top/slide_arrow.svg") no-repeat left center;
  background-size: 100% auto;
}
@media (max-width: 428px) {
  header.top .mainphoto_box .arrow_box .next-arrow {
    width: 40px;
    height: 40px;
    right: -6%;
  }
}

section#pickup_info {
  max-width: 1580px;
  margin-bottom: calc((80/1580)*100%);
}
@media (min-width: 1580px) {
  section#pickup_info {
    margin-bottom: 80px;
  }
}
@media (max-width: 1750px) {
  section#pickup_info {
    max-width: 90%;
  }
}
@media (max-width: 428px) {
  section#pickup_info {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((40/428)*100%);
  }
}
section#pickup_info h2 {
  width: calc((226/1580)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (max-width: 1920px) {
  section#pickup_info h2 {
    margin-bottom: calc((60/1580)*100%);
  }
}
@media (max-width: 428px) {
  section#pickup_info h2 {
    width: calc((170/428)*100%);
    margin-bottom: calc((25/428)*100%);
  }
}
section#pickup_info .slider_pickup ul {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#pickup_info .slider_pickup ul {
    overflow: hidden;
  }
}
@media (max-width: 428px) {
  section#pickup_info .slider_pickup .slick-list {
    overflow: visible;
  }
}
section#pickup_info .slider_pickup .slick-list li.slick-slide {
  margin: 0 1vw;
  position: relative;
}
@media (min-width: 1920px) {
  section#pickup_info .slider_pickup .slick-list li.slick-slide {
    margin: 0 15px;
  }
}
@media (max-width: 428px) {
  section#pickup_info .slider_pickup .slick-list li.slick-slide {
    margin: 0 2vw;
  }
}
section#pickup_info .slider_pickup .slick-list li.slick-slide a {
  color: #fff;
}
section#pickup_info .slider_pickup .slick-list li.slick-slide a img {
  opacity: 1;
  transition: opacity .3s;
}
section#pickup_info .slider_pickup .slick-list li.slick-slide a:hover img, section#pickup_info .slider_pickup .slick-list li.slick-slide a:active img {
  opacity: .7;
}
section#pickup_info .slider_pickup .slick-list li.slick-slide a p {
  margin-top: 10%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1920px) {
  section#pickup_info .slider_pickup .slick-list li.slick-slide a p {
    font-size: 1.33vw;
  }
}
@media (max-width: 428px) {
  section#pickup_info .slider_pickup .slick-list li.slick-slide a p {
    font-size: 3.738vw;
  }
}
@media (max-width: 428px) {
  section#pickup_info .slider_pickup .slick-list li.slick-slide a p {
    font-size: 3.738vw;
  }
}
section#pickup_info .slider_pickup button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
section#pickup_info .slider_pickup .slick-prev.slick-disabled:before, section#pickup_info .slider_pickup .slick-next.slick-disabled:before {
  display: none;
}
section#pickup_info .slider_pickup .slide-arrow {
  position: absolute;
  z-index: 50;
  top: 55%;
  transform: translate(0, -55%);
  -webkit-transform: translate(0, -55%);
  -ms-transform: translate(0, -55%);
  transition: all .3s;
}
section#pickup_info .slider_pickup .slide-arrow:hover {
  cursor: pointer;
}
section#pickup_info .slider_pickup .prev-arrow {
  left: -3%;
  width: 30px;
  height: 76px;
  background: url("../images/arrow_left.svg") no-repeat left center;
  background-size: 100% auto;
}
@media (max-width: 1920px) {
  section#pickup_info .slider_pickup .prev-arrow {
    width: calc((30/1920)*100vw);
    height: calc((76/1920)*100vw);
  }
}
section#pickup_info .slider_pickup .next-arrow {
  right: -3%;
  width: 30px;
  height: 76px;
  background: url("../images/arrow_right.svg") no-repeat left center;
  background-size: 100% auto;
}
@media (max-width: 1920px) {
  section#pickup_info .slider_pickup .next-arrow {
    width: calc((30/1920)*100vw);
    height: calc((76/1920)*100vw);
  }
}

section#news_info {
  max-width: 1580px;
}
@media (max-width: 1580px) {
  section#news_info {
    max-width: 90%;
  }
}
@media (max-width: 428px) {
  section#news_info {
    max-width: 100% !important;
    width: 100%;
  }
}
section#news_info h2 {
  width: calc((192/1580)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 88px;
}
@media (max-width: 1920px) {
  section#news_info h2 {
    margin-bottom: calc((80/1580)*100%);
  }
}
@media (max-width: 428px) {
  section#news_info h2 {
    width: calc((145/428)*100%);
    margin-bottom: calc((25/428)*100%);
  }
}
section#news_info .news_box {
  max-width: 1165px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#news_info .news_box {
    width: 90%;
  }
}
section#news_info .news_box a {
  display: block;
  margin-bottom: 1em;
}
@media (max-width: 428px) {
  section#news_info .news_box a {
    border-bottom: 1px solid #251e1c;
    padding-bottom: 1em;
  }
}
section#news_info .news_box a dl {
  display: flex;
  font-size: 22px;
}
@media (max-width: 1580px) {
  section#news_info .news_box a dl {
    font-size: 1.15vw;
  }
}
@media (max-width: 428px) {
  section#news_info .news_box a dl {
    font-size: 4.21vw;
  }
}
section#news_info .news_box a dl:last-child {
  margin-bottom: 0;
}
section#news_info .news_box a dl dd {
  margin-right: 3%;
}
@media (max-width: 428px) {
  section#news_info .news_box a dl dd {
    margin-right: 7%;
  }
}

section#concept_top {
  width: 4200px;
  position: relative;
  z-index: -1;
}
@media (max-width: 428px) {
  section#concept_top {
    width: 100%;
  }
}
@media (max-width: 4200px) {
  section#concept_top img {
    width: calc((4200/1920)*100%);
    left: 50%;
    top: 15%;
    transform: translate(-50%, -15%);
    position: relative;
  }
}
@media (max-width: 428px) {
  section#concept_top img {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
  }
}

section#about_us {
  line-height: 0;
  margin-bottom: 150px;
}
@media (max-width: 1920px) {
  section#about_us {
    margin-bottom: calc((150/1920)*100%);
  }
}
@media (max-width: 428px) {
  section#about_us {
    margin-bottom: calc((88/428)*100%);
  }
}
section#about_us .title_border {
  line-height: calc(26 / 16);
}

section#recruit_top h2 {
  width: calc((192/1920)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  margin-bottom: 88px;
}
@media (max-width: 1920px) {
  section#recruit_top h2 {
    margin-top: calc((48/1920)*100%);
    margin-bottom: calc((72/1920)*100%);
  }
}
@media (max-width: 428px) {
  section#recruit_top h2 {
    width: calc((145/428)*100%);
    margin-top: calc((50/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#recruit_top ul {
  display: flex;
  justify-content: space-between;
  width: calc((1266/1920)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#recruit_top ul {
    display: block;
    width: calc((390/428)*100%);
  }
}
section#recruit_top ul li {
  width: calc((550/1266)*100%);
}
@media (max-width: 428px) {
  section#recruit_top ul li {
    width: 100%;
    margin-bottom: 1em;
  }
}

section#professional_top {
  margin-top: 127px;
  position: relative;
}
@media (max-width: 428px) {
  section#professional_top {
    margin-top: calc((100/428)*100%);
    margin-bottom: 0;
  }
}
section#professional_top h2 {
  width: calc((323/1920)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 200px;
}
@media (max-width: 1920px) {
  section#professional_top h2 {
    margin-top: calc((48/1920)*100%);
    margin-bottom: calc((200/1920)*100%);
  }
}
@media (max-width: 428px) {
  section#professional_top h2 {
    width: calc((244/428)*100%);
    margin-top: calc((50/428)*100%);
    margin-bottom: calc((60/428)*100%);
  }
}
section#professional_top ul {
  display: flex;
  justify-content: space-between;
  width: calc((1266/1920)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#professional_top ul {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 10vw 0;
    background-image: url("../../top/professional_bg_sp.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
  }
}
section#professional_top ul li {
  width: calc((550/1266)*100%);
}
@media (max-width: 428px) {
  section#professional_top ul li {
    width: calc((390/428)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
  }
}

section#etc_category {
  max-width: 100%;
  margin-top: 16%;
  margin-bottom: 0;
  padding-bottom: 25%;
  background-image: url("../../top/etccategory_bg.png");
  background-repeat: no-repeat;
  background-position: top 105% left 70%;
  background-size: 120% auto;
}
@media (min-width: 1920px) {
  section#etc_category {
    margin-top: 300px;
  }
}
@media (min-width: 2100px) {
  section#etc_category {
    background-size: contain;
  }
}
@media (max-width: 428px) {
  section#etc_category {
    background: none;
  }
}
section#etc_category .inbox {
  max-width: 1322px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1920px) {
  section#etc_category .inbox {
    max-width: 70%;
  }
}
@media (max-width: 428px) {
  section#etc_category .inbox {
    display: none;
  }
}
section#etc_category .inbox a {
  position: relative;
  width: calc((636/1322)*100%);
}
section#etc_category .inbox a.brand dl dt {
  width: calc((192/636)*100%);
  position: absolute;
  top: -10%;
  left: -10%;
  z-index: 10;
}
section#etc_category .inbox a.cheerup {
  margin-top: 20%;
  margin-left: -8%;
}
section#etc_category .inbox a.cheerup dt {
  width: calc((521/636)*100%);
  position: absolute;
  top: -10%;
  right: -40%;
  z-index: 10;
}
section#etc_category .inbox a.cheerup dd p {
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}
section#etc_category .inbox a dd {
  position: relative;
}
section#etc_category .inbox a dd p {
  display: inline-block;
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  background-color: #c50018;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  padding: .5em 2em;
  border-radius: 100px;
  transition: background .3s;
}
section#etc_category .inbox a:hover dd p, section#etc_category .inbox a:active dd p {
  opacity: 1;
  background-color: #e02b35;
}
section#etc_category .sp_inbox {
  display: none;
}
@media (max-width: 428px) {
  section#etc_category .sp_inbox {
    display: block;
  }
}
section#etc_category .sp_inbox a {
  display: block;
}
section#etc_category .sp_inbox a h2 {
  margin-bottom: 7%;
}
section#etc_category .sp_inbox a p.circle {
  overflow-x: hidden;
}
section#etc_category .sp_inbox a p.circle img {
  width: 120%;
  object-fit: cover;
  margin-left: -10%;
}
section#etc_category .sp_inbox a.brand h2 {
  width: calc((145/428)*100%);
  margin-left: auto;
  margin-right: auto;
}
section#etc_category .sp_inbox a.cheerup h2 {
  width: calc((363/428)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20%;
}

@keyframes top_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes top_fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes top_zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes top_zoomDown {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes secondmain-h1_fadin {
  0% {
    opacity: 0;
    transform: translate(-60%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.fade_box {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100svh;
  height: 100vh;
  background: #fff;
  pointer-events: none;
  animation: top_fadeOut 2s ease-out 0s 1 normal forwards;
}

section#concept {
  max-width: 1920px;
  border-bottom: 6px solid #c50018;
  margin-bottom: 70px;
}
@media (max-width: 1920px) {
  section#concept {
    margin-bottom: calc((70/1920)*100%);
  }
}
@media (max-width: 428px) {
  section#concept {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((38/428)*100%);
    padding-bottom: calc((38/428)*100%);
    border-bottom: 3.5px solid #c50018;
  }
}
section#concept h1 {
  width: 192px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#concept h1 {
    width: calc((192/1200)*100%);
  }
}
@media (max-width: 1920px) {
  section#concept h1 {
    margin-bottom: calc((120/1920)*100%);
  }
}
@media (max-width: 428px) {
  section#concept h1 {
    width: calc((144/428)*100%);
    margin-bottom: calc((80/428)*100%);
  }
}
section#concept img.concept {
  border-bottom: 6px solid #c50018;
}
@media (max-width: 428px) {
  section#concept img.concept {
    border-bottom: 3.5px solid #c50018;
    margin-bottom: calc((50/428)*100%);
  }
}
section#concept dl {
  display: flex;
  justify-content: space-between;
  width: calc((975/1920)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc((65/1920)*100%);
  margin-bottom: calc((65/1920)*100%);
}
@media (max-width: 428px) {
  section#concept dl {
    display: block;
    width: calc((365/428)*100%);
  }
}
section#concept dl dt {
  width: calc((260/975)*100%);
}
@media (max-width: 428px) {
  section#concept dl dt {
    width: calc((190/365)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc((50/365)*100%);
  }
}
section#concept dl dd {
  width: calc((620/975)*100%);
  font-size: 20px;
}
@media (max-width: 1920px) {
  section#concept dl dd {
    font-size: 1.04vw;
  }
}
@media (max-width: 428px) {
  section#concept dl dd {
    width: 100%;
    font-size: 3.738vw;
  }
}

section#greeting {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#greeting {
    margin-bottom: calc((120/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#greeting {
    margin-bottom: calc((75/428)*100%);
  }
}
section#greeting img.outline {
  display: block;
  width: calc((850/1200)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media (max-width: 1920px) {
  section#greeting img.outline {
    margin-bottom: calc((70/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#greeting img.outline {
    width: 100%;
    margin-bottom: calc((50/428)*100%);
  }
}
section#greeting h2 {
  width: calc((210/1200)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#greeting h2 {
    width: calc((153/428)*100%);
    margin-bottom: calc((33/428)*100%);
  }
}
section#greeting .greeting_box {
  position: relative;
  background-image: url("../../outline/img04.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding-bottom: 81.66%;
}
@media (max-width: 428px) {
  section#greeting .greeting_box {
    background-image: url("../../outline/img04_sp.jpg");
    padding-bottom: 0;
  }
}
section#greeting .greeting_box .inbox {
  position: absolute;
  width: calc((473/1200)*100%);
  left: 10%;
  bottom: 3%;
  font-size: 17px;
}
@media (max-width: 1200px) {
  section#greeting .greeting_box .inbox {
    font-size: 1.42vw;
  }
}
@media (max-width: 428px) {
  section#greeting .greeting_box .inbox {
    font-size: 3.972vw;
  }
}
@media (max-width: 428px) {
  section#greeting .greeting_box .inbox {
    position: relative;
    width: calc((365/428)*100%);
    padding-top: 95%;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
  }
}
section#greeting .greeting_box .inbox p {
  line-height: calc((31/17)*100%);
  margin-bottom: 2%;
}
section#greeting .greeting_box .inbox p.letter {
  letter-spacing: -.04em;
}
section#greeting .greeting_box .inbox strong {
  display: block;
  text-align: right;
  margin-top: 5%;
}
@media (max-width: 428px) {
  section#greeting .greeting_box .inbox strong {
    position: absolute;
    top: 25%;
    left: 15%;
    text-align: left;
    font-size: 2.8vw;
  }
}
section#greeting .greeting_box .inbox strong span {
  letter-spacing: .2em;
  font-size: 22px;
}
@media (max-width: 1200px) {
  section#greeting .greeting_box .inbox strong span {
    font-size: 1.83vw;
  }
}
@media (max-width: 428px) {
  section#greeting .greeting_box .inbox strong span {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#greeting .greeting_box .inbox strong span {
    display: block;
  }
}

section#outline {
  max-width: 100%;
}
@media (max-width: 428px) {
  section#outline {
    margin-bottom: calc((80/428)*100%);
  }
}
section#outline h2 {
  max-width: 192px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#outline h2 {
    max-width: calc((192/1200)*100%);
    margin-bottom: calc((120/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#outline h2 {
    max-width: calc((141/428)*100%);
    margin-bottom: calc((64/428)*100%);
  }
}
section#outline h3 {
  text-align: center;
  font-size: 24px;
  margin-top: 130px;
  margin-bottom: 75px;
}
@media (max-width: 1200px) {
  section#outline h3 {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#outline h3 {
    font-size: 5.14vw;
  }
}
@media (max-width: 1200px) {
  section#outline h3 {
    margin-top: calc((130/1200)*100%);
    margin-bottom: calc((75/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#outline h3 {
    font-size: 3.972vw;
  }
}
section#outline dl {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #251e1c;
  padding-left: 10%;
  padding-bottom: 2%;
  margin-bottom: 2%;
}
@media (min-width: 1200px) {
  section#outline dl {
    padding-left: 120px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 428px) {
  section#outline dl {
    display: block;
    padding-left: 8%;
  }
}
section#outline dl.noborder {
  border-bottom: none;
  padding-bottom: 1%;
  margin-bottom: 1%;
}
@media (min-width: 1200px) {
  section#outline dl.noborder {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 428px) {
  section#outline dl.noborder {
    margin-bottom: 1em;
  }
  section#outline dl.noborder dt {
    margin-bottom: .5em;
  }
}
section#outline dl.noborder.head {
  border-top: 1px solid #251e1c;
  padding-top: 1em;
}
@media (max-width: 428px) {
  section#outline dl.noborder.head dt {
    margin-bottom: .5em;
  }
}
section#outline dl.noborder.foot {
  border-bottom: 1px solid #251e1c;
  padding-bottom: 1em;
  margin-bottom: calc((180/1200)*100%);
}
@media (min-width: 1200px) {
  section#outline dl.noborder.foot {
    margin-bottom: 180px;
  }
}
@media (max-width: 428px) {
  section#outline dl.noborder.foot {
    margin-bottom: 0;
  }
}
section#outline dl.noborder dt {
  font-weight: 400;
}
section#outline dl dt {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#outline dl dt {
    font-size: 1.83vw;
  }
}
@media (max-width: 428px) {
  section#outline dl dt {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#outline dl dt {
    font-size: 3.972vw;
  }
}
section#outline dl dd {
  font-size: 20px;
  width: calc((800/1200)*100%);
}
@media (max-width: 1200px) {
  section#outline dl dd {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#outline dl dd {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#outline dl dd {
    width: 100%;
    font-size: 3.738vw;
  }
}
section#outline iframe {
  margin-bottom: 5%;
}
section#outline iframe.margin {
  margin-bottom: 0;
}

section#sdgs {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#sdgs {
    margin-bottom: calc((120/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#sdgs {
    width: 95%;
    margin-bottom: calc((57/428)*100%);
  }
}
section#sdgs h2 {
  width: calc((193/1200)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((54/1200)*100%);
}
@media (max-width: 428px) {
  section#sdgs h2 {
    width: calc((140/400)*100%);
    margin-bottom: calc((60/400)*100%);
  }
}
section#sdgs img.sdgs {
  display: block;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((67/1200)*100%);
}
section#sdgs .grid_container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  gap: 2% calc((74/1200)*100%);
  margin-bottom: calc((67/1200)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  section#sdgs .grid_container {
    width: 90%;
  }
}
@media (max-width: 428px) {
  section#sdgs .grid_container {
    display: block;
    width: 95%;
  }
}
section#sdgs .grid_container .grid_item {
  font-size: 17px;
  line-height: calc((35/17)*100%);
}
@media (max-width: 1200px) {
  section#sdgs .grid_container .grid_item {
    font-size: 1.42vw;
  }
}
@media (max-width: 428px) {
  section#sdgs .grid_container .grid_item {
    font-size: 3.972vw;
  }
}
@media (max-width: 428px) {
  section#sdgs .grid_container .grid_item {
    margin-bottom: 1.5em;
  }
}
section#sdgs .grid_container .grid_item.attention {
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  color: #cda631;
  font-weight: 700;
  line-height: calc((35/20)*100%);
}
@media (max-width: 1200px) {
  section#sdgs .grid_container .grid_item.attention {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#sdgs .grid_container .grid_item.attention {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#sdgs .grid_container .grid_item.attention {
    font-size: 3.738vw;
  }
}
section#sdgs .grid_container .grid_item.attention img {
  width: calc((157/563)*100%);
  margin-right: 3%;
}
section#sdgs .text_box {
  width: calc((630/1200)*100%);
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}
@media (max-width: 1200px) {
  section#sdgs .text_box {
    font-size: 1.33vw;
  }
}
@media (max-width: 428px) {
  section#sdgs .text_box {
    font-size: 3.738vw;
  }
}
@media (max-width: 428px) {
  section#sdgs .text_box {
    width: 100%;
  }
}
section#sdgs .text_box .border_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #c50018;
  border-radius: 8px;
  padding: 1em;
  line-height: calc((26/13)*100%);
}
@media (max-width: 428px) {
  section#sdgs .text_box .border_box {
    display: block;
  }
}
section#sdgs .text_box .border_box img {
  display: block;
  width: calc((90/630)*100%);
  margin-right: 3%;
}
@media (max-width: 428px) {
  section#sdgs .text_box .border_box img {
    width: calc((65/380)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
  }
}

section#works {
  max-width: 1200px;
  margin-bottom: 70px;
}
@media (max-width: 1200px) {
  section#works {
    margin-bottom: calc((70/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#works {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((38/428)*100%);
    padding-bottom: calc((38/428)*100%);
  }
}
section#works h1 {
  width: 314px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#works h1 {
    width: calc((314/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#works h1 {
    width: calc((240/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#works .works_box {
  margin-bottom: calc((80/1200)*100%);
}
section#works .works_box h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc((54/1200)*100%);
}
@media (max-width: 1200px) {
  section#works .works_box h2 {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#works .works_box h2 {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#works .works_box h2 {
    font-size: 3.972vw;
    margin-bottom: calc((45/428)*100%);
  }
}
section#works .works_box img.pc {
  display: block;
  width: calc((1145/1200)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((54/1200)*100%);
}
@media (max-width: 428px) {
  section#works .works_box img.pc {
    display: none;
  }
}
section#works .works_box img.sp {
  display: none;
}
@media (max-width: 428px) {
  section#works .works_box img.sp {
    display: block;
    width: calc((360/428)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc((50/428)*100%);
  }
}
section#works .works_box p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#works .works_box p {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#works .works_box p {
    font-size: 4.21vw;
  }
}
@media (max-width: 428px) {
  section#works .works_box p {
    font-size: 3.505vw;
    line-height: calc(33/15);
  }
}
section#works img.photo {
  display: block;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  width: 100vw;
  max-width: 1920px;
  margin-bottom: calc((128/1920)*100%);
}
@media (max-width: 428px) {
  section#works img.photo {
    display: none;
  }
}
section#works img.photo.sp {
  display: none;
}
@media (max-width: 428px) {
  section#works img.photo.sp {
    display: block;
  }
}
section#works .items_box {
  text-align: center;
}
section#works .items_box h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc((15/1200)*100%);
}
@media (max-width: 1200px) {
  section#works .items_box h2 {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#works .items_box h2 {
    font-size: 4.67vw;
  }
}
section#works .items_box p {
  text-align: center;
  font-size: 18px;
}
@media (max-width: 1200px) {
  section#works .items_box p {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#works .items_box p {
    font-size: 4.21vw;
  }
}
@media (max-width: 428px) {
  section#works .items_box p {
    font-size: 3.505vw;
    margin-bottom: calc((50/428)*100%);
  }
}
section#works .items_box h3 {
  margin-top: calc((65/1200)*100%);
  margin-bottom: calc((58/1200)*100%);
}
@media (max-width: 428px) {
  section#works .items_box h3 {
    margin-bottom: calc((58/428)*100%);
  }
}
section#works .items_box h3 img {
  display: block;
  width: calc((53/1200)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#works .items_box h3 img {
    width: calc((56/428)*100%);
  }
}
section#works .items_box h3 strong {
  margin-top: calc((25/1200)*100%);
  display: block;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#works .items_box h3 strong {
    font-size: 1.33vw;
  }
}
@media (max-width: 428px) {
  section#works .items_box h3 strong {
    font-size: 3.738vw;
  }
}
section#works .items_box img.items_icon {
  width: calc((695/1200)*100%);
}
@media (max-width: 428px) {
  section#works .items_box img.items_icon {
    width: calc((345/428)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc((100/428)*100%);
  }
}
section#works .title_border {
  margin-top: calc((90/1200)*100%);
  margin-bottom: calc((100/1200)*100%);
}
section#works dl {
  display: flex;
  justify-content: space-between;
  width: calc((975/1920)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc((65/1920)*100%);
  margin-bottom: calc((65/1920)*100%);
}
@media (max-width: 428px) {
  section#works dl {
    display: block;
    width: calc((365/428)*100%);
  }
}
section#works dl dt {
  width: calc((260/975)*100%);
}
@media (max-width: 428px) {
  section#works dl dt {
    width: calc((190/365)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc((50/365)*100%);
  }
}
section#works dl dd {
  width: calc((620/975)*100%);
  font-size: 20px;
}
@media (max-width: 1920px) {
  section#works dl dd {
    font-size: 1.04vw;
  }
}
@media (max-width: 428px) {
  section#works dl dd {
    width: 100%;
    font-size: 3.738vw;
  }
}

section#list {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 180px;
}
@media (max-width: 1200px) {
  section#list {
    width: 95%;
    margin-bottom: calc((180/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#list {
    margin-bottom: calc((75/428)*100%);
  }
}
section#list h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc((96/1200)*100%);
}
@media (max-width: 1200px) {
  section#list h2 {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#list h2 {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#list h2 {
    font-size: 4.21vw;
    margin-bottom: calc((33/428)*100%);
  }
}
section#list ul {
  overflow: hidden;
  font-size: 20px;
}
@media (max-width: 1200px) {
  section#list ul {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#list ul {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#list ul {
    width: 98%;
    font-size: 3.738vw;
    margin-left: auto;
    margin-right: auto;
  }
}
section#list ul li {
  float: left;
  margin-right: 3%;
  margin-bottom: 1em;
}
section#list ul li.clear {
  clear: both;
}
@media (max-width: 428px) {
  section#list ul li.clear {
    clear: none;
  }
}
section#list ul li.right {
  text-align: right;
  width: 90%;
}
@media (max-width: 428px) {
  section#list ul li.right {
    width: 100%;
  }
}
section#list ul li a:hover {
  text-decoration: underline;
}

section#cheerup {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#cheerup {
    margin-bottom: calc((120/1200)*100%);
  }
}
section#cheerup h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: calc((62/1200)*100%);
}
@media (max-width: 1200px) {
  section#cheerup h2 {
    font-size: 1.83vw;
  }
}
@media (max-width: 428px) {
  section#cheerup h2 {
    font-size: 5.14vw;
  }
}
section#cheerup h2 strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-top: .5em;
}
@media (max-width: 1200px) {
  section#cheerup h2 strong {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#cheerup h2 strong {
    font-size: 4.21vw;
  }
}
section#cheerup .text_box {
  display: flex;
  justify-content: space-between;
  margin-top: calc((72/1200)*100%);
  margin-bottom: calc((52/1200)*100%);
  text-align: justify;
}
@media (max-width: 1200px) {
  section#cheerup .text_box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 428px) {
  section#cheerup .text_box {
    display: block;
    width: 85%;
  }
}
section#cheerup .text_box .inbox {
  width: 47.5%;
  line-height: calc(35/18);
}
@media (max-width: 428px) {
  section#cheerup .text_box .inbox {
    width: 100%;
  }
}
section#cheerup .text_box .inbox p {
  margin-bottom: .5em;
}
@media (max-width: 428px) {
  section#cheerup .text_box .inbox p {
    margin-bottom: 1em;
  }
  section#cheerup .text_box .inbox p span {
    display: inline;
  }
}
section#cheerup .photo_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc((112/1200)*100%);
}
@media (max-width: 1200px) {
  section#cheerup .photo_box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 428px) {
  section#cheerup .photo_box {
    display: block;
    width: 85%;
  }
}
section#cheerup .photo_box img {
  width: 47.5%;
}
@media (max-width: 428px) {
  section#cheerup .photo_box img {
    width: 100%;
  }
  section#cheerup .photo_box img:first-child {
    margin-bottom: 1em;
  }
}
section#cheerup .cheerup_brand {
  border-top: 5px solid #c50018;
  border-bottom: 5px solid #c50018;
  padding: calc((50/1200)*100%) calc((50vw - 50%) );
  padding-left: calc((50vw - 50%) );
  margin-left: calc((50% - 50vw) );
  width: 100dvw;
}
@media (max-width: 428px) {
  section#cheerup .cheerup_brand {
    width: 100%;
    padding: 0;
    margin: auto;
    padding-top: calc((50/428)*100%);
    padding-bottom: calc((50/428)*100%);
  }
}
section#cheerup .cheerup_brand dl {
  width: calc((1080/1200)*100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  section#cheerup .cheerup_brand dl {
    width: 90%;
  }
}
@media (max-width: 428px) {
  section#cheerup .cheerup_brand dl {
    width: 85%;
    display: block;
  }
}
section#cheerup .cheerup_brand dl dt {
  width: calc((338/1080)*100%);
}
@media (max-width: 428px) {
  section#cheerup .cheerup_brand dl dt {
    width: calc((247/363)*100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc((48/363)*100%);
  }
}
section#cheerup .cheerup_brand dl dd {
  font-size: 20px;
  line-height: 2;
  width: object-fit;
}
@media (max-width: 1200px) {
  section#cheerup .cheerup_brand dl dd {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#cheerup .cheerup_brand dl dd {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#cheerup .cheerup_brand dl dd {
    font-size: 4.439vw;
    line-height: calc(35/19);
  }
}

section#recruit {
  max-width: 1200px;
  margin-bottom: 70px;
}
@media (max-width: 1200px) {
  section#recruit {
    margin-bottom: calc((70/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#recruit {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((38/428)*100%);
    padding-bottom: calc((38/428)*100%);
  }
}
section#recruit h1 {
  width: 192px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#recruit h1 {
    width: calc((192/1200)*100%);
    margin-bottom: calc((120/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#recruit h1 {
    width: calc((140/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#recruit .recruit_box {
  width: calc((890/1200)*100%);
  margin-bottom: calc((80/1200)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#recruit .recruit_box {
    width: calc((365/428)*100%);
  }
}
section#recruit .recruit_box h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc((54/1200)*100%);
}
@media (max-width: 1200px) {
  section#recruit .recruit_box h2 {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#recruit .recruit_box h2 {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#recruit .recruit_box h2 {
    font-size: 3.972vw;
    margin-bottom: calc((45/428)*100%);
  }
}
section#recruit .recruit_box p {
  font-size: 17px;
  line-height: calc(35/17);
  margin-bottom: 2em;
}
@media (max-width: 1200px) {
  section#recruit .recruit_box p {
    font-size: 1.42vw;
  }
}
@media (max-width: 428px) {
  section#recruit .recruit_box p {
    font-size: 3.972vw;
  }
}
@media (max-width: 428px) {
  section#recruit .recruit_box p {
    font-size: 3.505vw;
    line-height: calc(33/15);
  }
}
section#recruit .recruit_box p strong {
  font-weight: 700;
}
section#recruit .recruit_box img {
  display: block;
  width: calc((642/890)*100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((54/1200)*100%);
}
@media (max-width: 428px) {
  section#recruit .recruit_box img {
    width: 100%;
    margin-bottom: calc((60/365)*100%);
  }
}
section#recruit .category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  section#recruit .category {
    width: 90%;
    gap: 2.5vw;
    margin-bottom: calc(120(/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#recruit .category {
    display: block;
    width: calc((365/428)*100%);
    margin-bottom: calc((100/365)*100%);
  }
}
section#recruit .category dl {
  border: 1px solid #251e1c;
}
@media (max-width: 428px) {
  section#recruit .category dl {
    display: block;
    width: 100%;
    margin-bottom: calc((23/365)*100%);
  }
}
section#recruit .category dl dt {
  line-height: 0;
}
section#recruit .category dl dd {
  padding: 1em;
  padding-bottom: 1.5em;
  font-size: 17px;
  line-height: calc(35/17);
}
@media (max-width: 1200px) {
  section#recruit .category dl dd {
    font-size: 1.42vw;
  }
}
@media (max-width: 428px) {
  section#recruit .category dl dd {
    font-size: 3.972vw;
  }
}
@media (max-width: 428px) {
  section#recruit .category dl dd {
    font-size: 3.738vw;
  }
}
section#recruit .message_box {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 130px;
}
@media (max-width: 1200px) {
  section#recruit .message_box {
    margin-bottom: calc((130/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#recruit .message_box {
    margin-bottom: 0;
  }
}
section#recruit .message_box h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc((84/1200)*100%);
}
@media (max-width: 1200px) {
  section#recruit .message_box h2 {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#recruit .message_box h2 {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#recruit .message_box h2 {
    font-size: 3.972vw;
    margin-bottom: calc((45/428)*100%);
  }
}
section#recruit .message_box .mov_box {
  width: calc((1020/1200)*100%);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 428px) {
  section#recruit .message_box .mov_box {
    width: 100%;
  }
}
section#recruit .message_box .mov_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#recruit .message_box video {
  width: 100%;
  height: auto;
  display: block;
}
section#recruit .title_border {
  margin-top: calc((130/1200)*100%);
  margin-bottom: calc((130/1200)*100%);
}
@media (max-width: 428px) {
  section#recruit .title_border {
    margin-top: calc((80/428)*100%);
    margin-bottom: 0;
  }
}

section#professional {
  max-width: 1200px;
  margin-bottom: 111px;
}
@media (max-width: 1200px) {
  section#professional {
    margin-bottom: calc((111/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#professional {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((38/428)*100%);
    padding-bottom: 0;
  }
}
section#professional h1 {
  width: 323px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 111px;
}
@media (max-width: 1200px) {
  section#professional h1 {
    width: calc((323/1200)*100%);
    margin-bottom: calc((111/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#professional h1 {
    width: calc((236/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#professional .professional_box {
  margin-bottom: calc((150/1200)*100%);
}
section#professional .professional_box h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2em;
  margin-bottom: calc((60/1200)*100%);
}
@media (max-width: 1200px) {
  section#professional .professional_box h2 {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box h2 {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box h2 {
    font-size: 4.21vw;
    margin-bottom: calc((45/428)*100%);
  }
}
section#professional .professional_box h2 strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
  color: #c50018;
  margin-top: calc((10/1200)*100%);
}
@media (max-width: 1200px) {
  section#professional .professional_box h2 strong {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box h2 strong {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box h2 strong {
    font-size: 3.738vw;
  }
}
section#professional .professional_box h3 {
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((75/1200)*100%);
}
@media (max-width: 1200px) {
  section#professional .professional_box h3 {
    width: 90%;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box h3 {
    width: 100%;
    margin-bottom: calc((40/428)*100%);
  }
}
section#professional .professional_box .colum_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 77px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  section#professional .professional_box .colum_box {
    width: 90%;
    gap: 6.48vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box {
    display: block;
    width: calc((365/428)*100%);
  }
}
section#professional .professional_box .colum_box.line02 {
  grid-template-rows: repeat(2, 0.1fr);
  gap: 30px 75px;
  margin-bottom: 70px;
}
@media (max-width: 1200px) {
  section#professional .professional_box .colum_box.line02 {
    gap: 2.77vw 6.48vw;
    margin-bottom: calc((70/1200)*100%);
  }
}
section#professional .professional_box .colum_box dt {
  line-height: 0;
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dt {
    margin-bottom: calc((25/365)*100%);
  }
}
section#professional .professional_box .colum_box dd strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: calc((60/560)*100%);
}
@media (max-width: 1200px) {
  section#professional .professional_box .colum_box dd strong {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd strong {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd strong {
    font-size: 3.972vw;
  }
}
section#professional .professional_box .colum_box dd strong em {
  font-weight: 700;
  letter-spacing: .3em;
}
section#professional .professional_box .colum_box dd strong span {
  display: block;
  font-size: 18px;
}
@media (max-width: 1200px) {
  section#professional .professional_box .colum_box dd strong span {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd strong span {
    font-size: 4.21vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd strong span {
    font-size: 3.505vw;
  }
}
section#professional .professional_box .colum_box dd p {
  line-height: calc(35/17);
  font-size: 17px;
  margin-bottom: 2.5em;
}
@media (max-width: 1200px) {
  section#professional .professional_box .colum_box dd p {
    font-size: 1.42vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd p {
    font-size: 3.972vw;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd p {
    font-size: 3.738vw;
  }
}
section#professional .professional_box .colum_box dd p.margin {
  margin-bottom: 0;
}
section#professional .professional_box .colum_box dd p.margin01 {
  margin-bottom: .8em;
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd p.margin02 {
    margin-bottom: 3em;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd p.sp_inline {
    margin-bottom: 2.5em;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box .colum_box dd p span {
    display: inline;
  }
}
section#professional .professional_box a.link_banner {
  display: block;
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((75/1200)*100%);
}
@media (max-width: 1200px) {
  section#professional .professional_box a.link_banner {
    width: 90%;
  }
}
@media (max-width: 428px) {
  section#professional .professional_box a.link_banner {
    padding: 0 calc((50vw - 50%) );
    padding-left: calc((50vw - 50%) );
    margin-top: calc((76/428)*100%);
    margin-left: calc((50% - 50vw) );
    width: 100dvw;
  }
}

section#hubcenter {
  max-width: 1200px;
  margin-bottom: 320px;
}
@media (max-width: 1200px) {
  section#hubcenter {
    margin-bottom: calc((320/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#hubcenter {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((112/428)*100%);
  }
}
section#hubcenter h1 {
  width: 448px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}
@media (max-width: 1200px) {
  section#hubcenter h1 {
    width: calc((448/1200)*100%);
    margin-bottom: calc((90/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#hubcenter h1 {
    width: calc((328/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#hubcenter .mov_box {
  margin-bottom: 223px;
}
@media (max-width: 1200px) {
  section#hubcenter .mov_box {
    margin-bottom: calc((223/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#hubcenter .mov_box {
    margin-bottom: calc((56/428)*100%);
  }
}
section#hubcenter .mov_box video {
  width: 100%;
  height: auto;
  display: block;
}
section#hubcenter .mov_box video:hover, section#hubcenter .mov_box video:active {
  cursor: pointer;
}
section#hubcenter .hubcenter_box {
  margin-bottom: calc((80/1200)*100%);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  section#hubcenter .hubcenter_box {
    width: 90%;
  }
}
@media (max-width: 428px) {
  section#hubcenter .hubcenter_box {
    width: calc((365/428)*100%);
  }
}
section#hubcenter .hubcenter_box h2 {
  width: 193px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc((112/1200)*100%);
}
@media (max-width: 1200px) {
  section#hubcenter .hubcenter_box h2 {
    width: calc((193/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#hubcenter .hubcenter_box h2 {
    width: calc((140/428)*100%);
    margin-bottom: calc((45/428)*100%);
  }
}
section#hubcenter .hubcenter_box .facility_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 70px;
}
@media (max-width: 1200px) {
  section#hubcenter .hubcenter_box .facility_box {
    gap: 6.48vw;
  }
}
@media (max-width: 428px) {
  section#hubcenter .hubcenter_box .facility_box {
    display: block;
  }
}
section#hubcenter .hubcenter_box .facility_box dl {
  border: 1px solid #939393;
  text-align: center;
}
@media (max-width: 428px) {
  section#hubcenter .hubcenter_box .facility_box dl {
    margin-bottom: calc((26/365)*100%);
  }
}
section#hubcenter .hubcenter_box .facility_box dl dt {
  line-height: 0;
}
section#hubcenter .hubcenter_box .facility_box dl dd {
  padding: 2em;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#hubcenter .hubcenter_box .facility_box dl dd {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#hubcenter .hubcenter_box .facility_box dl dd {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#hubcenter .hubcenter_box .facility_box dl dd {
    padding: 1.5em;
    font-size: 3.738vw;
  }
}

section#news {
  max-width: 1200px;
  margin-bottom: 200px;
}
@media (max-width: 1200px) {
  section#news {
    margin-bottom: calc((200/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#news {
    margin-bottom: calc((100/428)*100%);
  }
}
section#news h1 {
  width: 192px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}
@media (max-width: 1200px) {
  section#news h1 {
    width: calc((192/1200)*100%);
    margin-bottom: calc((90/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#news h1 {
    width: calc((140/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#news aside {
  margin-bottom: 70px;
}
@media (min-width: 1200px) {
  section#news aside {
    margin-bottom: calc((70/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#news aside {
    padding-top: calc((25/385)*100%);
    margin-bottom: calc((65/385)*100%);
  }
}
section#news aside ul {
  display: flex;
  justify-content: center;
  gap: 0 5%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 428px) {
  section#news aside ul {
    display: block;
    width: calc((200/428)*100%);
  }
}
section#news aside ul li.select a {
  color: #c50018;
  border: 1px solid #c50018;
}
section#news aside ul li a {
  display: block;
  border: 1px solid #9fa0a0;
  border-radius: 10px;
  padding: .5em 5em;
  color: #9fa0a0;
  transition: color .3s,border .3s;
}
section#news aside ul li a:hover {
  color: #c50018;
  border: 1px solid #c50018;
}
@media (max-width: 428px) {
  section#news aside ul li {
    margin-bottom: 2em;
  }
  section#news aside ul li a {
    padding: .3em 0;
  }
  section#news aside ul li:last-child {
    margin-bottom: 0;
  }
}
section#news aside .archive_box {
  display: flex;
  align-items: center;
  gap: 1em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
section#news aside .archive_box strong {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1920px) {
  section#news aside .archive_box strong {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#news aside .archive_box strong {
    font-size: 4.21vw;
  }
}
@media (max-width: 428px) {
  section#news aside .archive_box strong {
    font-size: 4.21vw;
  }
}
section#news dl.news_box {
  border-bottom: 1px solid #9fa0a0;
  margin-bottom: 33px;
  padding: 0 135px;
  padding-bottom: 33px;
}
@media (max-width: 1920px) {
  section#news dl.news_box {
    margin-bottom: calc((33/1200)*100%);
    padding: 0 11.25%;
    padding-bottom: calc((33/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#news dl.news_box {
    padding: 0 8%;
    margin-bottom: calc((33/428)*100%);
    padding-bottom: calc((33/428)*100%);
  }
}
section#news dl.news_box dt {
  display: grid;
  grid-template-columns: 60% 30% 55px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}
@media (max-width: 1200px) {
  section#news dl.news_box dt {
    margin-bottom: calc((42/930)*100%);
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt {
    display: block;
    position: relative;
  }
}
section#news dl.news_box dt strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#news dl.news_box dt strong {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt strong {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt strong {
    width: calc(100% - 55px);
  }
}
section#news dl.news_box dt em {
  display: block;
  font-size: 24px;
  color: #9fa0a0;
}
@media (max-width: 1200px) {
  section#news dl.news_box dt em {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt em {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt em {
    font-size: 4.67vw;
  }
}
section#news dl.news_box dt span {
  display: grid;
  place-content: center;
  height: 55px;
  background-color: #9fa0a0;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  section#news dl.news_box dt span {
    font-size: 0.796vw;
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt span {
    font-size: 2.336vw;
  }
}
@media (max-width: 428px) {
  section#news dl.news_box dt span {
    display: block;
    position: absolute;
    width: 55px;
    top: 0;
    right: 0;
  }
}
section#news dl.news_box dt span.pickup {
  background-color: #c50018;
}
section#news dl.news_box dd {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 0 22px;
}
section#news dl.news_box dd.nophoto {
  display: block;
}
@media (max-width: 428px) {
  section#news dl.news_box dd {
    display: block;
  }
  section#news dl.news_box dd img {
    display: none;
  }
}
section#news .text_box span.new {
  margin-left: .5em;
  margin-right: 0;
  padding-top: .2em;
}
section#news .contents_box {
  max-width: 1200px;
  border-top: 1px solid #9fa0a0;
  padding-top: 2em;
}
@media (max-width: 428px) {
  section#news .contents_box {
    width: 100%;
  }
}
section#news .contents_box .inbox {
  width: calc((960/1200)*100%);
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
section#news .contents_box .inbox .title_box {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 3%;
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box {
    margin-bottom: calc((45/428)*100%);
  }
}
section#news .contents_box .inbox .title_box h2 {
  width: calc(100% - 100px);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1%;
}
@media (max-width: 1200px) {
  section#news .contents_box .inbox .title_box h2 {
    font-size: 2.5vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box h2 {
    font-size: 7.01vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box h2 {
    width: calc(100% - 55px);
    font-size: 4.21vw;
    margin-bottom: 1%;
  }
}
section#news .contents_box .inbox .title_box em {
  font-size: 24px;
  color: #9fa0a0;
}
@media (max-width: 1200px) {
  section#news .contents_box .inbox .title_box em {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box em {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box em {
    font-size: 4.67vw;
  }
}
section#news .contents_box .inbox .title_box span {
  display: grid;
  place-content: center;
  width: 78px;
  height: 78px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  background-color: #9fa0a0;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  color: #fff;
}
@media (max-width: 1200px) {
  section#news .contents_box .inbox .title_box span {
    font-size: 0.94vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box span {
    font-size: 2.8vw;
  }
}
@media (max-width: 1200px) {
  section#news .contents_box .inbox .title_box span {
    width: calc((78/1200)*100vw);
    height: calc((78/1200)*100vw);
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .title_box span {
    font-size: 2.336vw;
    width: calc((55/428)*100vw);
    height: calc((55/428)*100vw);
  }
}
section#news .contents_box .inbox .title_box span.pickup {
  background-color: #c50018;
}
section#news .contents_box .inbox .text_box {
  line-height: 2;
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .text_box {
    font-size: 4.21vw;
  }
}
section#news .contents_box .inbox .text_box h2 {
  font-size: 20px;
  width: auto;
  margin-bottom: 1%;
}
@media (max-width: 1920px) {
  section#news .contents_box .inbox .text_box h2 {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .text_box h2 {
    font-size: 4.67vw;
  }
}
section#news .contents_box .inbox .text_box .wp-block-image img {
  max-width: 100%;
  width: auto;
  line-height: 1;
  margin-bottom: 3%;
}
section#news .contents_box .inbox .text_box p {
  margin-bottom: 3%;
}
section#news .contents_box .inbox .text_box strong {
  font-family: "Noto Sans JP";
  font-weight: 900;
}
section#news .contents_box .inbox .text_box .wp-block-file {
  font-size: 14px;
}
@media (max-width: 1920px) {
  section#news .contents_box .inbox .text_box .wp-block-file {
    font-size: 1.09vw;
  }
}
@media (max-width: 428px) {
  section#news .contents_box .inbox .text_box .wp-block-file {
    font-size: 3.27vw;
  }
}
section#news .contents_box .inbox .text_box .wp-block-file a {
  color: #1c2955;
  text-decoration: underline;
}
section#news .contents_box .inbox .text_box .wp-block-file a:hover {
  text-decoration: none;
}
section#news .contents_box .inbox .text_box .wp-block-file .wp-block-file__embed {
  margin-bottom: 2em;
}
section#news .contents_box .inbox .text_box .wp-block-file .wp-block-file__button {
  background-color: #1c2955;
  color: #fff;
  text-decoration: none;
  margin-left: 1.5em;
}
section#news .pagenavi_box {
  text-align: center;
  margin: calc((80 / 1280)*100%) auto 0;
}
@media (min-width: 1920px) {
  section#news .pagenavi_box {
    margin: 80px auto 0;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box {
    margin-top: calc((70 / 428)*100%);
  }
}
section#news .pagenavi_box .pagenavi_inbox {
  display: inline-block;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box .number_nav {
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box .number_nav {
    margin-bottom: calc((25/1200)*100vw);
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box .number_nav {
    margin-bottom: calc((30/428)*100vw);
  }
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li + li {
  margin-left: 20%;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li a, section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li .empty {
  display: grid;
  width: calc((40/1200)*100vw);
  max-width: 40px;
  height: calc((40/1200)*100vw);
  max-height: 40px;
  place-content: center;
  background-image: url("../images/circle_line.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li a, section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li .empty {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li a, section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li .empty {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li a, section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li .empty {
    width: calc((50/428)*100vw);
    max-width: 50px;
    height: calc((50/428)*100vw);
    max-height: 50px;
  }
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li a:hover, section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li .empty:hover {
  text-decoration: none;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul.arrow_nav li .empty {
  color: #9fa0a0;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul li + li {
  margin-left: 15%;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul li a {
  display: block;
  padding: 0;
  color: #251e1c;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box ul li a {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box ul li a {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box .pagenavi_inbox .pager_box ul li a {
    font-size: 5.607vw;
  }
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul li a:hover {
  opacity: 1;
  color: #c50018;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box ul li a.active {
  font-weight: 700;
  color: #c50018;
}
section#news .pagenavi_box .pagenavi_inbox .pager_box span.empty {
  width: 26px;
  display: block;
}
section#news .pagenavi_box.detail {
  max-width: 1200px;
  border-top: 1px solid #9fa0a0;
}
section#news .pagenavi_box.detail .inbox {
  max-width: 128px;
  width: calc((128/1200)*100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  gap: 60px 0;
  margin: 130px auto 0;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  section#news .pagenavi_box.detail .inbox {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox {
    font-size: 5.14vw;
  }
}
@media (max-width: 1200px) {
  section#news .pagenavi_box.detail .inbox {
    margin: calc((130 / 896)*100%) auto 0;
    gap: calc((60/1200)*100vw) 0;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox {
    max-width: 100%;
    width: calc((158/428)*100vw);
    font-size: 6.07vw;
    gap: calc((50/428)*100vw) 0;
    margin-bottom: 3em;
  }
}
section#news .pagenavi_box.detail .inbox .list_link {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  section#news .pagenavi_box.detail .inbox .list_link {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox .list_link {
    font-size: 4.21vw;
  }
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox .list_link {
    font-size: 3.505vw;
  }
}
section#news .pagenavi_box.detail .inbox .list_link a {
  display: block;
  width: calc((105/1200)*100vw);
  max-width: 105px;
  height: auto;
  max-height: auto;
  background: none;
  transition: color .3s;
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox .list_link a {
    width: calc((76/428)*100vw);
    max-width: 76px;
  }
}
section#news .pagenavi_box.detail .inbox .list_link a:hover i img.active {
  opacity: 1;
}
section#news .pagenavi_box.detail .inbox .list_link a:hover i img.off {
  opacity: 0;
}
section#news .pagenavi_box.detail .inbox .list_link a i {
  display: block;
  max-width: 85px;
  width: calc((85/1200)*100vw);
  max-height: 85px;
  height: calc((85/1200)*100vw);
  place-content: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox .list_link a i {
    width: calc((60/428)*100vw);
    height: calc((60/428)*100vw);
  }
}
section#news .pagenavi_box.detail .inbox .list_link a i img {
  display: block;
  width: 100%;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: opacity .3s;
}
section#news .pagenavi_box.detail .inbox .list_link a i img.active {
  opacity: 0;
}
section#news .pagenavi_box.detail .inbox .list_link a i img.off {
  opacity: 1;
}
section#news .pagenavi_box.detail .inbox .list_link a span {
  display: block;
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox .list_link a span {
    font-size: 3.505vw;
  }
}
section#news .pagenavi_box.detail .inbox a {
  color: #939393;
  width: calc((40/1200)*100vw);
  max-width: 40px;
  height: calc((40/1200)*100vw);
  max-height: 40px;
  place-content: center;
  background-image: url("../images/circle_line.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox a {
    width: calc((50/428)*100vw);
    max-width: 50px;
    height: calc((50/428)*100vw);
    max-height: 50px;
  }
}
section#news .pagenavi_box.detail .inbox a:hover {
  color: #c50018;
}
section#news .pagenavi_box.detail .inbox a.prev_link {
  margin-right: 1em;
}
section#news .pagenavi_box.detail .inbox a.next_link {
  margin-left: 1em;
}
section#news .pagenavi_box.detail .inbox span.empty {
  display: block;
  color: #9fa0a0;
  width: calc((40/1200)*100vw);
  max-width: 40px;
  height: calc((40/1200)*100vw);
  max-height: 40px;
  place-content: center;
  background: none;
}
@media (max-width: 428px) {
  section#news .pagenavi_box.detail .inbox span.empty {
    width: calc((50/428)*100vw);
    height: calc((50/428)*100vw);
  }
}

section#contact {
  max-width: 1200px;
  margin-bottom: 320px;
}
@media (max-width: 1200px) {
  section#contact {
    margin-bottom: calc((320/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#contact {
    max-width: 100%;
    width: 100%;
    margin-bottom: calc((112/428)*100%);
  }
}
section#contact h1 {
  width: 197px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}
@media (max-width: 1200px) {
  section#contact h1 {
    width: calc((197/1200)*100%);
    margin-bottom: calc((90/1200)*100%);
  }
}
@media (max-width: 428px) {
  section#contact h1 {
    width: calc((144/428)*100%);
    margin-bottom: calc((50/428)*100%);
  }
}
section#contact form {
  border-top: 1px solid #9fa0a0;
  padding-top: 3em;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  section#contact form {
    width: 90%;
  }
}
@media (max-width: 428px) {
  section#contact form {
    width: 100%;
    padding: 2em 1em;
  }
}
section#contact form dl {
  display: grid;
  grid-template-columns: 307px auto;
  gap: 0 70px;
  font-size: 20px;
}
@media (max-width: 1200px) {
  section#contact form dl {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#contact form dl {
    font-size: 4.67vw;
  }
}
@media (max-width: 1200px) {
  section#contact form dl {
    grid-template-columns: 25% auto;
    gap: 0 5.8vw;
  }
}
@media (max-width: 428px) {
  section#contact form dl {
    display: block;
  }
}
section#contact form dl.margin {
  margin-bottom: 1em;
}
section#contact form dl dt {
  padding: 1em 1.5em;
  background-color: #f2f2f3;
  display: grid;
  align-items: center;
}
section#contact form dl dt.top {
  align-items: flex-start;
}
section#contact form dl dd {
  padding: 1em 0;
}
@media (max-width: 428px) {
  section#contact form dl dd {
    font-size: 3.738vw;
  }
}
section#contact form dl dd input, section#contact form dl dd textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #9fa0a0;
  padding: .5em;
}
@media (max-width: 428px) {
  section#contact form dl dd input, section#contact form dl dd textarea {
    font-size: 16px;
  }
}
section#contact form dl dd label {
  display: block;
}
section#contact form dl dd label.grid {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
section#contact form dl dd label input[type='radio'] {
  width: auto;
  -webkit-appearance: auto;
  margin-right: .5em;
}
section#contact form dl dd label:hover {
  cursor: pointer;
}
section#contact form dl dd .wpcf7-list-item {
  display: block;
}
section#contact form dl dd .wpcf7-list-item label {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
section#contact form .privacy_box {
  width: 858px;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 68px;
  margin-bottom: 3%;
}
@media (max-width: 1200px) {
  section#contact form .privacy_box {
    font-size: 1.5vw;
  }
}
@media (max-width: 428px) {
  section#contact form .privacy_box {
    font-size: 4.21vw;
  }
}
@media (max-width: 1200px) {
  section#contact form .privacy_box {
    width: calc((858/1080)*100%);
    margin-top: calc((68/1080)*100%);
  }
}
@media (max-width: 428px) {
  section#contact form .privacy_box {
    width: 100%;
    font-size: 3.037vw;
  }
}
section#contact form .privacy_box p {
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  section#contact form .privacy_box p {
    margin-top: calc((60/1080)*100%);
  }
}
section#contact form .privacy_box p.margin {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  section#contact form .privacy_box p.margin {
    margin-bottom: 0;
  }
}
section#contact form .privacy_box label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 428px) {
  section#contact form .privacy_box label {
    font-size: 3.738vw;
  }
}
section#contact form .privacy_box label input[type='checkbox'] {
  -webkit-appearance: auto;
  margin-right: .5em;
}
section#contact form .privacy_box label:hover {
  cursor: pointer;
}
section#contact form .submit_btn {
  text-align: center;
}
section#contact form .submit_btn input[type='submit'], section#contact form .submit_btn .conf_button {
  width: 50%;
  padding: .5em 0;
  background-color: #c50018;
  color: #fff;
  border: none;
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  transition: opacity .3s;
}
@media (max-width: 1200px) {
  section#contact form .submit_btn input[type='submit'], section#contact form .submit_btn .conf_button {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#contact form .submit_btn input[type='submit'], section#contact form .submit_btn .conf_button {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#contact form .submit_btn input[type='submit'], section#contact form .submit_btn .conf_button {
    width: 100%;
    font-size: 4.67vw;
  }
}
section#contact form .submit_btn input[type='submit']:hover, section#contact form .submit_btn input[type='submit']:active, section#contact form .submit_btn .conf_button:hover, section#contact form .submit_btn .conf_button:active {
  cursor: pointer;
  opacity: .7;
}
section#contact form .submit_btn input[type='submit']:disabled, section#contact form .submit_btn .conf_button:disabled {
  background-color: #f2f2f3;
  cursor: not-allowed;
}
section#contact form .submit_btn input[type='submit']:disabled:hover, section#contact form .submit_btn input[type='submit']:disabled:active, section#contact form .submit_btn .conf_button:disabled:hover, section#contact form .submit_btn .conf_button:disabled:active {
  opacity: 1;
}
section#contact form .submit_btn .conf_button {
  margin-top: 10%;
}
@media (max-width: 1200px) {
  section#contact form .submit_btn .conf_button {
    margin-top: calc((68/1080)*100%);
  }
}
section#contact form .back_btn {
  text-align: center;
}
section#contact form .back_btn .back_button {
  width: 30%;
  padding: .5em 0;
  background-color: #9fa0a0;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  transition: opacity .3s;
}
@media (max-width: 1200px) {
  section#contact form .back_btn .back_button {
    font-size: 1.67vw;
  }
}
@media (max-width: 428px) {
  section#contact form .back_btn .back_button {
    font-size: 4.67vw;
  }
}
@media (max-width: 428px) {
  section#contact form .back_btn .back_button {
    width: 100%;
    font-size: 4.67vw;
  }
}
section#contact form .back_btn .back_button:hover, section#contact form .back_btn .back_button:active {
  cursor: pointer;
  opacity: .7;
}
section#contact form #form-thanks-area strong {
  display: block;
  color: #c50018;
  letter-spacing: .05em;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2%;
}
@media (max-width: 1200px) {
  section#contact form #form-thanks-area strong {
    font-size: 2vw;
  }
}
@media (max-width: 428px) {
  section#contact form #form-thanks-area strong {
    font-size: 5.14vw;
  }
}
@media (max-width: 428px) {
  section#contact form #form-thanks-area strong {
    font-size: 4.67vw;
    margin-bottom: 5%;
  }
}
section#contact form #form-thanks-area p {
  text-align: center;
}
@media (max-width: 428px) {
  section#contact form #form-thanks-area p {
    text-align: left;
  }
}
section#contact form .wpcf7-spinner {
  visibility: hidden;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
}
section#contact form.submitting .wpcf7-spinner {
  visibility: visible;
}
section#contact form .error-msg {
  font-size: 16px;
  margin-top: .5em;
}
@media (max-width: 1920px) {
  section#contact form .error-msg {
    font-size: 1.33vw;
  }
}
@media (max-width: 428px) {
  section#contact form .error-msg {
    font-size: 3.738vw;
  }
}
@media (max-width: 428px) {
  section#contact form .error-msg {
    font-size: 3.27vw;
  }
}
section#contact form .wpcf7-not-valid-tip, section#contact form .wpcf7-response-output {
  display: none !important;
}
section#contact form .wpcf7-form p {
  display: block;
  position: relative;
}

footer #backToTop {
  position: fixed;
  width: calc((50/1440)*100%);
  z-index: 100;
  right: 4%;
}
@media (min-width: 1920px) {
  footer #backToTop {
    width: 50px;
  }
}
@media (max-width: 428px) {
  footer #backToTop {
    width: calc((50/428)*100%);
    right: 3%;
  }
}
footer #backToTop a:hover {
  opacity: 1;
}
footer .contact_box {
  background-color: #c50018;
}
footer .contact_box .inbox {
  max-width: 1920px;
  padding: 5% 0 3%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 820px) {
  footer .contact_box .inbox {
    padding: 5em 0 3em;
  }
}
@media (max-width: 428px) {
  footer .contact_box .inbox {
    padding: 3.5em 0 2em;
  }
}
footer .contact_box .inbox a:hover img, footer .contact_box .inbox a:active img {
  transform: scale(1.05);
}
footer .contact_box .inbox img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: calc((300/820)*100%);
  transition: transform .3s ease;
}
@media (min-width: 820px) {
  footer .contact_box .inbox img {
    width: 420px;
  }
}
@media (max-width: 428px) {
  footer .contact_box .inbox img {
    width: calc((313/428)*100%);
  }
}
footer .footer_box {
  background-color: #292f58;
}
footer .footer_box .inbox {
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  padding: 5% calc((80/1920)*100%) 3%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1920px) {
  footer .footer_box .inbox {
    padding: 5em calc((80/1920)*100%) 3em;
  }
}
@media (max-width: 428px) {
  footer .footer_box .inbox {
    display: block;
    padding: 3.5em 0 2em;
    width: calc((340/428)*100%);
  }
}
footer .footer_box .inbox .title {
  width: 70%;
}
@media (max-width: 428px) {
  footer .footer_box .inbox .title {
    width: 100%;
  }
}
footer .footer_box .inbox .title strong {
  display: block;
  margin-bottom: 3%;
}
@media (max-width: 428px) {
  footer .footer_box .inbox .title strong {
    margin-bottom: 15%;
  }
}
footer .footer_box .inbox .title strong a {
  color: #fff;
}
footer .footer_box .inbox .title strong img {
  display: block;
  max-width: 484px;
  margin-bottom: 2%;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(314deg) brightness(200%) contrast(100%);
}
@media (max-width: 1920px) {
  footer .footer_box .inbox .title strong img {
    max-width: calc((484/1024)*100%);
  }
}
@media (max-width: 428px) {
  footer .footer_box .inbox .title strong img {
    max-width: 100%;
    margin-bottom: 5%;
  }
}
footer .footer_box .inbox .title strong span {
  display: block;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 1280px) {
  footer .footer_box .inbox .title strong span {
    font-size: 1.09vw;
  }
}
@media (max-width: 428px) {
  footer .footer_box .inbox .title strong span {
    font-size: 2.57vw;
  }
}
footer .footer_box .inbox ul.menu {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
  grid-row-gap: 10px;
}
@media (max-width: 1280px) {
  footer .footer_box .inbox ul.menu {
    font-size: 1.33vw;
  }
}
@media (max-width: 428px) {
  footer .footer_box .inbox ul.menu {
    display: block;
    font-size: 3.738vw;
    text-align: center;
    margin-bottom: 20%;
  }
}
@media (max-width: 428px) {
  footer .footer_box .inbox ul.menu li {
    margin-bottom: 8%;
  }
}
footer .footer_box .inbox ul.menu li a {
  color: #fff;
  transition: opacity .3s;
}
footer .footer_box .inbox ul.menu li a:hover {
  opacity: .6;
}
footer .footer_box .inbox .copyright {
  font-size: 14px;
}
@media (max-width: 1920px) {
  footer .footer_box .inbox .copyright {
    font-size: 0.73vw;
  }
}
@media (max-width: 428px) {
  footer .footer_box .inbox .copyright {
    font-size: 2.336vw;
    text-align: center;
  }
}
