@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;
  text-decoration: none;
  color: inherit;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

.imgSvg path {
  color: #f6aa00;
  fill: currentColor;
}
.imgSvg polygon {
  color: #f6aa00;
  fill: currentColor;
}
.imgSvg rect {
  color: #f6aa00;
  fill: currentColor;
}
.imgSvg.white path {
  color: #fff;
  fill: currentColor;
}
.imgSvg.white polygon {
  color: #fff;
  fill: currentColor;
}
.imgSvg.white rect {
  color: #fff;
  fill: currentColor;
}

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

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
    transition: 0.3s all ease;
  }
}

/* Scss Document */
html {
  font-size: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 500;
}

body {
  font-size: 12px;
  font-size: 3.2vw;
  line-height: 1.5;
  background-attachment: fixed;
  color: #333;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 13.2px;
  }
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}

#wrap {
  width: 100vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #wrap {
    width: 100%;
    min-width: 1160px;
  }
}

.inner {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 5.33vw;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

h2.white {
  color: #fff;
}

h3.white {
  color: #fff;
}

/**************************
**** btn
**************************/
.btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 80px;
}
.btn a {
  display: block;
  width: 100%;
  background: #f6aa00;
  color: #fff;
  border-radius: 40px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-size: 4.2666666667vw;
  transition: 0.3s all ease;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .btn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 1em 0;
    border-radius: 80px;
  }
}
@media screen and (min-width: 768px) {
  .btn a {
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .btn a:hover {
    opacity: 0.8;
    transition: 0.3s all ease;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1);
  }
}
.btn.white {
  background: transparent;
}
.btn.white a {
  background: #fff;
  color: #222;
}

@media screen and (min-width: 768px) {
  .pcBtn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 80px;
  }
  .pcBtn a {
    display: block;
    width: 100%;
    background: #f6aa00;
    color: #fff;
    font-size: 16px;
    font-size: 4.2666666667vw;
    border-radius: 40px;
    transition: 0.3s all ease;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .pcBtn a {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .pcBtn a:hover {
    opacity: 0.8;
    transition: 0.3s all ease;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1);
  }
  .pcBtn.white {
    background: transparent;
  }
  .pcBtn.white a {
    background: #fff;
    color: #222;
  }
}

/**************************
**** card
**************************/
.card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .card {
    width: 100%;
  }
}
.card a {
  display: block;
  width: 100%;
  background: #f6aa00;
  color: #fff;
  font-size: 16px;
  font-size: 4.2666666667vw;
  border-radius: 10px;
  transition: 0.3s all ease;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .card a {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .card a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .card a:hover {
    opacity: 0.8;
    transition: 0.3s all ease;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1);
  }
}
.card.white {
  background: transparent;
}
.card.white a {
  background: #fff;
  color: #222;
}

/**************************
**** コンテンツ
**************************/
.sectionWrapper {
  background: #fff;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .sectionWrapper {
    padding-bottom: 80px;
  }
}
.sectionWrapper .sectionTitle {
  text-align: center;
  padding: 80px 0 60px;
}
@media screen and (min-width: 768px) {
  .sectionWrapper .sectionTitle {
    padding: 120px 0 80px;
  }
}
.sectionWrapper .sectionTitle img {
  width: 10.67vw;
  height: 10.67vw;
  display: block;
  margin: 0 auto 12px;
}
@media screen and (min-width: 768px) {
  .sectionWrapper .sectionTitle img {
    width: 40px;
    height: 40px;
  }
}
.sectionWrapper .sectionTitle svg {
  width: 10.67vw;
  height: 10.67vw;
  display: block;
  margin: 0 auto 12px;
}
@media screen and (min-width: 768px) {
  .sectionWrapper .sectionTitle svg {
    width: 40px;
    height: 40px;
  }
}
.sectionWrapper .sectionTitle h2 {
  font-size: 24px;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .sectionWrapper .sectionTitle h2 {
    font-size: 26.4px;
  }
}

.contentWrapper {
  padding: 40px 0 60px;
}
.contentWrapper.white {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .contentWrapper.white {
    padding-bottom: 40px;
  }
}

p.contentLead {
  text-align: center;
  margin-bottom: 20px;
}

/*****背景色の設定*****/
.bgImg {
  background: none;
}

.bgColor01 {
  background: #edebde;
}

.bgColor02 {
  background: #f15566;
}

.bgMainColor {
  background: #edebde;
}

@media screen and (max-width: 767px) {
  .sp2col ul {
    display: flex;
    flex-wrap: wrap;
  }
  .sp2col ul li {
    margin: 0 4% 4% 0;
    width: 48%;
  }
  .sp2col ul li:nth-child(2n) {
    margin-right: 0%;
  }
}

/* Scss Document */
/**************************
**** header
**************************/
#header {
  transition: 0.3s all ease;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  background: #fff;
}
#header .inner {
  position: relative;
  width: 100%;
  padding: 10px 5.33vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #header .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
    min-width: 1160px;
    padding: 10px 20px;
  }
}
#header .inner #logo {
  transition: 0.3s all ease;
  flex-basis: 50vw;
  max-width: 50vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #header .inner #logo {
    margin: 0 2em 0 0;
    height: 60px;
    flex-basis: auto;
  }
}
@media screen and (min-width: 768px) {
  #header .inner #logo img {
    transition: 0.3s all ease;
    height: auto;
    width: auto;
    max-height: 50px;
    max-width: 190px;
  }
}
@media screen and (max-width: 767px) {
  #header .inner #logo img {
    max-height: 50px;
  }
}
@media screen and (min-width: 768px) {
  #header .inner #nav {
    flex-basis: 490px;
    max-width: 490px;
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  #header .inner #nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  #header .inner #nav ul li {
    margin: 0 2em 0 0;
    line-height: 2em;
  }
}
#header .inner #pageTitle {
  display: none;
}
@media screen and (min-width: 768px) {
  #header .inner #pageTitle {
    display: block;
    flex-basis: 240px;
    max-width: 240px;
    margin-left: auto;
    max-width: 240px;
  }
}
#header .inner #pageTitle h1 {
  font-size: 10px;
  font-size: 2.6666666667vw;
  font-weight: normal;
  color: #f6aa00;
  text-align: right;
}
@media screen and (min-width: 768px) {
  #header .inner #pageTitle h1 {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  #header .inner #pageTitle h1 {
    position: absolute;
    bottom: 14px;
    right: 5.33vw;
  }
}
#header .inner #pageTitle h1 span {
  display: block;
}
#header.scroll .inner #logo {
  transition: 0.3s all ease;
}
@media screen and (min-width: 768px) {
  #header.scroll .inner #logo {
    margin: 0 2em 0 0;
    height: 40px;
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) {
  #header.scroll .inner #logo img {
    transition: 0.3s all ease;
    width: auto;
    max-height: 40px;
  }
}

/********************************
**  ハンバーガー
********************************/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}

#menu-trigger {
  margin-left: auto;
  display: inline-block;
  width: 30px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  /*   transform: translateX(0);
  transition: transform .5s;
  */
}

/* .menu-trigger.active {
	transform: translateX(-250px);
	}
*/
#menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #222;
  transition: all 0.5s;
  border-radius: 4px;
}

#menu-trigger.active span {
  background-color: #fff;
}

#menu-trigger span:nth-of-type(1) {
  top: 4px;
}

#menu-trigger.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}

#menu-trigger span:nth-of-type(2) {
  top: 12px;
}

#menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

#menu-trigger span:nth-of-type(3) {
  bottom: 4px;
}

#menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

#sp_nav {
  width: 300px;
  height: 100%;
  padding-top: 100px;
  background-color: #f6aa00;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(300px);
  transition: all 0.5s;
}

#sp_nav.open {
  transform: translateZ(0);
}

#sp_nav li {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid #fff;
}
#sp_nav li a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Scss Document */
/**************************
**** MV
**************************/
#mv01 {
  position: relative;
}
@media screen and (min-width: 768px) {
  #mv01 {
    background: url(../images/pc_mv.jpg) center top no-repeat;
    background-color: #fff;
    width: 100%;
    height: auto;
  }
}
#mv01 img {
  width: 100%;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
#mv01 #mvBtn {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 10.66vw);
}
@media screen and (min-width: 768px) {
  #mv01 #mvBtn {
    bottom: 20px;
    left: 50%;
    margin-left: calc(528px / 2 * -1);
    width: 528px;
  }
}

/* Scss Document */
/**************************
**** サーチコンテンツ
**************************/
#search {
  padding-bottom: 0;
}
#search .sectionTitle {
  padding: 60px 0 0px;
}
@media screen and (min-width: 768px) {
  #search .sectionTitle {
    padding: 80px 0 0px;
  }
}

h3.searchTitle {
  font-size: 16px;
  font-size: 4.2666666667vw;
  text-align: center;
  margin: 20px 0 30px;
}
@media screen and (min-width: 768px) {
  h3.searchTitle {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  h3.searchTitle {
    margin: 40px 0 60px;
  }
}
h3.searchTitle img {
  display: block;
  margin-right: 20px;
  width: 5.33vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  h3.searchTitle img {
    width: 40px;
    margin-bottom: 12px;
  }
}
h3.searchTitle svg {
  display: block;
  margin-right: 20px;
  width: 5.33vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  h3.searchTitle svg {
    width: 40px;
    margin-bottom: 12px;
  }
}

/* Scss Document */
/**** 日本地図検索 ****/
@media screen and (min-width: 768px) {
  #mapSearch {
    box-sizing: content-box;
    width: 100%;
    height: 665px;
    background: url(../images/map/japan.png) center top no-repeat;
    padding-bottom: 40px;
  }
}
#mapSearch .inner {
  position: relative;
}
#mapSearch .inner dl dt {
  position: relative;
}
@media screen and (min-width: 768px) {
  #mapSearch .inner dl dt {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #mapSearch .inner dl dd {
    position: absolute;
    font-size: 16px;
  }
  #mapSearch .inner dl dd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #mapSearch .inner dl dd ul li {
    margin: 0 1em 0.25em 0;
    color: #aaaaaa;
  }
  #mapSearch .inner dl dd ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #222;
    text-decoration: underline;
    font-weight: 500;
  }
  #mapSearch .inner dl dd#hokkaido {
    left: 980px;
    top: 130px;
  }
  #mapSearch .inner dl dd#tohoku {
    left: 820px;
    top: 300px;
    width: 12em;
  }
  #mapSearch .inner dl dd#kanto {
    left: 760px;
    top: 440px;
    width: 16em;
  }
  #mapSearch .inner dl dd#kosh {
    left: 540px;
    top: 270px;
    width: 9em;
  }
  #mapSearch .inner dl dd#tokai {
    left: 660px;
    top: 560px;
    width: 9em;
  }
  #mapSearch .inner dl dd#kansai {
    left: 440px;
    top: 600px;
    width: 14em;
  }
  #mapSearch .inner dl dd#cgsk {
    left: 300px;
    top: 360px;
    width: 14em;
  }
  #mapSearch .inner dl dd#kyushu {
    left: 100px;
    top: 480px;
    width: 15em;
  }
}

/**** 関東地図検索 ****/
@media screen and (min-width: 768px) {
  #kantoSearch .inner {
    font-size: 16px;
  }
  #kantoSearch .inner #kantoMap {
    box-sizing: content-box;
    width: 100%;
    height: 600px;
    background: url(../images/map/kantoMap.png) center top no-repeat;
    padding-bottom: 40px;
    position: relative;
  }
  #kantoSearch .inner ul li {
    margin: 0 1em 0.25em 0;
    position: absolute;
    display: inline-block;
  }
  #kantoSearch .inner ul li a {
    width: 160px;
    height: 48px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
  }
  #kantoSearch .inner ul li#ibaraki {
    left: 800px;
    top: 250px;
  }
  #kantoSearch .inner ul li#tochigi {
    left: 800px;
    top: 70px;
  }
  #kantoSearch .inner ul li#gunma {
    right: 786px;
    top: 0px;
  }
  #kantoSearch .inner ul li#saitama {
    right: 786px;
    top: 192px;
  }
  #kantoSearch .inner ul li#chiba {
    left: 800px;
    top: 408px;
  }
  #kantoSearch .inner ul li#tokyo {
    right: 786px;
    top: 342px;
  }
  #kantoSearch .inner ul li#kanagawa {
    right: 786px;
    top: 485px;
  }
}

/**** 東北地図検索 ****/
@media screen and (min-width: 768px) {
  #tohokuSearch .inner {
    font-size: 16px;
  }
  #tohokuSearch .inner #tohokuMap {
    box-sizing: content-box;
    width: 100%;
    height: 600px;
    background: url(../images/map/tohokuMap.png) center top no-repeat;
    padding-bottom: 40px;
    position: relative;
  }
  #tohokuSearch .inner ul li {
    margin: 0 1em 0.25em 0;
    position: absolute;
    display: inline-block;
  }
  #tohokuSearch .inner ul li a {
    width: 160px;
    height: 48px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
  }
  #tohokuSearch .inner ul li#aomori {
    left: 800px;
    top: 70px;
  }
  #tohokuSearch .inner ul li#akita {
    right: 786px;
    top: 200px;
  }
  #tohokuSearch .inner ul li#iwate {
    left: 800px;
    top: 200px;
  }
  #tohokuSearch .inner ul li#yamagata {
    right: 786px;
    top: 390px;
  }
  #tohokuSearch .inner ul li#miyagi {
    left: 800px;
    top: 390px;
  }
  #tohokuSearch .inner ul li#fukushima {
    left: 800px;
    top: 520px;
  }
}

.cityList {
  display: none;
}

@media screen and (min-width: 768px) {
  .cityListInner h4 {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #f6aa00;
    font-size: 1.2em;
    margin: 0 0 20px;
  }
  .cityListInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .cityListInner ul:after {
    content: "";
    display: block;
  }
  .cityListInner ul li {
    margin: 0.5em 1em 0.5em 0;
  }
  .cityListInner ul li a {
    font-size: 1.2em;
    display: block;
    color: #fff;
    background: #f6aa00;
    padding: 0.5em 0em;
    border-radius: 4em;
    text-align: center;
    width: 160px;
  }
  /* end pc cityList */
}
@media screen and (max-width: 767px) {
  .cityListInner h4 {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #f6aa00;
    font-size: 1.6em;
    margin: 0 0 20px;
  }
  .cityListInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .cityListInner ul:after {
    content: "";
    display: block;
  }
  .cityListInner ul li {
    margin: 0 1em 1em 0;
    display: inline-block;
  }
  .cityListInner ul li a {
    font-size: 1.3em;
    color: #f6aa00;
    text-decoration: underline;
  }
  .modaal-container {
    width: 100%;
  }
}
/* end sp cityList */
/**** 地図検索→SPのアコーディオン ****/
@media screen and (max-width: 767px) {
  .areaSearch dl dt {
    position: relative;
    display: block;
    width: calc(100% + 10.66vw);
    border-bottom: 1px solid #f6aa00;
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding: 1em 0 1em 5.33vw;
    margin-top: -1px;
    margin-left: -5.33vw;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  .areaSearch dl dt {
    font-size: 17.6px;
  }
}
@media screen and (max-width: 767px) {
  .areaSearch dl dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5.33vw;
    margin-top: -6px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/ico_plus.svg);
    background-size: cover;
  }
  .areaSearch dl dt.active::after {
    background: url(../images/ico_minus.svg) center center no-repeat;
  }
  .areaSearch dl dd {
    display: block;
    width: 100%;
    margin-left: 5.33vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  .areaSearch dl dd {
    font-size: 17.6px;
  }
}
@media screen and (max-width: 767px) {
  .areaSearch dl dd ul li {
    border-bottom: 1px solid #f6aa00;
  }
  .areaSearch dl dd ul li a {
    position: relative;
    display: block;
    padding: 1em 0 1em 3.2vw;
    width: 100%;
    height: 100%;
  }
  .areaSearch dl dd ul li a::after {
    content: "";
    position: absolute;
    right: 5.33vw;
    top: 50%;
    display: block;
    width: 10px;
    height: 16px;
    margin-top: -8px;
    background: url(../images/ico_arrow_search.svg);
    background-size: cover;
  }
}

/**** 都道府県検索 ****/
@media screen and (min-width: 768px) {
  .areaBtn {
    width: 100%;
  }
  .areaBtn dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .areaBtn dl dt {
    font-size: 16px;
    font-size: 4.2666666667vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-basis: 160px;
    max-width: 160px;
    background: #e3e3e3;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .areaBtn dl dt {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  .areaBtn dl dd {
    flex-basis: 896px;
    max-width: 896px;
    margin-bottom: 10px;
  }
  .areaBtn dl dd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .areaBtn dl dd ul li {
    flex-basis: 160px;
    max-width: 160px;
    margin: 4px 24px 4px 0;
  }
  .areaBtn dl dd ul li:nth-child(5n) {
    margin: 8px 0 8px 0;
  }
  .areaBtn dl dd ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
  }
}

/*市区町村検索（SPのみ）*/
.areaSearch dl dt.open::after {
  background: url(../images/ico_minus.svg) center center no-repeat;
}
.areaSearch dl dt.close::after {
  background: url(../images/ico_plus.svg) center center no-repeat;
}
.areaSearch dl dd.spCity a.open::after {
  background: url(../images/ico_minus.svg) center center no-repeat;
}
.areaSearch dl dd.spCity a::after, .areaSearch dl dd.spCity a.close::after {
  background: url(../images/ico_plus.svg) center center no-repeat;
}
.areaSearch dl dd.spCity li {
  border-bottom: 1px solid #f1b000;
}
.areaSearch dl dd.spCity li li {
  border-top: 1px solid #f1b000;
  border-bottom: none;
}
.areaSearch dl dd.spCity li li a::after {
  background: url(../images/ico_arrow_search.svg) center center no-repeat;
}

/* Scss Document */
/**** iconsearch ****/
.iconSearch ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.iconSearch ul li {
  margin: 0 0 4% 0;
}
@media screen and (min-width: 768px) {
  .iconSearch ul li {
    margin: 0 24px 24px 0;
  }
}
@media screen and (max-width: 767px) {
  .iconSearch ul li.btn {
    width: 100%;
  }
}
.iconSearch ul li.btn a {
  width: 100%;
  padding-left: 60px;
  padding-right: 20px;
  position: relative;
}
.iconSearch ul li.btn a img {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: calc(2.26vw + 8px);
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .iconSearch ul li.btn a img {
    left: 18px;
  }
}
.iconSearch ul li.btn a svg {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: calc(2.26vw + 8px);
  width: 24px;
  height: 24px;
  margin-top: -12px;
}
@media screen and (min-width: 768px) {
  .iconSearch ul li.btn a svg {
    left: 18px;
  }
}
.iconSearch ul li.btn a:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 2.26vw;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .iconSearch ul li.btn a:before {
    top: 10px;
    left: 10px;
    margin-top: 0;
  }
}
.iconSearch ul li.btn.white a:before {
  background: #eaeaea;
}
.iconSearch.plus ul li.card a {
  padding: 30px 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.iconSearch.plus ul li.card a dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.iconSearch.plus ul li.card a dl dt {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.iconSearch.plus ul li.card a dl dt p {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background: #fff;
  padding: 30px 0 0 0;
}
.iconSearch.plus ul li.card a dl dt p img {
  width: 60px;
  height: 60px;
}
.iconSearch.plus ul li.card a dl dt p svg {
  width: 60px;
  height: 60px;
}
.iconSearch.plus ul li.card a dl dt span {
  margin: 10px 0;
}
.iconSearch.plus ul li.card a dl dt span span {
  display: block;
  margin: auto;
}
.iconSearch.plus ul li.card a dl dd {
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .iconSearch.plus ul li.card a dl dd {
    font-size: 13.2px;
  }
}
.iconSearch.plus ul li.card.white a dl dt p {
  background: #eaeaea;
}
@media screen and (min-width: 768px) {
  .iconSearch.mini ul li:nth-child(4n) {
    margin-right: 0px;
  }
  .iconSearch.mini ul li a {
    width: 252px;
  }
  .iconSearch.middle ul li:nth-child(3n) {
    margin-right: 0;
  }
  .iconSearch.middle ul li a {
    width: 344px;
  }
  .iconSearch.large ul li:nth-child(2n) {
    margin-right: 0;
  }
  .iconSearch.large ul li a {
    width: 528px;
  }
}

/* Scss Document */
/**** imgsearch ****/
@media screen and (max-width: 767px) {
  .imgSearch.plus ul li {
    margin: 0 0 8% 0;
  }
}
.imgSearch.plus ul li ul {
  list-style: inside;
}
.imgSearch ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.imgSearch ul li {
  margin: 0 0 4% 0;
}
@media screen and (min-width: 768px) {
  .imgSearch ul li {
    margin: 0 24px 24px 0;
  }
}
.imgSearch ul li.card a {
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .imgSearch ul li.card a {
    padding: 44vw 0 0;
  }
}
@media screen and (max-width: 767px) {
  .imgSearch ul li.card a::before {
    content: "";
    display: block;
    width: 100%;
    height: 44vw;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.imgSearch ul li.card a img {
  flex-basis: 100%;
  max-width: 100%;
  line-height: 1;
}
.imgSearch ul li.card a p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
  max-width: 100%;
  line-height: 1.2;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  .imgSearch ul li.card a p {
    padding: 0 0 5px;
    height: 48px;
  }
}
.imgSearch ul li.card a p span {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0;
}
.imgSearch ul li.card a p span span {
  display: block;
}
.imgSearch ul li.card p.note {
  margin: 10px 15px;
  text-align: left;
}
.imgSearch ul li.card:nth-child(1) a::before {
  background: url(../images/img_imgsearch_01.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(2) a::before {
  background: url(../images/img_imgsearch_02.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(3) a::before {
  background: url(../images/img_imgsearch_03.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(4) a::before {
  background: url(../images/img_imgsearch_04.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(5) a::before {
  background: url(../images/img_imgsearch_05.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(6) a::before {
  background: url(../images/img_imgsearch_06.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(7) a::before {
  background: url(../images/img_imgsearch_07.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(8) a::before {
  background: url(../images/img_imgsearch_08.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(9) a::before {
  background: url(../images/img_imgsearch_09.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(10) a::before {
  background: url(../images/img_imgsearch_10.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(11) a::before {
  background: url(../images/img_imgsearch_11.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(12) a::before {
  background: url(../images/img_imgsearch_12.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(13) a::before {
  background: url(../images/img_imgsearch_13.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(14) a::before {
  background: url(../images/img_imgsearch_14.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(15) a::before {
  background: url(../images/img_imgsearch_15.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(16) a::before {
  background: url(../images/img_imgsearch_16.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(17) a::before {
  background: url(../images/img_imgsearch_17.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(18) a::before {
  background: url(../images/img_imgsearch_18.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(19) a::before {
  background: url(../images/img_imgsearch_19.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(20) a::before {
  background: url(../images/img_imgsearch_20.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(21) a::before {
  background: url(../images/img_imgsearch_21.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(22) a::before {
  background: url(../images/img_imgsearch_22.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(23) a::before {
  background: url(../images/img_imgsearch_23.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch ul li.card:nth-child(24) a::before {
  background: url(../images/img_imgsearch_24.jpg?20230125) no-repeat;
  background-size: cover;
}
.imgSearch.bgColor01 li, .imgSearch.bgColor02 li, .imgSearch.bgMainColor li {
  background: transparent;
}
@media screen and (min-width: 768px) {
  .imgSearch.mini ul li {
    width: 252px;
  }
  .imgSearch.mini ul li:nth-child(4n) {
    margin-right: 0px;
  }
  .imgSearch.mini ul li a {
    width: 252px;
  }
  .imgSearch.mini ul li a img {
    width: 100%;
  }
  .imgSearch.middle ul li {
    width: 344px;
  }
  .imgSearch.middle ul li:nth-child(3n) {
    margin-right: 0;
  }
  .imgSearch.middle ul li a {
    width: 344px;
  }
  .imgSearch.middle ul li a img {
    width: 100%;
  }
  .imgSearch.large ul li {
    width: 528px;
  }
  .imgSearch.large ul li:nth-child(2n) {
    margin-right: 0;
  }
  .imgSearch.large ul li a {
    width: 528px;
  }
  .imgSearch.large ul li a img {
    width: 100%;
  }
}

/* Scss Document */
/**** brandsearch ****/
.brandSearch ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .brandSearch ul {
    justify-content: center;
  }
}
.brandSearch ul li {
  flex-basis: 48%;
  max-width: 48%;
}
@media screen and (min-width: 768px) {
  .brandSearch ul li {
    flex-basis: 252px;
    max-width: 252px;
    margin: 0 24px 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .brandSearch ul li:nth-child(4n) {
    margin-right: 0;
  }
}
.brandSearch ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 0 2em;
  box-sizing: border-box;
}
.brandSearch ul li a figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  align-items: center;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  padding: 1em;
}
.brandSearch ul li a figure img {
  max-width: 100%;
  max-height: 100%;
}
.brandSearch ul li a span {
  display: block;
  margin: 5px 0 0;
}

/* Scss Document */
/**** form ****/
.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: center;
}
.form .formWrapper {
  width: 100%;
  margin: 0 auto;
}
.form .formWrapper dl {
  width: 100%;
  margin-bottom: 20px;
}
.form .formWrapper dl dt {
  font-size: 10px;
  font-size: 2.6666666667vw;
  text-align: left;
  padding: 0 0 4px 24px;
}
@media screen and (min-width: 768px) {
  .form .formWrapper dl dt {
    font-size: 11px;
  }
}
.form .formWrapper dl dd {
  width: 100%;
}
.form .formWrapper dl dd input {
  width: 100%;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 10px 32px;
}
@media screen and (max-width: 767px) {
  .form .formWrapper dl dd input {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .form .formWrapper dl dd select {
    font-size: 16px;
  }
}
.form .formWrapper dl dd .dropdown {
  width: 100%;
  height: 48px;
  text-align: left;
  border-radius: 10px;
  position: relative;
}
.form .formWrapper dl dd .dropdown .carat {
  width: 28px;
  height: 20px;
  background: url(../images/ico_drop.svg) no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  margin-top: -10px;
}
.form .formWrapper dl dd .dropdown.open .carat {
  width: 28px;
  height: 20px;
  background: url(../images/ico_drop.svg) no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  margin-top: -10px;
  transform: rotate(180deg);
}
.form .formWrapper dl dd .dropdown .selected {
  line-height: 1;
  padding: 17px 24px;
}
.form .formWrapper dl dd .dropdown li {
  line-height: 1;
  padding: 10px 32px;
}
.form .formWrapper dl dd .dropdown li.focus {
  background: #f6aa00;
}
.form .formWrapper dl dd .checkContents {
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
}
.form .formWrapper dl dd .checkContents li {
  display: block;
  padding: 8px 24px 0px;
}
.form .formWrapper dl dd .icheckbox {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
  width: 18px;
  height: 18px;
  background: url(../images/check.png) no-repeat;
  background-size: cover;
  border: none;
  cursor: pointer;
}
.form .formWrapper dl dd .icheckbox {
  background-position: 0 0;
}
.form .formWrapper dl dd .icheckbox.hover {
  background-position: -20px 0;
}
.form .formWrapper dl dd .icheckbox.checked {
  background-position: -40px 0;
}
.form .formWrapper .searchBtn {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .form .formWrapper .searchBtn {
    width: 344px;
  }
}
.form .formWrapper .searchBtn a {
  letter-spacing: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .form .formWrapper.column {
    width: 712px;
  }
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row {
    width: 1080px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row.even dl {
    flex-basis: 528px;
    max-width: 528px;
  }
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row.once {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row.once dl {
    flex-basis: 712px;
    max-width: 712px;
  }
}
.form .formWrapper.row.once dl.check {
  flex-basis: 712px;
  max-width: 712px;
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row.once .searchBtn {
    flex-basis: 528px;
    max-width: 528px;
  }
}
.form .formWrapper.row dl {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row dl {
    flex-basis: 344px;
    max-width: 344px;
  }
}
.form .formWrapper.row dl.check {
  flex-basis: 100%;
  max-width: 100%;
}
.form .formWrapper.row dl dd .checkContents li {
  padding: 8px 24px 0px;
}
@media screen and (min-width: 768px) {
  .form .formWrapper.row dl dd .checkContents li {
    display: inline-block;
  }
}

/* Scss Document */
@media screen and (min-width: 768px) {
  #noDesignSearch ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #noDesignSearch ul li {
    margin: 0 24px 24px 0;
  }
  #noDesignSearch ul li:nth-child(4n) {
    margin-right: 0px;
  }
  #noDesignSearch ul li a {
    width: 252px;
  }
}

.bnr {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .bnr {
    padding: 40px 0;
  }
}
.bnr .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.bnr a {
  display: inline-block;
  margin: 0 0 4% 0;
}
@media screen and (min-width: 768px) {
  .bnr a {
    margin: 0 24px 0 0;
  }
}
.bnr a:nth-child(2) {
  margin: 0;
}
.bnr a img {
  width: 100%;
}

#scout {
  padding: 60px 0;
}
#scout ul li {
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #scout ul li {
    height: 120px;
  }
}
#scout ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 0 0 0 80px;
  position: relative;
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  #scout ul li a {
    padding: 0 0 0 160px;
  }
}
#scout ul li a img {
  left: 20px;
  width: 40px;
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
@media screen and (min-width: 768px) {
  #scout ul li a img {
    left: 80px;
  }
}
#scout ul li a svg {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -15px;
}
@media screen and (min-width: 768px) {
  #scout ul li a svg {
    left: 80px;
  }
}
#scout ul li a dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #scout ul li a dl {
    padding: 24px 24px 24px 0;
  }
}
@media screen and (min-width: 768px) {
  #scout ul li a dl {
    flex: 1 0 auto;
    width: 100%;
  }
}
#scout ul li a dl dt {
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #scout ul li a dl dt {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  #scout ul li a dl dt {
    width: 160px;
    margin: 0 24px 0 0;
    max-width: 160px;
    flex-basis: 160px;
  }
}
#scout ul li a dl dd {
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  #scout ul li a dl dd {
    font-size: 13.2px;
  }
}
@media screen and (min-width: 768px) {
  #scout ul li a dl dd {
    max-width: 712px;
    flex-basis: 712px;
    padding: 0 64px 0 0;
  }
}
#scout ul li:last-child {
  margin-bottom: 0;
}
#scout .bgColor01 a {
  border: none !important;
}
#scout .bgColor02 a {
  border: none !important;
}
#scout .bgMainColor a {
  border: none !important;
}

/**************************
**** 仕事紹介
**************************/
#work .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#work .inner .workItem {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #work .inner .workItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-flow: column;
    width: 252px;
    margin: 0 24px 10px 0;
  }
}
#work .inner .workItem img {
  margin: 10px auto;
}
#work .inner .workItem h3 {
  color: #f6aa00;
  font-size: 20px;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #work .inner .workItem h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  #work .inner .workItem h3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#work .inner .workItem h3 span {
  display: block;
  font-size: 12px;
  font-size: 3.2vw;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  #work .inner .workItem h3 span {
    font-size: 13.2px;
  }
}
#work .inner .workItem p {
  margin: 10px 0;
}
#work .inner .workItem a {
  display: block;
  background: #f6aa00;
  color: #fff;
  width: 100%;
  padding: 0.5em 1em;
  margin: 10px 0;
  border-radius: 8px;
  line-height: 1.2;
  font-size: 14px;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  #work .inner .workItem a {
    font-size: 15.4px;
  }
}
#work .inner .workItem a span {
  display: block;
}
#work .inner .workItem img {
  width: 100px;
  height: 100px;
}

/**************************
**** インタビューコンテンツ
**************************/
#interview .interviewItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 40px;
}
#interview .interviewItem .interviewImg {
  flex-basis: 436px;
  max-width: 436px;
}
#interview .interviewItem .interviewBody {
  flex-basis: 620px;
  max-width: 620px;
}
#interview .interviewItem .interviewBody .interviewTitle {
  font-size: 20px;
  font-size: 5.3333333333vw;
  padding: 10px 0 5px;
}
@media screen and (min-width: 768px) {
  #interview .interviewItem .interviewBody .interviewTitle {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  #interview .interviewItem .interviewBody .interviewTitle {
    padding: 20px 0 0;
  }
}
#interview .interviewItem .interviewBody .dialogue dt {
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-weight: bold;
  padding: 20px 0 10px;
}
@media screen and (min-width: 768px) {
  #interview .interviewItem .interviewBody .dialogue dt {
    font-size: 17.6px;
  }
}
#interview .interviewItem .interviewBody .dialogue dd {
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  #interview .interviewItem .interviewBody .dialogue dd {
    font-size: 13.2px;
  }
}
#interview .interviewItem .interviewBody .toggleBtn {
  width: 100%;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  background: #f6aa00;
  color: #fff;
  text-align: center;
  margin: 10px 0;
}
#interview .interviewItem .interviewBody .toggleBtn::after {
  content: "ひらく";
}
#interview .interviewItem .interviewBody .toggleBtn.active::after {
  content: "とじる";
}
#interview .interviewItem .interviewBody .smallTxt {
  color: #f6aa00;
}
#interview .interviewItem .interviewBody .interviewTxt {
  line-height: 2em;
  padding: 1em 0;
}

/**************************
**** タイムテーブル
**************************/
.timeTable {
  margin-top: 10px;
}
.timeTable h4 {
  font-size: 10px;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .timeTable h4 {
    font-size: 11px;
  }
}

.timeTable01 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .timeTable01 dl {
    width: 640px;
  }
}
.timeTable01 dl dt {
  text-align: center;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 2px;
  max-width: 20%;
  flex-basis: 20%;
}
@media screen and (min-width: 768px) {
  .timeTable01 dl dt {
    max-width: 138px;
    flex-basis: 138px;
  }
}
.timeTable01 dl dd {
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 2px;
  max-width: 78%;
  flex-basis: 78%;
}
@media screen and (min-width: 768px) {
  .timeTable01 dl dd {
    max-width: 498px;
    flex-basis: 498px;
  }
}
.timeTable01 dl dd li {
  list-style: disc;
  margin: 0 0 0 2em;
}

@media screen and (min-width: 768px) {
  .timeTable02 ul {
    display: flex;
  }
}
.timeTable02 ul li {
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .timeTable02 ul li {
    width: 80px;
    margin-right: 2px;
  }
}
@media screen and (max-width: 767px) {
  .timeTable02 ul li {
    margin-bottom: 2px;
    display: flex;
  }
}
.timeTable02 ul li p.scheduleTime {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 5px;
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  .timeTable02 ul li p.scheduleTime {
    min-height: 52px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .timeTable02 ul li p.scheduleTime {
    min-width: 100px;
  }
}
.timeTable02 ul li p.scheduleTxt {
  padding: 8px 5px;
  font-size: 0.8em;
  line-height: 1.6em;
}
.timeTable02 ul li p.scheduleTxt span {
  display: inline-block;
}

/**************************
**** インタビューコンテンツ02
**************************/
#interview02 .interviewItem {
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  #interview02 .interviewItem {
    width: 896px;
  }
}
#interview02 .interviewItem .interviewHeader {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
#interview02 .interviewItem .interviewHeader .interviewImg {
  margin: 0 4% 0 0;
}
@media screen and (max-width: 767px) {
  #interview02 .interviewItem .interviewHeader .interviewImg {
    flex-basis: 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 768px) {
  #interview02 .interviewItem .interviewHeader .interviewImg {
    margin: 0 24px 0 0;
  }
}
#interview02 .interviewItem .interviewHeader .interviewTitle {
  font-size: 20px;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #interview02 .interviewItem .interviewHeader .interviewTitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  #interview02 .interviewItem .interviewHeader .interviewTitle {
    flex-basis: 76%;
    max-width: 76%;
  }
}
#interview02 .interviewItem .interviewHeader .interviewTitle .smallTxt {
  font-size: 10px;
  font-size: 2.6666666667vw;
  color: #f6aa00;
}
@media screen and (min-width: 768px) {
  #interview02 .interviewItem .interviewHeader .interviewTitle .smallTxt {
    font-size: 11px;
  }
}
#interview02 .interviewItem .interviewBody {
  flex-basis: 620px;
}
#interview02 .interviewItem .interviewBody .interviewTxt {
  line-height: 2em;
  padding: 1em 0;
}
#interview02 .interviewItem .interviewBody .toggleBtn {
  width: 100%;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  background: #f6aa00;
  color: #fff;
  text-align: center;
  margin: 10px 0;
}
#interview02 .interviewItem .interviewBody .toggleBtn::after {
  content: "ひらく";
}
#interview02 .interviewItem .interviewBody .toggleBtn.active::after {
  content: "とじる";
}

/**************************
**** インタビューコンテンツ03
**************************/
#interview03 .interviewItem {
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  #interview03 .interviewItem {
    width: 896px;
  }
}
#interview03 .interviewItem .interviewHeader {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
#interview03 .interviewItem .interviewHeader .interviewImg {
  margin: 0 4% 0 0;
}
#interview03 .interviewItem .interviewHeader .interviewImg img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  #interview03 .interviewItem .interviewHeader .interviewImg {
    flex-basis: 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 768px) {
  #interview03 .interviewItem .interviewHeader .interviewImg {
    margin: 0 24px 0 0;
  }
}
#interview03 .interviewItem .interviewHeader .interviewTitle {
  font-size: 20px;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #interview03 .interviewItem .interviewHeader .interviewTitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  #interview03 .interviewItem .interviewHeader .interviewTitle {
    flex-basis: 76%;
    max-width: 76%;
  }
}
#interview03 .interviewItem .interviewHeader .interviewTitle .smallTxt {
  font-size: 10px;
  font-size: 2.6666666667vw;
  color: #f6aa00;
}
@media screen and (min-width: 768px) {
  #interview03 .interviewItem .interviewHeader .interviewTitle .smallTxt {
    font-size: 11px;
  }
}
#interview03 .interviewItem .interviewBody {
  flex-basis: 620px;
}
#interview03 .interviewItem .interviewBody .interviewTxt {
  line-height: 2em;
  padding: 0 3vw 20px;
  border-radius: 10px;
  margin: 20px 0 4%;
  background: #fff;
}
#interview03 .interviewItem .interviewBody .dialogue dt {
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-weight: bold;
  padding: 20px 0 10px;
}
@media screen and (min-width: 768px) {
  #interview03 .interviewItem .interviewBody .dialogue dt {
    font-size: 17.6px;
  }
}
#interview03 .interviewItem .interviewBody .dialogue dd {
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  #interview03 .interviewItem .interviewBody .dialogue dd {
    font-size: 13.2px;
  }
}
#interview03 .interviewItem .interviewBody .toggleBtn {
  width: 100%;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  background: #f6aa00;
  color: #fff;
  text-align: center;
  margin: 10px 0;
}
#interview03 .interviewItem .interviewBody .toggleBtn::after {
  content: "ひらく";
}
#interview03 .interviewItem .interviewBody .toggleBtn.active::after {
  content: "とじる";
}

.bgMainColor .smallTxt {
  color: #fff !important;
}
.bgMainColor .toggleBtn {
  background: #fff !important;
  color: #f6aa00 !important;
}

/**************************
**** メリットコンテンツ
**************************/
#merit .meritWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#merit .meritWrapper .meritItem {
  flex-basis: 100%;
  padding: 24px 3vw;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #merit .meritWrapper .meritItem {
    margin: 0 0 4%;
  }
}
#merit .meritWrapper .meritItem .meritImg {
  width: 80px;
  height: 80px;
  background: #f6aa00;
  border-radius: 40px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#merit .meritWrapper .meritItem .meritImg img {
  width: 48px;
  height: 48px;
}
#merit .meritWrapper .meritItem .meritImg svg {
  width: 48px;
  height: 48px;
}
#merit .meritWrapper .meritItem .meritImg.white path {
  color: #fff;
  fill: currentColor;
}
#merit .meritWrapper .meritItem .meritImg.white polygon {
  color: #fff;
  fill: currentColor;
}
#merit .meritWrapper .meritItem .meritImg.white rect {
  color: #fff;
  fill: currentColor;
}
#merit .meritWrapper .meritItem .meritTitle {
  font-size: 20px;
  font-size: 5.3333333333vw;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  #merit .meritWrapper .meritItem .meritTitle {
    font-size: 22px;
  }
}
#merit .meritWrapper .meritItem .meritTxt {
  line-height: 2em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .merit01 .meritItem {
    flex-basis: 528px;
    max-width: 528px;
    margin: 0 24px 24px 0;
    padding: 24px 48px;
  }
  .merit01 .meritItem:nth-child(2n) {
    margin: 0 0 24px;
  }
  .merit01 .meritItem:last-child {
    margin: 0 0 24px;
  }
}

@media screen and (min-width: 768px) {
  .merit02 .meritItem {
    flex-basis: 344px;
    max-width: 344px;
    margin: 0 24px 24px 0;
    padding: 24px 48px;
  }
  .merit02 .meritItem:nth-child(3) {
    margin: 0 0 24px;
  }
  .merit02 .meritItem:last-child {
    margin: 0 0 24px;
  }
}

@media screen and (min-width: 768px) {
  .merit03 .meritItem {
    flex-basis: 252px;
    max-width: 252px;
    margin: 0 24px 24px 0;
    padding: 24px 48px;
  }
  .merit03 .meritItem:nth-child(4) {
    margin: 0 0 24px;
  }
  .merit03 .meritItem:last-child {
    margin: 0 0 24px;
  }
}

/**************************
**** よくある質問1
**************************/
.faq .faqWrapper .faqItem {
  padding: 0 5.33vw 0;
  border-radius: 10px;
  margin: 0 0 4%;
  border: 1px solid #ccc;
  background: #fff;
}
.faq .faqWrapper .faqItem dt {
  position: relative;
  font-weight: bold;
  padding: 20px 10.66vw 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .faq .faqWrapper .faqItem dt {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  .faq .faqWrapper .faqItem dt {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .faq .faqWrapper .faqItem dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/ico_plus.svg);
    background-size: cover;
  }
  .faq .faqWrapper .faqItem dt.active::after {
    background: url(../images/ico_minus.svg) center center no-repeat;
  }
}
.faq .faqWrapper .faqItem dt img {
  margin-right: 5.33vw;
  width: 5.33vw;
}
@media screen and (min-width: 768px) {
  .faq .faqWrapper .faqItem dt img {
    width: 40px;
    margin-right: 24px;
  }
}
.faq .faqWrapper .faqItem dt span {
  flex-basis: calc(100% - 16.65vw);
  max-width: calc(100% - 16.65vw);
}
@media screen and (min-width: 768px) {
  .faq .faqWrapper .faqItem dt span {
    flex-basis: calc(100% - 104px);
    max-width: calc(100% - 104px);
  }
}
.faq .faqWrapper .faqItem dt span span {
  display: inline-block;
}
.faq .faqWrapper .faqItem dd {
  display: flex;
  padding-top: 10px;
  line-height: 2em;
  padding: 0 0 20px;
}
.faq .faqWrapper .faqItem dd img {
  margin-right: 5.33vw;
  width: 5.33vw;
}
@media screen and (min-width: 768px) {
  .faq .faqWrapper .faqItem dd img {
    width: 40px;
    margin-right: 24px;
  }
}
.faq .faqWrapper .faqItem dd p {
  flex-basis: calc(100% - 16.65vw);
  max-width: calc(100% - 16.65vw);
}
@media screen and (min-width: 768px) {
  .faq .faqWrapper .faqItem dd p {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.faq .faqWrapper .faqItem dt svg,
.faq .faqWrapper .faqItem dd svg {
  width: 38px;
  height: 38px;
  margin-right: 20px;
}

.bgColor01 #faq01 .faqItem {
  border: none;
}

.bgColor02 #faq01 .faqItem {
  border: none;
}

#faq02 img {
  width: 24px;
  height: auto;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  #faq02 img {
    margin-top: 2px;
  }
}

/**************************
**** テキストコンテンツ
**************************/
.text .textWrapper .textItem {
  padding: 0 5.33vw 0;
  border-radius: 10px;
  margin: 0 0 4%;
  border: 1px solid #ccc;
  background: #fff;
}
.text .textWrapper .textItem dt {
  position: relative;
  font-weight: bold;
  padding: 20px 10.66vw 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .text .textWrapper .textItem dt {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  .text .textWrapper .textItem dt {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .text .textWrapper .textItem dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/ico_plus.svg);
    background-size: cover;
  }
  .text .textWrapper .textItem dt.active::after {
    background: url(../images/ico_minus.svg) center center no-repeat;
  }
}
.text .textWrapper .textItem dt img {
  margin-right: 5.33vw;
  width: 10.66vw;
}
@media screen and (min-width: 768px) {
  .text .textWrapper .textItem dt img {
    width: 80px;
    margin-right: 24px;
  }
}
.text .textWrapper .textItem dt span {
  flex-basis: calc(100% - 16.65vw);
  max-width: calc(100% - 16.65vw);
}
@media screen and (min-width: 768px) {
  .text .textWrapper .textItem dt span {
    flex-basis: calc(100% - 104px);
    max-width: calc(100% - 104px);
  }
}
.text .textWrapper .textItem dt span span {
  display: inline-block;
}
.text .textWrapper .textItem dd {
  padding-top: 10px;
  line-height: 2em;
  padding: 0 0 20px;
}

.bgColor01 .textItem {
  border: none;
}

.bgColor02 .textItem {
  border: none;
}

/**************************
**** フロー
**************************/
#flow dl {
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  #flow dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 4%;
  }
}
@media screen and (max-width: 767px) {
  #flow dl {
    margin-bottom: 40px;
  }
}
#flow dl dt {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  font-size: 4.2666666667vw;
  background-color: #f6aa00;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  #flow dl dt {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  #flow dl dt {
    width: 400px;
    border-radius: 10px 0 0 10px;
    padding: 20px 5.33vw 20px;
    display: flex;
    align-items: center;
  }
  #flow dl dt p {
    width: calc(100% - 34px);
  }
  #flow dl dt span {
    background-color: #ffffff;
    color: #f6aa00;
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  #flow dl dt {
    padding: 20px 5.33vw 10px;
    border-radius: 10px 10px 0 0;
    display: table;
    width: 100%;
  }
  #flow dl dt span {
    background-color: #ffffff;
    color: #f6aa00;
    width: 24px;
    height: 24px;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    display: table-cell;
    vertical-align: middle;
  }
  #flow dl dt p {
    line-height: 24px;
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
  }
}
#flow dl dd {
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  #flow dl dd {
    padding: 20px 5.33vw 20px 20px;
    display: flex;
    align-items: center;
    flex-basis: calc(100% - 400px);
    max-width: calc(100% - 400px);
  }
}
@media screen and (max-width: 767px) {
  #flow dl dd {
    padding: 10px 5.33vw 20px;
  }
}
#flow dl:after {
  content: "";
  width: 0;
  height: 0;
  border: transparent 20px solid;
  border-top: #f6aa00 20px solid;
  position: absolute;
  bottom: -52px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  #flow dl:after {
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  #flow dl:after {
    margin-left: -20px;
  }
}
#flow dl:last-child:after {
  display: none;
}

/**************************
**** キャリアステップ
**************************/
@media screen and (min-width: 768px) {
  #careerStep .sectionTitle.breakfast {
    padding: 80px 0;
  }
  #careerStep ul.breakfast {
    max-width: 540px;
    margin: 0 auto;
  }
  #careerStep ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  #careerStep ul li {
    margin: 0 10px;
    flex: 1;
  }
  #careerStep ul li dl {
    color: #ffffff;
    padding: 20px;
  }
  #careerStep ul li dl dd {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  #careerStep ul li dl dd {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 768px) {
  #careerStep ul li p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #careerStep li dt,
  #careerStep li dd {
    display: inline-block;
  }
  #careerStep li dt {
    color: #ffffff;
    padding: 10px;
  }
  #careerStep li dd {
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  #careerStep li dd {
    font-size: 17.6px;
  }
}
@media screen and (max-width: 767px) {
  #careerStep li p {
    padding: 10px 0 20px;
  }
}
@media screen and (min-width: 768px) {
  #careerStep li:nth-child(1) dl {
    background: #f6aa00;
  }
  #careerStep li:nth-child(2) dl {
    background: #ffb511;
  }
  #careerStep li:nth-child(3) dl {
    background: #ffbd2a;
  }
  #careerStep li:nth-child(4) dl {
    background: #ffc544;
  }
  #careerStep li:nth-child(5) dl {
    background: #ffcd5d;
  }
  #careerStep li:nth-child(6) dl {
    background: #ffd577;
  }
  #careerStep li:nth-child(7) dl {
    background: #ffe5aa;
  }
  #careerStep li:nth-child(8) dl {
    background: #ffecc3;
  }
  #careerStep li:nth-child(9) dl {
    background: #fff4dd;
  }
  #careerStep li:nth-child(10) dl {
    background: #fffcf6;
  }
  #careerStep li:nth-child(1) dl {
    padding-top: 30px;
  }
  #careerStep li:nth-child(2) dl {
    padding-top: 60px;
  }
  #careerStep li:nth-child(3) dl {
    padding-top: 90px;
  }
  #careerStep li:nth-child(4) dl {
    padding-top: 120px;
  }
  #careerStep li:nth-child(5) dl {
    padding-top: 150px;
  }
  #careerStep li:nth-child(6) dl {
    padding-top: 160px;
  }
}
@media screen and (max-width: 767px) {
  #careerStep li:nth-child(1) dt {
    background: #f6aa00;
  }
  #careerStep li:nth-child(2) dt {
    background: #ffb511;
  }
  #careerStep li:nth-child(3) dt {
    background: #ffbd2a;
  }
  #careerStep li:nth-child(4) dt {
    background: #ffc544;
  }
  #careerStep li:nth-child(5) dt {
    background: #ffcd5d;
  }
  #careerStep li:nth-child(6) dt {
    background: #ffd577;
  }
  #careerStep li:nth-child(7) dt {
    background: #ffe5aa;
  }
  #careerStep li:nth-child(8) dt {
    background: #ffecc3;
  }
  #careerStep li:nth-child(9) dt {
    background: #fff4dd;
  }
  #careerStep li:nth-child(10) dt {
    background: #fffcf6;
  }
  #careerStep li:nth-child(1) dt {
    padding-right: 20px;
  }
  #careerStep li:nth-child(2) dt {
    padding-right: 40px;
  }
  #careerStep li:nth-child(3) dt {
    padding-right: 60px;
  }
  #careerStep li:nth-child(4) dt {
    padding-right: 80px;
  }
  #careerStep li:nth-child(5) dt {
    padding-right: 100px;
  }
  #careerStep li:nth-child(6) dt {
    padding-right: 120px;
  }
}
#careerStep .careerStepTxt {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 5.33vw;
  border-radius: 10px;
  margin-top: 20px;
}

/**************************
**** ムービー
**************************/
#movie {
  text-align: center;
}

#movie .movieGrid {
  display: grid;
  gap: 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #movie .movieGrid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  #movie .movieGrid {
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
  }
}
#movie .movieItem {
  width: 100%;
}

#movie .movieWrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#movie .movieWrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  #movie .movieInner {
    max-width: 1080px;
  }
}
/**************************
**** ギャラリー
**************************/
#gallery div.slider {
  padding: 0 0 20px;
}
#gallery div.slider .sliderInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#gallery div.slider .sliderInner figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-basis: 100%;
}
#gallery div.slider .sliderInner .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (min-width: 768px) {
  #gallery div.slider .sliderInner .youtube {
    width: 768px;
  }
}
#gallery div.slider .sliderInner .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#gallery2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#gallery2 ul li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #gallery2 ul li {
    width: 20%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  #gallery2 ul li img {
    width: 200px;
  }
}

/**************************
**** 企業情報
**************************/
#company {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  #company .inner {
    width: 1000px;
  }
}
#company dl {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-top: 14px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #ccc;
}
#company dl:first-of-type {
  border-top: 1.5px solid #ccc;
}
#company dl dt {
  width: 160px;
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  #company dl dt {
    width: 30%;
    font-size: 1.4rem;
  }
}
#company dl dd {
  width: calc(100% - 160px);
  padding-right: 75px;
  padding-left: 75px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  #company dl dd {
    width: 70%;
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

/**************************
**** フッター
**************************/
/*=== ページトップへ ===*/
.pageTop {
  height: 0px;
  text-align: right;
  overflow: hidden;
  z-index: 400;
}

.pageTop > div {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px 0;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -ms-transition: 0.3s ease-out;
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 80px;
  background: #a48a54;
}
@media screen and (min-width: 768px) {
  .pageTop > div {
    width: 80px;
    height: 80px;
  }
}
.pageTop > div::before {
  content: "";
  display: block;
  position: absolute;
  left: 24%;
  top: 6%;
  border: 16px solid transparent;
  border-bottom: 16px solid #fff;
}
@media screen and (min-width: 768px) {
  .pageTop > div::before {
    left: 26%;
    top: 8%;
    border: 20px solid transparent;
    border-bottom: 20px solid #fff;
  }
}
.pageTop > div::after {
  content: "";
  display: block;
  position: absolute;
  left: 24%;
  top: 16%;
  border: 16px solid transparent;
  border-bottom: 16px solid #a48a54;
}
@media screen and (min-width: 768px) {
  .pageTop > div::after {
    left: 26%;
    top: 20%;
    border: 20px solid transparent;
    border-bottom: 20px solid #a48a54;
  }
}

.pageTop > div:hover {
  opacity: 0.4;
}

#footer {
  text-align: center;
  background: #f6aa00;
  color: #fff;
  padding: 40px 0;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #footer {
    font-size: 11px;
  }
}