@charset "UTF-8";
/*** The new CSS reset - version 1.11.1 (last updated 24.10.2023) ***/

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}

a,
button {
  cursor: revert
}

ol,
ul,
menu,
summary {
  list-style: none
}

img {
  max-inline-size: 100%;
  max-block-size: 100%
}

table {
  border-collapse: collapse
}

input,
textarea {
  -webkit-user-select: auto
}

textarea {
  white-space: revert
}

meter {
  -webkit-appearance: revert;
  appearance: revert
}

:where(pre) {
  all: revert;
  box-sizing: border-box
}

::placeholder {
  color: unset
}

:where([hidden]) {
  display: none
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto
}

:where([draggable="true"]) {
  -webkit-user-drag: element
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box
}

/* vリセットCSSここまで */
/****************************************
		1. General Setting
*****************************************/

html {
  font-family: "Zen Kaku Gothic New", serif;
  font-style: normal;
  font-size: 16px;
  color: #000;
  color: #2F2F2F;

  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

.u-ftInter {
  font-family: "Inter", sans-serif;
  font-style: normal;
}

body {
  margin: 0;
  color: #000;
  color: #2F2F2F;
  font-size: min(calc(16vw / 1440*100), 16px);
  line-height: 100%;
  width: 100%;
}

img,
svg {
  width: 100%;
  vertical-align: top;
}

a {
  color: #000;
  color: #2F2F2F;
  outline: none;
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.8;
}

p {
  line-height: 1;
}

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

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.u-fadeUp {
  opacity: 1;
  filter: blur(0);
  transition: opacity 1.2s, filter 1.2s, transform 1.2s;
  transition-delay: opacity 0s, filter 0.3s, transform 0s;
  transform: translateY(0%);
}

.u-fadeUp.is-active {
  opacity: 0;
  transform: translateY(5%);
  filter: blur(7px);
}

.u-fadeIn {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition: opacity 1.2s, filter 1.2s, transform 1.2s;
  transition-delay: opacity 0.6s, filter 0.9s, transform 0.9s;
}

.u-fadeIn.is-active {
  transform: scale(1.05);
  opacity: 0;
  filter: blur(9px);
}

.br-pc {
  display: inline-block;
}

.br-sp {
  display: none;
}

.container {
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
}

@media screen and (max-width: 767px) {

  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
    line-height: 0;
  }

  body.is-fixed-sp {
    overflow: hidden;
  }
}

/* header */
.header {
  position: relative;
  width: 100%;
  height: calc(169vw / 1440* 100);
  background-color: #fff;
  box-sizing: border-box;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  height: 100%;
}

.header__logo {
  width: calc(436vw / 1440* 100);
  margin: auto;
  margin-bottom: calc(64vw / 1440* 100);
}


@media screen and (max-width: 767px) {
  .header {
    height: calc(121vw / 375* 100);
  }

  .header__logo {
    width: calc(292vw / 375* 100);
    margin-bottom: calc(50vw / 375* 100);
  }

  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 0vw;
    height: 0vh;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s 0s, width 0s 0.3s, height 0s 0.3s;
    opacity: 0;
    z-index: 80;
    pointer-events: none;
  }

  .header__nav.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    transition: opacity 0.3s 0s, width 0s 0s, height 0s 0s;
    opacity: 1;
    pointer-events: all;
  }

}

/* footer */
.ft__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: calc(80vw / 1440* 100) 0 calc(34vw / 1440* 100);
  width: calc(1060vw /1440*100);
}

.ft__logo {
  width: calc(436vw / 1440 * 100);
}

.copy_right {
  text-align: center;
  font-size: calc(12vw /1440*100);
  font-weight: 400;
  margin-bottom: calc(20vw / 1440* 100);
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {

  .ft__wrap {
    width: calc(313vw /375*100);
    padding: calc(102vw / 375* 100) 0 calc(13vw / 375* 100);
  }

  .ft__logo {
    width: 93%;
  }


  .copy_right {
    letter-spacing: 0;
    font-size: calc(12vw /375*100);
    margin-bottom: calc(43vw / 375* 100);
  }
}

/* mv-section */
.mv__ul {
  margin: 0 auto;
  width: calc(1100vw /1440*100);
  display: flex;
  align-items: flex-start;
}

.mv__li {
  width: 50%;
}

.mv__li_name {
  font-size: calc(20vw /1440*100);
  padding-top: 1.0em;
  line-height: 1;
}

.mv__li:nth-child(2) .mv__li_name {
  text-align: right;
}

@media screen and (max-width: 767px) {

  .mv__ul {
    width: calc(340vw / 375* 100);
    flex-direction: column;
  }

  .mv__li {
    width: 100%;
  }

  .mv__li_name {
    font-size: calc(14vw /375*100);
    padding-top: 0.85em;
  }

  .mv__li:nth-child(2) {
    margin-top: calc(40vw /375*100);
  }

  .mv__li:nth-child(2) .mv__li_name {
    text-align: left;
  }


}

/* officeinfo-section */
.officeinfo-box {
  padding: calc(56vw / 1440* 100) 0 0;
  margin: 0 auto;
  width: calc(1100vw /1440*100);
}

.officeinfo-section_ttl {
  text-align: center;
  color: #121212;
  line-height: 1.6;
  font-weight: 500;
  font-size: calc(34vw / 1440* 100);
}

.officeinfo-section_ttl_sub {
  position: relative;
  font-size: calc(16vw / 1440* 100);
  padding-left: 0.4em;
  letter-spacing: 0.5em;
  color: #6DA700;
  font-weight: 400;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.officeinfo-section_ttl_sub::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: calc(-20vw / 1440* 100);
  left: 50%;
  transform: translateX(-50%);
  height: calc(3vw / 1440* 100);
  width: calc(86vw / 1440* 100);
  color: transparent;
  background-color: #6DA700;
  -webkit-background-clip: border-box;
}

.officeinfo-box_tag {
  margin: calc(60vw / 1440* 100) auto 0;
  width: calc(502vw / 1440* 100);
  font-size: calc(32vw / 1440* 100);
  padding: 0.4em 0;
  border-radius: calc(11vw / 1440* 100);
  font-weight: 700;
  color: #fff;
  background-color: #6DA700;
  text-align: center;
}

.officeinfo-box_tag.officeinfo-box_orange {
  background-color: #FF7233;
}

.officeinfo-box_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(64vw / 1440* 100);
}

.officeinfo-box_wrap_left {
  width: 48%;
}

.officeinfo-box_wrap_right {
  width: 48%;
}

.officeinfo-box_wrap_tbl {
  text-align: left;
  font-size: calc(16vw / 1440* 100);
  line-height: 1.5;
  font-weight: 600;
}

.officeinfo-box_wrap_tbl__headline {
  box-sizing: border-box;
  vertical-align: top;
  color: #6DA700;
  width: calc(100vw / 1440* 100);
  padding-bottom: 0.9em;
}

.officeinfo-box_wrap_tbl__headline.officeinfo-box_orange {
  color: #FF7233;
}

.officeinfo-box_wrap_tbl__cell {
  padding-bottom: 0.9em;
  color: #313131;
}

.officeinfo-box_wrap_tbl__cell_little {
  font-size: calc(14vw / 1440 * 100);
}

.officeinfo-box_wrap_tbl__cell_green {
  color: #6DA700;
  line-height: 1.75;
  padding-top: 0.7em;
  display: inline-block;
  font-size: calc(18vw / 1440 * 100);
}

.officeinfo-box_wrap_tbl__cell_orange {
  color: #FF7233;
  line-height: 1.75;
  padding-top: 0.7em;
  display: inline-block;
  font-size: calc(18vw / 1440 * 100);
}

.officeinfo-box_wrap_img_ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: calc(27vw / 1440* 100);
  margin-bottom: calc(40vw / 1440* 100);
}

.officeinfo-box_wrap_img_li {
  width: calc(356vw / 1440* 100);
}

.officeinfo-box_map {
  aspect-ratio: 25/6;
  margin-bottom: calc(40vw / 1440* 100);
}

.officeinfo-box_btn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: calc(370vw / 1440* 100);
  font-size: calc(31vw / 1440* 100);
  border-radius: 2em;
  line-height: 2.6;
  color: #fff;
  background-color: #6DA700;
  text-align: center;
  font-weight: 400;
}

.officeinfo-box_btn::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../image/common/arrow_w.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: calc(23vw / 1440 * 100);
  height: calc(23vw / 1440 * 100);
  top: 50%;
  right: calc(73vw / 1440 * 100);
  transform: translateY(-50%);
}

.officeinfo-box_btn.officeinfo-box_orange {
  background-color: #FF7233;
}

.officeinfo-box_hr {
  color: #707070;
  background-color: #707070;
  height: calc(2vw / 1440 * 100);
  margin: calc(80vw / 1440 * 100) 0 calc(160vw / 1440 * 100);
}

@media screen and (max-width: 767px) {

  .officeinfo-box {
    padding: calc(91vw / 375* 100) 0 0;
    margin: 0 auto;
    width: 100%;
  }

  .officeinfo-section_ttl {
    font-size: calc(34vw / 375* 100);
  }

  .officeinfo-section_ttl_sub {
    font-size: calc(16vw / 375* 100);
  }

  .officeinfo-section_ttl_sub::after {
    top: calc(-20vw / 375 * 100);
    height: calc(3vw / 375 * 100);
    width: calc(86vw / 375 * 100);
  }

  .officeinfo-box_tag {
    margin: calc(35vw / 375 * 100) auto 0;
    width: calc(240vw / 375 * 100);
    font-size: calc(24vw / 375 * 100);
    padding: 0.6em 0;
    border-radius: calc(11vw / 375 * 100);
  }

  .officeinfo-box_wrap {
    flex-direction: column;
    margin-top: calc(40vw / 375* 100);
  }

  .officeinfo-box_wrap_left {
    width: calc(295vw / 375* 100);
    margin: auto;
    padding-bottom: calc(15vw / 375* 100);
  }

  .officeinfo-box_wrap_right {
    margin: auto;
    width: calc(295vw / 375* 100);
  }

  .officeinfo-box_wrap_tbl {
    font-size: calc(16vw / 375* 100);
  }

  .officeinfo-box_wrap_tbl__headline {
    width: calc(83vw / 375* 100);
    padding-bottom: 1.0em;
  }

  .officeinfo-box_wrap_tbl__cell {
    padding-bottom: 1.0em;
  }

  .officeinfo-box_wrap_tbl__cell_little {
    font-size: calc(14vw / 375 * 100);
  }

  .officeinfo-box_wrap_tbl__collumn {
    display: flex;
    flex-direction: column;
  }

  .officeinfo-box_wrap_tbl__cell_green,
  .officeinfo-box_wrap_tbl__cell_orange {
    line-height: 1.8;
    padding-top: 0.7em;
    font-size: calc(18vw / 375 * 100);
  }

  .officeinfo-box_wrap_img_ul {
    margin-top: calc(20vw / 375 * 100);
    margin-bottom: calc(30vw / 375 * 100);
    flex-direction: column;
  }

  .officeinfo-box_wrap_img_li {
    width: calc(295vw / 375* 100);
  }

  .officeinfo-box_wrap_img_li:not(:first-child) {
    padding-top: calc(16vw / 375 * 100);
  }

  .officeinfo-box_map {
    aspect-ratio: 12 / 6;
    margin-bottom: calc(40vw / 375 * 100);
  }

  .officeinfo-box_btn {
    width: calc(295vw / 375 * 100);
    font-size: calc(26vw / 375 * 100);
    border-radius: 2em;
    line-height: 2.6;
  }

  .officeinfo-box_btn::after {
    width: calc(14vw / 375 * 100);
    height: calc(14vw / 375 * 100);
    right: calc(60vw / 375 * 100);
  }

  .officeinfo-box_hr {
    width: calc(340vw / 375 * 100);
    height: calc(2vw / 375 * 100);
    margin: calc(64vw / 375 * 100) auto calc(100vw / 375 * 100);
  }
}