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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

:root {
  --gothic:
  	"YuGothic",
  	"Hiragino Kaku Gothic ProN",
  	"Hiragino Sans",
  	"BIZ UDPGothic",
  	"Meiryo",
  	"Arial",
  	sans-serif;
  --black: #191919;
  --blown: #af5537;
  --blown02: #aa6446;
  --yellow: #dfb743;
}

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

	基本

*************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, select, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--gothic);
  line-height: 1.75;
  font-size: 1.8em;
  color: var(--black);
}

button:focus-visible,
a　:focus-visible {
  outline: none;
  box-shadow: 0px 0px 0px 2px #000, 0px 0px 0px 3px #fff;
}

input:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff inset, 0px 0px 0px 3px #333 inset;
}

ul {
  list-style: none;
}

a, a:link, a:active, a:visited, a:hover {
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
button {
  border: none;
  border-radius: 0;
  background: none;
  font: inherit;
  padding: 0;
  cursor: pointer;
  text-transform: inherit;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

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

	body bg

*************************************************/
body {
  background: url(/common/images/bg_body01.jpg) no-repeat top center/100% auto;
}
@media screen and (max-width: 750px) {
  body {
    background-size: 150% auto;
  }
}

.b-containter {
  overflow: hidden;
}

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

	content

*************************************************/
.b-content01 {
  max-width: 1230px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .b-content01 {
    width: calc(100% - 40px);
  }
}

.b-content02 {
  max-width: 1165px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .b-content02 {
    width: calc(100% - 40px);
  }
}

.b-content03 {
  max-width: 1208px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .b-content03 {
    width: calc(100% - 40px);
  }
}

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

	block

*************************************************/
.b-unit_2col01 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-unit_2col01 > .b-unit_2col01__unit {
  width: 49%;
}
.b-unit_2col01 > .b-unit_2col01__unit:nth-child(odd) {
  margin-right: 2%;
}
.b-unit_2col01 > .b-unit_2col01__unit:nth-child(n+3) {
  margin-top: 2%;
}

.b-unit_2col02 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.b-unit_2col02 > .b-unit_2col02__unit {
  width: 100%;
}
.b-unit_2col02 > .b-unit_2col02__unit:nth-child(odd) {
  margin-right: 2%;
}
@media screen and (max-width: 750px) {
  .b-unit_2col02 > .b-unit_2col02__unit:nth-child(odd) {
    margin-right: 0;
  }
}
.b-unit_2col02 > .b-unit_2col02__unit:nth-child(n+3) {
  margin-top: 2%;
}
@media screen and (max-width: 750px) {
  .b-unit_2col02 > .b-unit_2col02__unit:nth-child(n+2) {
    margin-top: 2%;
  }
}

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

	title

*************************************************/
.b-title01 {
  max-width: 380px;
  width: 100%;
  background: url("../images/bg_title02.webp") no-repeat left top/cover;
  color: var(--blown);
  font-size: 2.7rem;
  line-height: 1.3;
  padding: 20px 45px;
  border-radius: 20px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .b-title01 {
    font-size: 2.3rem;
    padding: 10px 25px;
    margin-bottom: 25px;
  }
}

.b-title02 {
  background: var(--blown);
  border-left: 25px solid var(--yellow);
  padding: 10px 10px 10px 25px;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 750px) {
  .b-title02 {
    border-left-width: 15px;
    padding: 10px 10px 10px 15px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

.b-title03 {
  position: relative;
  font-size: 2.7rem;
  line-height: 1.3;
  padding-left: 55px;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .b-title03 {
    font-size: 2.5rem;
    padding-left: 40px;
    margin-bottom: 25px;
  }
}
.b-title03::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: var(--blown);
  position: absolute;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 750px) {
  .b-title03::before {
    width: 23px;
    height: 23px;
    top: 4px;
  }
}

.b-title04 {
  color: var(--blown);
  border-top: 3px solid;
  font-size: 2.5rem;
  line-height: 1.3;
  padding: 25px 0 0;
}
@media screen and (max-width: 750px) {
  .b-title04 {
    font-size: 2.3rem;
    padding: 15px 0 0;
  }
}
.b-title04 .b-title04_small {
  color: var(--black);
  font-size: 1.8rem;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  .b-title04 .b-title04_small {
    font-size: 1.6rem;
  }
}

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

	bottom

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

	icon

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

	utility

*************************************************/
.b-m0 {
  margin: 0px !important;
}

.b-mt0 {
  margin-top: 0px !important;
}

.b-mb0 {
  margin-bottom: 0px !important;
}

.b-ml0 {
  margin-left: 0px !important;
}

.b-mr0 {
  margin-right: 0px !important;
}

.b-p0 {
  padding: 0px !important;
}

.b-pt0 {
  padding-top: 0px !important;
}

.b-pb0 {
  padding-bottom: 0px !important;
}

.b-pl0 {
  padding-left: 0px !important;
}

.b-pr0 {
  padding-right: 0px !important;
}

.b-m5 {
  margin: 5px !important;
}

.b-mt5 {
  margin-top: 5px !important;
}

.b-mb5 {
  margin-bottom: 5px !important;
}

.b-ml5 {
  margin-left: 5px !important;
}

.b-mr5 {
  margin-right: 5px !important;
}

.b-p5 {
  padding: 5px !important;
}

.b-pt5 {
  padding-top: 5px !important;
}

.b-pb5 {
  padding-bottom: 5px !important;
}

.b-pl5 {
  padding-left: 5px !important;
}

.b-pr5 {
  padding-right: 5px !important;
}

.b-m10 {
  margin: 10px !important;
}

.b-mt10 {
  margin-top: 10px !important;
}

.b-mb10 {
  margin-bottom: 10px !important;
}

.b-ml10 {
  margin-left: 10px !important;
}

.b-mr10 {
  margin-right: 10px !important;
}

.b-p10 {
  padding: 10px !important;
}

.b-pt10 {
  padding-top: 10px !important;
}

.b-pb10 {
  padding-bottom: 10px !important;
}

.b-pl10 {
  padding-left: 10px !important;
}

.b-pr10 {
  padding-right: 10px !important;
}

.b-m15 {
  margin: 15px !important;
}

.b-mt15 {
  margin-top: 15px !important;
}

.b-mb15 {
  margin-bottom: 15px !important;
}

.b-ml15 {
  margin-left: 15px !important;
}

.b-mr15 {
  margin-right: 15px !important;
}

.b-p15 {
  padding: 15px !important;
}

.b-pt15 {
  padding-top: 15px !important;
}

.b-pb15 {
  padding-bottom: 15px !important;
}

.b-pl15 {
  padding-left: 15px !important;
}

.b-pr15 {
  padding-right: 15px !important;
}

.b-m20 {
  margin: 20px !important;
}

.b-mt20 {
  margin-top: 20px !important;
}

.b-mb20 {
  margin-bottom: 20px !important;
}

.b-ml20 {
  margin-left: 20px !important;
}

.b-mr20 {
  margin-right: 20px !important;
}

.b-p20 {
  padding: 20px !important;
}

.b-pt20 {
  padding-top: 20px !important;
}

.b-pb20 {
  padding-bottom: 20px !important;
}

.b-pl20 {
  padding-left: 20px !important;
}

.b-pr20 {
  padding-right: 20px !important;
}

.b-m25 {
  margin: 25px !important;
}

.b-mt25 {
  margin-top: 25px !important;
}

.b-mb25 {
  margin-bottom: 25px !important;
}

.b-ml25 {
  margin-left: 25px !important;
}

.b-mr25 {
  margin-right: 25px !important;
}

.b-p25 {
  padding: 25px !important;
}

.b-pt25 {
  padding-top: 25px !important;
}

.b-pb25 {
  padding-bottom: 25px !important;
}

.b-pl25 {
  padding-left: 25px !important;
}

.b-pr25 {
  padding-right: 25px !important;
}

.b-m30 {
  margin: 30px !important;
}

.b-mt30 {
  margin-top: 30px !important;
}

.b-mb30 {
  margin-bottom: 30px !important;
}

.b-ml30 {
  margin-left: 30px !important;
}

.b-mr30 {
  margin-right: 30px !important;
}

.b-p30 {
  padding: 30px !important;
}

.b-pt30 {
  padding-top: 30px !important;
}

.b-pb30 {
  padding-bottom: 30px !important;
}

.b-pl30 {
  padding-left: 30px !important;
}

.b-pr30 {
  padding-right: 30px !important;
}

.b-m35 {
  margin: 35px !important;
}

.b-mt35 {
  margin-top: 35px !important;
}

.b-mb35 {
  margin-bottom: 35px !important;
}

.b-ml35 {
  margin-left: 35px !important;
}

.b-mr35 {
  margin-right: 35px !important;
}

.b-p35 {
  padding: 35px !important;
}

.b-pt35 {
  padding-top: 35px !important;
}

.b-pb35 {
  padding-bottom: 35px !important;
}

.b-pl35 {
  padding-left: 35px !important;
}

.b-pr35 {
  padding-right: 35px !important;
}

.b-m40 {
  margin: 40px !important;
}

.b-mt40 {
  margin-top: 40px !important;
}

.b-mb40 {
  margin-bottom: 40px !important;
}

.b-ml40 {
  margin-left: 40px !important;
}

.b-mr40 {
  margin-right: 40px !important;
}

.b-p40 {
  padding: 40px !important;
}

.b-pt40 {
  padding-top: 40px !important;
}

.b-pb40 {
  padding-bottom: 40px !important;
}

.b-pl40 {
  padding-left: 40px !important;
}

.b-pr40 {
  padding-right: 40px !important;
}

.b-m45 {
  margin: 45px !important;
}

.b-mt45 {
  margin-top: 45px !important;
}

.b-mb45 {
  margin-bottom: 45px !important;
}

.b-ml45 {
  margin-left: 45px !important;
}

.b-mr45 {
  margin-right: 45px !important;
}

.b-p45 {
  padding: 45px !important;
}

.b-pt45 {
  padding-top: 45px !important;
}

.b-pb45 {
  padding-bottom: 45px !important;
}

.b-pl45 {
  padding-left: 45px !important;
}

.b-pr45 {
  padding-right: 45px !important;
}

.b-m50 {
  margin: 50px !important;
}

.b-mt50 {
  margin-top: 50px !important;
}

.b-mb50 {
  margin-bottom: 50px !important;
}

.b-ml50 {
  margin-left: 50px !important;
}

.b-mr50 {
  margin-right: 50px !important;
}

.b-p50 {
  padding: 50px !important;
}

.b-pt50 {
  padding-top: 50px !important;
}

.b-pb50 {
  padding-bottom: 50px !important;
}

.b-pl50 {
  padding-left: 50px !important;
}

.b-pr50 {
  padding-right: 50px !important;
}

.b-m55 {
  margin: 55px !important;
}

.b-mt55 {
  margin-top: 55px !important;
}

.b-mb55 {
  margin-bottom: 55px !important;
}

.b-ml55 {
  margin-left: 55px !important;
}

.b-mr55 {
  margin-right: 55px !important;
}

.b-p55 {
  padding: 55px !important;
}

.b-pt55 {
  padding-top: 55px !important;
}

.b-pb55 {
  padding-bottom: 55px !important;
}

.b-pl55 {
  padding-left: 55px !important;
}

.b-pr55 {
  padding-right: 55px !important;
}

.b-m60 {
  margin: 60px !important;
}

.b-mt60 {
  margin-top: 60px !important;
}

.b-mb60 {
  margin-bottom: 60px !important;
}

.b-ml60 {
  margin-left: 60px !important;
}

.b-mr60 {
  margin-right: 60px !important;
}

.b-p60 {
  padding: 60px !important;
}

.b-pt60 {
  padding-top: 60px !important;
}

.b-pb60 {
  padding-bottom: 60px !important;
}

.b-pl60 {
  padding-left: 60px !important;
}

.b-pr60 {
  padding-right: 60px !important;
}

.b-m65 {
  margin: 65px !important;
}

.b-mt65 {
  margin-top: 65px !important;
}

.b-mb65 {
  margin-bottom: 65px !important;
}

.b-ml65 {
  margin-left: 65px !important;
}

.b-mr65 {
  margin-right: 65px !important;
}

.b-p65 {
  padding: 65px !important;
}

.b-pt65 {
  padding-top: 65px !important;
}

.b-pb65 {
  padding-bottom: 65px !important;
}

.b-pl65 {
  padding-left: 65px !important;
}

.b-pr65 {
  padding-right: 65px !important;
}

.b-m70 {
  margin: 70px !important;
}

.b-mt70 {
  margin-top: 70px !important;
}

.b-mb70 {
  margin-bottom: 70px !important;
}

.b-ml70 {
  margin-left: 70px !important;
}

.b-mr70 {
  margin-right: 70px !important;
}

.b-p70 {
  padding: 70px !important;
}

.b-pt70 {
  padding-top: 70px !important;
}

.b-pb70 {
  padding-bottom: 70px !important;
}

.b-pl70 {
  padding-left: 70px !important;
}

.b-pr70 {
  padding-right: 70px !important;
}

.b-m75 {
  margin: 75px !important;
}

.b-mt75 {
  margin-top: 75px !important;
}

.b-mb75 {
  margin-bottom: 75px !important;
}

.b-ml75 {
  margin-left: 75px !important;
}

.b-mr75 {
  margin-right: 75px !important;
}

.b-p75 {
  padding: 75px !important;
}

.b-pt75 {
  padding-top: 75px !important;
}

.b-pb75 {
  padding-bottom: 75px !important;
}

.b-pl75 {
  padding-left: 75px !important;
}

.b-pr75 {
  padding-right: 75px !important;
}

.b-m80 {
  margin: 80px !important;
}

.b-mt80 {
  margin-top: 80px !important;
}

.b-mb80 {
  margin-bottom: 80px !important;
}

.b-ml80 {
  margin-left: 80px !important;
}

.b-mr80 {
  margin-right: 80px !important;
}

.b-p80 {
  padding: 80px !important;
}

.b-pt80 {
  padding-top: 80px !important;
}

.b-pb80 {
  padding-bottom: 80px !important;
}

.b-pl80 {
  padding-left: 80px !important;
}

.b-pr80 {
  padding-right: 80px !important;
}

.b-m85 {
  margin: 85px !important;
}

.b-mt85 {
  margin-top: 85px !important;
}

.b-mb85 {
  margin-bottom: 85px !important;
}

.b-ml85 {
  margin-left: 85px !important;
}

.b-mr85 {
  margin-right: 85px !important;
}

.b-p85 {
  padding: 85px !important;
}

.b-pt85 {
  padding-top: 85px !important;
}

.b-pb85 {
  padding-bottom: 85px !important;
}

.b-pl85 {
  padding-left: 85px !important;
}

.b-pr85 {
  padding-right: 85px !important;
}

.b-m90 {
  margin: 90px !important;
}

.b-mt90 {
  margin-top: 90px !important;
}

.b-mb90 {
  margin-bottom: 90px !important;
}

.b-ml90 {
  margin-left: 90px !important;
}

.b-mr90 {
  margin-right: 90px !important;
}

.b-p90 {
  padding: 90px !important;
}

.b-pt90 {
  padding-top: 90px !important;
}

.b-pb90 {
  padding-bottom: 90px !important;
}

.b-pl90 {
  padding-left: 90px !important;
}

.b-pr90 {
  padding-right: 90px !important;
}

.b-m95 {
  margin: 95px !important;
}

.b-mt95 {
  margin-top: 95px !important;
}

.b-mb95 {
  margin-bottom: 95px !important;
}

.b-ml95 {
  margin-left: 95px !important;
}

.b-mr95 {
  margin-right: 95px !important;
}

.b-p95 {
  padding: 95px !important;
}

.b-pt95 {
  padding-top: 95px !important;
}

.b-pb95 {
  padding-bottom: 95px !important;
}

.b-pl95 {
  padding-left: 95px !important;
}

.b-pr95 {
  padding-right: 95px !important;
}

.b-m100 {
  margin: 100px !important;
}

.b-mt100 {
  margin-top: 100px !important;
}

.b-mb100 {
  margin-bottom: 100px !important;
}

.b-ml100 {
  margin-left: 100px !important;
}

.b-mr100 {
  margin-right: 100px !important;
}

.b-p100 {
  padding: 100px !important;
}

.b-pt100 {
  padding-top: 100px !important;
}

.b-pb100 {
  padding-bottom: 100px !important;
}

.b-pl100 {
  padding-left: 100px !important;
}

.b-pr100 {
  padding-right: 100px !important;
}

.b-d_ib {
  display: inline-block;
}

.b-pc_br {
  display: inline;
}
@media screen and (max-width: 750px) {
  .b-pc_br {
    display: none;
  }
}

.b-sp_br {
  display: none;
}
@media screen and (max-width: 750px) {
  .b-sp_br {
    display: inline;
  }
}

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

	text

*************************************************/
.b-center {
  text-align: center !important;
}

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

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

.b-small {
  font-size: 0.8em;
}

.b-big {
  font-size: 1.2em;
}

.b-bold {
  font-weight: bold;
}

.b-link01 {
  text-decoration: underline !important;
}
@media (any-hover: hover) and (pointer: fine) {
  .b-link01:hover {
    text-decoration: none !important;
  }
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  transition: all 0.6s, box-shadow 0.3s;
  z-index: 10;
  padding: 68px 0 77px 0;
}
.header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(/common/images/bg_footer01.webp) no-repeat top center/100% auto #fff6e1;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 20px 0;
  }
}
@media screen and (max-width: 750px) {
  .header {
    padding: 4% 0;
  }
}
.header .haeder__inner {
  max-width: 1165px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
}
@media screen and (max-width: 750px) {
  .header .haeder__inner {
    width: calc(100% - 40px);
  }
}
.header .header__logo {
  width: 386px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.header .header__logo a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .header .header__logo a:hover {
    opacity: 0.7;
  }
}
.header .header__logo a img {
  vertical-align: middle;
}
@media screen and (max-width: 1200px) {
  .header .header__logo {
    width: 34%;
    max-width: 386px;
  }
}
@media screen and (max-width: 750px) {
  .header .header__logo {
    width: 54%;
    max-width: 300px;
  }
}
.header .gnav ul {
  display: -webkit-flex;
  display: flex;
}
.header .gnav ul li a {
  display: block;
  padding: 9px 30px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  border-right: 1px solid var(--blown02);
}
.header .gnav ul li a span {
  position: relative;
}
.header .gnav ul li a span::before {
  transition: opacity 0.3s;
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: var(--blown02);
  opacity: 0;
}
@media (any-hover: hover) and (pointer: fine) {
  .header .gnav ul li a:hover {
    opacity: 1;
  }
  .header .gnav ul li a:hover span::before {
    opacity: 1;
  }
}
.header .gnav ul li:first-child a {
  border-left: 1px solid var(--blown02);
}
@media screen and (max-width: 1200px) {
  .header .gnav ul li a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .header .gnav {
    display: none;
  }
}
.header.header-scrolled {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
.header.header-scrolled::after {
  opacity: 1;
}
.header.header-scrolled .header__logo {
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .header.header-scrolled .header__logo {
    width: 34%;
    max-width: 386px;
  }
}
@media screen and (max-width: 750px) {
  .header.header-scrolled .header__logo {
    width: 54%;
    max-width: 300px;
  }
}
@media (orientation: landscape) and (max-width: 1000px) {
  .header.header-scrolled {
    padding: 15px 0;
  }
  .header.header-scrolled .header__logo {
    width: 34%;
  }
}
.header .gnav__sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header .gnav__sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    background: url(/common/images/bg_footer01.webp) no-repeat top center/cover #fff6e1;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-out;
    pointer-events: none;
    transform: scale(1.05);
    padding-top: 70px;
  }
  .header .gnav__sp.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .header .gnav__sp ul {
    display: block;
    padding: 10px 20px 20px;
    max-height: 65vh;
    overflow: auto;
    height: 100%;
  }
  .header .gnav__sp ul li + li {
    margin-left: 0;
    border-top: 1px solid var(--blown);
  }
  .header .gnav__sp ul li a {
    display: block;
    padding: 20px;
  }
  .header .gnav__sp ul li a span {
    display: block;
    position: relative;
    background: url(/common/images/ico_arrow01.svg) no-repeat right center/20px 20px;
  }
}
@media screen and (max-width: 750px) {
  .header .gnav__sp ul li a {
    font-size: 1em;
  }
}
.header .header__btn_menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header .header__btn_menu {
    display: block;
    position: relative;
    width: 35px;
    height: 40px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: var(--blown);
    padding-top: 25px;
    font-size: 1rem;
  }
  .header .header__btn_menu span {
    width: 100%;
    height: 2px;
    background: var(--blown02);
    display: block;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .header .header__btn_menu span {
    height: 2px;
  }
}
@media screen and (max-width: 1000px) {
  .header .header__btn_menu span:nth-child(1) {
    top: 0;
    transition: top 0.3s, transform 0.3s;
  }
}
@media screen and (max-width: 1000px) {
  .header .header__btn_menu span:nth-child(2) {
    top: 10px;
    transform: translateY(-50%);
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 1000px) {
  .header .header__btn_menu span:nth-child(3) {
    top: 20px;
    transform: translateY(-100%);
    transition: top 0.3s, transform 0.3s;
  }
}
@media screen and (max-width: 1000px) {
  .header .header__btn_menu.is-open span:nth-child(1) {
    top: 10px;
    transform: translateY(-50%) rotate(40deg);
  }
  .header .header__btn_menu.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header .header__btn_menu.is-open span:nth-child(3) {
    top: 10px;
    transform: translateY(-50%) rotate(-40deg);
  }
}

/*ナビゲーション　カレント表示
a[href*="example"] （href に "example" を含む <a> 要素）*/
.p-about .header .gnav ul li a[href*=about] span::before {
  opacity: 1;
}

.p-business .header .gnav ul li a[href*=business] span::before {
  opacity: 1;
}

.p-recruit .header .gnav ul li a[href*=recruit] span::before {
  opacity: 1;
}

.p-contact .header .gnav ul li a[href*=contact] span::before {
  opacity: 1;
}

.footer {
  margin-top: 100px;
  background: url(/common/images/bg_footer01.webp) no-repeat top left/auto 100% #fff6e1;
}
@media screen and (max-width: 1000px) {
  .footer {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 750px) {
  .footer {
    margin-top: 15vw;
  }
}
.footer .footer__inner {
  max-width: 1165px;
  margin: 0 auto;
  width: 96%;
  padding: 50px 0 30px;
}
@media screen and (max-width: 750px) {
  .footer .footer__inner {
    width: calc(100% - 40px);
    padding: 6% 0;
  }
}
.footer .footer__inner .footer__2col {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
.footer .footer__inner .footer__2col .footer__2col--right {
  margin-left: 80px;
}
.footer .footer__inner .footer__2col + .footer__2col {
  align-items: center;
  margin-top: 45px;
}
@media screen and (max-width: 1000px) {
  .footer .footer__inner .footer__2col .footer__2col--right {
    margin-left: 6%;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer__inner .footer__2col {
    display: block;
  }
  .footer .footer__inner .footer__2col .footer__2col--right {
    margin-left: 0;
    margin-top: 3%;
    text-align: center;
  }
  .footer .footer__inner .footer__2col + .footer__2col {
    margin-top: 3%;
  }
}
.footer .footer__inner .footer__logo a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .footer .footer__inner .footer__logo a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer__inner .footer__logo {
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
}
.footer .footer__inner .footer__address {
  font-size: 17px;
}
@media screen and (max-width: 750px) {
  .footer .footer__inner .footer__address {
    font-size: 1.6rem;
    display: inline-block;
    text-align: left;
  }
}
.footer .footer__inner .footer__nav a {
  font-size: 15px;
  line-height: 1;
  display: block;
  padding: 0 25px;
  border-right: 1px solid var(--black);
  border-left: 1px solid var(--black);
  transition: opacity 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .footer .footer__inner .footer__nav a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer__inner .footer__nav {
    text-align: center;
  }
  .footer .footer__inner .footer__nav a {
    display: inline-block;
  }
}
.footer .footer__inner .footer__copy {
  text-align: right;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .footer .footer__inner .footer__copy {
    font-size: 0.75em;
    text-align: center;
  }
}

.h2_title01 {
  font-size: 35px;
  color: var(--blown);
  background: url("/contact/images/bg_title_contact01.webp") no-repeat top 100px center/auto 70px;
  width: 100%;
  margin-top: 20px;
}
.h2_title01 span {
  width: 380px;
  height: 380px;
  display: block;
  writing-mode: vertical-rl;
  background: url("/common/images/bg_title01.webp") no-repeat center/contain;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .h2_title01 {
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .h2_title01 {
    font-size: 2.2rem;
    background-position: top 15vw center;
    background-size: auto 12vw;
    margin-top: 4%;
  }
  .h2_title01 span {
    width: 60vw;
    height: 60vw;
  }
}

.h3_title01 {
  font-size: 27px;
  color: var(--blown);
  line-height: 1;
  background: url("/common/images/bg_title02.webp") no-repeat top left/auto 100%;
  padding: 23px 45px;
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .h3_title01 {
    font-size: 2rem;
    padding: 6% 8%;
    margin-top: 15vw;
  }
}

.p-top .top__box01 {
  max-width: 1165px;
  margin: 0 auto;
  width: 96%;
}
@media screen and (max-width: 750px) {
  .p-top .top__box01 {
    width: calc(100% - 40px);
  }
}
.p-top .top_unit_2col01 {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-top .top_unit_2col01 {
    display: block;
  }
}
.p-top .top_h3_title01 {
  font-size: 33px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1000px) {
  .p-top .top_h3_title01 {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 750px) {
  .p-top .top_h3_title01 {
    display: inline-block;
    text-align: left;
  }
}
.p-top .top__img_area01 {
  display: -webkit-flex;
  display: flex;
  max-height: 120px;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-top .top__img_area01 {
    height: 26vw;
  }
  .p-top .top__img_area01 figure {
    height: 100%;
  }
  .p-top .top__img_area01 figure img {
    height: 100%;
    object-fit: cover;
  }
}
.p-top .top_menu01 {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-top .top_menu01 {
    display: block;
  }
}
.p-top .top_menu01 li {
  max-width: 350px;
  width: 350px;
}
.p-top .top_menu01 li a {
  display: block;
  background: url("/images/bg_btn01.webp") #fff no-repeat top/cover;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: var(--blown);
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  padding: 10px;
  transition: all 0.3s;
  border-radius: 35px;
  transition: opacity 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .p-top .top_menu01 li a:hover {
    opacity: 0.7;
  }
}
.p-top .top_menu01 li a span {
  display: block;
  background: url("/common/images/ico_arrow01.svg") #fff no-repeat right 20px center/25px 25px;
  border-radius: 25px;
  padding: 27px;
}
@media screen and (max-width: 1000px) {
  .p-top .top_menu01 li a {
    font-size: 1.8rem;
  }
  .p-top .top_menu01 li a span {
    background-position: right 10px center;
    background-size: 20px 20px;
  }
}
@media screen and (max-width: 750px) {
  .p-top .top_menu01 li {
    width: 70%;
    margin: 0 auto;
  }
  .p-top .top_menu01 li + li {
    margin-top: 8%;
  }
  .p-top .top_menu01 li a {
    text-align: left;
    padding: 8px;
    border-radius: 25px;
  }
  .p-top .top_menu01 li a span {
    padding: 18px 30px;
    border-radius: 16px;
  }
}
.p-top .top_menu01 li:nth-child(2) a {
  background-image: url("/images/bg_btn02.webp");
}
.p-top .top_menu01 li:nth-child(3) a {
  background-image: url("/images/bg_btn03.webp");
}
.p-top .top_menu01 li:nth-child(4) a {
  background-image: url("/images/bg_btn04.webp");
}
.p-top .top_menu01 li:nth-child(5) a {
  background-image: url("/images/bg_btn05.webp");
}
.p-top .top_menu01.top_menu01--red li a {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-top .top_menu01.top_menu01--red li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #aa6446;
  mix-blend-mode: hue;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-top .s-sec01 {
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec01 {
    margin-bottom: 45vw;
  }
}
.p-top .s-sec01 .slider_main figure {
  margin: 0 24px;
  width: 950px;
}
.p-top .s-sec01 .slider_main figure img {
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec01 .slider_main figure {
    margin: 0 7px;
  }
}
.p-top .s-sec01 .main_copy01 {
  position: absolute;
  bottom: -70px;
  left: 15%;
  width: 695px;
  height: 306px;
}
@media screen and (max-width: 1500px) {
  .p-top .s-sec01 .main_copy01 {
    width: 40vw;
    height: 18vw;
    bottom: -10%;
    left: 10%;
  }
}
@media screen and (max-width: 750px) {
  .p-top .s-sec01 .main_copy01 {
    width: 94vw;
    height: 42vw;
    bottom: -50%;
    left: 3vw;
  }
}
.p-top .s-sec02 {
  padding-top: 140px;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec02 {
    padding-top: 0;
  }
  .p-top .s-sec02 p {
    text-align: left;
  }
}
.p-top .s-sec02 .top__box01 .top__box01__img {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-top .s-sec02 .top__box01 .top__box01__img {
    max-width: 781px;
    width: 78%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .p-top .s-sec02 .top__box01 .top__box01__img {
    width: 84%;
  }
}
.p-top .s-sec02 .top_unit_2col01 {
  margin-top: -170px;
  position: relative;
  z-index: -1;
}
.p-top .s-sec02 .top_unit_2col01::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 850px;
  height: 850px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/images/bg_section02.webp) no-repeat top/contain;
}
.p-top .s-sec02 .top_unit_2col01 .top_unit_2col01__unit--ttl {
  width: 480px;
  transform: translateX(-60px);
}
.p-top .s-sec02 .top_unit_2col01 .top_unit_2col01__unit--txt {
  margin-top: 100px;
  width: 640px;
}
@media screen and (max-width: 1200px) {
  .p-top .s-sec02 .top_unit_2col01 {
    margin-top: -10%;
  }
  .p-top .s-sec02 .top_unit_2col01 .top_unit_2col01__unit--ttl {
    width: 40%;
    transform: translateX(-10%);
  }
  .p-top .s-sec02 .top_unit_2col01 .top_unit_2col01__unit--txt {
    width: 63%;
  }
}
@media screen and (max-width: 1000px) {
  .p-top .s-sec02 .top_unit_2col01::before {
    width: 85vw;
    height: 85vw;
  }
}
@media screen and (max-width: 750px) {
  .p-top .s-sec02 .top_unit_2col01::before {
    width: 113vw;
    height: 113vw;
    top: 38%;
  }
  .p-top .s-sec02 .top_unit_2col01 .top_unit_2col01__unit--ttl {
    width: 75%;
    transform: translateX(0);
    margin: 0 auto;
  }
  .p-top .s-sec02 .top_unit_2col01 .top_unit_2col01__unit--txt {
    width: 100%;
    margin-top: 6%;
    text-align: center;
  }
}
.p-top .s-sec02 .top_menu01 {
  width: 757px;
  margin-left: auto;
  margin-top: -55px;
}
.p-top .s-sec02 .top_menu01 li {
  width: 48%;
}
.p-top .s-sec02 .top_menu01 li:nth-child(n+3) {
  margin-top: 36px;
}
@media screen and (max-width: 1200px) {
  .p-top .s-sec02 .top_menu01 {
    margin-top: -2%;
  }
}
@media screen and (max-width: 1000px) {
  .p-top .s-sec02 .top_menu01 {
    width: 75%;
    margin-top: 2%;
  }
  .p-top .s-sec02 .top_menu01 li:nth-child(n+3) {
    margin-top: 4%;
  }
  .p-top .s-sec02 .top_menu01 li:nth-child(4) a {
    background-image: url(/images/bg_btn05.webp);
  }
}
@media screen and (max-width: 750px) {
  .p-top .s-sec02 .top_menu01 {
    width: 100%;
    margin-top: 10%;
  }
  .p-top .s-sec02 .top_menu01 li {
    width: 70%;
  }
  .p-top .s-sec02 .top_menu01 li:nth-child(n+3) {
    margin-top: 8%;
  }
}
.p-top .s-sec03 {
  padding-top: 150px;
  padding-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec03 {
    padding-top: 15vw;
  }
}
.p-top .s-sec03 .top__img_area01 {
  position: relative;
  z-index: 1;
}
.p-top .s-sec03 .top_unit_2col01 {
  margin-top: -170px;
  flex-direction: row-reverse;
}
.p-top .s-sec03 .top_unit_2col01 .top_unit_2col01__unit--ttl {
  width: 620px;
  transform: translateX(110px);
  position: relative;
  z-index: -1;
}
.p-top .s-sec03 .top_unit_2col01 .top_unit_2col01__unit--txt {
  width: 560px;
  padding-left: 90px;
}
@media screen and (max-width: 1200px) {
  .p-top .s-sec03 .top_unit_2col01 .top_unit_2col01__unit--ttl {
    width: 51%;
    transform: translateX(9%);
  }
  .p-top .s-sec03 .top_unit_2col01 .top_unit_2col01__unit--txt {
    width: 55%;
    padding-left: 7%;
  }
}
@media screen and (max-width: 1000px) {
  .p-top .s-sec03 .top_unit_2col01 {
    margin-top: -10%;
  }
}
@media screen and (max-width: 750px) {
  .p-top .s-sec03 .top_unit_2col01 .top_unit_2col01__unit--ttl {
    width: 90%;
  }
  .p-top .s-sec03 .top_unit_2col01 .top_unit_2col01__unit--txt {
    width: 100%;
    padding-left: 0;
    margin-top: -20%;
  }
}
.p-top .s-sec03 .top_menu01 {
  margin-top: -180px;
}
.p-top .s-sec03 .top_menu01::after {
  content: "";
  display: block;
  width: 30%;
}
.p-top .s-sec03 .top_menu01 li {
  width: 32%;
}
.p-top .s-sec03 .top_menu01 li:nth-child(n+4) {
  margin-top: 36px;
}
@media screen and (max-width: 1200px) {
  .p-top .s-sec03 .top_menu01 {
    margin-top: -15%;
  }
}
@media screen and (max-width: 1000px) {
  .p-top .s-sec03 .top_menu01 {
    margin-top: -10%;
  }
  .p-top .s-sec03 .top_menu01 li:nth-child(n+4) {
    margin-top: 4%;
  }
}
@media screen and (max-width: 750px) {
  .p-top .s-sec03 .top_menu01 {
    margin-top: 10%;
  }
  .p-top .s-sec03 .top_menu01 li {
    width: 70%;
  }
  .p-top .s-sec03 .top_menu01 li:nth-child(n+4) {
    margin-top: 8%;
  }
}
.p-top .s-sec04 {
  margin-top: 115px;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec04 {
    margin-top: 15vw;
  }
}
.p-top .s-sec04 .top_h3_title01 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec04 .top_h3_title01 {
    text-align: left;
  }
}
.p-top .s-sec04 p {
  width: 100%;
}
.p-top .s-sec04 .sec04_col {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec04 .sec04_col {
    display: block;
  }
}
.p-top .s-sec04 .sec04_col .sec04_col__box {
  margin-right: 4%;
}
.p-top .s-sec04 .sec04_col .sec04_col__box:last-child {
  margin-right: 0;
  flex-basis: 480px;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec04 .sec04_col .sec04_col__box {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .p-top .s-sec04 .sec04_col .sec04_col__box:last-child {
    margin-bottom: 0;
  }
}
.p-top .s-sec04 .top__box01 {
  padding-bottom: 200px;
  position: relative;
}
.p-top .s-sec04 .top__box01::before, .p-top .s-sec04 .top__box01::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.p-top .s-sec04 .top__box01::before {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -165px;
  background: url(/images/bg_section04_01.webp) no-repeat top/contain;
}
.p-top .s-sec04 .top__box01::after {
  width: 158px;
  height: 158px;
  top: -90px;
  right: 75px;
  background: url(/images/bg_section04_02.webp) no-repeat top/contain;
}
@media screen and (max-width: 750px) {
  .p-top .s-sec04 .top__box01 {
    text-align: center;
    padding-bottom: 15vw;
  }
  .p-top .s-sec04 .top__box01::before {
    width: 50vw;
    height: 50vw;
    top: -21%;
    left: -10%;
  }
  .p-top .s-sec04 .top__box01::after {
    width: 33.3vw;
    height: 33.3vw;
    top: 9%;
    bottom: 0;
    right: -1%;
  }
  .p-top .s-sec04 .top__box01 p {
    text-align: left;
  }
}

.p-contact .contact__box01 {
  max-width: 950px;
  width: 96%;
  margin: 0 auto;
  padding: 160px 0 60px;
}
@media screen and (max-width: 1200px) {
  .p-contact .contact__box01 {
    padding: 100px 0 60px;
  }
}
@media screen and (max-width: 750px) {
  .p-contact .contact__box01 {
    width: calc(100% - 40px);
    padding: 10vw 0 6vw;
  }
}
.p-contact .contact__box01__inner {
  border: 1px solid #6e1e00;
  border-radius: 0 140px 0 140px;
  padding: 70px 20px 120px;
}
@media screen and (max-width: 750px) {
  .p-contact .contact__box01__inner {
    border-radius: 0 50px 0 50px;
    padding: 14% 8% 16%;
  }
}
.p-contact .contact__box01__inner .contact__message {
  color: var(--blown);
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 65px;
}
@media screen and (max-width: 750px) {
  .p-contact .contact__box01__inner .contact__message {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 10%;
  }
}
.p-contact .contact__box01__inner .contact__number {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  line-height: 1.3;
  font-weight: bold;
}
.p-contact .contact__box01__inner .contact__number dt {
  font-size: 55px;
}
.p-contact .contact__box01__inner .contact__number dd {
  margin-left: 30px;
  font-size: 25px;
  font-weight: normal;
}
.p-contact .contact__box01__inner .contact__number dd span {
  font-size: 55px;
  font-weight: bold;
}
.p-contact .contact__box01__inner .contact__number + .contact__number {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .p-contact .contact__box01__inner .contact__number dt {
    font-size: 3rem;
  }
  .p-contact .contact__box01__inner .contact__number dd {
    font-size: 1.6rem;
    margin-left: 10px;
  }
  .p-contact .contact__box01__inner .contact__number dd span {
    font-size: 3rem;
  }
  .p-contact .contact__box01__inner .contact__number + .contact__number {
    margin-top: 4%;
  }
}

.p-about .h2_title01 {
  background: url(/about/images/bg_title_about01.webp) no-repeat top 100px center/auto 70px;
}
.p-about .about_box01 {
  padding-top: 160px;
}
@media screen and (max-width: 750px) {
  .p-about .about_box01 {
    padding-top: 80px;
  }
}
.p-about .about_box02 {
  margin-top: 150px;
}
@media screen and (max-width: 750px) {
  .p-about .about_box02 {
    margin-top: 75px;
  }
}
.p-about .about_con_wrap {
  margin-left: 45px;
}
@media screen and (max-width: 750px) {
  .p-about .about_con_wrap {
    margin-left: 0;
  }
}
.p-about .about_col01 {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-about .about_col01 {
    display: block;
  }
}
.p-about .about_col01 .about_col01__box {
  margin-right: 9%;
}
.p-about .about_col01 .about_col01__box:last-child {
  margin-right: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .p-about .about_col01 .about_col01__box {
    margin-right: 0;
  }
  .p-about .about_col01 .about_col01__box:last-child {
    margin-top: 20px;
  }
}
.p-about .about_col02 {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-about .about_col02 {
    display: block;
  }
}
.p-about .about_col02 .about_col02__box {
  margin-right: 4%;
}
.p-about .about_col02 .about_col02__box:last-child {
  margin-right: 0;
  width: calc(100% - 630px - 4%);
}
@media screen and (max-width: 750px) {
  .p-about .about_col02 .about_col02__box {
    margin-right: 0;
    width: 100%;
  }
  .p-about .about_col02 .about_col02__box:last-child {
    width: 100%;
    margin-top: 20px;
  }
}
.p-about .about_col02 .about_base_map {
  flex-basis: 630px;
  position: relative;
  width: 100%;
  padding-top: 29.55%;
}
@media screen and (max-width: 750px) {
  .p-about .about_col02 .about_base_map {
    padding-bottom: 56.25%;
  }
}
.p-about .about_col02 .about_base_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-about .about_list01 li {
  position: relative;
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin-bottom: 5px;
}
.p-about .about_list01 li:last-child {
  margin-bottom: 0;
}
.p-about .about_list01 li::before {
  content: "●";
  color: var(--blown);
  margin-right: 5px;
}
.p-about .about_president_name {
  margin-top: 70px;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .p-about .about_president_name {
    margin-top: 35px;
  }
}
.p-about .about_president_name span {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-about .about_president_name span {
    font-size: 2.3rem;
  }
}
.p-about .about_philosophy {
  color: var(--blown);
  padding: 50px 0;
  border-top: 3px solid var(--blown);
  border-bottom: 3px solid var(--blown);
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-about .about_philosophy {
    padding: 25px 0;
  }
}
.p-about .about_philosophy .about_philosophy_text {
  font-size: 3.3rem;
  font-family: "Yu Mincho", "YuMincho", serif;
}
@media screen and (max-width: 750px) {
  .p-about .about_philosophy .about_philosophy_text {
    font-size: 2.5rem;
  }
}
.p-about .about_outline .about_outline_dl {
  display: -webkit-flex;
  display: flex;
  border-top: 1px solid var(--blown);
}
.p-about .about_outline .about_outline_dl:last-child {
  border-bottom: 1px solid var(--blown);
}
@media screen and (max-width: 750px) {
  .p-about .about_outline .about_outline_dl {
    display: block;
    border-top: none;
  }
  .p-about .about_outline .about_outline_dl:last-child {
    border-bottom: none;
  }
}
.p-about .about_outline .about_outline_dl dt, .p-about .about_outline .about_outline_dl dd {
  padding: 15px 20px;
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  .p-about .about_outline .about_outline_dl dt, .p-about .about_outline .about_outline_dl dd {
    padding: 10px 15px;
    font-size: 1.8rem;
  }
}
.p-about .about_outline .about_outline_dl dt {
  color: var(--blown);
  font-weight: bold;
  background: #f7eeeb;
  flex-basis: 140px;
  flex-shrink: 0;
  width: 100%;
}
.p-about .about_base {
  margin-top: 115px;
}
@media screen and (max-width: 750px) {
  .p-about .about_base {
    margin-top: 58px;
  }
}
.p-about .about_base .about_base_box01 {
  margin-top: 35px;
}
.p-about .about_base .about_base_box01:first-of-type {
  margin-top: 0;
}
.p-about .about_base .about_base_address {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .p-about .about_base .about_base_address {
    margin-top: 20px;
  }
}
.p-about .about_base .about_base_address dl {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 5px;
}
.p-about .about_base .about_base_address dl:last-child {
  margin-bottom: 0;
}
.p-about .about_base .about_base_address dl dt {
  width: 5em;
  margin-right: 1em;
  flex-shrink: 0;
}
.p-about .about_history .about_history_dl {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 5px;
}
.p-about .about_history .about_history_dl:last-child {
  margin-bottom: 0;
}
.p-about .about_history .about_history_dl dt {
  width: 5em;
  margin-right: 1em;
  flex-shrink: 0;
}

.p-business .h2_title01 {
  background: url(/business/images/bg_title_business01.webp) no-repeat top 100px center/auto 70px;
}
.p-business .business_box01 {
  position: relative;
}
.p-business .business_box01::after {
  content: "";
  display: block;
  width: 100%;
  height: 503px;
  background: #faf5eb;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: skewY(-10deg);
  z-index: -2;
}
@media screen and (max-width: 750px) {
  .p-business .business_box01::after {
    height: 252px;
  }
}
.p-business .business_box01_2 {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .p-business .business_box01_2 {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.p-business .business_box01_2::before {
  content: "";
  display: block;
  background: url(/business/images/img01.webp) no-repeat right top/contain;
  width: 531px;
  height: 809px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-business .business_box01_2::before {
    width: 266px;
    height: 405px;
    right: 50%;
    transform: translate(50%, 10%);
  }
}
.p-business .business_box01_2 .business_box01_2__wrap {
  margin-left: 45px;
}
@media screen and (max-width: 750px) {
  .p-business .business_box01_2 .business_box01_2__wrap {
    margin-left: 0;
  }
}
.p-business .business_box01_3 {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .p-business .business_box01_3 {
    margin-top: 40px;
  }
}
.p-business .business_box02 {
  margin-top: 100px;
}
.p-business .business_box02:first-child {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .p-business .business_box02 {
    margin-top: 50px;
  }
}
.p-business .business_caption01 {
  color: var(--blown);
  font-size: 4.3rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .p-business .business_caption01 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}
.p-business .business_caption02 {
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .p-business .business_caption02 {
    font-size: 2.3rem;
  }
}
.p-business .business_col01 {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-business .business_col01 {
    display: block;
  }
}
.p-business .business_col01 .business_col01__box {
  width: 48%;
  margin-right: 4%;
}
.p-business .business_col01 .business_col01__box:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .p-business .business_col01 .business_col01__box {
    width: 100%;
    margin-right: 0;
  }
  .p-business .business_col01 .business_col01__box:last-child {
    margin-top: 25px;
  }
}
.p-business .business_col02 {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .p-business .business_col02 {
    margin-top: 25px;
    display: block;
  }
}
.p-business .business_col02 .business_col02__box {
  width: 48%;
  padding-right: 4%;
  margin-right: 4%;
  border-right: 1px solid var(--blown);
}
.p-business .business_col02 .business_col02__box:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
@media screen and (max-width: 750px) {
  .p-business .business_col02 .business_col02__box {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--blown);
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .p-business .business_col02 .business_col02__box:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.p-business .business_col03 {
  display: -webkit-flex;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .p-business .business_col03 {
    margin-top: 25px;
    display: block;
  }
}
.p-business .business_col03 .business_col03__box {
  width: 32%;
  margin-right: 2%;
}
.p-business .business_col03 .business_col03__box:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .p-business .business_col03 .business_col03__box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .p-business .business_col03 .business_col03__box:last-child {
    margin-bottom: 0;
  }
}
.p-business .business_text01 {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .p-business .business_text01 {
    font-size: 2.2rem;
  }
}
.p-business .business_img01 {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-business .business_img01 {
    margin-top: 25px;
  }
}
.p-business .business_img02 {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-business .business_img02 {
    margin-top: 30px;
  }
}
.p-business .business_img02 figure {
  margin-top: 30px;
}
.p-business .business_img02 figure:first-child {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .p-business .business_img02 figure {
    margin-top: 15px;
  }
}
.p-business .business_img03 {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-business .business_img03 {
    margin-top: 30px;
  }
}

.p-recruit .h2_title01 {
  background-image: url(/recruit/images/bg_title_recruit01.webp);
}
.p-recruit .h4__recruit_title01 {
  position: relative;
  font-size: 22px;
  padding-left: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--blown);
  line-height: 1;
  margin-bottom: 30px;
}
.p-recruit .h4__recruit_title01 span::before {
  content: "■";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blown);
  font-size: 1em;
}
@media screen and (max-width: 750px) {
  .p-recruit .h4__recruit_title01 {
    font-size: 1.8rem;
    margin-bottom: 3%;
  }
}
.p-recruit .recruit__box01 {
  max-width: 1250px;
  width: 96%;
  margin: 0 auto;
  padding: 160px 0 60px;
}
@media screen and (max-width: 1200px) {
  .p-recruit .recruit__box01 {
    padding: 100px 0 60px;
  }
}
@media screen and (max-width: 750px) {
  .p-recruit .recruit__box01 {
    width: calc(100% - 40px);
    padding: 10vw 0 6vw;
  }
}
.p-recruit .recruit__box01 .recruit__box01_inner:first-of-type {
  padding-top: 50px;
}
@media screen and (max-width: 1200px) {
  .p-recruit .recruit__box01 .recruit__box01_inner:first-of-type {
    padding-top: 0;
  }
}
.p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 50px 40px 0;
}
.p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 .recruit_unit_2col01__unit--img {
  width: 450px;
}
.p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 .recruit_unit_2col01__unit--txt {
  width: calc(100% - 514px);
}
@media screen and (max-width: 1200px) {
  .p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 .recruit_unit_2col01__unit--img {
    width: 42%;
  }
  .p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 .recruit_unit_2col01__unit--txt {
    width: 52%;
  }
}
@media screen and (max-width: 1000px) {
  .p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 {
    padding: 4% 2% 0;
  }
}
@media screen and (max-width: 750px) {
  .p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 {
    display: block;
    padding: 6% 0 0;
  }
  .p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 .recruit_unit_2col01__unit--img {
    width: 94%;
    margin-left: auto;
  }
  .p-recruit .recruit__box01 .recruit__box01_inner .recruit_unit_2col01 .recruit_unit_2col01__unit--txt {
    width: 100%;
    margin-top: 10%;
  }
}
.p-recruit .recruit__message {
  color: var(--blown);
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .p-recruit .recruit__message {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 10%;
  }
}
.p-recruit .recruit__box01__text {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .p-recruit .recruit__box01__text {
    margin-top: 50px;
  }
}
@media screen and (max-width: 750px) {
  .p-recruit .recruit__box01__text {
    margin-top: 6%;
  }
}
.p-recruit .recruit_btn01 {
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .p-recruit .recruit_btn01 {
    margin-top: 35px;
  }
}
.p-recruit .recruit_btn01 a {
  display: inline-block;
  padding: 10px 25px;
  background: var(--blown);
  color: #fff;
  line-height: 1.3;
  transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .p-recruit .recruit_btn01 a:hover {
    opacity: 0.7;
  }
}
.p-recruit .recruit_btn01 .recruit_btn01_arrow {
  position: relative;
  padding-right: 70px;
}
.p-recruit .recruit_btn01 .recruit_btn01_arrow::after {
  content: "";
  display: block;
  background: url("../images/ico_arrow02.svg") no-repeat right center/18px;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-privacy .b-title01 {
  max-width: 400px;
}
.p-privacy .privacy_box01 {
  padding-top: 160px;
}
.p-privacy .privacy_box01:nth-child(n+2) {
  padding-top: 150px;
}
@media screen and (max-width: 750px) {
  .p-privacy .privacy_box01 {
    padding-top: 80px;
  }
  .p-privacy .privacy_box01:nth-child(n+2) {
    padding-top: 75px;
  }
}
.p-privacy .privacy_box02 {
  margin-top: 30px;
}
.p-privacy .privacy_box02:first-of-type {
  margin-top: 0;
}
.p-privacy .privacy_box02 p {
  word-break: break-all;
}
@media screen and (max-width: 750px) {
  .p-privacy .privacy_box02 {
    margin-top: 15px;
  }
}
.p-privacy .privacy_title01 {
  margin-bottom: 5px;
}
.p-privacy .privacy_list01 li {
  position: relative;
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin-bottom: 5px;
}
.p-privacy .privacy_list01 li::before {
  content: "●";
  color: var(--blown);
  margin-right: 5px;
}
.p-privacy .privacy_list01 li:last-child {
  margin-bottom: 0;
}
.p-privacy .privacy_link01 {
  text-decoration: underline;
}
@media (any-hover: hover) and (pointer: fine) {
  .p-privacy .privacy_link01:hover {
    text-decoration: none;
  }
}
.p-privacy .privacy_caption01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .p-privacy .privacy_caption01 {
    margin-bottom: 15px;
  }
}
.p-privacy .contact__box01 {
  max-width: 950px;
  width: 96%;
  margin: 0 auto;
  padding: 160px 0 60px;
}
@media screen and (max-width: 1200px) {
  .p-privacy .contact__box01 {
    padding: 100px 0 60px;
  }
}
@media screen and (max-width: 750px) {
  .p-privacy .contact__box01 {
    width: calc(100% - 40px);
    padding: 10vw 0 6vw;
  }
}
.p-privacy .contact__box01__inner {
  border: 1px solid #6e1e00;
  border-radius: 0 140px 0 140px;
  padding: 70px 20px 120px;
}
@media screen and (max-width: 750px) {
  .p-privacy .contact__box01__inner {
    border-radius: 0 50px 0 50px;
    padding: 14% 8% 16%;
  }
}
.p-privacy .contact__box01__inner .contact__message {
  color: var(--blown);
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .p-privacy .contact__box01__inner .contact__message {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 10%;
  }
}
.p-privacy .contact__box01__inner .contact_address {
  max-width: 68%;
  margin: 0 auto 35px;
  font-size: 3rem;
}
@media screen and (max-width: 750px) {
  .p-privacy .contact__box01__inner .contact_address {
    max-width: none;
    margin: 0 auto 25px;
    font-size: 1.9rem;
  }
}
.p-privacy .contact__box01__inner .contact__number {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  line-height: 1.3;
  font-weight: bold;
}
.p-privacy .contact__box01__inner .contact__number dt {
  font-size: 55px;
}
.p-privacy .contact__box01__inner .contact__number dd {
  margin-left: 30px;
  font-size: 25px;
  font-weight: normal;
}
.p-privacy .contact__box01__inner .contact__number dd span {
  font-size: 55px;
  font-weight: bold;
}
.p-privacy .contact__box01__inner .contact__number + .contact__number {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .p-privacy .contact__box01__inner .contact__number dt {
    font-size: 3rem;
  }
  .p-privacy .contact__box01__inner .contact__number dd {
    font-size: 1.6rem;
    margin-left: 10px;
  }
  .p-privacy .contact__box01__inner .contact__number dd span {
    font-size: 3rem;
  }
  .p-privacy .contact__box01__inner .contact__number + .contact__number {
    margin-top: 4%;
  }
}
/*# sourceMappingURL=style.css.map */
