@charset "UTF-8";
/*
  Theme Name: pondesign
*/

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

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

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

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

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

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

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

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

select::-ms-value {
  color: currentColor;
}

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

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

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

:root {
  --color-head: #FFFFFF;
  --color-section: #333333;
  --color-bg-section: #FFFFFF;
  --color-bg-category: #E8E8E8;
  --color-bg-breadcrumb: #E8E8E8;
  --color-bg-works: #F0F0F0;
  --color-bg-recruit: #F7F7F7;
  --color-bg-contact: #F7F7F7;
  --color-title: #391E88;
  --color-bg-line: #F5F534;
  --color-bg-header: transparent;
  --color-bg-header-fixed: #21054D;
  --color-bg-header-nav-top: #7633A4;
  --color-bg-header-nav-bottom: #250D65;
  --color-bg-button-left: #7633A4;
  --color-bg-button-right: #250D65;
  --color-copyright: #A798B7;
  --color-bg-footer: #120E19;
  --color-border: #707070;
  --color-tab-border: #DDDDDD;
  --color-recruit-border: #B8AED5;
  --color-article-border: #B8AED5;
  --color-article-link-hover: rgba(224,213,255,0.50);
  --color-form-border: #AAAAAA;
  --color-form-required: #391E88;
  --color-form-placeholder: #333333;
}

.container {
  width: 100%;
  margin: 0 auto;
}

:root {
  --font-family-head: "Montserrat", sans-serif;
  --font-family-base: "hiragino-kaku-gothic-pron", sans-serif;
  --font-awesome: "Font Awesome 6 Free";
}

html {
  font-size: 18px;
  line-height: 1rem;
  letter-spacing: 0.05em;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-bg-base);
  color: var(--color-section);
}

/*fadeIn*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*pathmove*/
@keyframes pathmove {
  0% {
    height: 80px;
    bottom: -86px;
    opacity: 0;
  }
  80% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -86px;
    opacity: 0;
  }
}
/* break point */
.br_sp {
  display: none;
}

@media screen and (max-width: 1025px) {
  .br_sp {
    display: block;
  }
}
.c-button {
  padding: 18px 85px;
  color: var(--color-head);
  text-decoration: none;
  text-align: center;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--color-bg-button-left), var(--color-bg-button-right));
  font-family: var(--font-family-head);
  font-weight: bold;
  font-size: 0.78rem;
  line-height: 1.09rem;
  position: relative;
  text-transform: uppercase;
}
.c-button span {
  position: relative;
}
.c-button::after {
  content: '\f0da';
  font-family: var(--font-awesome);
  font-weight: 700;
  position: absolute;
  top: 1.0rem;
  right: 1.2rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.c-button::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(-90deg, var(--color-bg-button-left), var(--color-bg-button-right));
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.c-button:hover::before {
  opacity: 0;
}
.c-button:hover::after {
  right: 1.0rem;
}

.c-toggle {
  display: none;
}

@media screen and (max-width: 1025px) {
  .c-toggle {
    display: block;
    width: 44px;
    height: 44px;
    position: absolute;
    z-index: 1010;
  }
  .c-toggle span {
    display: block;
    width: 34px;
    height: 2px;
    background-color: var(--color-head);
    border-radius: 1px;
    position: absolute;
    z-index: 1011;
    left: 6px;
  }
  .c-toggle :nth-child(1) {
    top: 14px;
  }
  .c-toggle :nth-child(2) {
    top: 21px;
  }
  .c-toggle :nth-child(3) {
    top: 28px;
  }
}

.c-nav {
  list-style: none;
}

.c-nav li {
  display: inline-block;
}

.c-nav li a {
  cursor: pointer;
  text-decoration: none;
  color: var(--color-head);
  font-family: var(--font-family-head);
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
}

.c-nav li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -5%;
  width: 110%;
  height: 1px;
  border-radius: 0.5px;
  background-color: var(--color-head);
  transition: all 0.3s;
  transform: scaleX(0);
  transform-origin: left top;
}

.c-nav li a:hover::after {
  transform: scaleX(1);
}

.c-scroll {
  position: absolute;
  bottom: 150px;
  right: 37px;
  z-index: 700;
}
.c-scroll span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-head);
  font-family: var(--font-family-head);
  font-size: 0.67rem;
  line-height: 1em;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  z-index: 701;
  text-transform: uppercase;
}
.c-scroll ::after {
  content: "";
  position: absolute;
  z-index: 702;
  bottom: -86px;
  left: 0.5em;
  width: 1px;
  height: 80px;
  background-color: var(--color-head);
  animation-name: pathmove;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}

.c-title {
  font-family: var(--font-family-head);
  color: var(--color-title);
  text-align: center;
  font-weight: bold;
}
.c-title h1 {
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.c-title p {
  font-family: var(--font-family-base);
  font-size: 0.72rem;
  line-height: 0.86rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1025px) {
  .c-title {
    margin-bottom: 30px;
  }
  .c-title h1 {
    font-size: 1.67rem;
    line-height: 2.0rem;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
  }
}
.c-tab {
  font-family: var(--font-family-head);
  list-style: none;
}
.c-tab_li {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 0;
  margin-bottom: 15px;
}
.c-tab_li:last-of-type {
  margin-bottom: 0;
}
.c-tab_li a {
  text-decoration: none;
  color: var(--color-base);
  cursor: pointer;
}
.c-tab_li .date {
  display: inline-block;
}
.c-tab_li span {
  vertical-align: top;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 3px 16px;
  margin: 0 20px;
  border-radius: 50px;
  background-color: var(--color-bg-category);
}
.article_body {
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.c-tab_li:last-of-type .article_body {
  margin-bottom: 0;
}

@media screen and (max-width: 1025px) {
  .c-tab {
    width: 100%;
  }
  .c-tab_li {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .c-tab_li::after {
    content: '';
    width: 100%;
  }
  .c-tab_li .article_body {
    order: 1;
    margin-top: 3px;
  }
}
.c-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}
.c-item h1 {
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 1.33rem;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.c-item p {
  text-align: left;
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1025px) {
  .c-item {
    margin-bottom: 40px;
  }
  .c-item:last-of-type {
    margin-bottom: 0;
  }
  .c-item img {
    height: auto;
  }
  .c-item h1 {
    margin-bottom: 10px;
  }
  .c-item p {
    font-size: 0.78rem;
    line-height: 1.39rem;
  }
}
.c-circle-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: max-content max-content;
  row-gap: 46px;
  width: calc(100% - 140px);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 70px;
  padding: 100px 0 0;
}
.c-circle-image img:nth-of-type(1), .c-circle-image img:nth-of-type(2) {
  width: 33%;
  max-width: 210px;
  height: auto;
}
.c-circle-image img:nth-of-type(odd) {
  margin: 0 auto 0 0;
}
.c-circle-image img:nth-of-type(3), .c-circle-image img:nth-of-type(4) {
  width: 30%;
  max-width: 160px;
  height: auto;
}
.c-circle-image img:nth-of-type(even) {
  margin: 0 0 0 auto;
}
.c-circle-image img:nth-of-type(3) {
  margin-left: 15%;
}
.c-circle-image img:nth-of-type(4) {
  margin-right: 15%;
}

@media screen and (max-width: 1025px) {
  .c-circle-image {
    display: none;
  }
}
.c-line-title {
  font-size: 2.22rem;
  line-height: 0.8em;
  letter-spacing: 0.05em;
  font-family: var(--font-family-base);
}
.c-line-title span {
  display: block;
  margin: -5px auto;
  width: 666px;
  height: 12px;
  background-color: var(--color-bg-line);
}

@media screen and (max-width: 1025px) {
  .c-line-title {
    display: inline;
    padding: 0 30px;
    font-size: 1.78rem;
    line-height: 2.67rem;
    background: linear-gradient(transparent 75%, var(--color-bg-line) 0%);
  }
  .c-line-title span {
    display: none;
  }
}
.c-slide .swiper-pagination-bullets {
  position: static;
  margin-top: 13px;
  text-align: right;
}
.c-slide .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 0 0 8px !important;
}
.c-slide .swiper-pagination-bullet-active {
  background: var(--color-title) !important;
}
.c-slide .swiper-pagination-bullet:first-child {
  margin: 0 !important;
}
.c-slide .swiper-button-prev, .c-slide .swiper-button-next {
  color: var(--color-title);
}
.c-slide .swiper-button-prev::after {
  content: '\f104';
  font-family: var(--font-awesome);
  font-weight: 900;
  font-size: 1.78rem;
  line-height: 1.0em;
}
.c-slide .swiper-button-next::after {
  content: '\f105';
  font-family: var(--font-awesome);
  font-weight: 900;
  font-size: 1.78rem;
  line-height: 1.0em;
}

.c-page-top-button {
  display: block;
  width: 50px;
  font-size: 0.83rem;
  line-height: 0.83rem;
  padding: 18px 0;
  border-radius: 50%;
  color: var(--color-title);
  background-color: var(--color-head);
  border: 1px solid var(--color-border);
}

.c-page-title {
  width: 100%;
  height: 240px;
  background-image: url(./img/hero.jpg);
  background-size: cover;
  background-position: center;
  color: var(--color-head);
  text-align: center;
  padding-top: 106px;
  font-family: var(--font-family-head);
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-page-title h1 {
  font-size: 2rem;
  line-height: 1.22em;
  text-transform: uppercase;
}
.c-page-title p {
  font-size: 0.78rem;
  line-height: 1rem;
}

.c-breadcrumb {
  width: 100%;
  background-color: var(--color-bg-breadcrumb);
  padding: 15px 0;
  color: var(--color-title);
}
.c-breadcrumb ul {
  width: 80%;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}
.c-breadcrumb ul li {
  display: inline-block;
  font-family: var(--font-family-head);
  font-size: 0.67rem;
  line-height: 1.56rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  color: var(--color-section);
  white-space: nowrap;
  text-transform: uppercase;
}
.c-breadcrumb ul li:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-breadcrumb ul li a {
  text-decoration: none;
  color: var(--color-title);
}
.c-breadcrumb ul li:not(:last-child)::after {
  display: inline-block;
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f105";
  margin: 0 1em;
  padding: 0;
}

@media screen and (max-width: 1025px) {
  .c-breadcrumb {
    padding: 6px 0;
  }
  .c-breadcrumb ul {
    width: calc(100% - 40px);
  }
  .c-breadcrumb ul li {
    font-size: 0.61rem;
    line-height: 0.78rem;
  }
}
.c-map {
  width: 100%;
  height: auto;
}

header {
  width: 100%;
  background-color: transparent;
  font-family: var(--font-family-head);
  position: fixed;
  z-index: 900;
}
header .container {
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
}
header .c-toggle {
  display: none;
}
header .c-nav {
  font-size: 0.77rem;
  line-height: 1.07em;
  letter-spacing: 0.05em;
  padding: 30px 0;
}
header .c-nav li {
  margin-right: 25px;
}
header .c-nav li:last-of-type {
  margin-right: 0;
}

header.fixed {
  background-color: var(--color-bg-header-fixed);
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
header.fixed .c-nav {
  padding: 27px 0;
}
header.fixed .header_logo {
  margin-top: 27px;
}

.header_logo {
  color: var(--color-head);
  font-size: 17.38px;
  line-height: 1em;
  letter-spacing: 0.018em;
  font-weight: bold;
  margin-top: 30px;
}

@media screen and (max-width: 1025px) {
  header {
    height: 64px;
    padding: 0;
  }
  header .container {
    display: block;
    width: 100%;
    padding: 0;
    position: relative;
  }
  header .c-toggle {
    display: block;
    top: 10px;
    right: 20px;
  }
  header .c-toggle span {
    transition: 0.35s ease-in-out;
  }
  header .c-nav {
    display: none;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    background: linear-gradient(-180deg, var(--color-bg-header-nav-top), var(--color-bg-header-nav-bottom));
    text-align: center;
    position: absolute;
    z-index: 1000;
    padding: calc(50vh - (6em + 100px)) 0 0;
    font-size: 0.83rem;
    line-height: 1.06rem;
  }
  header .c-nav li {
    display: block;
    width: 50%;
    min-width: 80px;
    margin: 0 auto 20px;
  }
  header .c-nav li:last-of-type {
    margin: 0 auto 0;
  }
  header.fixed .c-nav {
    padding: 0;
  }
  header.fixed .header_logo {
    margin-top: 5px;
  }
  header.open .c-toggle {
    top: 22px;
  }
  header.open .c-toggle :nth-child(1) {
    top: 22px;
    transform: rotate(315deg);
  }
  header.open .c-toggle :nth-child(2) {
    width: 0;
    left: 50%;
  }
  header.open .c-toggle :nth-child(3) {
    top: 22px;
    transform: rotate(-315deg);
  }
  header.open .c-nav {
    padding: calc(50vh - (6em + 100px)) 0 0;
  }
  .header_logo {
    margin: 0;
    display: block;
    position: absolute;
    z-index: 999;
    top: 21px;
    left: 20px;
  }
}
.top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  font-family: var(--font-family-head);
  color: var(--color-head);
  text-align: center;
  background-image: url(./img/hero.jpg);
  background-size: cover;
  background-position: center center;
}
.top .container {
  width: 100%;
}
.top h1 {
  font-size: 4rem;
  line-height: 1.0em;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.top p {
  font-family: var(--font-family-base);
  font-size: 1.33rem;
  line-height: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 68px;
}
.top .c-button {
  border: 1px solid var(--color-head);
  background: none;
  background: transparent;
  padding: 18px 72px;
}
.top .c-button::before {
  background: transparent;
}

@media screen and (max-width: 1025px) {
  .top {
    text-align: left;
  }
  .top .container {
    width: calc(100% - 40px);
  }
  .top h1 {
    font-size: 2.22rem;
    line-height: 1.1em;
  }
  .top p {
    font-size: 0.89rem;
    line-height: 1.6rem;
    margin-bottom: 48px;
  }
}
.news {
  background-color: var(--color-bg-section);
  font-family: var(--font-family-head);
}
.news .container {
  width: 90%;
  margin: 0 auto;
  padding: 70px 0;
}
.news .wrapper {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.news .wrapper .c-title {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 20%;
}
.news .wrapper .c-tab {
  display: inline-block;
  width: 80%;
}

@media screen and (max-width: 1025px) {
  .news .container {
    width: calc(100% - 40px);
    padding: 40px 0;
  }
  .news .wrapper {
    display: block;
    width: 100%;
  }
  .news .wrapper .c-title {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 30px;
  }
  .news .wrapper .c-title p {
    margin-left: 0;
  }
  .news .wrapper .c-tab {
    display: block;
    width: 100%;
  }
}
.service {
  text-align: center;
  background-color: var(--color-bg-section);
}
.service .container {
  padding: 70px 0 148px;
}
.service .wrapper {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  margin: 30px auto 48px;
}

@media screen and (max-width: 1025px) {
  .service .container {
    padding: 40px 0 88px;
  }
  .service .wrapper {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto 58px;
  }
}
.works .container {
  background-color: var(--color-bg-section);
  padding: 60px 0 60px;
  position: relative;
}
.works .container .works-bg {
  display: block;
  width: 66%;
  background-color: var(--color-bg-works);
  position: absolute;
  top: 0;
  right: 70px;
}
.works .wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: calc(100% - 140px);
  margin: 0 auto;
  position: relative;
}
.works .wrapper .c-slide {
  width: 52%;
  max-width: 750px;
  align-self: start;
}
.works .wrapper .c-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.works .wrapper .c-works-item {
  width: 48%;
  background-color: var(--color-bg-works);
  text-align: center;
  /*
  padding-right: 5%;
  */
}
.works .wrapper .c-works-item .c-title {
  margin-top: 153px;
}
.works .wrapper .c-works-item p#works-item {
  font-family: var(--font-family-base);
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin: 30px 0 48px;
}

@media screen and (max-width: 1025px) {
  .works .container {
    padding: 0;
  }
  .works .container .works-bg {
    display: block;
    width: calc(100% + 40px);
    right: 0;
  }
  .works .wrapper {
    flex-wrap: wrap;
    width: calc(100% - 40px);
  }
  .works .wrapper .c-works-item {
    display: block;
    margin: 0 -20px 0;
    width: calc(100% + 40px);
    padding: 20px 0 78px;
  }
  .works .wrapper .c-works-item .c-title {
    margin-top: 0;
  }
  .works .wrapper .c-works-item p#works-item {
    font-family: var(--font-family-base);
    font-size: 0.78rem;
    line-height: 1.38rem;
    margin: 0 auto 48px;
  }
  .works .wrapper .c-slide {
    width: 100%;
    max-width: 100%;
  }
}
.company {
  background-color: var(--color-bg-section);
  text-align: center;
  position: relative;
}
.company .c-button {
  position: absolute;
  z-index: 2;
  bottom: 130px;
  left: calc(50% - 109px);
}
.company .c-button span {
  z-index: 2;
}
.company .c-button::before {
  width: 100%;
  height: 100%;
  z-index: 2;
}
.company .c-button::after {
  z-index: 2;
}
.company .container {
  width: 64%;
  margin: 40px auto;
}
.company .wrapper {
  width: 80%;
  padding: 100px 0 216px;
  margin: 0 auto;
  background-image: url(./img/bg-circle.png);
  background-size: cover;
}
.company .wrapper p {
  font-family: var(--font-family-base);
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
}
.company .c-line-title {
  margin: 30px auto 40px;
}
.company .wrapper .c-title p {
  margin-bottom: 0;
}

@media screen and (max-width: 1025px) {
  .company .c-button {
    position: relative;
    width: auto;
    height: auto;
    left: 0;
    bottom: 0;
  }
  .company .c-button::before {
    width: 100%;
    height: 100%;
  }
  .company .container {
    width: calc(100% - 40px);
    position: static;
    margin: 0 auto;
  }
  .company .wrapper {
    width: 100%;
    padding: 60px 0 78px;
  }
  .company .wrapper p {
    margin: 40px auto 48px;
  }
  .company .wrapper .c-title p {
    margin: 0 auto;
  }
}
.recruit {
  background-color: var(--color-bg-section);
  margin-bottom: 110px;
}
.recruit .container {
  padding: 0 70px;
}
.recruit .wrapper {
  display: grid;
  width: 80%;
  height: 332px;
  margin: 0 auto;
  grid-template-columns: 1fr 2fr;
}
.recruit .wrapper div {
  background-color: var(--color-bg-recruit);
  text-align: center;
}
.recruit .wrapper div .c-title {
  margin-top: 70px;
}
.recruit .wrapper div p#recruit-item {
  font-family: var(--font-family-base);
  font-size: 0.83rem;
  line-height: 1.56rem;
  letter-spacing: 0.05em;
  margin-top: 30px;
  margin-bottom: 48px;
}
.recruit .wrapper img {
  width: 100%;
  height: 332px;
  object-fit: cover;
}

@media screen and (max-width: 1025px) {
  .recruit {
    margin-bottom: 40px;
  }
  .recruit .container {
    width: calc(100% - 30px);
    padding: 0 0 88px;
    background-color: var(--color-bg-recruit);
    margin: 0 auto 40px;
  }
  .recruit .wrapper {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr;
    grid-auto-flow: column;
  }
  .recruit .wrapper div {
    order: 2;
  }
  .recruit .wrapper div .c-title {
    margin: 70px 0 30px;
  }
  .recruit .wrapper div p#recruit-item {
    font-size: 0.78rem;
    line-height: 1.06rem;
    margin-bottom: 48px;
  }
  .recruit .wrapper img {
    order: 1;
    height: auto;
    object-position: 50% 10%;
  }
}
.contact {
  background-color: var(--color-bg-contact);
}
.contact .container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 70px 0;
}
.contact .wrapper {
  padding-bottom: 18px;
}
.contact .wrapper p {
  font-family: var(--font-family-base);
  font-size: 0.83rem;
  line-height: 1.78rem;
  letter-spacing: 0.05em;
  margin: 30px auto 38px;
}

@media screen and (max-width: 1025px) {
  .contact .container {
    padding: 60px 0;
  }
  .contact .wrapper p {
    font-size: 0.78rem;
    line-height: 1.22rem;
  }
}
footer {
  background-color: var(--color-bg-footer);
  text-align: center;
}
footer .container {
  width: calc(100% - 60px);
  padding: 60px 0;
  position: relative;
}
footer .c-nav {
  font-size: 0.77rem;
  line-height: 1.07em;
  letter-spacing: 0;
}
footer .c-nav .spacer {
  display: none;
}
footer .c-nav li {
  margin-right: 15px;
}
footer .c-nav li a {
  font-weight: normal;
  padding: 5px;
}
footer .c-nav li:last-of-type {
  margin-right: 0;
  font-size: 0.67rem;
  line-height: 1.0em;
}
footer .c-nav li:last-of-type a {
  text-transform: capitalize;
}
footer p {
  color: var(--color-copyright);
  font-family: var(--font-family-head);
  font-size: 0.56rem;
  line-height: 0.67rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-top: 22px;
  text-transform: uppercase;
}
footer a#page_top_btn {
  display: none;
  right: 45px;
  bottom: 48px;
  position: fixed;
  z-index: 800;
}
footer a#page_top_btn.fixed {
  display: block;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 1025px) {
  footer .container .c-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.66rem;
    line-height: 0.83rem;
  }
  footer .container .c-nav .spacer {
    display: block;
    width: 100%;
  }
  footer .container .c-nav :nth-child(1) {
    display: block;
  }
  footer .container .c-nav :nth-child(4), footer .container .c-nav :nth-child(8) {
    margin-right: 0;
  }
  footer .container .c-nav :nth-child(6), footer .container .c-nav :nth-child(7), footer .container .c-nav :nth-child(8) {
    margin-bottom: 0;
  }
  footer .container .c-nav li {
    text-align: left;
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  footer .container .c-nav li:last-of-type {
    margin-left: 20px;
    font-size: 0.6rem;
    line-height: 0.7rem;
  }
  footer .container p {
    margin-top: 30px;
  }
  footer .container a#page_top_btn {
    bottom: 20px;
    right: 20px;
  }
}
.news-contents .container {
  padding-top: 70px;
  padding-bottom: 122.5px;
}
.news-contents .container .c-tab {
  width: 80%;
  margin: 0 auto;
}
.news-contents .container .c-tab a {
  text-decoration: none;
  color: var(--color-base);
  cursor: pointer;
}
.news-contents .container .news-page-button {
  margin-top: 52.5px;
  text-align: center;
  list-style: none;
  font-family: var(--font-family-head);
}
.news-contents .container .news-page-button .wp-pagenavi {
  padding: 0;
  display: inline-block;
}
.news-contents .container .news-page-button .wp-pagenavi .first {
  display: none;
}
.news-contents .container .news-page-button .wp-pagenavi .previouspostslink {
  display: none;
}
.news-contents .container .news-page-button .wp-pagenavi .pages {
  display: none;
}
.news-contents .container .news-page-button .wp-pagenavi .nextpostslink {
  display: none;
}
.news-contents .container .news-page-button .wp-pagenavi a {
  cursor: pointer;
  font-size: 1.11rem;
  line-height: 1em;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-head);
  background: linear-gradient(-180deg, var(--color-bg-button-left), var(--color-bg-button-right));
  padding: 12.5px 18.5px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  min-width: 49.7px;
}
.news-contents .container .news-page-button .wp-pagenavi .current {
  cursor: pointer;
  font-size: 1.11rem;
  line-height: 1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0;
  padding: 12.5px 20.5px;
  color: var(--color-section);
  background: #C1AFDE;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
}

@media screen and (max-width: 1025px) {
  .news-contents .container {
    padding-top: 40px;
    padding-bottom: 90px;
  }
  .news-contents .container .news-page-button {
    margin-top: 52.5px;
  }
}
.article-contents {
  width: 50%;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 110px;
}
.article-contents .article-top .article_header {
  font-family: var(--font-family-head);
  font-size: 0.72rem;
  line-height: 0.89rem;
  margin-bottom: 30px;
}
.article-contents .article-top .title {
  font-family: var(--font-family-head);
  font-size: 1.78rem;
  line-height: 2.56rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  margin-bottom: 10px;
  display: block;
}
.article-contents .article-top .date {
  font-size: 0.72rem;
  line-height: 1.8em;
  margin-top: 2px;
  display: inline-block;
}
.article-contents .article-top .category {
  font-size: 0.67rem;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: bold;
  background-color: var(--color-bg-category);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-right: 0;
}

.article-contents .article-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.article-contents .article-detail p {
  font-family: var(--font-family-base);
  margin: 30px auto 60px;
  font-size: 0.83rem;
  line-height: 1.39rem;
  letter-spacing: 0.05em;
}
.article-contents .article-detail p:nth-of-type(2) {
  margin: 20px auto 40px;
}
.article-contents .article-detail p:nth-of-type(3) {
  margin: 20px auto 30px;
}
.article-contents .article-detail p:nth-of-type(4) {
  margin: 0 auto 0;
}
.article-contents .article-detail h2:first-of-type {
  font-size: 1.33rem;
  line-height: 2.13rem;
}
.article-contents .article-detail h2:first-of-type:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  width: 6px;
  height: 2.13rem;;
  background-color: var(--color-title);
  border-radius: 3px;
}
.article-contents .article-detail h2:nth-of-type(2) {
  font-size: 0.83rem;
  line-height: 1.5rem;
}

.article-contents .sns-buttons {
  display: flex;
  flex-wrap: nowrap;
  margin: 40px auto 40px;
  list-style: none;
}
.article-contents .sns-buttons li {
  height: 30px;
  margin-right: 5px;
}
.article-contents .sns-buttons :last-child {
  margin-right: 0;
}
.article-contents .article-links a {
  text-decoration: none;
  color: var(--color-title);
  cursor: pointer;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.4rem;
}
.article-contents .article-links a#news-all-link {
  display: block;
  margin: 20px auto 0;
  font-size: 0.83rem;
  line-height: 1.5rem;
}
.article-contents .article-links a#news-all-link span {
  text-transform: uppercase;
}
.article-contents .article-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-article-border);
  border-bottom: 1px solid var(--color-article-border);
  position: relative;
}
.article-contents .article-links ul li {
  width: 100%;
  text-align: center;
}
.article-contents .article-links ul li a {
  display: block;
  width: 100%;
  letter-spacing: 0.05em;
  padding: 25px 20px;
  text-transform: capitalize;
}
.article-contents .article-links ul li a:hover {
  background-color: var(--color-article-link-hover);
}
.article-contents .article-links ul li a span {
  text-transform: uppercase;
}
.article-contents .article-links ul li:first-of-type::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 30px);
  background-color: var(--color-article-border);
  position: absolute;
  left: calc(50% - 0.5px);
  top: 15px;
}

@media screen and (max-width: 1025px) {
  .article-contents {
    padding-top: 40px;
    padding-bottom: 80px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .article-contents .article-top .article_header {
    font-size: 1.22rem;
    line-height: 1.78rem;
    margin-bottom: 20px;
  }
  .article-contents .article-top .title {
    font-family: var(--font-family-head);
    font-size: 1.22rem;
    line-height: 1.78rem;
  }
  .article-contents .article-top .date {
    font-size: 0.56rem;
    line-height: 1.0rem;
    margin-top: 0;
  }
  .article-contents .article-detail p {
    margin-bottom: 40px;
  }
  .article-contents .article-detail p:nth-of-type(3) {
    margin-bottom: 20px;
  }
  .article-contents .article-detail h2:first-of-type {
    font-size: 1.0rem;
    line-height: 1.6rem;
  }
  .article-contents .article-detail h2:first-of-type:before {
    height: 1.6rem;
  }
  .article-contents .article-detail h2:nth-of-type(2) {
    font-size: 0.94rem;
    line-height: 1.7rem;
  }
  .article-contents .sns-buttons {
    flex-wrap: wrap;
  }
  .article-contents .sns-buttons li::after {
    content: '';
    width: 100%;
  }
  .article-contents .sns-buttons li:nth-of-type(n+3){
    order: 1;
  }
  .article-contents .sns-buttons :last-child {
    margin-right: 0;
  }
  .article-contents .article-links a {
    font-size: 0.85rem;
    line-height: 1.2rem;
  }
  .article-contents .article-links a#news-all-link {
    font-size: 0.78rem;
    line-height: 1.4rem;
  }
}
.service-contents {
  padding: 70px 0 110px;
}
.service-contents .container {
  width: 77%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}
.service-contents .service-content {
  display: flex;
  flex-wrap: nowrap;
}
.service-contents .service-content img {
  width: 40%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.service-contents .service-content div {
  width: 60%;
  letter-spacing: 0.05em;
  padding-left: 50px;
}
.service-contents .service-content div h1 {
  font-size: 1.33rem;
  line-height: 1.78rem;
  margin-bottom: 20px;
}
.service-contents .service-content div p {
  font-family: var(--font-family-base);
  font-size: 0.83rem;
  line-height: 1.5rem;
}
.service-contents .service-content:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1025px) {
  .service-contents {
    padding: 40px 0 80px;
  }
  .service-contents .container {
    width: calc(100% - 40px);
    row-gap: 40px;
  }
  .service-contents .service-content {
    flex-wrap: wrap;
  }
  .service-contents .service-content img {
    width: 100%;
  }
  .service-contents .service-content div {
    width: 100%;
    padding-left: 0;
    padding-top: 18px;
  }
  .service-contents .service-content div h1 {
    text-align: center;
    font-size: 1rem;
    line-height: 1.33rem;
    margin-bottom: 15px;
  }
  .service-contents .service-content div p {
    font-size: 0.78rem;
    line-height: 1.33rem;
  }
  .service-contents .service-content div p :last-of-type {
    margin-bottom: 0;
  }
}
.works-contents .container {
  width: 77%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  padding: 70px 0 110px;
}
.works-contents .works-content {
  width: 100%;
  text-align: center;
}
.works-contents .works-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.works-contents .works-content h1 {
  font-family: var(--font-family-head);
  font-size: 0.89rem;
  line-height: 1.17rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.works-contents .works-content h1 span {
  text-transform: uppercase;
}
@media screen and (max-width: 1025px) {
  .works-contents .container {
    padding: 40px 0 80px;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.message {
  text-align: center;
  position: relative;
}
.message .container {
  width: 64%;
  padding-top: 100px;
  margin: 0 auto;
  background-image: url(./img/bg-circle.png);
  background-size: contain;
}
.message .container .c-circle-image {
  padding-top: 0;
  width: calc(100% - 140px);
  top: 40px;
  left: 70px;
}
.message .container .wrapper h1 {
  font-family: var(--font-family-head);
  font-size: 1.78rem;
  line-height: 2.39rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--color-title);
  margin-bottom: 34px;
}
.message .container .wrapper p {
  margin-top: 40px;
  font-size: 0.83rem;
  line-height: 1.39rem;
  letter-spacing: 0.05em;
  padding-bottom: 198px;
}
.message .ceo {
  width: 77%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  column-gap: 50px;
  margin-top: -38px;
}
.message .ceo img {
  width: 40%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.message .ceo div {
  width: 60%;
  font-size: 0.83rem;
  line-height: 1.5rem;
}

.about {
  width: 77%;
  padding: 140px 0 110px;
  margin: 0 auto;
}
.about h1 {
  font-family: var(--font-family-head);
  font-size: 1.78rem;
  line-height: 2.39rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--color-title);
  margin-bottom: 30px;
  text-align: center;
}
.about dl {
  font-size: 0.83rem;
  line-height: 1.5rem;
}
.about dl :nth-child(6), .about dl :nth-child(8), .about dl :nth-child(10) {
  font-family: var(--font-family-base);
}
.about dl dt {
  width: 77%;
  position: absolute;
  padding: 30px 0 30px;
  padding-left: 10px;
  border-bottom: 1px solid #DDD;
  font-family: var(--font-family-base);
}
.about dl dd {
  padding: 30px 0 30px;
  padding-left: 20%;
  position: relative;
  font-family: var(--font-family-head);
}
.about dl dd span {
  text-transform: uppercase;
}
.about .c-map {
  margin-top: 60px;
  height: 400px;
}
.about .map a {
  margin-top: 5px;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--color-title);
}

@media screen and (max-width: 1025px) {
  .message .container {
    width: 100%;
    padding-top: 60px;
  }
  .message .container .wrapper h1 {
    margin-bottom: 30px;
  }
  .message .container .wrapper p {
    font-size: 0.78rem;
    line-height: 1.4rem;
    padding-bottom: 138px;
  }
  .message .ceo {
    width: calc(100% - 30px);
    flex-wrap: wrap;
    margin-top: -78px;
    row-gap: 20px;
  }
  .message .ceo img {
    width: 100%;
  }
  .message .ceo div {
    width: 100%;
    font-size: 0.78rem;
    line-height: 1.4rem;
  }
  .about {
    width: calc(100% - 30px);
    padding: 100px 0 80px;
  }
  .about h1 {
    margin-bottom: 50px;
    font-size: 1.33rem;
    line-height: 1.0em;
  }
  .about dl dt {
    width: calc(100% - 30px);
    padding: 0;
    padding-bottom: 52px;
    font-weight: 700;
  }
  .about dl dd {
    padding-top: 32px;
    padding-left: 0;
    padding-bottom: 20px;
    font-weight: 400;
  }
  .about .c-map {
    margin-top: 40px;
    height: 240px;
  }
}


.recruit-contents {
  width: 100%;
  background-image: url(./img/bg-geometry.png);
  background-repeat: repeat;
  padding-bottom: 110px;
}
.recruit-contents .recruit-top {
  text-align: center;
  padding-top: 90px;
}
.recruit-contents .recruit-top .recruit-top-title {
  color: var(--color-title);
}
.recruit-contents .recruit-top .recruit-top-title h1 {
  font-family: var(--font-family-head);
  font-size: 4rem;
  line-height: 4rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.recruit-contents .recruit-top .recruit-top-title p {
  font-size: 1.78rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
.recruit-contents .recruit-top p {
  margin-top: 20px;
  font-family: var(--font-family-head);
  font-weight: normal;
  font-size: 0.89rem;
  line-height: 1.6rem;
  letter-spacing: 0.05em;
}
.recruit-contents .recruit-top img {
  margin-top: 40px;
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}
.recruit-contents .recruit-content {
  margin-top: 70px;
}
.recruit-contents .recruit-content:nth-of-type(3) {
  margin-top: 140px;
}
.recruit-contents .recruit-content h1 {
  text-align: center;
  color: var(--color-title);
  font-family: var(--font-family-base);
  font-weight: bold;
  font-size: 1.78rem;
  line-height: 1.0em;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.recruit-contents .recruit-content:nth-of-type(3) h1 {
  margin-bottom: 40px;
}
.recruit-contents .recruit-content .job {
  padding: 60px 0;
  width: 77%;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-head);
  border: 1px solid var(--color-recruit-border);
  border-radius: 6px;
}
.recruit-contents .recruit-content .job h1 {
  color: var(--color-base);
  font-family: var(--font-family-head);
  font-size: 1.33rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
}
.recruit-contents .recruit-content .job dl {
  display: flex;
  flex-wrap: wrap;;
  width: 83%;
  margin: 0 auto;
  text-align: left;
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 68px;
}
.recruit-contents .recruit-content .job dl dt {
  width: 20%;
  padding: 30px 0;
  padding-left: 10px;
  border-bottom: 1px solid var(--color-tab-border);
  font-family: var(--font-family-base);
}
.recruit-contents .recruit-content .job dl dd {
  width: 80%;
  padding: 30px 0;
  padding-left: 10px;
  border-bottom: 1px solid var(--color-tab-border);
  font-family: var(--font-family-head);
}
.recruit-contents .recruit-content .job dl :nth-child(6) {
  font-family: var(--font-family-base);
}
.recruit-contents .recruit-content .job dl :nth-child(10) {
  font-family: var(--font-family-base);
}
.recruit-contents .recruit-content .job dl :nth-child(10) ul {
  padding-left: 1em;
  font-family: var(--font-family-head);
}
.recruit-contents .recruit-content .job p {
  margin-top: 23px;
  font-size: 0.67rem;
  line-height: 1.2rem;
  font-family: var(--font-family-head);
}
.recruit-contents .recruit-content .video {
  display: block;
  width: 77%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.recruit-contents .recruit-content .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1025px) {
  .recruit-contents {
    padding-bottom: 80px;
  }
  .recruit-contents .recruit-top {
    padding-top: 60px;
  }
  .recruit-contents .recruit-content:nth-of-type(3) {
    margin-top: 80px;
  }
  .recruit-contents .recruit-top .recruit-top-title h1 {
    font-size: 2.67rem;
    line-height: 3.2rem;
  }
  .recruit-contents .recruit-content:nth-of-type(3) h1 {
    margin-bottom: 30px;
  }
  .recruit-contents .recruit-top .recruit-top-title p {
    font-size: 1rem;
    line-height: 1.8rem;
    margin-top: 10px;
  }
  .recruit-contents .recruit-top img {
    margin-top: 40px;
    height: auto;
  }
  .recruit-contents .recruit-content {
    margin-top: 35px;
  }
  .recruit-contents .recruit-content h1 {
    font-size: 1.33rem;
  }
  .recruit-contents .recruit-content .job {
    padding: 30px 0;
    width: calc(100% - 40px);
    margin-bottom: 58px;
  }
  .recruit-contents .recruit-content .job h1 {
    font-size: 1.1rem;
    line-height: 2.0rem;
    margin-bottom: 40px;
  }
  .recruit-contents .recruit-content .job dl {
    width: calc(100% - 40px);
    font-size: 0.78rem;
    line-height: 1.4rem;
    flex-wrap: wrap;
    margin-bottom: 58px;
  }
  .recruit-contents .recruit-content .job dl dt {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 0;
    border-bottom: 0;
    font-weight: 700;
  }
  .recruit-contents .recruit-content .job dl dd {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 0;
    border-bottom: 1px solid var(--color-tab-border);
    font-family: var(--font-family-head);
    font-weight: 400;
  }
  .recruit-contents .recruit-content .job dl :nth-child(9) {
    padding-bottom: 0;
  }
  .recruit-contents .recruit-content .video {
    display: block;
    width: calc(100% - 40px);
  }
}
.contact-contents {
  padding: 70px 0 110px;
  color: var(--color-section);
}
.contact-contents h1 {
  text-align: center;
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  font-weight: 400;
}
.contact-contents .container {
  display: block;
  width: 52%;
  margin: 0 auto;
  background-color: var(--color-bg-contact);
  padding: 90px;
}
.contact-contents .container .required {
  display: inline-block;
  font-size: 0.67rem;
  line-height: 0.8rem;
  margin-left: 10px;
}
.contact-contents .container .required::after {
  content: "*必須";
  color: var(--color-form-required);
}
.contact-contents .container .tel {
  font-weight: 400;
  margin-left: 5px;
}
.contact-contents .container form .form-item {
  display: block;
  font-size: 0.83rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin-left: 0;
  margin-bottom: 30px;
  font-weight: 700;
}
.contact-contents .container form .form-item input {
  width: 100%;
  max-width: 300px;
  border: 1px solid var(--color-form-border);
  background-color: var(--color-head);
  border-radius: 6px;
  padding: 8px;
  margin-top: 5px;
}
.contact-contents .container .form-item#type p {
  height: auto;
}
.contact-contents .container  .form-item#type p input {
  width: auto;
  height: auto;
  border-radius: 0;
  margin-top: 13px;
}
.contact-contents .container .form-item#type p label {
  margin-right: 35px;
  line-height: 1.0rem;
  font-weight: 400;
  white-space: wrap;
}
.contact-contents .container .form-item#type p label:first-of-type {
  font-weight: 700;
}
.contact-contents .container .form-item#type p label input {
  font-weight: 400;
  margin-right: 5px;
}
.contact-contents .container .form-item#type p label:last-of-type {
  margin-right: 0;
}
.contact-contents .container .form-item#question textarea {
  width: 100%;
  border-radius: 6px;
  height: 200px;
  border: 1px solid var(--color-form-border);
  padding: 8px;
  background-color: var(--color-head);
  font-weight: 400;
}
.contact-contents .container .form-item#where p {
  height: auto;
  margin-bottom: 0;
}
.contact-contents .container .form-item#where p span {
  text-transform: uppercase;
}
.contact-contents .container .form-item#where p select {
  cursor: pointer;
  width: 300px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--color-form-border);
  background-color: var(--color-head);
  font-weight: 400;
  appearance: none; /* 標準のスタイルを無効にする */
}
.contact-contents .container .form-item#where p select option {
  font-size: 0.78rem;
  line-height: 1rem;
  letter-spacing: 0.05em;
  color: var(--color-form-placeholder);
}
.contact-contents .container #submit {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0;
}

@media screen and (max-width: 1025px) {
  .contact-contents {
    padding: 40px 0;
  }
  .contact-contents h1 {
    font-size: 0.78rem;
    line-height: 1.4rem;
    margin-bottom: 30px;
  }
  .contact-contents .container {
    width: calc(100% - 30px);
    padding: 30px;
  }
  .contact-contents .container form p input {
    width: 100%;
  }
  .contact-contents .container .form-item#type p {
    height: auto;
  }
  .contact-contents .container .form-item#type p input {
    width: auto;
    height: auto;
  }
  .contact-contents .container .form-item#type p label {
    display: block;
    margin-right: 0;
  }
  .contact-contents .container .form-item#question textarea {
    width: 100%;
  }
  .contact-contents .container .form-item#where p {
    height: auto;
  }
  .contact-contents .container .form-item#where p select {
    width: 100%;
  }
}

.privacy_policy_contents {
  width: 77%;
  margin: 70px auto 110px;
}
.privacy_policy_contents div {
  margin: 40px 0;
}
.privacy_policy_contents div h1 {
  font-size: 1.33rem;
  line-height: 1.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.privacy_policy_contents div p {
  font-size: 1.0rem;
  line-height: 1.78rem;
  font-weight: 400;
}
@media screen and (max-width: 1025px) {
  .privacy_policy_contents {
    width: calc(100% - 30px);
    margin: 40px auto 40px;
  }
  .privacy_policy_contents div {
    margin: 20px 0;
  }
  .privacy_policy_contents div h1 {
    font-size: 1.0rem;
    line-height: 1.78rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .privacy_policy_contents div p {
    font-size: 0.78rem;
    line-height: 0.89rem;
  }
}