@charset "UTF-8";
/*----------------------------------------------------------------------------------------
rest.scss
----------------------------------------------------------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*----------------------------------------------------------------------------------------
archives.scss
----------------------------------------------------------------------------------------*/
html {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 62.5%;
}

body {
  color: #333333;
}

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

li {
  list-style: none;
}

iframe {
  max-width: 100%;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #707070;
  padding: 0 10px;
  max-width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  main {
    padding-top: 70px;
  }
}
/*----------------------------------------------------------------------------------------
header.scss
----------------------------------------------------------------------------------------*/
.l-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.l-header__inner {
  position: relative;
  height: 70px;
}
.l-header__inner h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-header__inner h1 img {
  width: 185px;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .l-header__nav {
    pointer-events: none;
    opacity: 0;
    visibility: visible;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: fixed;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: #F2F4F7;
  }
  .l-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: all;
  }
  .l-header__nav img {
    margin-inline: auto;
  }
  .l-header__nav img:first-of-type {
    margin-bottom: 30px;
  }
}
.l-header__list {
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .l-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: calc(200vw / 3.75);
    margin-inline: auto;
  }
}
.l-header__item {
  text-align: center;
  font-size: clamp(1.6rem, 1.418rem + 0.485vi, 2rem);
}
@media screen and (max-width: 1200px) {
  .l-header__item {
    margin-inline: auto;
    width: 100%;
  }
}
.l-header__item:not(:last-of-type) a {
  border-bottom: 1px solid #C8C9C8;
  padding-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  .l-header__item:not(:last-of-type) a {
    width: calc(140vw / 3.75);
    max-width: 240px;
  }
}
.l-header__item:last-of-type a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 75px;
  line-height: calc(22 / 16);
  background-color: #F5E41C;
  width: 205px;
}
@media screen and (max-width: 1200px) {
  .l-header__item:last-of-type {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__return {
    text-align: center;
    font-size: clamp(1.3rem, 1.073rem + 0.606vi, 1.8rem);
    margin-bottom: 30px;
  }
  .l-header__return::before {
    content: "";
    display: block;
    background-image: url(../../assets/img/common/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-inline: auto;
    width: 35px;
    height: 12px;
  }
}
.l-header__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .l-header__column {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1200px) {
  .l-header__hum {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 10;
    width: 32px;
    height: 23px;
  }
  .l-header__hum span {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 32px;
    height: 2px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: #000;
  }
  .l-header__hum span:nth-of-type(1) {
    top: 0;
  }
  .l-header__hum span:nth-of-type(2) {
    top: 10px;
  }
  .l-header__hum span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header__hum.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(225deg);
    transform: translateY(10px) rotate(225deg);
  }
  .l-header__hum.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hum.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(-225deg);
    transform: translateY(-10px) rotate(-225deg);
  }
}

@media screen and (min-width: 1201px) {
  .l-header__inner {
    margin-left: 40px;
  }
  .l-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 10px;
  }
  .l-header__item a {
    font-size: 1.3rem;
  }
  .l-header__item:not(:last-of-type) a {
    width: 140px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .l-header__item:not(:last-of-type) a:hover {
    border-color: #333;
  }
  .l-header__item:not(:last-of-type).is-current a {
    border-color: #333;
  }
  .l-header__item:last-of-type a {
    height: 70px;
    width: 160px;
  }
}
/*----------------------------------------------------------------------------------------
footer.scss
----------------------------------------------------------------------------------------*/
.l-footer {
  text-align: center;
  padding: calc(30vw / 3.75) 0;
}
.l-footer small {
  font-size: calc(11vw / 3.75);
}

@media screen and (min-width: 481px) {
  .l-footer small {
    font-size: calc(11vw / 4.8);
  }
}
@media screen and (min-width: 1201px) {
  .l-footer {
    padding: 30px 0;
  }
  .l-footer small {
    font-size: 1.4rem;
  }
}
/*----------------------------------------------------------------------------------------
btn.scss
----------------------------------------------------------------------------------------*/
.c-link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: calc(265vw / 3.75);
  width: 100%;
  margin-inline: auto;
  text-align: center;
  border-radius: calc(30vw / 3.75);
  height: calc(50vw / 3.75);
  font-size: calc(16vw / 3.75);
}

@media screen and (min-width: 481px) {
  .c-link-btn {
    font-size: calc(16vw / 4.8);
    width: calc(265vw / 4.8);
    height: calc(50vw / 4.8);
  }
}
@media screen and (min-width: 1201px) {
  .c-link-btn {
    border-radius: 50px;
  }
  .c-link-btn-large {
    font-size: 22px;
    width: 420px;
    height: 70px;
  }
  .c-link-btn-ex-large {
    font-size: 22px;
    width: 640px;
    height: 70px;
  }
  .c-link-btn-middle {
    font-size: 16px;
    width: 320px;
    height: 55px;
  }
  .c-link-btn-pc-short {
    font-size: 20px;
    width: 285px;
    height: 60px;
  }
}
/*----------------------------------------------------------------------------------------
mainVisual.scss
----------------------------------------------------------------------------------------*/
.c-mainVisual01 {
  background-image: url(../img/common/sp/subMv01.png);
  background-size: cover;
  padding: calc(60vw / 3.75) 0;
}
.c-mainVisual01__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(25vw / 3.75);
}
@media screen and (max-width: 1023px) {
  .c-mainVisual01__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-mainVisual01 hgroup h2 {
  font-size: calc(35vw / 3.75);
  margin-bottom: calc(10vw / 3.75);
  letter-spacing: calc(5vw / 3.75);
  font-style: italic;
}
.c-mainVisual01 hgroup p {
  font-weight: 500;
  font-size: calc(14vw / 3.75);
}
.c-mainVisual01__container {
  max-width: 1480px;
  margin-inline: auto;
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .c-mainVisual01__img {
    margin-bottom: calc(25vw / 3.75);
  }
}

.c-mainVisual01-menu {
  background: #fff;
  padding: calc(20vw / 3.75);
}
.c-mainVisual01-menu h3 {
  color: #8C7100;
  font-weight: 600;
  font-size: calc(16vw / 3.75);
  line-height: calc(24 / 16);
  margin-bottom: calc(20vw / 3.75);
}
.c-mainVisual01-menu ul {
  display: -ms-grid;
  display: grid;
  gap: calc(10vw / 3.75);
}
.c-mainVisual01-menu ul li {
  font-size: calc(12vw / 3.75);
}

@media screen and (min-width: 1024px) {
  .c-mainVisual01 {
    background-image: url(../img/common/pc/subMv01.png);
    height: 720px;
    padding: 195px 0 100px;
  }
  .c-mainVisual01__container {
    position: relative;
    max-width: 1460px;
    margin-inline: auto;
  }
  .c-mainVisual01__column {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    margin-left: 20px;
    gap: 110px;
  }
  .c-mainVisual01 hgroup h2 {
    font-size: 8rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
  }
  .c-mainVisual01 hgroup p {
    font-size: 2rem;
  }
  .c-mainVisual01 img {
    overflow: hidden;
    max-width: 825px;
    height: 330px;
  }
  .c-mainVisual01-menu {
    padding: 105px 20px 90px;
    max-width: 1240px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-55%);
    transform: translateX(-55%);
    top: 280px;
    width: 100%;
    margin-inline: auto;
    margin-left: 30px;
  }
  .c-mainVisual01-menu__container {
    max-width: 835px;
    margin-inline: auto;
  }
  .c-mainVisual01-menu__container h3 {
    font-size: 2.2rem;
    line-height: 35px;
    margin-bottom: 35px;
  }
  .c-mainVisual01-menu__container ul {
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-mainVisual01-menu__container ul li {
    font-size: 1.4rem;
  }
}
/*----------------------------------------------------------------------------------------
mainVisual02.scss
----------------------------------------------------------------------------------------*/
.c-mainVisual02 {
  padding-top: calc(20vw / 3.75);
}
.c-mainVisual02__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
  gap: calc(15vw / 3.75);
  margin-bottom: calc(10vw / 3.75);
}
.c-mainVisual02__heading h2 {
  font-size: calc(30vw / 3.75);
  font-style: italic;
  letter-spacing: 5px;
}
.c-mainVisual02__heading p {
  font-size: calc(12vw / 3.75);
  font-weight: 600;
}
.c-mainVisual02__img {
  height: calc(100vw / 3.75);
  margin-bottom: calc(30vw / 3.75);
}

@media screen and (min-width: 1024px) {
  .c-mainVisual02__heading {
    max-width: 1080px;
    gap: 40px;
    margin-bottom: 20px;
  }
  .c-mainVisual02__heading h2 {
    font-size: 5.4rem;
  }
  .c-mainVisual02__heading p {
    font-size: 2.4rem;
  }
  .c-mainVisual02__img {
    height: 170px;
    margin-bottom: 55px;
  }
}
/*----------------------------------------------------------------------------------------
links.scss
----------------------------------------------------------------------------------------*/
.c-foot-links {
  background-image: url(../img/common/sp/footBg.png);
  background-size: cover;
  padding: calc(70vw / 3.75) 0 calc(50vw / 3.75);
}
.c-foot-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(20vw / 3.75);
  justify-content: center;
  margin-bottom: calc(30vw / 3.75);
}
.c-foot-links ul li a {
  background-color: #fff;
  border: 1px solid #8C7100;
  color: #8C7100;
}
.c-foot-links__tel {
  text-align: center;
  display: block;
  margin-inline: auto;
  margin-bottom: calc(30vw / 3.75);
  width: calc(315vw / 3.75);
}
.c-foot-links__top {
  text-align: center;
  display: block;
  margin-inline: auto;
  margin-bottom: calc(30vw / 3.75);
  width: calc(80vw / 3.75);
}
.c-foot-links__address {
  color: #8C7100;
  padding-top: calc(30vw / 3.75);
  border-top: 1px solid #fff;
  text-align: center;
}
.c-foot-links__address p {
  font-size: calc(12vw / 3.75);
  line-height: calc(24 / 14);
}
.c-foot-links__address p span {
  font-size: calc(14vw / 3.75);
}

@media screen and (min-width: 481px) {
  .c-foot-links {
    padding: calc(30vw / 3.75) 0;
  }
  .c-foot-links__pos {
    position: relative;
    max-width: 1080px;
    margin-inline: auto;
  }
  .c-foot-links__tel {
    width: calc(250vw / 4.8);
  }
  .c-foot-links__top {
    width: calc(70vw / 4.8);
  }
  .c-foot-links__address p {
    font-size: calc(12vw / 4.8);
  }
  .c-foot-links__address p span {
    font-size: calc(14vw / 4.8);
  }
  .c-foot-links__top {
    position: absolute;
    right: 2%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    margin: unset;
  }
  .c-foot-links__address {
    padding-top: 20px;
  }
  .c-foot-links__address p {
    font-size: 1.2rem;
  }
  .c-foot-links__address p span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1201px) {
  .c-foot-links {
    padding: 45px 0 30px;
  }
  .c-foot-links ul {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    gap: 35px;
    margin-bottom: 60px;
  }
  .c-foot-links ul li a {
    opacity: 0.8;
  }
  .c-foot-links ul li a:hover {
    opacity: 1;
  }
  .c-foot-links__tel {
    width: 340px;
    margin-bottom: 40px;
  }
}
/*----------------------------------------------------------------------------------------
secLinks.scss
----------------------------------------------------------------------------------------*/
.c-section-links {
  padding: calc(50vw / 3.75) 0;
}
.c-section-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(20vw / 3.75);
}
.c-section-links__item a {
  background-color: #8C7100;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .c-section-links {
    padding: 100px 0;
  }
  .c-section-links__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    gap: 40px;
  }
}
/*----------------------------------------------------------------------------------------
fixed-menu.scss
----------------------------------------------------------------------------------------*/
.c-fixed-menu {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  position: fixed;
  z-index: 10;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(5vw / 3.75);
}
.c-fixed-menu li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.c-fixed-menu li a {
  background-color: #F5E41C;
  display: block;
  font-size: calc(12vw / 3.75);
  border-radius: calc(10vw / 3.75) calc(10vw / 3.75) 0 0;
  padding: calc(15vw / 3.75) 0;
}
.c-fixed-menu.is-hide {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 1024px) {
  .c-fixed-menu {
    display: none;
  }
}
/*----------------------------------------------------------------------------------------
project.scss
----------------------------------------------------------------------------------------*/
.p-mainVisual {
  position: relative;
  background-image: url(../img/top/sp/mv.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(650vw / 3.75);
}
.p-mainVisual__logo img {
  position: absolute;
  top: calc(20vw / 3.75);
  right: calc(20vw / 3.75);
  width: calc(162vw / 3.75);
  height: auto;
}
.p-mainVisual__texts {
  max-width: calc(310vw / 3.75);
  padding-top: calc(210vw / 3.75);
  margin-inline: auto;
}
.p-mainVisual__texts h2 {
  font-size: calc(34vw / 3.75);
  line-height: calc(60 / 34);
  margin-bottom: calc(20vw / 3.75);
}
.p-mainVisual__texts h2 span {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: #fff;
  color: #000;
  display: inline;
  padding: calc(2vw / 3.75) calc(10vw / 3.75);
}
@media screen and (max-width: 480px) {
  .p-mainVisual__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(5vw / 3.75);
  }
}
.p-mainVisual__item {
  background-color: #8C7100;
  color: #fff;
  border-radius: calc(5vw / 3.75);
  font-size: calc(16vw / 3.75);
  height: calc(50vw / 3.75);
  line-height: calc(18 / 16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  gap: calc(3vw / 3.75);
}
.p-mainVisual__item span {
  display: block;
  font-size: 0.7em;
}

.p-voice {
  padding-bottom: calc(60vw / 3.75);
}
@media screen and (max-width: 480px) {
  .p-voice {
    padding-top: calc(60vw / 3.75);
  }
}
.p-voice hgroup {
  text-align: center;
  margin-bottom: calc(20vw / 3.75);
}
.p-voice hgroup h2 {
  font-size: calc(48vw / 3.75);
  font-style: italic;
}
.p-voice hgroup p {
  font-size: calc(18vw / 3.75);
}
.p-voice__slider {
  max-width: calc(310vw / 3.75);
  margin-inline: auto;
}
.p-voice__slider .is-slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: calc(17vw / 3.75);
  height: auto;
}
.p-voice__slider .is-slick-prev {
  left: calc(-25vw / 3.75);
}
.p-voice__slider .is-slick-next {
  right: calc(-25vw / 3.75);
}
.p-voice__item figure {
  position: relative;
  margin-bottom: calc(5vw / 3.75);
}
.p-voice__item figure figcaption {
  width: 100%;
  padding: calc(8vw / 3.75) 0;
  position: absolute;
  bottom: 0;
  background-color: #DDD567;
  text-align: center;
  font-size: calc(13vw / 3.75);
}
.p-voice__item p {
  font-size: calc(13vw / 3.75);
}

.p-record {
  position: relative;
  background-color: #F8F7DD;
  padding-top: calc(90vw / 3.75);
}
.p-record__container {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
.p-record__obj {
  position: absolute;
  right: 0;
  top: calc(10vw / 3.75);
  width: calc(218vw / 3.75);
}
.p-record__heading {
  position: relative;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: center;
  font-size: calc(22vw / 3.75);
  line-height: calc(34 / 22);
  z-index: 10;
  margin-bottom: calc(20vw / 3.75);
}
@media screen and (max-width: 480px) {
  .p-record__heading span {
    font-size: calc(28vw / 3.75);
  }
}
.p-record__text {
  position: relative;
  font-size: calc(18vw / 3.75);
  line-height: calc(40 / 18);
  padding-bottom: calc(30vw / 3.75);
}
.p-record__slider {
  position: relative;
  z-index: 10;
}
.p-record__slider .slick-slide {
  margin-right: calc(10vw / 3.75);
  margin-left: calc(10vw / 3.75);
}
.p-record__slider .slick-slide:nth-of-type(odd) {
  margin-top: calc(30vw / 3.75);
}

.p-changes {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-top: calc(110vw / 3.75);
  margin-top: calc(-80vw / 3.75);
}
.p-changes h3 {
  position: relative;
  text-align: center;
  color: #8C7100;
  font-size: calc(28vw / 3.75);
  line-height: calc(40 / 28);
  padding-top: calc(80vw / 3.75);
  margin-bottom: calc(30vw / 3.75);
}
.p-changes h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: calc(64vw / 3.75);
  background-color: #8C7100;
}
.p-changes__list {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10vw / 3.75);
  margin-bottom: calc(50vw / 3.75);
}
@media screen and (max-width: 480px) {
  .p-changes__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-changes__item {
  position: relative;
  border: 1px solid #8C7100;
  text-align: center;
}
.p-changes__item a {
  width: 100%;
  padding: calc(10vw / 3.75);
  height: calc(120vw / 3.75);
}
.p-changes__item h4 {
  font-size: calc(16vw / 3.75);
  width: 90%;
  margin-inline: auto;
  background-color: #D4C81C;
  color: #fff;
  margin-bottom: calc(10vw / 3.75);
  height: calc(30vw / 3.75);
  border-radius: calc(30vw / 3.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-changes__item p {
  font-size: calc(20vw / 3.75);
  line-height: calc(25 / 20);
}
.p-changes__item p::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: calc(1vw / 3.75);
  width: calc(19vw / 3.75);
  height: calc(7vw / 3.75);
  background-color: #D4C81C;
  -webkit-mask-image: url(../img/top/changeArrow.png);
  mask-image: url(../img/top/changeArrow.png);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.p-change dl {
  text-align: center;
  background-color: #D4C81C;
  padding: calc(20vw / 3.75) 0;
  font-size: calc(24vw / 3.75);
}
.p-change dl dt {
  color: #8C7100;
  font-weight: 700;
  background-color: #fff;
  width: calc(125vw / 3.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: calc(55vw / 3.75);
  margin-bottom: calc(15vw / 3.75);
  border-radius: calc(30vw / 3.75);
  -webkit-box-shadow: 0px 5px 15px -5px #777777;
  box-shadow: 0px 5px 15px -5px #777777;
}
@media screen and (max-width: 1200px) {
  .p-change dl dt {
    margin-inline: auto;
  }
}
.p-change dl dd {
  color: #fff;
  line-height: calc(32 / 24);
}
.p-change__logo {
  display: block;
  max-width: calc(300vw / 3.75);
  margin-inline: auto;
  margin-bottom: calc(10vw / 3.75);
}
.p-change__text01 {
  text-align: center;
  margin-bottom: calc(20vw / 3.75);
  font-size: calc(14vw / 3.75);
}
.p-change__heading {
  background-color: #F5E41C;
  border-radius: calc(10vw / 3.75);
  font-size: calc(20vw / 3.75);
  padding: calc(10vw / 3.75) 0;
  margin-bottom: calc(20vw / 3.75);
  text-align: center;
  color: #000;
}
.p-change__text02 {
  margin-bottom: calc(20vw / 3.75);
  font-size: calc(16vw / 3.75);
  text-align: center;
}
.p-change__column {
  padding-top: calc(20vw / 3.75);
  background-color: #F2F4F7;
  padding-bottom: calc(60vw / 3.75);
}
.p-change__column-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20vw / 3.75);
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .p-change__column-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-change__column-inner p {
  font-size: calc(16vw / 3.75);
  line-height: calc(34 / 16);
}
.p-change__reason {
  background-color: #fff;
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
  position: relative;
  padding: calc(60vw / 3.75) 0;
}
.p-change__reason::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 110px solid transparent;
  border-left: 110px solid transparent;
  border-top: 35px solid #f2f4f7;
  border-bottom: 0;
}
.p-change__figure {
  margin-bottom: calc(20vw / 3.75);
  display: block;
}
.p-change__link {
  background-color: #8C7100;
  color: #fff;
}

.p-parallax {
  display: none;
  background-image: url("../img/top/px.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  height: 140px;
}

.p-links {
  padding: calc(60vw / 3.75) 0;
  background-color: #F2F4F7;
}
.p-links__container {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
.p-links__to {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: calc(40vw / 3.75);
  gap: calc(10vw / 3.75);
}
.p-links__to li {
  border: 1px solid #8C7100;
}
.p-links__to li h3 {
  padding: calc(10vw / 3.75) calc(5vw / 3.75);
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  gap: calc(8vw / 3.75);
  font-size: calc(18vw / 3.75);
  color: #8C7100;
}
.p-links__to li h3::after {
  content: "";
  background-image: url(../img/top/linksArrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: calc(49vw / 3.75);
  height: calc(7.5vw / 3.75);
}
.p-links__heading {
  position: relative;
  text-align: center;
  font-size: calc(20vw / 3.75);
  line-height: calc(29 / 20);
  margin-bottom: calc(30vw / 3.75);
}
@media screen and (max-width: 480px) {
  .p-links__heading {
    padding-top: calc(75vw / 3.75);
  }
}
.p-links__heading::before, .p-links__heading::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(64vw / 3.75);
  background-color: #333333;
}
@media screen and (max-width: 480px) {
  .p-links__heading::before, .p-links__heading::after {
    top: 0;
    left: 50%;
  }
}
.p-links__logos {
  display: -ms-grid;
  display: grid;
  gap: calc(20vw / 3.75);
}
.p-links__logos li {
  text-align: center;
}
.p-links__logos li img {
  height: calc(38vw / 3.75);
  width: auto;
}

@media screen and (min-width: 481px) {
  .p-mainVisual {
    background-image: url(../img/top/tab/mv.png);
    height: calc(430vw / 4.8);
  }
  .p-mainVisual__logo img {
    width: calc(135vw / 4.8);
  }
  .p-mainVisual__texts {
    max-width: calc(415vw / 4.8);
    padding-top: calc(200vw / 4.8);
  }
  .p-mainVisual__texts h2 {
    font-size: calc(22vw / 4.8);
    margin-bottom: calc(15vw / 4.8);
  }
  .p-mainVisual__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr calc(7vw / 4.8) 1fr calc(7vw / 4.8) 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(7vw / 4.8);
  }
  .p-mainVisual__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: calc(11vw / 4.8);
    height: calc(40vw / 4.8);
    line-height: calc(12 / 11);
  }
  .p-mainVisual__item:not(:nth-of-type(2)) dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-voice {
    padding-bottom: calc(30vw / 3.75);
  }
  .p-voice hgroup h2 {
    font-size: calc(35vw / 4.8);
  }
  .p-voice hgroup p {
    font-size: calc(15vw / 4.8);
  }
  .p-voice__slider .slick-slide {
    margin: 0 calc(5vw / 4.8);
  }
  .p-voice__slider .is-slick-arrow {
    width: calc(15vw / 4.8);
  }
  .p-voice__slider .is-slick-next {
    right: calc(-20vw / 4.8);
  }
  .p-voice__slider .is-slick-prev {
    left: calc(-20vw / 4.8);
  }
  .p-voice__item figure figcaption {
    font-size: calc(10vw / 4.8);
    padding: calc(5vw / 4.8) 0;
  }
  .p-voice__item p {
    font-size: calc(11vw / 4.8);
  }
  .p-record {
    padding-top: calc(60vw / 4.8);
  }
  .p-record__container {
    max-width: calc(350vw / 4.8);
    width: calc(100% - 40px);
  }
  .p-record__obj {
    top: 0;
    width: calc(190vw / 4.8);
  }
  .p-record__heading {
    font-size: calc(22vw / 4.8);
  }
}
@media screen and (min-width: 481px) and (max-width: 1200px) {
  .p-record__heading span {
    font-size: calc(22vw / 4.8);
  }
}
@media screen and (min-width: 481px) {
  .p-record__text {
    font-size: calc(12vw / 4.8);
  }
  .p-changes {
    padding-top: calc(95vw / 3.75);
  }
  .p-changes h3 {
    font-size: calc(13vw / 3.75);
    padding-top: calc(50vw / 3.75);
    margin-bottom: calc(20vw / 4.8);
  }
  .p-changes h3::before {
    height: calc(45vw / 4.8);
  }
  .p-changes__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: calc(20vw / 4.8);
  }
  .p-changes__item {
    width: calc(200vw / 4.8);
  }
  .p-changes__item a {
    height: calc(90vw / 4.8);
    padding: calc(5vw / 4.8);
  }
  .p-changes__item h4 {
    width: 100%;
    height: calc(20vw / 4.8);
    font-size: calc(12vw / 4.8);
  }
  .p-changes__item p {
    font-size: calc(10vw / 4.8);
  }
  .p-change dl {
    font-size: calc(16vw / 4.8);
    padding: calc(15vw / 4.8) 0;
  }
  .p-change dl dt {
    height: calc(38vw / 4.8);
    width: calc(105vw / 4.8);
  }
  .p-change__column {
    padding-bottom: calc(30vw / 4.8);
  }
  .p-change__column-inner img {
    width: calc(210vw / 4.8);
  }
  .p-change__column-inner p {
    font-size: calc(10vw / 4.8);
  }
  .p-change__reason {
    max-width: calc(400vw / 4.8);
    padding-top: calc(40vw / 4.8);
    padding-bottom: calc(60vw / 4.8);
  }
  .p-change__logo {
    width: calc(230vw / 4.8);
  }
  .p-change__text01 {
    font-size: calc(10vw / 4.8);
  }
  .p-change__heading {
    font-size: calc(15vw / 4.8);
    margin-bottom: calc(20vw / 4.8);
  }
  .p-change__text02 {
    font-size: calc(12vw / 4.8);
    margin-bottom: calc(10vw / 4.8);
  }
  .p-change__figure {
    width: 70%;
    margin-inline: auto;
    margin-bottom: calc(30vw / 4.8);
  }
  .p-change__link:hover {
    background-color: #fff;
    color: #8C7100;
    border: 1px solid #8C7100;
  }
  .p-parallax {
    display: block;
    height: calc(250vw / 4.8);
  }
  .p-links {
    padding-bottom: calc(50vw / 4.8);
  }
  .p-links__container {
    max-width: calc(350vw / 4.8);
  }
  .p-links__heading {
    font-size: calc(14vw / 4.8);
  }
  .p-links__heading::before, .p-links__heading::after {
    height: 1px;
    width: calc(50vw / 4.8);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .p-links__heading::before {
    left: calc(-35vw / 4.8);
  }
  .p-links__heading::after {
    right: calc(-40vw / 4.8);
  }
  .p-links__to li h3 {
    font-size: calc(15vw / 4.8);
  }
  .p-links__to li h3::after {
    width: calc(30vw / 3.75);
    height: calc(5vw / 3.75);
  }
  .p-links__logos {
    -ms-grid-columns: 1fr calc(10vw / 4.8) 1fr;
    grid-template-columns: 1fr 1fr;
    gap: calc(20vw / 4.8) calc(10vw / 4.8);
  }
  .p-links__logos li img {
    height: calc(22vw / 4.8);
  }
}
@media screen and (min-width: 1201px) {
  .p-mainVisual {
    background-image: url(../img/top/pc/mv.png);
    background-position: center;
    height: 840px;
  }
  .p-mainVisual__logo {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
  }
  .p-mainVisual__logo img {
    left: 0;
    right: unset;
    top: 140px;
    width: 240px;
  }
  .p-mainVisual__texts {
    padding-top: 320px;
    max-width: 880px;
  }
  .p-mainVisual__texts h2 {
    font-size: 4.7rem;
    line-height: 85px;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .p-mainVisual__texts h2 span {
    padding: 0 15px;
  }
  .p-mainVisual__item {
    border-radius: 15px;
    height: 75px;
    font-size: 2.2rem;
    gap: 0;
    line-height: calc(32 / 22);
  }
  .p-voice {
    margin-top: -30px;
    padding-bottom: 70px;
  }
  .p-voice hgroup {
    margin-bottom: 30px;
  }
  .p-voice hgroup h2 {
    font-size: 5.2rem;
    margin-bottom: 10px;
  }
  .p-voice hgroup p {
    font-size: 2rem;
  }
  .p-voice__slider {
    max-width: 965px;
  }
  .p-voice__slider .is-slick-arrow {
    width: 17px;
  }
  .p-voice__slider .is-slick-next {
    right: -20px;
  }
  .p-voice__slider .is-slick-prev {
    left: -20px;
  }
  .p-voice__item figure {
    margin-bottom: 10px;
  }
  .p-voice__item figure figcaption {
    padding: 5px 0;
    font-size: 1.4rem;
  }
  .p-voice__item p {
    font-size: 1.4rem;
  }
  .p-record {
    padding-top: 95px;
  }
  .p-record__container {
    position: relative;
    max-width: 1280px;
  }
  .p-record__heading {
    font-size: 4rem;
    margin-bottom: 60px;
  }
  .p-record__text {
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 80px;
  }
  .p-record__obj {
    width: 390px;
  }
  .p-record__slider .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
  }
  .p-record__slider .slick-slide:nth-of-type(odd) {
    margin-top: 70px;
  }
  .p-changes {
    padding-top: 230px;
    margin-top: -160px;
  }
  .p-changes h3 {
    padding-top: 120px;
    font-size: 3.8rem;
    margin-bottom: 30px;
  }
  .p-changes h3::before {
    height: 100px;
  }
  .p-changes__list {
    max-width: 1080px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
  }
  .p-changes__item:hover {
    border-radius: 10px;
    border-color: #F5E41C;
  }
  .p-changes__item {
    width: 340px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-changes__item h4 {
    font-size: 1.6rem;
    height: 30px;
    margin-bottom: 10px;
  }
  .p-changes__item p {
    font-size: 1.8rem;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  .p-changes__item p::after {
    width: 20px;
    height: 10px;
  }
  .p-changes__item a {
    width: 100%;
    padding: 10px;
    height: 127px;
  }
  .p-changes__item .is-active {
    position: relative;
    border-radius: 10px;
    background-color: #F5E41C;
  }
  .p-changes__item .is-active::before, .p-changes__item .is-active::after {
    content: "";
    position: absolute;
    top: 30%;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
    display: inline-block;
    width: 1px;
    height: 60px;
    background-color: #707070;
    -webkit-transform-origin: top;
    transform-origin: top;
  }
  .p-changes__item .is-active::before {
    left: 30px;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
  .p-changes__item .is-active::after {
    right: 30px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  .p-changes__item .is-active h4 {
    opacity: 0;
    visibility: hidden;
  }
  .p-changes__item .is-active p {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    margin-top: -10px;
  }
  .p-changes__item .is-active p::after {
    background-color: #fff;
  }
  .p-change dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
  }
  .p-change dl dt {
    font-size: 2.4rem;
    width: 125px;
    height: 50px;
    margin-bottom: unset;
  }
  .p-change dl dd {
    font-size: 3.2rem;
  }
  .p-change__column {
    padding: 40px 0 50px;
  }
  .p-change__column-inner {
    max-width: 860px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
  .p-change__column-inner img {
    width: 420px;
  }
  .p-change__column-inner p {
    font-size: 1.6rem;
  }
  .p-change__reason {
    max-width: 860px;
    padding: 60px 0 90px;
  }
  .p-change__logo {
    width: 340px;
    margin-bottom: 20px;
  }
  .p-change__text01 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .p-change__heading {
    padding: 25px 0;
    font-size: 2.4rem;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .p-change__text02 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .p-change__figure {
    margin-bottom: 30px;
  }
  .p-parallax {
    height: 315px;
  }
  .p-links {
    padding-top: 60px;
    padding-bottom: 110px;
  }
  .p-links__heading {
    font-size: 2.4rem;
    line-height: normal;
    margin-bottom: 45px;
    max-width: 1100px;
    margin-inline: auto;
  }
  .p-links__heading::before, .p-links__heading::after {
    width: 180px;
  }
  .p-links__heading::before {
    left: 0px;
  }
  .p-links__heading::after {
    right: 0px;
  }
  .p-links__to {
    max-width: 1080px;
    margin-inline: auto;
    margin-bottom: 85px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
  }
  .p-links__to li h3 {
    padding: 15px;
    font-size: 2rem;
    gap: 10px;
  }
  .p-links__to li h3::after {
    width: 48px;
    height: 7px;
  }
  .p-links__to li img {
    width: 100%;
  }
  .p-links__logos {
    max-width: 1080px;
    margin-inline: auto;
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
  .p-links__logos li img {
    height: 35px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1700px) {
  .p-mainVisual__list {
    -ms-grid-columns: (270px)[2];
    grid-template-columns: repeat(2, 270px);
  }
}
@media screen and (min-width: 1921px) {
  .p-mainVisual {
    height: calc(840vw / 19.2);
  }
}
/*----------------------------------------------------------------------------------------
contact.scss
----------------------------------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
  .p-contact-short {
    display: none;
  }
}
.p-contact-short {
  position: absolute;
  right: 0;
  top: 80px;
  width: 400px;
  background-color: #fff;
  border: 1px solid #F5E41C;
  border-radius: 10px;
  padding: 20px;
}
.p-contact-short .p-contact__intro {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
  margin-left: 50px;
}
.p-contact-short .p-contact__tabs {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  -ms-grid-columns: 110px 5px 110px 5px 110px;
  grid-template-columns: 110px 110px 110px;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 15px;
}
.p-contact-short .p-contact__tab {
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  padding: 7px;
  border-radius: 10px 10px 0px 0px;
  background-color: #C8C9C8;
  color: #fff;
}
.p-contact-short .p-contact__tab.is-active {
  background-color: #F5E41C;
  color: #333333;
}
.p-contact-short .p-contact-form {
  max-width: 315px;
}
.p-contact-short .p-contact-form__inner {
  display: none;
}
.p-contact-short .p-contact-form__inner.is-show {
  display: block;
}
.p-contact-short .p-contact-form__cont {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.p-contact-short .p-contact-form__cont label {
  font-size: 13px;
  text-align: right;
  vertical-align: middle;
}
.p-contact-short .p-contact-form__cont input,
.p-contact-short .p-contact-form__cont select,
.p-contact-short .p-contact-form__cont textarea {
  background-color: #F7F5D6;
  font-size: 12px;
}
.p-contact-short .p-contact-form__cont input[type=text],
.p-contact-short .p-contact-form__cont select {
  height: 35px;
}
.p-contact-short .p-contact-form__cont textarea {
  height: 80px;
}
.p-contact-short .p-contact-form__cont--text, .p-contact-short .p-contact-form__cont--address {
  -ms-grid-columns: 95px auto;
  grid-template-columns: 95px auto;
}
.p-contact-short .p-contact-form__cont--demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact-short .p-contact-form__cont--demo input {
  margin-right: 5px;
}
.p-contact-short .p-contact-form__cont--demo::before {
  content: "";
  width: 95px;
}
.p-contact-short .p-contact-form__cont--pri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 30px;
}
.p-contact-short .p-contact-form__cont--zip {
  -ms-grid-columns: 95px 140px 60px;
  grid-template-columns: 95px 140px 60px;
}
.p-contact-short .p-contact-form__cont--zip button {
  background-color: #C8C9C8;
  border: 1px solid #DDDDDD;
  font-size: 10px;
  font-weight: 400;
  display: block;
  text-align: center;
  height: 35px;
}
.p-contact-short .p-contact-form__cont--pref {
  -ms-grid-columns: 95px 140px;
  grid-template-columns: 95px 140px;
}
.p-contact-short .p-contact-form__cont:not(:last-of-type):not(:nth-last-of-type(2)):not(:nth-last-of-type(3)) {
  margin-bottom: 6px;
}
.p-contact-short .p-contact-form__cont:nth-last-of-type(3) {
  margin-bottom: 15px;
}
.p-contact-short .p-contact-form__cont:nth-last-of-type(2), .p-contact-short .p-contact-form__cont:last-of-type {
  margin-bottom: 20px;
}
.p-contact-short .p-contact-form__cont-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-contact-short .p-contact-form__cont-column input,
.p-contact-short .p-contact-form__cont-column select {
  max-width: 105px;
  width: 100%;
}
.p-contact-short .p-contact-form__btn {
  color: #333333;
  background-color: #F5E41C;
  border: unset;
  display: block;
  max-width: 285px;
  width: 100%;
  margin-left: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 30px;
  height: 40px;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.p-contact-short .p-contact-form__telImg {
  text-align: center;
  margin-left: 30px;
}

.p-contact-large {
  padding: calc(60vw / 3.75) 0;
}
.p-contact-large .p-contact h2 {
  font-style: italic;
  letter-spacing: calc(2vw / 3.75);
  font-weight: 500;
  font-size: calc(18vw / 3.75);
  margin-bottom: calc(30vw / 3.75);
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
.p-contact-large .p-contact hgroup {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
  margin-bottom: calc(30vw / 3.75);
}
.p-contact-large .p-contact hgroup h3 {
  font-size: calc(20vw / 3.75);
  margin-bottom: calc(15vw / 3.75);
}
.p-contact-large .p-contact hgroup p {
  font-size: calc(14vw / 3.75);
}
.p-contact-large .p-contact__tabs {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(5vw / 3.75);
  -ms-grid-columns: calc(110vw / 3.75) calc(5vw / 3.75) calc(110vw / 3.75) calc(5vw / 3.75) calc(110vw / 3.75);
  grid-template-columns: calc(110vw / 3.75) calc(110vw / 3.75) calc(110vw / 3.75);
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: calc(15vw / 3.75);
}
.p-contact-large .p-contact__tab {
  cursor: pointer;
  text-align: center;
  font-size: calc(16vw / 3.75);
  padding: calc(7vw / 3.75);
  border-radius: calc(10vw / 3.75) calc(10vw / 3.75) 0 0;
  background-color: #C8C9C8;
  color: #fff;
}
.p-contact-large .p-contact__tab.is-active {
  background-color: #F5E41C;
  color: #333333;
}
.p-contact-large .p-contact-form {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
.p-contact-large .p-contact-form__inner {
  display: none;
}
.p-contact-large .p-contact-form__inner.is-show {
  display: block;
}
.p-contact-large .p-contact-form__cont {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(10vw / 3.75);
}
.p-contact-large .p-contact-form__cont label {
  font-size: calc(13vw / 3.75);
  text-align: right;
  vertical-align: middle;
}
.p-contact-large .p-contact-form__cont input,
.p-contact-large .p-contact-form__cont select,
.p-contact-large .p-contact-form__cont textarea {
  background-color: #F7F5D6;
  font-size: calc(12vw / 3.75);
}
.p-contact-large .p-contact-form__cont input[type=text],
.p-contact-large .p-contact-form__cont select {
  height: calc(35vw / 3.75);
}
.p-contact-large .p-contact-form__cont textarea {
  height: calc(80vw / 3.75);
}
.p-contact-large .p-contact-form__cont--text, .p-contact-large .p-contact-form__cont--address {
  -ms-grid-columns: calc(110vw / 3.75) calc(225vw / 3.75);
  grid-template-columns: calc(110vw / 3.75) calc(225vw / 3.75);
}
.p-contact-large .p-contact-form__cont--demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact-large .p-contact-form__cont--demo input {
  margin-right: 5px;
}
.p-contact-large .p-contact-form__cont--demo::before {
  content: "";
  width: calc(110vw / 3.75);
}
.p-contact-large .p-contact-form__cont--pri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: calc(30vw / 3.75);
  border-top: 1px solid #C8C9C8;
}
.p-contact-large .p-contact-form__cont--zip {
  -ms-grid-columns: calc(110vw / 3.75) calc(130vw / 3.75) calc(60vw / 3.75);
  grid-template-columns: calc(110vw / 3.75) calc(130vw / 3.75) calc(60vw / 3.75);
}
.p-contact-large .p-contact-form__cont--zip button {
  background-color: #C8C9C8;
  border: 1px solid #DDDDDD;
  font-size: calc(10vw / 3.75);
  font-weight: 400;
  display: block;
  text-align: center;
  height: calc(35vw / 3.75);
}
.p-contact-large .p-contact-form__cont--pref {
  -ms-grid-columns: calc(110vw / 3.75) calc(130vw / 3.75);
  grid-template-columns: calc(110vw / 3.75) calc(130vw / 3.75);
}
.p-contact-large .p-contact-form__cont:not(:last-of-type):not(:nth-last-of-type(2)) {
  margin-bottom: calc(8vw / 3.75);
}
.p-contact-large .p-contact-form__cont:nth-last-of-type(2), .p-contact-large .p-contact-form__cont:last-of-type {
  margin-bottom: calc(40vw / 3.75);
}
.p-contact-large .p-contact-form__cont-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10vw / 3.75);
}
.p-contact-large .p-contact-form__cont-column input,
.p-contact-large .p-contact-form__cont-column select {
  width: 100%;
}
.p-contact-large .p-contact-form__btn {
  -webkit-appearance: none;
  color: #333333;
  background-color: #F5E41C;
  border: unset;
  text-align: center;
}
.p-contact-large .p-contact-form__btn input[type=submit] {
  background-color: unset;
  border: unset;
  height: inherit;
}

@media screen and (min-width: 481px) {
  .p-contact-large {
    padding: calc(50vw / 4.8) 0;
  }
  .p-contact-large__container {
    max-width: calc(450vw / 4.8);
    margin-inline: auto;
  }
  .p-contact-large h2 {
    font-size: calc(20vw / 4.8);
    width: 90%;
    margin-inline: auto;
  }
  .p-contact-large hgroup {
    width: 90%;
    margin-inline: auto;
  }
  .p-contact-large .p-contact hgroup h3 {
    font-size: calc(19vw / 4.8);
  }
  .p-contact-large .p-contact hgroup p {
    font-size: calc(13vw / 4.8);
  }
  .p-contact-large .p-contact input[type=text],
  .p-contact-large .p-contact select {
    height: calc(35vw / 4.8);
  }
  .p-contact-large .p-contact textarea {
    height: calc(100vw / 4.8);
  }
  .p-contact-large .p-contact__tabs {
    -ms-grid-columns: calc(120vw / 4.8) calc(120vw / 4.8) calc(120vw / 4.8);
    grid-template-columns: calc(120vw / 4.8) calc(120vw / 4.8) calc(120vw / 4.8);
  }
  .p-contact-large .p-contact__tab {
    font-size: calc(12vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont label {
    font-size: calc(12vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont--text, .p-contact-large .p-contact-form__cont--address {
    -ms-grid-columns: calc(110vw / 4.8) calc(260vw / 4.8);
    grid-template-columns: calc(110vw / 4.8) calc(260vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont--demo::before {
    content: "";
    width: calc(110vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont--zip {
    -ms-grid-columns: calc(110vw / 4.8) calc(160vw / 4.8) calc(85vw / 4.8);
    grid-template-columns: calc(110vw / 4.8) calc(160vw / 4.8) calc(85vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont--zip button {
    height: calc(35vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont--pref {
    -ms-grid-columns: calc(110vw / 4.8) calc(160vw / 4.8);
    grid-template-columns: calc(110vw / 4.8) calc(160vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont--pri {
    padding-top: calc(30vw / 4.8);
  }
  .p-contact-large .p-contact-form__cont:nth-last-of-type(2), .p-contact-large .p-contact-form__cont:last-of-type {
    margin-bottom: calc(30vw / 4.8);
  }
}
@media screen and (min-width: 1201px) {
  .p-contact-large {
    padding: 70px 0 120px;
  }
  .p-contact-large__container {
    max-width: 1080px;
  }
  .p-contact-large .p-contact h2 {
    font-size: 3rem;
    margin-bottom: 70px;
  }
  .p-contact-large .p-contact hgroup {
    text-align: center;
    margin-bottom: 50px;
  }
  .p-contact-large .p-contact hgroup h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .p-contact-large .p-contact hgroup p {
    font-size: 1.4rem;
  }
  .p-contact-large .p-contact__tabs {
    -ms-grid-columns: 260px 5px 260px 5px 260px;
    grid-template-columns: repeat(3, 260px);
    gap: 5px;
  }
  .p-contact-large .p-contact__tab {
    font-size: 2rem;
    border-radius: 10px 10px 0 0;
    padding: 15px;
  }
  .p-contact-large .p-contact-form__cont {
    margin-left: 75px;
    gap: 50px;
  }
  .p-contact-large .p-contact-form__cont label {
    text-align: left;
    font-size: 1.6rem;
  }
  .p-contact-large .p-contact-form__cont input[type=text],
  .p-contact-large .p-contact-form__cont select {
    height: 45px;
    font-size: 1.6rem;
  }
  .p-contact-large .p-contact-form__cont textarea {
    height: 150px;
    font-size: 1.6rem;
  }
  .p-contact-large .p-contact-form__cont--text, .p-contact-large .p-contact-form__cont--address {
    -ms-grid-columns: 120px 590px;
    grid-template-columns: 120px 590px;
  }
  .p-contact-large .p-contact-form__cont--demo::before {
    content: "";
    width: 120px;
  }
  .p-contact-large .p-contact-form__cont--pri {
    gap: 10px;
    margin-left: unset;
  }
  .p-contact-large .p-contact-form__cont--zip {
    -ms-grid-columns: 120px 200px 70px;
    grid-template-columns: 120px 200px 70px;
  }
  .p-contact-large .p-contact-form__cont--zip button {
    height: 45px;
    font-size: 1.6rem;
    margin-left: -30px;
  }
  .p-contact-large .p-contact-form__cont--pref {
    -ms-grid-columns: 120px 200px;
    grid-template-columns: 120px 200px;
  }
  .p-contact-large .p-contact-form__cont--pri {
    padding-top: 30px;
  }
  .p-contact-large .p-contact-form__cont:not(:last-of-type):not(:nth-last-of-type(2)) {
    margin-bottom: 15px;
  }
  .p-contact-large .p-contact-form__cont:nth-last-of-type(2), .p-contact-large .p-contact-form__cont:last-of-type {
    margin-bottom: 55px;
  }
  .p-contact-large .p-contact-form__cont-column {
    gap: 20px;
  }
}
/*----------------------------------------------------------------------------------------
function.scss
----------------------------------------------------------------------------------------*/
.p-function {
  padding: calc(50vw / 3.75) 0;
}
.p-function__container {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}
.p-function__headings {
  margin-bottom: calc(20vw / 3.75);
}
.p-function__headings h3 {
  text-align: center;
  font-size: calc(13vw / 3.75);
  padding: calc(7vw / 3.75) 0;
  margin-bottom: calc(3vw / 3.75);
  color: #fff;
  background-color: #D4C81C;
}
.p-function__headings img {
  height: calc(80vw / 3.75);
}
.p-function__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(20vw / 3.75);
}
.p-function__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(20vw / 3.75);
}
@media screen and (max-width: 1023px) {
  .p-function__dl dt {
    margin-bottom: calc(20vw / 3.75);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.p-function__dl dt img {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.p-function__dl dd h4 {
  color: #8C7100;
  font-weight: 600;
  font-size: calc(15vw / 3.75);
  margin-bottom: calc(10vw / 3.75);
}
.p-function__dl dd p {
  font-size: calc(12vw / 3.75);
  line-height: calc(20 / 13);
}
.p-function__lists {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(20vw / 3.75);
  border: 1px solid #8C7100;
  padding: calc(15vw / 3.75);
  margin-bottom: calc(30vw / 3.75);
}
.p-function__lists-heading {
  background-color: #8C7100;
  font-size: calc(13vw / 3.75);
  border-radius: calc(5vw / 3.75);
  padding: calc(5vw / 3.75) calc(5vw / 3.75) calc(5vw / 3.75) calc(15vw / 3.75);
  color: #fff;
}
.p-function__list {
  width: 95%;
  margin-inline: auto;
  padding-top: calc(10vw / 3.75);
  display: -ms-grid;
  display: grid;
  gap: calc(5vw / 3.75);
}
.p-function__item {
  font-size: calc(11vw / 3.75);
}
.p-function__item::before {
  content: "・";
}
.p-function__orka ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(20vw / 3.75);
  margin-bottom: calc(50vw / 3.75);
}
.p-function__btn {
  position: relative;
  border: 1px solid #707070;
  background-color: #fff;
}
.p-function__btn::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4%;
  content: "";
  background-image: url(../img/function/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: calc(28vw / 3.75);
  height: calc(13vw / 3.75);
}

.p-function:nth-of-type(odd) {
  background-color: #F8F7DD;
}

.p-function-order__imgs {
  text-align: center;
  margin-bottom: calc(40vw / 3.75);
}
.p-function-order__imgs img:not(:nth-of-type(2)) {
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.p-function-order__imgs img:nth-of-type(2) {
  width: calc(30vw / 3.75);
}
@media screen and (max-width: 1023px) {
  .p-function-order__imgs img:nth-of-type(2) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: calc(-15vw / 3.75) 0;
  }
}

.p-function-ef-mainImg {
  margin-bottom: calc(20vw / 3.75);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
  .p-function {
    padding: 110px 0;
  }
  .p-function__container {
    max-width: 1080px;
  }
  .p-function__headings {
    margin-bottom: 30px;
  }
  .p-function__headings h3 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    padding: 15px 0;
  }
  .p-function__headings img {
    height: auto;
  }
  .p-function__detail {
    gap: 30px;
  }
  .p-function__dl {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 950px;
    margin-inline: auto;
    gap: 65px;
    margin-bottom: 40px;
  }
  .p-function__dl dt {
    width: 485px;
  }
  .p-function__dl dd {
    width: 400px;
    margin-top: 30px;
  }
  .p-function__dl dd h4 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .p-function__dl dd p {
    font-size: 1.6rem;
    line-height: 30px;
  }
  .p-function__lists {
    padding: 30px;
    margin-bottom: 50px;
    gap: 30px;
  }
  .p-function__lists-heading {
    font-size: 2rem;
    padding: 10px 25px;
    border-radius: 10px;
  }
  .p-function__list {
    padding-top: 20px;
    gap: 20px 60px;
    -ms-grid-columns: 350px 60px 350px;
    grid-template-columns: repeat(2, 350px);
  }
  .p-function__item {
    font-size: 1.8rem;
  }
  .p-function__orka {
    max-width: 950px;
    margin-inline: auto;
  }
  .p-function__orka ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    gap: 20px;
    margin-bottom: 50px;
  }
  .p-function__btn::after {
    width: 30px;
    height: 15px;
  }
  .p-function-order__imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 60px;
  }
  .p-function-order__imgs img:not(:nth-of-type(2)) {
    max-width: 500px;
  }
  .p-function-order__imgs img:nth-of-type(2) {
    width: 40px;
  }
  .p-function-ef-mainImg {
    margin-bottom: 50px;
  }
}
/*----------------------------------------------------------------------------------------
security.scss
----------------------------------------------------------------------------------------*/
.p-security-container {
  max-width: 92vw;
  margin-inline: auto;
}

.p-security-mainVisual h3 {
  margin-bottom: unset;
}

.p-security-headings {
  padding-top: calc(50vw / 3.75);
  margin-bottom: calc(20vw / 3.75);
}
.p-security-headings h3 {
  text-align: center;
  font-size: calc(13vw / 3.75);
  padding: calc(7vw / 3.75) 0;
  margin-bottom: calc(3vw / 3.75);
  color: #fff;
  background-color: #D4C81C;
}
.p-security-headings img {
  height: calc(80vw / 3.75);
}

.p-security-img {
  margin-bottom: calc(30vw / 3.75);
}

.p-security-cont__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(25vw / 3.75);
}
.p-security-cont__dl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(10.5vw / 3.75);
  letter-spacing: 1px;
  font-weight: 400;
  border: 1px solid #8C7100;
  border-radius: 0 30px 30px 0;
}
.p-security-cont__dl--btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(10vw / 3.75);
  width: calc(15vw / 3.75);
  height: calc(15vw / 3.75);
  border-radius: 50%;
  background-color: #8C7100;
}
.p-security-cont__dl--btn::before, .p-security-cont__dl--btn::after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-security-cont__dl--btn::before {
  width: calc(5vw / 3.75);
  height: 1px;
}
.p-security-cont__dl--btn::after {
  width: calc(1vw / 3.75);
  height: 1px;
  opacity: 1;
}
.p-security-cont__dl.is-open span::after {
  opacity: 0;
}
.p-security-cont__dt {
  padding: calc(7vw / 3.75) calc(15vw / 3.75) calc(7vw / 3.75) calc(7vw / 3.75);
  width: 30%;
  background-color: #8C7100;
  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  margin-top: -1px;
  margin-bottom: -1px;
  font-style: italic;
}
.p-security-cont__dt span {
  font-size: 1.2em;
  vertical-align: baseline;
}
.p-security-cont__dd {
  color: #8C7100;
  font-weight: 700;
  padding: calc(7vw / 3.75) calc(7vw / 3.75) calc(7vw / 3.75) calc(15vw / 3.75);
  width: 70%;
}
.p-security-cont__body {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.p-security-cont__text {
  width: 90%;
  margin-inline: auto;
  font-size: calc(11vw / 3.75);
  line-height: calc(20 / 11);
  padding-top: calc(15vw / 3.75);
}

@media screen and (min-width: 1024px) {
  .p-security-container {
    max-width: 1080px;
  }
  .p-security-headings {
    padding-top: 110px;
    margin-bottom: 70px;
  }
  .p-security-headings h3 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    padding: 15px 0;
  }
  .p-security-headings img {
    height: auto;
  }
  .p-security-img {
    margin-bottom: 70px;
  }
  .p-security-cont__list {
    gap: 30px;
  }
  .p-security-cont__dl {
    font-size: 2.1rem;
    cursor: pointer;
  }
  .p-security-cont__dl--btn {
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .p-security-cont__dl--btn::before {
    width: 15px;
  }
  .p-security-cont__dl--btn::after {
    height: 15px;
    width: 1px;
  }
  .p-security-cont__dt {
    padding: 15px 35px 15px 15px;
    width: 25%;
  }
  .p-security-cont__dd {
    padding: 15px;
    width: 75%;
  }
  .p-security-cont__text {
    font-size: 1.4rem;
    line-height: 27px;
    padding-top: 30px;
  }
}
/*----------------------------------------------------------------------------------------
cost.scss
----------------------------------------------------------------------------------------*/
.p-cost-container {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}

.p-cost-fixed-menu {
  position: fixed;
  z-index: 100;
  bottom: 0;
  width: 100%;
  background-color: #8C7100;
  padding: calc(15vw / 3.75);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}
.p-cost-fixed-menu__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(10vw / 3.75);
}
.p-cost-fixed-menu__column h3 {
  padding: calc(5vw / 3.75) calc(10vw / 3.75);
  background-color: rgba(245, 228, 28, 0.2);
  font-size: calc(14vw / 3.75);
}
.p-cost-fixed-menu__column ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(5vw / 3.75);
  font-size: calc(12vw / 3.75);
}
.p-cost-fixed-menu.is-hide {
  opacity: 0;
  visibility: hidden;
}

.p-cost-detail {
  margin-bottom: calc(30vw / 3.75);
}
.p-cost-detail__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10vw / 3.75);
}
.p-cost-detail__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #D4C81C;
  border-radius: 5px;
  width: 20%;
}
.p-cost-detail__heading h3 {
  font-size: calc(12vw / 3.75);
  color: #fff;
  text-align: center;
}
.p-cost-detail__heading h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/cost/money.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(22vw / 3.75);
  height: calc(22vw / 3.75);
  margin-right: calc(3vw / 3.75);
}
.p-cost-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: calc(7vw / 3.75);
}
.p-cost-detail__item {
  padding-left: calc(10vw / 3.75);
}
.p-cost-detail__item:nth-of-type(1) {
  padding-bottom: calc(7vw / 3.75);
  border-bottom: 1px dotted #707070;
}
.p-cost-detail__item:nth-of-type(2) span:nth-of-type(2) {
  padding-left: calc(15vw / 3.75);
}
.p-cost-detail__text--middle {
  font-size: calc(9.5vw / 3.75);
  font-weight: 700;
}
.p-cost-detail__text--larger {
  font-size: calc(18vw / 3.75);
  font-weight: 600;
}
.p-cost-detail__text--largest {
  font-size: calc(26vw / 3.75);
  font-weight: 700;
}
.p-cost-detail__text--small {
  font-size: calc(8vw / 3.75);
  font-weight: 700;
}

.p-cost-form h4 {
  background-color: #F8F7DD;
  border-radius: calc(10vw / 3.75);
  padding: calc(10vw / 3.75) calc(10vw / 3.75) calc(10vw / 3.75) calc(15vw / 3.75);
  font-weight: 700;
  font-size: calc(12vw / 3.75);
  margin-bottom: calc(15vw / 3.75);
}
.p-cost-form__cont--multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px #707070 dotted;
}
.p-cost-form__cont--multi:nth-of-type(2) {
  margin-bottom: calc(10vw / 3.75);
}
.p-cost-form__cont--multi:nth-of-type(5) {
  border-top: 1px dotted #707070;
}
.p-cost-form__cont--single {
  background-color: #F2F4F7;
  padding: calc(10vw / 3.75);
  padding-left: calc(50vw / 3.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: calc(5vw / 3.75);
}
.p-cost-form__cont--single input[type=checkbox] {
  position: relative;
  width: calc(18vw / 3.75);
  height: calc(18vw / 3.75);
  border: 1px solid #707070;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: unset;
}
.p-cost-form__cont--single input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: calc(2vw / 3.75);
  left: calc(7vw / 3.75);
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  width: calc(5vw / 3.75);
  height: calc(10vw / 3.75);
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.p-cost-form__cont--single input[type=text] {
  height: calc(20vw / 3.75);
  width: calc(150vw / 3.75);
  margin-top: calc(5vw / 3.75);
  margin-left: calc(25vw / 3.75);
  padding: calc(5vw / 3.75);
}
.p-cost-form__cont--single label {
  font-size: calc(11vw / 3.75);
  font-weight: 700;
  margin-top: calc(2vw / 3.75);
}
.p-cost-form__cont--single label span {
  margin-top: calc(5vw / 3.75);
  font-weight: 500;
  line-height: calc(18 / 11);
}
.p-cost-form__cont--single:nth-of-type(3) {
  margin-bottom: calc(5vw / 3.75);
}
.p-cost-form__cont--single:nth-of-type(4) {
  margin-bottom: calc(10vw / 3.75);
}
.p-cost-form__label01 {
  width: 35%;
  background-color: #F2F4F7;
  padding: calc(15vw / 3.75) calc(10vw / 3.75);
  font-size: calc(11vw / 3.75);
}
.p-cost-form__label02 {
  font-size: calc(11vw / 3.75);
  margin-left: calc(5vw / 3.75);
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  vertical-align: middle;
}
.p-cost-form__label02 span {
  margin-left: 8vw;
  font-weight: 500;
}
.p-cost-form__text {
  padding: calc(10vw / 3.75) calc(15vw / 3.75);
}
.p-cost-form__text input {
  font-size: calc(12vw / 3.75);
  height: calc(30vw / 3.75);
  width: calc(100vw / 3.75);
  padding: 5px;
}
.p-cost-form__text span {
  font-size: calc(12vw / 3.75);
  margin-left: calc(5vw / 3.75);
  margin-bottom: calc(2vw / 3.75);
  vertical-align: bottom;
}
.p-cost-form__checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(10vw / 3.75);
  padding: calc(15vw / 3.75);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.p-cost-form__checks--select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(5vw / 3.75);
  margin-top: calc(5vw / 3.75);
}
.p-cost-form__checks--select div {
  font-size: calc(11vw / 3.75);
}
.p-cost-form__checks--select select {
  font-size: calc(11vw / 3.75);
}
.p-cost-form__checks-text input[type=checkbox] {
  position: relative;
  width: calc(18vw / 3.75);
  height: calc(18vw / 3.75);
  border: 1px solid #707070;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: unset;
}
.p-cost-form__checks-text input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: calc(2vw / 3.75);
  left: calc(7vw / 3.75);
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  width: calc(5vw / 3.75);
  height: calc(10vw / 3.75);
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.p-cost-form__checks-text input[type=text] {
  height: calc(20vw / 3.75);
  width: calc(150vw / 3.75);
  margin-top: calc(5vw / 3.75);
  margin-left: calc(25vw / 3.75);
  padding: calc(5vw / 3.75);
}
.p-cost-form__btn {
  margin-top: calc(30vw / 3.75);
}
.p-cost-form__btn a {
  background-color: #F5E41C;
}

@media screen and (min-width: 1024px) {
  .p-cost-container {
    max-width: 860px;
  }
  .p-cost-detail {
    margin-bottom: 70px;
  }
  .p-cost-detail__heading h3 {
    font-size: 2.4rem;
  }
  .p-cost-detail__heading h3::before {
    width: 52px;
    height: 52px;
    margin-right: 10px;
  }
  .p-cost-detail__column {
    gap: 15px;
  }
  .p-cost-detail__text--small {
    font-size: 1.4rem;
  }
  .p-cost-detail__text--middle {
    font-size: 2rem;
  }
  .p-cost-detail__text--larger {
    font-size: 3.2rem;
  }
  .p-cost-detail__text--largest {
    font-size: 6.4rem;
  }
  .p-cost-detail__list {
    gap: 15px;
  }
  .p-cost-detail__item {
    padding-left: 20px;
  }
  .p-cost-detail__item:nth-of-type(1) {
    padding-bottom: 15px;
  }
  .p-cost-detail__item:nth-of-type(2) span:nth-of-type(2) {
    padding-left: 30px;
  }
  .p-cost-form h4 {
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .p-cost-form__cont--single {
    gap: 15px;
    padding: 20px 20px 20px 200px;
  }
  .p-cost-form__cont--single input[type=checkbox] {
    width: 36px;
    height: 36px;
  }
  .p-cost-form__cont--single input[type=checkbox]:checked:before {
    top: 5px;
    left: 12px;
    width: 10px;
    height: 20px;
  }
  .p-cost-form__cont--single input[type=text] {
    height: 36px;
    width: 400px;
    margin-top: 0;
    margin-left: 50px;
    padding: 5px;
  }
  .p-cost-form__cont--single label {
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .p-cost-form__cont--single label span {
    margin-top: 8px;
  }
  .p-cost-form__cont--multi:nth-of-type(2) {
    margin-bottom: 15px;
  }
  .p-cost-form__label01 {
    width: 235px;
    font-size: 1.6rem;
    padding: 30px;
  }
  .p-cost-form__label02 span {
    margin-left: 50px;
  }
  .p-cost-form__text {
    padding: 15px 20px;
  }
  .p-cost-form__text input {
    width: 100px;
    height: 40px;
    font-size: 1.6rem;
  }
  .p-cost-form__text span {
    font-size: 1.6rem;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .p-cost-form__checks {
    padding: 30px;
    gap: 15px;
  }
  .p-cost-form__checks--select {
    gap: 10px;
    margin-top: 10px;
    margin-left: 50px;
  }
  .p-cost-form__checks--select div {
    font-size: 1.4rem;
  }
  .p-cost-form__checks--select select {
    font-size: 1.4rem;
  }
  .p-cost-form__checks-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-cost-form__checks-text input[type=checkbox] {
    width: 36px;
    height: 36px;
  }
  .p-cost-form__checks-text input[type=checkbox]:checked:before {
    top: 5px;
    left: 12px;
    width: 10px;
    height: 20px;
  }
  .p-cost-form__checks-text input[type=text] {
    height: 36px;
    width: 400px;
    margin-top: 0;
    margin-left: 50px;
    padding: 5px;
  }
  .p-cost-form__checks-text label {
    font-size: 1.6rem;
    margin-left: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .p-cost-form__btn {
    margin-top: 70px;
  }
  .p-cost-fixed-menu {
    padding: 15px;
  }
  .p-cost-fixed-menu__column {
    gap: 20px;
  }
  .p-cost-fixed-menu__column h3 {
    padding: 15px 30px;
    font-size: 2rem;
  }
  .p-cost-fixed-menu__column ul {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    gap: 20px;
    font-size: 2.2rem;
  }
}
/*----------------------------------------------------------------------------------------
archives.scss
----------------------------------------------------------------------------------------*/
.p-archives-container {
  max-width: calc(345vw / 3.75);
  margin-inline: auto;
}

.p-archives__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(15vw / 3.75);
  padding-bottom: calc(15vw / 3.75);
  border-bottom: 1px solid #969696;
}
.p-archives__list:not(:first-of-type) {
  padding-top: calc(30vw / 3.75);
}
.p-archives__list:last-of-type {
  margin-bottom: calc(30vw / 3.75);
}
.p-archives__img {
  position: relative;
  width: 90%;
  margin-inline: auto;
}
.p-archives__img a {
  width: 100%;
}
.p-archives__img img {
  width: 100%;
}
.p-archives__img--new {
  position: absolute;
  font-weight: 700;
  top: 0;
  left: 0;
  padding: calc(5vw / 3.75) calc(10vw / 3.75);
  background-color: #F5E41C;
  font-size: calc(12vw / 3.75);
}
.p-archives__texts {
  width: 90%;
  margin-inline: auto;
}
.p-archives__heading {
  font-size: calc(14vw / 3.75);
  margin-bottom: calc(5vw / 3.75);
}
.p-archives__excerpt {
  font-size: calc(12vw / 3.75);
  margin-bottom: calc(15vw / 3.75);
}
.p-archives__other {
  font-size: calc(11vw / 3.75);
}
.p-archives__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(10vw / 3.75);
}
.p-archives__nav a img {
  width: calc(52vw / 3.75);
  height: calc(52vw / 3.75);
}

@media screen and (min-width: 1024px) {
  .p-archives-container {
    max-width: 850px;
  }
  .p-archives__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 30px;
    gap: 35px;
  }
  .p-archives__list:not(:first-of-type) {
    padding-top: 30px;
  }
  .p-archives__list:last-of-type {
    margin-bottom: 50px;
  }
  .p-archives__img {
    width: 310px;
    margin-left: 70px;
  }
  .p-archives__img--new {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
  .p-archives__texts {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .p-archives__heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .p-archives__excerpt {
    font-size: 1.6rem;
    margin-bottom: 45px;
  }
  .p-archives__other {
    font-size: 1.6rem;
  }
  .p-archives__nav {
    gap: 15px;
  }
  .p-archives__nav a img {
    width: 50px;
    height: 50px;
  }
}
/*----------------------------------------------------------------------------------------
none.scss
----------------------------------------------------------------------------------------*/
@media (max-width: 480px) {
  .u-sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}
@media (min-width: 481px) {
  .u-tab-none {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .u-pc-other-none {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .u-pc-unique-none {
    display: none !important;
  }
}
/*----------------------------------------------------------------------------------------
shaft.scss
----------------------------------------------------------------------------------------*/
.u-shaft-y-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*----------------------------------------------------------------------------------------
margin.scss
----------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------
font.scss
----------------------------------------------------------------------------------------*/
.u-roboto {
  font-family: "Roboto Mono", serif;
  font-weight: 300;
}