@charset "utf-8";

/*
 * Reset style
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
  border: 0;
  vertical-align: top;
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:focus {
  outline: none;
}

/*
 * base style
 */
*:focus {
  outline: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
*::before,
*::after {
  box-sizing: inherit;
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/* font */
* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* color set */
* {
  --base-color-bg:    rgb(242,240,233);
  --base-color-white: rgb(255,255,255);
  --base-color-red:   rgb(169,42,36);
  --base-color-foot:  rgb(72,71,69);
  --base-color-light: rgb(207,207,207);
  --base-color-gray:  rgb(172,172,172);
  --base-color-dark:  rgb(51,51,51);
  --base-color-black: rgb(0,0,0);
}

body {
  background-color: var(--base-color-bg);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, calc(0.4464vw + 9.5714px), 16px);
  line-height: 1.625;
  color: var(--base-color-dark);
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
}
a,
a:hover,
a:visited {
  color: var(--base-color-dark);
}

#wrapper {
  overflow: hidden;
}
#contents {
  position: relative;
  z-index: 100;
}

._txt_red {
  color: var(--base-color-red);
}

/* Tools */
._st {
  font-weight: 700;
}
._txt_min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.bgt {
  height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
._int1 {
  padding-left: 1em;
  text-indent: -1em;
  
}

.for_sp {
  display: none !important;
}

@media screen and (max-width:767px) {
  .for_sp {
    display: block !important;
  }
  .for_pc {
    display: none !important;
  }
}

/* Layouts */
._w1000 {
  padding: 0 32px;
}
._w1000 > div {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
._w980 {
  padding: 0 32px;
}
._w980 > div {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

._bg_w {
  background-color: var(--base-color-white);
}
._scr_tgt {
  margin-top: -100px;
  padding-top: 100px;
}
._scr_tgt2 {
  margin-top: -150px;
  padding-top: 150px;
}
@media screen and (max-width:767px) {
  ._w1000, ._w980 {
    padding: 0 15px;
  }
  ._scr_tgt {
    margin-top: -60px;
    padding-top: 60px;
  }
}

._mt8 { margin-top: 8px; }
._mt16 { margin-top: 16px; }
._mt24 { margin-top: 24px; }
._mt32 { margin-top: 32px; }
._mt48 { margin-top: 48px; }
._mb8 { margin-bottom: 8px; }
._mb16 { margin-bottom: 16px; }
._mb24 { margin-bottom: 24px; }
._mb32 { margin-bottom: 32px; }
._mb48 { margin-bottom: 48px; }



/*
 * Header
 */
body {
  padding-top: clamp(60px, calc(100 / 1440 * 100%), 100px);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: flex;
  width: 100%;
  padding-top: clamp(60px, calc(100 / 1440 * 100%), 100px);
  background-color: var(--base-color-white);
}
@media screen and (max-width:767px) {
  .header_outer {
  }
}

.header_logo {
  position: absolute;
  top: calc(18 / 100 * 100%);
  left: calc(36 / 1440 * 100%);
  width: clamp(192px, calc(320 / 1440 * 100%), 320px);
}
.header_logo > a {
  width: 100%;
  display: block;
}
.header_logo > a > span {
  display: block;
  width: 100%;
  padding-top: clamp(38px, calc(64 / 320 * 100%), 64px);
  background-image: url(../images/logo.svg);
}
.header_navi {
  margin-left: auto;
}
.header_navi {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(452px, calc(936 / 1440  * 100%), 936px);
  height: 100%;
}
.header_navi > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}
.header_navi > ul > li {
  display: flex;
  justify-content: center;
  width: calc(184 / 936 * 100%);
}
.header_navi > ul > .navi-00,
.header_navi > ul > .navi-11 {
  display: none;
}
.header_navi > ul > .navi-04 {
  width: calc(200 / 936 * 100%);
  background-color: var(--base-color-red);
}
.header_navi > ul > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 100%;
  font-size: clamp(14px, calc(0.5952vw + 9.4286px), 18px);
  font-weight: 700;
}
.header_navi > ul > li > a:hover {
  color: var(--base-color-red);
}
.header_navi > ul > li > a::after {
  position: absolute;
  left: 50%;
  top: calc(76 / 100 * 100%);
  transform: translate3d(-50%, 0, 0);
  width: calc(50 / (184 * 0.9) * 100%);
  height: 3px;
  background-color: var(--base-color-red);
  content: '';
}
.header_navi > ul > .navi-04 > a {
  width: 100%;
  color: var(--base-color-white);
}
.header_navi > ul > .navi-04 > a:hover {
  color: var(--base-color-white);
}
.header_navi > ul > li > a > span {
  display: block;
}

@media screen and (max-width:767px) {
  .header_navi {
    top: 100%;
    width: 100%;
    height: 0;
  }
  .header_navi > .btn_spmenu {
    position: absolute;
    top: -60px;
    right: 0;
    width: 60px;
    height: 59px;
  }
  .header_navi > .btn_spmenu > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    display: block;
    width: 30px;
    height: 3px;
  }
  .header_navi > .btn_spmenu > span > span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--base-color-red);
    opacity: 1;
    transition: opacity .2s ease-in-out;
  }
  .header_navi._open > .btn_spmenu > span > span {
    opacity: 0;
  }
  .header_navi > .btn_spmenu > span::before,
  .header_navi > .btn_spmenu > span::after {
    position: absolute;
    left: 0;
    transform: rotate(0);
    width: 30px;
    height: 3px;
    background-color: var(--base-color-red);
    transition: transform .2s ease-in-out;
    content: '';
  }
  .header_navi > .btn_spmenu > span::before {
    top: -10px;
  }
  .header_navi > .btn_spmenu > span::after {
    bottom: -10px;
  }
  .header_navi._open > .btn_spmenu > span::before {
    top: 0;
    transform: rotate(-135deg);
  }
  .header_navi._open > .btn_spmenu > span::after {
    bottom: 0;
    transform: rotate(135deg);
  }
  .header_navi > ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 23px;
    background-color: var(--base-color-red);
    transition: left .2s ease-in-out;
  }
  .header_navi._open > ul {
    left: 0;
  }
  .header_navi > ul > li {
    display: block;
    width: auto;
    margin-right: 13px;
    margin-left: 13px;
    border-bottom: 1px var(--base-color-gray) dashed;
  }
  .header_navi > ul > .navi-00 {
    display: block;
  }
  .header_navi > ul > .navi-04 {
    width: auto;
    margin-right: 18px;
    margin-left: 18px;
    border: 1px var(--base-color-white) solid;
  }
  .header_navi > ul > .navi-11 {
    display: flex;
    justify-content: center;
    font-size: 12px;
    border-bottom-style: none;
  }
  .header_navi > ul > .navi-11 > div {
    margin: 1em 1em 1.5em;
  }
  .header_navi > ul > .navi-11 > div > a {
    display: block;
    padding: 1em 0;
    color: var(--base-color-white);
  }
  .header_navi > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    color: var(--base-color-white);
    font-size: 18px;
  }
  .header_navi > ul > li > a:hover {
    color: var(--base-color-white);
  }
  .header_navi > ul > .navi-04 > a {
    height: 38px;
  }
}




/*
 * Footer
 */
.footer {
  position: relative;
  padding-top: calc(87 / 1440 * 100%);
  padding-right: 32px;
  padding-left: 32px;
  background-color: var(--base-color-foot);
  color: var(--base-color-white);
}
.footer::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(950 / 1440 * 100%);
  padding-top: calc(260 / 1440 * 100%);
  mask-image: url(../top/images/flag_mask.svg);
  mask-size: contain;
  mask-position: right bottom;
  mask-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  background-image: url(../images/bg-footer.png);
  opacity: 0.1;
  content: '';
}
.footer a {
  color: var(--base-color-white);
}
.footer .footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-bottom: calc(28 / 1376 * 100%);
  margin-left: auto;
}

.footer .footer_profile {
  width: calc(570 / 1000 * 100%);
}
.footer_profile .footer_logo {
  position: relative;
  width: calc(310 / 570 * 100%);
  padding-top: calc(60 / 570 * 100%);
}
.footer_profile .footer_logo > span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/logo_w.svg);
}
.footer_profile .prof_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(30 / 570 * 100%);
  font-size: clamp(10px, calc(0.4464vw + 7.5714px), 14px);
}
.footer_profile .prof_box:first-child {
  margin-top: calc(20 / 570 * 100%);
}
.footer_profile .prof_box .name {
  width: calc(120 / 570 * 100%);
}
.footer_profile .prof_box .item {
  display: flex;
  flex-wrap: wrap;
  width: calc(450 / 570 * 100%);
}
.footer_profile .prof_box .item .address,
.footer_profile .prof_box .item .fax {
  margin-left: 1em;
}
.footer_profile .prof_box .item .zip {
}
.footer_profile .prof_box .item .address {
  width: calc(100% - 7em)
}
.footer_profile .prof_box .item .fax {
  width: calc(50% - 1em)
}

.footer .footer_navi {
  position: relative;
  width: calc(410 / 1000 * 100%);
  padding-top: calc(65 / 1000 * 100%);
  font-size: clamp(10px, calc(0.4464vw + 7.5714px), 14px);
}
.footer_navi .navi_upper {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer_navi .navi_upper::before {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--base-color-white);
  content: '';
}
.footer_navi .navi_upper > li {
  max-width: 60%;
}
.footer_navi .navi_upper .ttl {
  font-size: clamp(14px, calc(0.5952vw + 9.4286px), 18px);
  line-height: 2;
}
.footer_navi .navi_upper ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
.footer_navi .navi_upper ul > li {
  width: 6em;
  margin-bottom: 1.5em;
  padding-left: 1em;
}

.footer_navi .navi_lower {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32%;
}
.footer_navi .navi_lower > li {
  margin-top: 1em;
  padding-left: 3em;
}
.copyrights {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: clamp(10px, calc(0.2976vw + 7.7143px), 12px);
}
@media screen and (max-width:767px) {
  .footer {
    padding-right: 22px;
    padding-left: 22px;
  }
  .footer::before {
    width: calc(360 / 375 * 100%);
    padding-top: calc(94 / 375 * 100%);
  }
  .footer .footer_inner {
    flex-direction: column-reverse;
    margin-bottom: calc(30 / 375 * 100%);
  }
  .footer .footer_profile {
    width: 100%;
    margin-top: 24px;
  }
  .footer_profile .footer_logo {
    margin-left: -4px;
  }
  .footer_profile .prof_box .name {
    width: calc(120 / 331 * 100%);
  }
  .footer_profile .prof_box .item {
    width: calc(210 / 331 * 100%);
  }
  
  .footer .footer_navi {
    width: 100%;
  }
  .footer_navi .navi_upper::before {
    top: 32px;
  }
  .footer_navi .navi_upper ul {
    margin-top: 16px;
  }
  .footer_navi .navi_upper ul > li {
    margin-bottom: .75em;
  }
  .footer_navi .navi_lower {
    margin-top: 0;
  }
  .footer_navi .navi_lower > li {
    padding-left: 1.5em;
  }
}




/*
 * Pagetop Button
 */
.btn_top {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate3d(0, 50%, 0);
  width: clamp(150px, calc(6.8452vw + 97.4286px), 196px);
  background-color: var(--base-color-white);
  box-shadow: 0px 3px 7px rgba(0,0,0,0.20);
  cursor: pointer;
}
.btn_top > span {
  position: relative;
  display: block;
  padding-top: calc(54 / 196 * 100%);
}
.btn_top > span > span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.btn_top > span > span > span {
  position: relative;
  display: block;
  padding-right: 4px;
  font-weight: 700;
}
.btn_top > span > span > span::before {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate3d(0, -50%, 0);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/arrow-pagetop.svg);
  content: '';
}
@media screen and (max-width:767px) {
  .btn_top {
    width: clamp(134px, calc(134 / 375 * 100%), 150px);
    font-size: 11px;
  }
  .btn_top > span > span > span::before {
    top: calc(50% - 2px);
    width: 11px;
    height: 11px;
  }
}



/*
 * Container
 */
#container {
  background-image: url(../images/bg-pattern.svg);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width:767px) {
  #container {
    background-size: 250%;
    background-position: 15% top;
  }
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding-left: 54px;
  background-color: rgb(248,248,248);
}
.breadcrumb > li {
  margin-right: 1em;
}
.breadcrumb > li::after {
  content: '〉';
  font-weight: 500;
}
.breadcrumb > li:last-child::after {
  display: none;
}
.breadcrumb > li span {
  padding-right: 1.5em;
}
@media screen and (max-width:767px) {
  .breadcrumb {
    height: 0px;
  }
  .breadcrumb > li {
    display: none;
  }
}


/*
 * Contents
 */
#contents {
  padding-bottom: calc(130 / 1440 * 100%);
}



/* mainvisual_box */
.mainvisual_box {
  position: relative;
  width: 100%;
  padding-top: calc(300 / 1440 * 100%);
  background-color: var(--base-color-black);
}
.mainvisual_box > .image {
  position: absolute;
  top: calc(26 / 300 * 100%);
  left: calc(30 / 1440 * 100%);
  width: calc(1410 / 1440 * 100%);
}
.mainvisual_box > .title {
  position: absolute;
  top: calc(273 / 300 * 100%);
  right: 0;
  width: calc(600 / 1440 * 100%);
  max-width: 600px;
}
.mainvisual_box > .title > span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  align-items: center;
  width: 100%;
  padding-top: calc(120 / 600 * 100%);
  background-color: var(--base-color-red);
  color: var(--base-color-white);
  mask-image: url(../images/bg-title03.svg);
  mask-size: contain;
  mask-position: right top;
  mask-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
.mainvisual_box > .title > span::before {
  position: absolute;
  top: 50%;
  left: calc(34 / 600 * 100%);
  transform: translate3d(0, -50%, 0);
  width: calc(91 / 600 * 100%);
  padding-top: calc(91 / 600 * 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: '';
}
.mainvisual_box > .title > span > span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  display: block;
  padding-left: calc(145 / 600 * 100%);
  font-size: clamp(14px, 2.5Vw, 36px);
}
@media screen and (max-width:767px) {
  .mainvisual_box {
    padding-top: calc(352 / 1440 * 100%);
  }
  .mainvisual_box > .title {
    top: calc(273 / 352 * 100%);
    width: calc(360 / 375 * 100%);
    max-width: 100%;
  }
  .mainvisual_box > .title > span {
    padding-top: calc(42 / 360 * 100%);
    mask-image: url(../images/bg-title03-sp.svg);
  }
  .mainvisual_box > .title > span::before {
    left: calc(15 / 360 * 100%);
    width: calc(36 / 360 * 100%);
    padding-top: calc(36 / 360 * 100%);
  }
  .mainvisual_box > .title > span > span {
    padding-left: calc(54 / 360 * 100%);
  }
}


/* page_title_box */
.page_title_box {
  
}
.page_title_box > .title {
  position: relative;
  margin-top: calc(60 / 1000 * 100%);
  padding-top: calc(120 / 1000 * 100%);
  mask-image: url(../images/bg-title02.svg);
  mask-size: contain;
  mask-position: center top;
  mask-repeat: no-repeat;
  background-color: var(--base-color-red);
  color: var(--base-color-white);
}
.page_title_box > .title > span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: clamp(14px, 2.5Vw, 36px);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.page_title_box > .title > span::before {
  position: absolute;
  top: 50%;
  left: calc(34 / 1000 * 100%);
  transform: translate3d(0, -50%, 0);
  width: calc(91 / 1000 * 100%);
  padding-top: calc(91 / 1000 * 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: '';
}
.page_title_box > .title > span > span {
  padding-left: calc(145 / 1000 * 100%);
}


/* sec_box */
.sec_box {
  position: relative;
  box-sizing: border-box;
  margin-top: calc(92 / 980 * 100%);
  padding: calc(40 / 980 * 100%) calc(30 / 980 * 100%) calc(30 / 980 * 100%);
  background-color: var(--base-color-white);
}
.sec_box::before {
  position: absolute;
  top: 0;
  right: 100%;
  width: 1000%;
  height: 1px;
  background-color: var(--base-color-red);
  content: '';
}
.sec_box > .title {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, -50%, 0);
  padding-left: calc(28 / 980 * 100%);
  font-weight: 700;
  font-size: clamp(18px,calc(0.8929vw + 11.1429px), 24px);
}
.sec_box > .title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
  width: 20px;
  height: 20px;
  background-color: var(--base-color-red);
  content: '';
}
.sec_box .inner_box {
  border-top: 1px var(--base-color-gray) dashed;
  border-bottom: 1px var(--base-color-gray) dashed;
}
@media screen and (max-width:767px) {
  .sec_box {
    padding: calc(24 / 345 * 100%) calc(15 / 345 * 100%) calc(20 / 345 * 100%);
  }
  .sec_box > .title {
    font-size: 14px;
  }
  .sec_box > .title::before {
    width: 12px;
    height: 12px;
  }
}



/*
 * Map Modal
 */
._hold {
  overflow: hidden;
}
.map_modal_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 4000;
}
.map_modal_box > .map_modal {
  position: absolute;
}
.map_modal_box > .btn_close {
  position: absolute;
  border-radius: 50%;
  background-color: var(--base-color-dark);
}
.map_modal_box > .btn_close::before,
.map_modal_box > .btn_close::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 16.7%;
  width: 66.7%;
  height: 2px;
  background-color: var(--base-color-white);
}
.map_modal_box > .btn_close::before {
  transform: rotate(45deg);
}
.map_modal_box > .btn_close::after {
  transform: rotate(-45deg);
}









