@charset "UTF-8";
/* ---------------------------------------------
browser initialization
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

blockquote, q {
  quotes: none;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

/* ---------------------------------------------
common format
--------------------------------------------- */
html {
  font-size: 10px;
}

html.screen_lock {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

body {
  font-family: "Hiragino Kaku Gothic W3 JIS2004", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.65;
  text-align: justify;
  color: #000;
  font-feature-settings: "palt";
}

h2, h3, h4, h5, h6 {
  font-family: "A1 Gothic M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
}

b, strong {
  font-family: "Hiragino Kaku Gothic W5 JIS2004", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
}

a {
  color: #0f2d69;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: 0.75;
}

img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-top: 1.65em;
}

input, textarea, select, button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input:disabled, textarea:disabled, select:disabled {
  background-color: #f4f4f4 !important;
}

@media (min-width: 640px) {
  body {
    font-size: 1.4rem;
    line-height: 1.714;
  }
  p {
    margin-top: 1.714em;
  }
}

/* ---------------------------------------------
site common class
--------------------------------------------- */
.normal_font {
  font-family: "Hiragino Kaku Gothic W3 JIS2004", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
}

.bold_font {
  font-family: "Hiragino Kaku Gothic W6 JIS2004", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
}

.A1_font {
  font-family: "A1 Gothic M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
}

.mini_10 {
  font-size: 1rem;
}

.mini_12 {
  font-size: 1.2rem;
}

.normal {
  font-size: 1.4rem;
}

.large_16 {
  font-size: 1.6rem;
}

.large_18 {
  font-size: 1.8rem;
}

.large_20 {
  font-size: 2rem;
}

.large_22 {
  font-size: 2.2rem;
}

.large_24 {
  font-size: 2.4rem;
}

.align_left {
  text-align: left;
}

.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.valign_top {
  vertical-align: top;
}

.valign_middle {
  vertical-align: middle;
}

.valign_baseline {
  vertical-align: baseline;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.inner {
  padding: 0 15px;
}

.notes {
  margin-top: 1em;
  padding-left: 1.25em;
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
}

.notes::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.sp_hide {
  display: none;
}

@media (min-width: 640px) {
  .inner {
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1280px;
    min-width: 1000px;
    box-sizing: border-box;
  }
  .pc_hide {
    display: none;
  }
  .sp_hide {
    display: block;
  }
}

/* ---------------------------------------------
animations
--------------------------------------------- */
@keyframes rotate {
  0% {
    transform: rotate3d(-1, 1, 1, 0deg);
  }
  25% {
    transform: rotate3d(-1, 1, 1, 90deg);
  }
  50% {
    transform: rotate3d(1, 1, 1, 180deg);
  }
  75% {
    transform: rotate3d(1, 1, 1, 270deg);
  }
  100% {
    transform: rotate3d(1, 1, 1, 360deg);
  }
}

@keyframes scroll_arrow {
  0% {
    bottom: 4px;
  }
  100% {
    bottom: -6px;
  }
}

.animation {
  position: relative;
  opacity: 0;
  transition-duration: 1s;
  transition-timing-function: ease;
}

.animation.active {
  opacity: 1;
}

.animation.delay {
  transition-delay: 0.5s;
}

.animation.move_top {
  top: 100px;
  transition-property: top, opacity;
}

.animation.move_top.active {
  top: 0;
}

.animation.move_right {
  right: 200px;
  transition-property: right, opacity;
}

.animation.move_right.active {
  right: 0;
}

.animation.move_left {
  left: 200px;
  transition-property: left, opacity;
}

.animation.move_left.active {
  left: 0;
}

/* ---------------------------------------------
header format
--------------------------------------------- */
#loading_view {
  background-color: #f4f4f4;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 800px;
}

#loading_view #loading_cube {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: center;
  animation: rotate 4s linear infinite;
}

#loading_view #loading_cube .surface {
  background-color: rgba(15, 45, 105, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading_view #loading_cube .surface svg {
  width: 50px;
  height: auto;
}

#loading_view #loading_cube .surface.front {
  transform: translateZ(50px);
}

#loading_view #loading_cube .surface.back {
  transform: rotateY(180deg) translateZ(50px);
}

#loading_view #loading_cube .surface.left {
  background-color: rgba(255, 255, 255, 0.8);
  transform: rotateY(90deg) translateZ(50px);
}

#loading_view #loading_cube .surface.right {
  background-color: rgba(255, 255, 255, 0.8);
  transform: rotateY(-90deg) translateZ(50px);
}

#loading_view #loading_cube .surface.top {
  background-color: rgba(255, 255, 255, 0.8);
  transform: rotateX(90deg) translateZ(50px);
}

#loading_view #loading_cube .surface.bottom {
  transform: rotateX(-90deg) translateZ(50px);
}

#site_header {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

#site_header h1 {
  margin-left: 10px;
  width: 125px;
}

#site_header h1 a {
  display: block;
}

#site_header nav {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#site_header nav a {
  background-color: #000;
  width: 50px;
  height: 50px;
  position: relative;
  display: block;
}

#site_header nav a::before, #site_header nav a::after, #site_header nav a span:before {
  content: '';
  background-color: #fff;
  margin: auto;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}

#site_header nav a::before {
  top: -12px;
}

#site_header nav a::after {
  bottom: -12px;
}

#site_header nav a span {
  display: block;
}

#site_header nav a:hover {
  background-color: #222;
}

#global_navi {
  background-color: #000;
  padding: 15px 15px 15px 50px;
  width: 90%;
  height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -90%;
  z-index: 110;
  box-sizing: border-box;
  transition: right 0.25s linear 0s;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#global_navi a[href="#menu-close"] {
  margin-left: auto;
  width: 40px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: block;
}

#global_navi a[href="#menu-close"]::before, #global_navi a[href="#menu-close"]::after {
  content: '';
  background-color: #fff;
  margin: auto;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}

#global_navi a[href="#menu-close"]::before {
  transform: rotate(45deg);
}

#global_navi a[href="#menu-close"]::after {
  transform: rotate(-45deg);
}

#global_navi > ul {
  margin: 40px 40px 0 0;
  line-height: 1.4;
  color: #fff;
}

#global_navi > ul > li {
  margin-top: 25px;
}

#global_navi > ul > li a {
  text-decoration: none;
  color: #fff;
  display: block;
}

#global_navi > ul > li a[href="#menu-toggle"] {
  padding-right: 20px;
  position: relative;
}

#global_navi > ul > li a[href="#menu-toggle"]::before, #global_navi > ul > li a[href="#menu-toggle"]::after {
  content: '';
  background-color: #fff;
  margin: auto 0;
  width: 17px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

#global_navi > ul > li a[href="#menu-toggle"]::before {
  transform: rotate(90deg);
  transition: transform 0.25s linear 0s;
}

#global_navi > ul > li a[href="#menu-toggle"].active::before {
  transform: rotate(0deg);
}

#global_navi > ul > li a:hover {
  color: #a0a0a0;
}

#global_navi > ul > li > a {
  font-family: "Hiragino Kaku Gothic W5 JIS2004", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
  font-size: 1.8rem;
}

#global_navi > ul > li ul {
  margin-left: 1em;
  display: none;
}

#global_navi > ul > li ul li {
  margin-top: 10px;
}

#global_navi > ul > li ul li a {
  font-size: 1.7rem;
}

#global_navi.active {
  right: 0;
}

@media (min-width: 640px) {
  #loading_view #loading_cube {
    width: 160px;
    height: 160px;
  }
  #loading_view #loading_cube .surface svg {
    width: 80px;
  }
  #loading_view #loading_cube .surface.front {
    transform: translateZ(80px);
  }
  #loading_view #loading_cube .surface.back {
    transform: rotateY(180deg) translateZ(80px);
  }
  #loading_view #loading_cube .surface.left {
    transform: rotateY(90deg) translateZ(80px);
  }
  #loading_view #loading_cube .surface.right {
    transform: rotateY(-90deg) translateZ(80px);
  }
  #loading_view #loading_cube .surface.top {
    transform: rotateX(90deg) translateZ(80px);
  }
  #loading_view #loading_cube .surface.bottom {
    transform: rotateX(-90deg) translateZ(80px);
  }
  #site_header h1 {
    margin-left: 25px;
    width: auto;
  }
  #site_header nav a {
    width: 78px;
    height: 78px;
  }
  #global_navi {
    padding: 20px 20px 20px 40px;
    width: 250px;
    right: -250px;
  }
  #global_navi > ul {
    margin-right: 0;
  }
  #global_navi > ul > li {
    margin-top: 20px;
  }
  #global_navi > ul > li a[href="#menu-toggle"]::before, #global_navi > ul > li a[href="#menu-toggle"]::after {
    width: 14px;
  }
  #global_navi > ul > li > a {
    font-size: 1.3rem;
  }
  #global_navi > ul > li ul li a {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------
common layouts
--------------------------------------------- */
main {
  overflow: hidden;
}

h2.lower_title {
  margin: 40px 15px 0;
  padding-left: 0.1em;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

h2.lower_title span {
  text-align: center;
  display: block;
}

h2.lower_title:first-child {
  margin-top: 70px;
}

h3.common_h3 {
  margin-top: 70px;
  padding: 0 0 15px 7px;
  font-size: 2.1rem;
  letter-spacing: 0.32em;
  line-height: 1.475;
  text-align: center;
  position: relative;
}

h3.common_h3::after {
  content: '';
  background-color: #000;
  margin: 0 auto;
  width: 50px;
  height: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}

h3.common_h3:first-child {
  margin-top: 0;
}

.division_links {
  padding: 0 35px;
}

.division_links ul li {
  margin-top: 50px;
}

.division_links ul li .photo img {
  width: 100%;
}

.division_links ul li .body h3 {
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-align: center;
}

.division_links ul li .body h3 small {
  margin-top: 5px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #eb5505;
  display: block;
}

.division_links ul li .body p {
  margin-top: 10px;
}

.division_links ul li nav {
  margin-top: 10px;
  font-family: "A1 Gothic M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "sans-serif";
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-align: center;
}

.division_links ul li nav a {
  background-color: #505050;
  border: #505050 solid 1px;
  border-radius: 14px;
  padding: 5px;
  text-decoration: none;
  color: #fff;
  display: block;
}

.division_links ul li nav a span {
  padding-right: 16px;
  position: relative;
  display: inline-block;
}

.division_links ul li nav a span::after {
  content: '';
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  transform: rotate(45deg);
}

.division_links ul li nav a:hover {
  background-color: #fff;
  color: #505050;
}

.division_links ul li nav a:hover span::after {
  border-top-color: #505050;
  border-right-color: #505050;
}

.division_links ul li:first-child {
  margin-top: 20px;
}

@media (min-width: 640px) {
  main {
    min-width: 1000px;
  }
  h2.lower_title {
    margin-right: 25px;
    margin-left: 25px;
  }
  h2.lower_title span {
    min-width: 182px;
    display: inline-block;
  }
  h2.lower_title:first-child {
    margin-top: 100px;
  }
  h3.common_h3 {
    margin-top: 130px;
    padding-left: 10px;
    font-size: 2.4rem;
    letter-spacing: 0.4em;
  }
  h3.common_h3 .sp_hide {
    display: inline;
  }
  .division_links {
    margin: 30px auto;
    padding: 0 10px;
    width: 1000px;
    box-sizing: border-box;
  }
  .division_links ul {
    display: flex;
    justify-content: space-between;
  }
  .division_links ul li {
    margin-top: 0 !important;
    padding-bottom: 40px;
    position: relative;
    flex: 0 0 272px;
  }
  .division_links ul li .photo img {
    width: auto;
  }
  .division_links ul li .body {
    margin: 0 20px;
  }
  .division_links ul li .body h3 {
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .division_links ul li .body h3 small {
    margin-top: 10px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  .division_links ul li .body p {
    margin-top: 15px;
  }
  .division_links ul li nav {
    margin-top: 0;
    padding: 0 20px;
    width: 100%;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
  }
  .division_links ul li nav a span::after {
    width: 9px;
    height: 9px;
  }
}

/* ---------------------------------------------
top page format
--------------------------------------------- */
#top_ci {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

#top_ci img {
  width: 130px;
}

#top_ci nav {
  font-size: 1.2rem;
  line-height: 48px;
  letter-spacing: 0.1em;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
}

#top_ci nav a {
  background-color: #0f2d69;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
  transform: rotate(45deg);
}

#top_ci nav a span {
  margin: 0 -10px;
  padding-left: 0.1em;
  white-space: nowrap;
  display: block;
  transform: rotate(-45deg);
}

#top_ci nav a span::after {
  content: '';
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 10px 10px 0 10px;
  margin: 0 auto;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: -6px;
  left: -1px;
  display: block;
  animation: scroll_arrow 1.5s infinite;
}

#top_ci nav a:hover {
  background-color: #314f8b;
}

#top_page section {
  margin-top: 50px;
}

#top_page section h2 {
  margin-bottom: 25px;
  padding: 0 0 15px 0.4em;
  font-size: 2rem;
  letter-spacing: 0.4em;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

#top_page section h2::after {
  background-color: #000;
  content: '';
  margin: 0 auto;
  width: 54px;
  height: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}

#top_page section#top_section01 {
  background-color: #0f2d69;
  margin-top: 0;
  padding-top: 25px;
}

#top_page section#top_section01 h2 {
  color: #fff;
}

#top_page section#top_section01 h2::after {
  background-color: #fff;
}

#top_page section#top_section01 .contents {
  color: #fff;
}

#top_page section#top_section01 .contents .inner .body {
  padding-bottom: 40px;
}

#top_page section#top_section01 .contents .inner .body h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}

#top_page section#top_section01 .contents .inner .photo {
  margin: 0 -15px;
}

#top_page section#top_section03 {
  background-color: #eb5505;
  padding-top: 40px;
}

#top_page section#top_section03 h2 {
  color: #fff;
}

#top_page section#top_section03 h2::after {
  background-color: #fff;
}

#top_page section#top_section03 .contents {
  color: #fff;
}

#top_page section#top_section03 .contents .inner .body {
  padding-bottom: 30px;
}

#top_page section#top_section03 .contents .inner .body h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}

#top_page section#top_section03 .contents .inner nav {
  background-color: #fff;
  margin: 0 -15px;
}

#top_page section#top_section03 .contents .inner nav ul {
  font-size: 2rem;
  letter-spacing: 0.235em;
  line-height: 1.1;
  text-align: center;
  display: flex;
}

#top_page section#top_section03 .contents .inner nav ul li {
  flex: 0 0 50%;
  box-sizing: border-box;
}

#top_page section#top_section03 .contents .inner nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
}

#top_page section#top_section03 .contents .inner nav ul li a b {
  margin: auto 0;
  padding-left: 0.235em;
  width: 100%;
  height: 1.1em;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
}

#top_page section#top_section03 .contents .inner nav ul li a:hover {
  opacity: 0.75;
}

#top_page section#top_section03 .contents .inner nav ul li:first-child {
  padding-right: 0.5px;
}

#top_page section#top_section03 .contents .inner nav ul li:nth-child(2) {
  padding-left: 0.5px;
}

#top_page section#top_section04 .contents {
  border: #a0a0a0 solid 1px;
  margin: 0 25px;
  max-height: 475px;
  padding: 15px;
  overflow: auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#top_page section#top_section04 .contents ol li {
  border-top: #bbb dotted 1px;
  margin-top: 20px;
  padding-top: 20px;
  line-height: 1.4;
  color: #555;
}

#top_page section#top_section04 .contents ol li time {
  padding-left: 12px;
  font-size: 1.1rem;
  letter-spacing: normal;
  line-height: 1.2;
  color: #eb5505;
  position: relative;
  display: block;
}

#top_page section#top_section04 .contents ol li time::before {
  content: '';
  border-color: transparent transparent transparent #eb5505;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  margin: 0;
  width: 0;
  height: 0;
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
}

#top_page section#top_section04 .contents ol li h3 {
  margin-top: 0.5em;
  font-size: 1.4rem;
}

#top_page section#top_section04 .contents ol li p {
  margin-top: 0.5em;
}

#top_page section#top_section04 .contents ol li:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

@media (min-width: 640px) {
  #top_ci {
    min-width: 1000px;
    min-height: 600px;
  }
  #top_ci img {
    width: auto;
  }
  #top_ci nav {
    bottom: 35px;
  }
  #top_page section {
    margin-top: 120px;
  }
  #top_page section h2 {
    margin-bottom: 35px;
    font-size: 2.3rem;
    line-height: 1.2;
  }
  #top_page section h2::after {
    background-color: #000;
    content: '';
    margin: 0 auto;
    width: 54px;
    height: 3px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
  }
  #top_page section#top_section01 {
    background-color: #fff;
    padding-top: 0;
  }
  #top_page section#top_section01 h2 {
    color: #000;
  }
  #top_page section#top_section01 h2::after {
    background-color: #000;
  }
  #top_page section#top_section01 .contents {
    background-color: #0f2d69;
  }
  #top_page section#top_section01 .contents .inner {
    display: flex;
  }
  #top_page section#top_section01 .contents .inner .body {
    padding: 40px 60px;
    flex: 0 0 50%;
    box-sizing: border-box;
  }
  #top_page section#top_section01 .contents .inner .body h3 {
    font-size: 2.2rem;
    line-height: 1.636;
    text-align: left;
  }
  #top_page section#top_section01 .contents .inner .photo {
    margin: 0;
    overflow: hidden;
    flex: 0 0 50%;
  }
  #top_page section#top_section01 .contents .inner .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
  #top_page section#top_section02 .division_links {
    width: auto;
    max-width: 1150px;
    min-width: 1000px;
  }
  #top_page section#top_section02 .division_links ul {
    margin: 0 -7px;
  }
  #top_page section#top_section02 .division_links ul li {
    margin: 0 7px;
    flex: 0 0 calc(25% - 14px);
  }
  #top_page section#top_section03 {
    background-color: #fff;
    padding-top: 0;
  }
  #top_page section#top_section03 h2 {
    color: #000;
  }
  #top_page section#top_section03 h2::after {
    background-color: #000;
  }
  #top_page section#top_section03 .contents {
    background-color: #eb5505;
  }
  #top_page section#top_section03 .contents .inner {
    display: flex;
  }
  #top_page section#top_section03 .contents .inner .body {
    padding: 80px 60px;
    flex: 0 0 50%;
    box-sizing: border-box;
  }
  #top_page section#top_section03 .contents .inner .body h3 {
    font-size: 2.2rem;
    line-height: 1.636;
    text-align: left;
  }
  #top_page section#top_section03 .contents .inner nav {
    margin: 0;
    flex: 1;
  }
  #top_page section#top_section03 .contents .inner nav ul {
    height: 100%;
    font-size: 2.7rem;
  }
  #top_page section#top_section03 .contents .inner nav ul li {
    height: 100%;
  }
  #top_page section#top_section03 .contents .inner nav ul li a {
    height: 100%;
  }
  #top_page section#top_section03 .contents .inner nav ul li a .photo {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  #top_page section#top_section03 .contents .inner nav ul li a .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #top_page section#top_section04 .contents {
    margin: 0 auto;
    max-width: 860px;
    max-height: 435px;
    padding: 30px;
  }
  #top_page section#top_section04 .contents ol li {
    margin-top: 25px;
    padding-top: 25px;
    line-height: 1.714;
  }
}

/* ---------------------------------------------
business content format
--------------------------------------------- */
.business-contents_intro {
  background-color: #eee;
  margin-top: 10px;
}

.business-contents_intro .photo {
  padding-bottom: 15px;
}

.business-contents_intro .photo figcaption {
  background-color: rgba(255, 255, 255, 0.9);
  margin: -30px auto 0;
  padding: 20px 5px;
  width: 230px;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.business-contents_intro .photo figcaption b {
  text-align: left;
  display: inline-block;
}

.business-contents_intro .photo figcaption b span {
  margin-right: -0.1em;
  letter-spacing: 0.1em;
  display: block;
}

.business-contents_intro .photo figcaption b span + span {
  margin-top: 5px;
  margin-right: -0.28em;
  min-height: inherit;
  font-size: 1.9rem;
  letter-spacing: 0.28em;
}

.business-contents_intro .body {
  padding: 30px 15px;
}

.business-contents_intro .body .body_inner .contents {
  color: #fff;
}

.business-contents_intro .body .body_inner .contents h3 {
  margin-right: -0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.business-contents_intro.media .body {
  background-color: #eb0046;
}

.business-contents_intro.agent .body {
  background-color: #14b9dc;
}

.business-contents_intro.franchise .body {
  background-color: #661e82;
}

.business-contents_intro.new_business .body {
  background-color: #14b969;
}

.business-contents_intro.development .body {
  background-color: #ffa500;
}

#business-contents_division_list {
  border-top: #969696 solid 1px;
  margin-top: 40px;
  padding-top: 40px;
}

#media_site_list {
  margin-top: 40px;
}

#media_site_list dl {
  margin-top: 15px;
}

#media_site_list dl dt {
  margin-top: 5px;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}

#media_site_list dl dt a {
  background-color: #fff0f0;
  padding: 15px 15px 15px 17px;
  text-decoration: none;
  color: #000;
  display: block;
}

#media_site_list dl dt a span {
  padding: 0 30px;
  min-width: 210px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}

#media_site_list dl dt a span::before, #media_site_list dl dt a span::after {
  content: '';
  background-color: #000;
  margin: auto 0;
  width: 16px;
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}

#media_site_list dl dt a span::before {
  transform: rotate(90deg);
  transition: transform 0.25s;
}

#media_site_list dl dt a:hover {
  background-color: #eb0046;
  color: #fff;
}

#media_site_list dl dt a:hover span::before, #media_site_list dl dt a:hover span::after {
  background-color: #fff;
}

#media_site_list dl dt a.active span::before {
  transform: rotate(0deg);
}

#media_site_list dl dd {
  display: none;
}

#media_site_list dl dd ul {
  margin: 5px 10px 15px;
  display: flex;
  flex-wrap: wrap;
}

#media_site_list dl dd ul li {
  margin-top: 10px;
  padding: 0 5px;
  flex: 0 0 50%;
  box-sizing: border-box;
}

#media_site_list dl dd ul li a {
  display: block;
}

#agent_business01 {
  margin-top: 50px;
}

#agent_business01 ul {
  margin-top: 25px;
}

#agent_business01 ul li {
  padding: 25px 15px;
}

#agent_business01 ul li .body {
  text-align: center;
}

#agent_business01 ul li .body h4 {
  margin-top: 25px;
  margin-right: -0.13em;
  font-size: 2rem;
  letter-spacing: 0.13em;
  line-height: 1.4;
  color: #eb5505;
}

#agent_business01 ul li .body p {
  margin-top: 15px;
}

#agent_business01 ul li:nth-child(odd) {
  background-color: #fff0e1;
}

#agent_business02 {
  margin: 50px 15px 0;
}

#agent_business02 ul li {
  background-color: #ebf7fa;
  margin-top: 25px;
  padding: 20px 15px;
}

#agent_business02 ul li h4 {
  margin-top: 25px;
  margin-left: -0.13em;
  font-size: 2rem;
  letter-spacing: 0.13em;
  line-height: 1.4545;
  color: #0f2d69;
  text-align: center;
}

#agent_business02 ul li p {
  margin-top: 20px;
}

#franchise_site_list {
  margin: 35px 15px 0;
}

#franchise_site_list h4 {
  margin-top: 25px;
  font-size: 1.5rem;
  text-align: center;
}

#franchise_site_list .fc_banner {
  margin-top: 20px;
}

#franchise_site_list .fc_banner a {
  display: block;
}

#franchise_site_list ul {
  margin: 10px -5px 0;
  display: flex;
  flex-wrap: wrap;
}

#franchise_site_list ul li {
  margin-top: 10px;
  padding: 0 5px;
  flex: 0 0 50%;
  box-sizing: border-box;
}

#franchise_site_list ul li a {
  display: block;
}

#development_skill_sheet {
  margin: 35px 15px 0;
}

#development_skill_sheet dl {
  margin-top: -10px;
}

#development_skill_sheet dl dt {
  border-bottom: #d7d7d7 solid 1px;
  margin-top: 30px;
  padding-bottom: 5px;
}

#development_skill_sheet dl dd {
  margin-top: 10px;
}

#development_skill_sheet dl dd ul {
  text-align: left;
}

#development_skill_sheet dl dd ul li {
  display: inline-block;
}

#development_skill_sheet dl dd ul li::after {
  content: '、';
}

#development_skill_sheet dl dd ul li:last-child::after {
  content: '';
}

@media (min-width: 640px) {
  .business-contents_intro {
    margin-top: 20px;
    display: flex;
  }
  .business-contents_intro .photo {
    padding-bottom: 25px;
    flex: 0 0 50%;
  }
  .business-contents_intro .photo figure {
    margin-left: auto;
    max-width: 640px;
  }
  .business-contents_intro .photo figcaption {
    padding: 20px;
    width: 330px;
    font-size: 1.2rem;
  }
  .business-contents_intro .photo figcaption b span {
    min-height: 2.8em;
  }
  .business-contents_intro .photo figcaption b span + span {
    margin-top: 0;
    font-size: 2.6rem;
  }
  .business-contents_intro .body {
    padding: 40px;
    flex: 0 0 50%;
    box-sizing: border-box;
  }
  .business-contents_intro .body .body_inner {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .business-contents_intro .body .body_inner .contents {
    max-width: 560px;
    color: #fff;
  }
  .business-contents_intro .body .body_inner .contents h3 {
    font-size: 2.2rem;
    line-height: 1.636;
  }
  .business-contents_intro.reverse {
    flex-direction: row-reverse;
  }
  .business-contents_intro.reverse .photo figure {
    margin-left: 0;
    margin-right: auto;
  }
  .business-contents_intro.reverse .body .body_inner .contents {
    margin-left: auto;
  }
  #business-contents_division_list {
    margin-top: 70px;
    padding-top: 60px;
  }
  #media_site_list {
    margin-top: 60px;
  }
  #media_site_list dl {
    margin: 25px auto 0;
    width: 980px;
  }
  #media_site_list dl dt {
    letter-spacing: 0.36em;
  }
  #media_site_list dl dt a {
    padding-left: 21.48px;
  }
  #media_site_list dl dt a span {
    padding: 0 50px;
    min-width: 300px;
  }
  #media_site_list dl dd ul {
    margin: 15px -15px 40px;
  }
  #media_site_list dl dd ul li {
    margin-top: 25px;
    padding: 0 15px;
    flex-basis: 25%;
  }
  #agent_business01 {
    margin-top: 35px;
  }
  #agent_business01 ul {
    margin-top: 40px;
  }
  #agent_business01 ul li {
    padding: 40px 0;
  }
  #agent_business01 ul li .body {
    margin: 0 auto;
    width: 810px;
  }
  #agent_business01 ul li .body h4 {
    margin-top: 20px;
    margin-right: -0.19em;
    font-size: 2.4rem;
    letter-spacing: 0.19em;
  }
  #agent_business01 ul li .body p {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  #agent_business01 ul li:nth-child(4n + 1) {
    margin-right: 75px;
    padding-left: 75px;
  }
  #agent_business01 ul li:nth-child(4n + 3) {
    margin-left: 75px;
    padding-right: 75px;
  }
  #agent_business02 {
    margin: 45px auto 0;
    max-width: 1100px;
  }
  #agent_business02 ul {
    margin: 0 -20px;
    display: flex;
    flex-wrap: wrap;
  }
  #agent_business02 ul li {
    margin: 60px 30px 0;
    padding: 20px;
    flex: 0 0 calc(33.33% - 60px);
    box-sizing: border-box;
  }
  #agent_business02 ul li .icon {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #agent_business02 ul li h4 {
    margin-top: 20px;
    margin-left: -0.1em;
    min-height: 2.9em;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #agent_business02 ul li p {
    font-size: 1.6rem;
    line-height: 1.625;
  }
  #franchise_site_list {
    margin: 60px auto 0;
    width: 980px;
  }
  #franchise_site_list h4 {
    margin-top: 50px;
    margin-right: -0.26em;
    font-size: 1.8rem;
    letter-spacing: 0.26em;
  }
  #franchise_site_list .fc_banner {
    margin-right: 15px;
    margin-left: 15px;
  }
  #franchise_site_list ul {
    margin: 0 -20px;
  }
  #franchise_site_list ul li {
    margin-top: 30px;
    padding: 0 20px;
    flex-basis: 33.33%;
  }
  #development_skill_sheet {
    margin: 60px auto 0;
    width: 980px;
  }
  #development_skill_sheet dl {
    margin: 0 100px;
    display: flex;
    flex-wrap: wrap;
  }
  #development_skill_sheet dl dt {
    border-bottom: none;
    margin: 30px 20px 0 0;
    padding-bottom: 0;
    flex: 0 0 140px;
  }
  #development_skill_sheet dl dd {
    margin-top: 30px;
    flex: 0 0 calc(100% - 160px);
  }
}

/* ---------------------------------------------
about company format
--------------------------------------------- */
#company-data_contents {
  margin: 35px 15px 0;
}

#company-data_contents dl {
  display: flex;
  flex-wrap: wrap;
}

#company-data_contents dl dt, #company-data_contents dl dd {
  border-top: #dcdcdc solid 1px;
  margin-top: 10px;
  padding-top: 10px;
}

#company-data_contents dl dt {
  flex: 0 0 5em;
}

#company-data_contents dl dt:first-child {
  border-top: none;
}

#company-data_contents dl dt:first-child + dd {
  border-top: none;
}

#company-data_contents dl dd {
  flex: 0 0 calc(100% - 5em);
}

#company-data_contents #office_map {
  margin-top: 20px;
}

#company-data_contents #office_map iframe {
  border: #a0a0a0 solid 1px;
  width: 100%;
  height: 180px;
  display: block;
  box-sizing: border-box;
}

#environment_culture {
  margin-top: 10px;
}

#environment_culture .photo {
  background-color: #eee;
  padding-bottom: 60px;
}

#environment_culture .contents {
  background-color: rgba(255, 255, 255, 0.9);
  margin: -80px 15px 0;
  padding: 30px 15px 0;
  position: relative;
  z-index: 1;
}

#environment_culture .contents h4 {
  margin-top: 30px;
  padding-left: 0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-align: center;
}

#environment_culture .contents p.name {
  margin-top: 25px;
  line-height: 1.4;
  text-align: center;
}

#environment_culture .contents p.name span {
  margin-left: 1em;
  display: inline-block;
}

#environment_photos {
  margin: 0 15px;
}

#environment_photos ul {
  margin: 20px -5px 0;
  display: flex;
  flex-wrap: wrap;
}

#environment_photos ul li {
  margin-top: 10px;
  padding: 0 5px;
  flex: 0 0 50%;
  box-sizing: border-box;
}

#environment_photos ul li a {
  position: relative;
  display: block;
}

#environment_photos ul li a::before, #environment_photos ul li a span::before, #environment_photos ul li a span::after {
  content: '';
  position: absolute;
  z-index: 1;
  display: block;
}

#environment_photos ul li a::before {
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  right: 5px;
  bottom: 5px;
}

#environment_photos ul li a span {
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

#environment_photos ul li a span::before, #environment_photos ul li a span::after {
  background-color: #000;
  border-radius: 1px;
  width: 9px;
  height: 2px;
  right: 10px;
  bottom: 14px;
}

#environment_photos ul li a span::before {
  transform: rotate(90deg);
}

#environment_photos ul li a span img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

#photo_view {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#photo_view #photo_view_inner {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  position: relative;
}

#photo_view #photo_view_inner a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  display: block;
}

#photo_view #photo_view_inner a[href="#close"] {
  background-color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: -12px;
  right: -12px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
}

#photo_view #photo_view_inner a[href="#close"]::before, #photo_view #photo_view_inner a[href="#close"]::after {
  content: '';
  background-color: #000;
  border-radius: 1px;
  margin: auto;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}

#photo_view #photo_view_inner a[href="#close"]::before {
  transform: rotate(45deg);
}

#photo_view #photo_view_inner a[href="#close"]::after {
  transform: rotate(-45deg);
}

#photo_view #photo_view_inner a[href="#close"]:hover {
  background-color: #000;
}

#photo_view #photo_view_inner a[href="#close"]:hover::before, #photo_view #photo_view_inner a[href="#close"]:hover::after {
  background-color: #fff;
}

#photo_view #photo_view_inner a[href="#prev"], #photo_view #photo_view_inner a[href="#next"] {
  margin: auto 0;
  border-right: #000 solid 2px;
  border-bottom: #000 solid 2px;
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
}

#photo_view #photo_view_inner a[href="#prev"].hide, #photo_view #photo_view_inner a[href="#next"].hide {
  display: none;
}

#photo_view #photo_view_inner a[href="#prev"]:hover, #photo_view #photo_view_inner a[href="#next"]:hover {
  border-right-color: #666;
  border-bottom-color: #666;
}

#photo_view #photo_view_inner a[href="#prev"] {
  left: 12px;
  transform: rotate(135deg);
}

#photo_view #photo_view_inner a[href="#next"] {
  right: 12px;
  transform: rotate(-45deg);
}

@media (min-width: 640px) {
  #company-data_contents {
    margin: 40px auto 0;
    width: 980px;
  }
  #company-data_contents dl {
    margin: 30px auto 0;
    width: 530px;
  }
  #company-data_contents dl dt, #company-data_contents dl dd {
    margin-top: 20px;
    padding-top: 20px;
  }
  #company-data_contents dl dt {
    flex-basis: 110px;
  }
  #company-data_contents dl dd {
    flex-basis: calc(100% - 110px);
  }
  #company-data_contents #office_map {
    margin-top: 45px;
  }
  #company-data_contents #office_map iframe {
    height: 540px;
  }
  #environment_culture {
    margin-top: 20px;
  }
  #environment_culture .photo {
    padding-bottom: 190px;
  }
  #environment_culture .contents {
    margin: -260px auto 0;
    padding: 80px 80px 30px;
    width: 720px;
  }
  #environment_culture .contents h4 {
    margin-top: 60px;
    font-size: 2.4rem;
  }
  #environment_culture .contents p {
    margin-top: 2em;
    font-size: 1.6rem;
    line-height: 2.875;
    text-align: center;
  }
  #environment_culture .contents p.name {
    margin-top: 60px;
  }
  #environment_photos {
    margin: 0 auto;
    width: 980px;
  }
  #environment_photos ul {
    margin: 35px -12.5px 0;
  }
  #environment_photos ul li {
    margin-top: 25px;
    padding: 0 12.5px;
    flex-basis: 33.33%;
  }
  #environment_photos ul li a::before {
    width: 24px;
    height: 24px;
    right: 10px;
    bottom: 10px;
  }
  #environment_photos ul li a span::before, #environment_photos ul li a span::after {
    width: 14px;
    right: 17px;
    bottom: 23px;
  }
  #photo_view {
    padding: 20px;
  }
  #photo_view #photo_view_inner {
    padding: 100px 80px;
  }
  #photo_view #photo_view_inner a[href="#close"] {
    width: 46px;
    height: 46px;
    top: -23px;
    right: -23px;
  }
  #photo_view #photo_view_inner a[href="#close"]::before, #photo_view #photo_view_inner a[href="#close"]::after {
    border-radius: 1.5px;
    width: 28px;
    height: 3px;
  }
  #photo_view #photo_view_inner a[href="#prev"], #photo_view #photo_view_inner a[href="#next"] {
    border-right: #000 solid 3px;
    border-bottom: #000 solid 3px;
    width: 30px;
    height: 30px;
  }
  #photo_view #photo_view_inner a[href="#prev"] {
    left: 40px;
    transform: rotate(135deg);
  }
  #photo_view #photo_view_inner a[href="#next"] {
    right: 40px;
    transform: rotate(-45deg);
  }
}

/* ---------------------------------------------
pages format
--------------------------------------------- */
#privacy-policy_contents {
  margin: 50px 15px 0;
  font-size: 1.2rem;
}

#privacy-policy_contents h3 {
  border-top: #dcdcdc solid 1px;
  margin-top: 30px;
  padding-top: 30px;
  font-size: 2rem;
}

#privacy-policy_contents h3:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

#privacy-policy_contents h4 {
  margin-top: 1.65em;
}

#privacy-policy_contents ol {
  list-style-type: decimal;
  margin-left: 1.75em;
}

#privacy-policy_contents ol li {
  margin-top: 1.65em;
}

#privacy-policy_contents ol.brackets_list {
  list-style-type: none;
  margin-top: 1.65em;
  margin-left: 0;
}

#privacy-policy_contents ol.brackets_list li {
  counter-increment: brackets_list;
  margin-top: 0;
  padding-left: 2em;
  position: relative;
}

#privacy-policy_contents ol.brackets_list li::before {
  content: "(" counter(brackets_list) ")";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#privacy-policy_contents ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

#privacy-policy_contents ul li {
  margin-top: 1.65em;
}

#privacy-policy_contents ul ul {
  list-style-type: circle;
}

#privacy-policy_contents ul ul li {
  margin-top: 0;
}

#privacy-policy_contents address {
  margin-top: 1.65em;
}

#inquiry_contents {
  margin: 25px 15px 0;
}

#inquiry_contents p:first-child {
  color: #5f5f5f;
}

#inquiry_contents form dl {
  margin-top: 10px;
  line-height: 1.4;
}

#inquiry_contents form dl dt {
  border-top: #d7d7d7 solid 1px;
  margin-top: 25px;
  padding-top: 25px;
  font-size: 1.6rem;
}

#inquiry_contents form dl dt:first-child {
  border-top: none;
  margin-top: 0;
}

#inquiry_contents form dl dd {
  margin-top: 25px;
}

#inquiry_contents form dl dd [type="text"], #inquiry_contents form dl dd [type="tel"], #inquiry_contents form dl dd [type="email"], #inquiry_contents form dl dd textarea {
  border: #969696 solid 1px;
  border-radius: 0;
  padding: 10px;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
}

#inquiry_contents form dl dd [type="text"]:focus, #inquiry_contents form dl dd [type="tel"]:focus, #inquiry_contents form dl dd [type="email"]:focus, #inquiry_contents form dl dd textarea:focus {
  outline: #eb5505 solid 1px;
}

#inquiry_contents form dl dd textarea {
  height: 130px;
}

#inquiry_contents form dl dd label {
  cursor: pointer;
  display: block;
}

#inquiry_contents form dl dd label input {
  background-color: #fff;
  border: #000 solid 1px;
  border-radius: 0;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  box-sizing: border-box;
  box-shadow: 0 0 0 2px #fff inset;
}

#inquiry_contents form dl dd label input:checked {
  background-color: #000;
}

#inquiry_contents form dl dd label input[type="radio"] {
  border-radius: 50%;
}

#inquiry_contents form dl dd .check_list li {
  margin-top: 15px;
}

#inquiry_contents form dl dd .error {
  margin-top: 10px;
  color: #eb5505;
}

#inquiry_contents form #btn_submit {
  margin-top: 35px;
}

#inquiry_contents form #btn_submit button {
  background-color: #eb5505;
  border: none;
  border-radius: 0;
  margin: 0 auto;
  padding: 10px 15px 10px 19px;
  width: 50%;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: block;
  box-sizing: border-box;
}

#inquiry_contents form #btn_submit button::after {
  content: '';
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  margin: auto 0;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: block;
  transform: rotate(45deg);
}

#inquiry_contents form #btn_submit button:hover {
  background-color: #ff7727;
}

@media (min-width: 640px) {
  #privacy-policy_contents {
    margin: 70px auto 0;
    width: 980px;
  }
  #privacy-policy_contents h3 {
    margin-top: 40px;
    padding-top: 40px;
    font-size: 1.8rem;
  }
  #privacy-policy_contents h4 {
    margin-top: 1.714em;
  }
  #privacy-policy_contents ol li {
    margin-top: 1.714em;
  }
  #privacy-policy_contents ol.brackets_list {
    margin-top: 1.714em;
  }
  #privacy-policy_contents ul li {
    margin-top: 1.714em;
  }
  #privacy-policy_contents address {
    margin-top: 1.714em;
  }
  #inquiry_contents {
    margin: 55px auto 0;
    width: 730px;
  }
  #inquiry_contents p:first-child {
    margin-right: 10px;
    margin-left: 10px;
  }
  #inquiry_contents form dl dt {
    margin-top: 30px;
    padding: 30px 10px 0;
    font-size: 2rem;
  }
  #inquiry_contents form dl dd {
    margin-top: 30px;
    padding: 0 10px;
    font-size: 1.6rem;
  }
  #inquiry_contents form dl dd textarea {
    height: 260px;
  }
  #inquiry_contents form dl dd label input {
    width: 15px;
    height: 15px;
  }
  #inquiry_contents form dl dd .check_list {
    margin-left: -40px;
  }
  #inquiry_contents form dl dd .check_list li {
    margin: 10px 0 0 40px;
    display: inline-block;
  }
  #inquiry_contents form dl dd .error {
    font-size: 1.4rem;
  }
  #inquiry_contents form #btn_submit {
    margin-top: 70px;
  }
  #inquiry_contents form #btn_submit button {
    padding: 15px 25px 15px 29px;
    width: 300px;
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
  #inquiry_contents form #btn_submit button::after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
}

/* ---------------------------------------------
footer format
--------------------------------------------- */
#site_footer {
  background-color: #f4f4f4;
  margin-top: 40px;
  padding-top: 30px;
}

#site_footer #footer_contents {
  padding: 0 20px;
}

#site_footer #footer_contents #footer_data {
  color: #555;
}

#site_footer #footer_contents #footer_data h2 {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 1.1;
  text-align: center;
}

#site_footer #footer_contents #footer_data address {
  margin-top: 15px;
  font-size: 1.3rem;
  line-height: 1.3;
}

#site_footer #footer_contents #footer_data nav {
  margin: 20px 20px 0;
}

#site_footer #footer_contents #footer_data nav ul li {
  margin-top: 10px;
}

#site_footer #footer_contents #footer_data nav ul li a {
  background-color: #fff;
  border: #a0a0a0 solid 1px;
  border-radius: 30px;
  padding: 8px 5px;
  font-size: 1.3rem;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  color: #555;
  display: block;
}

#site_footer #footer_contents #footer_data nav ul li a span {
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
}

#site_footer #footer_contents #footer_data nav ul li a span b {
  margin-top: 5px;
  font-size: 2.1rem;
  display: block;
}

#site_footer #footer_contents #footer_data nav ul li a:hover {
  background-color: #f4f4f4;
}

#site_footer #footer_contents #footer_data nav ul li:nth-child(1) span {
  background-image: url("../img/common/icon_tel.svg");
  padding-left: 35px;
}

#site_footer #footer_contents #footer_data nav ul li:nth-child(2) span {
  background-image: url("../img/common/icon_mail.svg");
  padding: 14px 0 14px 40px;
}

#site_footer #footer_contents #footer_map {
  margin-top: 30px;
}

#site_footer #footer_contents #footer_map iframe {
  border: #a0a0a0 solid 1px;
  width: 100%;
  height: 180px;
  display: block;
  box-sizing: border-box;
}

#site_footer #footer_copyright {
  background-color: #555;
  margin-top: 30px;
  padding: 10px 0;
}

#site_footer #footer_copyright .inner small {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  display: block;
}

#site_footer #footer_copyright .inner small span {
  font-size: 2.2rem;
  vertical-align: middle;
}

@media (min-width: 640px) {
  #site_footer {
    margin-top: 120px;
    padding-top: 75px;
    min-width: 1000px;
  }
  #site_footer #footer_contents {
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
  }
  #site_footer #footer_contents #footer_data {
    margin-top: 10px;
    flex: 0 0 510px;
  }
  #site_footer #footer_contents #footer_data h2 {
    font-size: 2.9rem;
    text-align: left;
  }
  #site_footer #footer_contents #footer_data address {
    margin-top: 35px;
    font-size: 1.4rem;
    line-height: 1.857;
  }
  #site_footer #footer_contents #footer_data nav {
    margin: 35px 0 0;
  }
  #site_footer #footer_contents #footer_data nav ul {
    display: flex;
  }
  #site_footer #footer_contents #footer_data nav ul li {
    margin-top: 0;
    flex: 0 0 250px;
  }
  #site_footer #footer_contents #footer_data nav ul li a {
    border-radius: 26px;
    padding: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.2rem;
  }
  #site_footer #footer_contents #footer_data nav ul li a span b {
    font-size: 2.1rem;
  }
  #site_footer #footer_contents #footer_data nav ul li:nth-child(1) {
    margin-right: 10px;
  }
  #site_footer #footer_contents #footer_map {
    margin-top: 0;
    margin-left: 40px;
    flex: 1;
  }
  #site_footer #footer_contents #footer_map iframe {
    height: 290px;
  }
  #site_footer #footer_copyright {
    margin-top: 90px;
    padding: 20px 0;
  }
}
