@charset "UTF-8";

/*
Theme Name: acety 2025
Author: 株式会社アド広研
Author URI: https://www.adkohken.co.jp/
Description: 【acety】のリニューアルテーマです。2026年3月作成。
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theme-textdomain
Tags: acety-theme
*/

/*-------------------------------------

【Outline】

- css variable
- reset / normalize css
- initialization
- parts
- animation of basic

---------------------------------------*/

/*-------------------------------------
css variable
---------------------------------------*/

:root {
  /* color */
  --color_theme01: #c73b26;
  --color_theme02: #7686af;
  --color_theme03: #7eb7c3;
  --color_font: #251e1c;
  --color_gray_font: #a3a3a3;
  --color_primary_bg: #f7f7f5;
  --color_primary_bg_gray: #edeff0;
  --color_primary_bg_blue: #cde4ff;
  --color_primary_bl: #3f3c3c;
  --color_primary_gr: #f7f7f5;
  --color_primary_wh: #ffffff;
  --color_border: #c8c9c9;
  --color_link: #337ab7;

  /* layout */
  --wideW: 1500px;
  --innerW: 1300px;
  --insideW: 900px;
  --innerTBW: 700px;
  --innerSPW: 330px;

  /* font-style */
  --font_en: "Gantari", sans-serif;
  --font_en2: "STIX Two Text", sans-serif;
  --fw-thin: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* font-size */
  --fs-xs: clamp(10px, 1vw, 12px);
  --fs-s: clamp(13px, 1.4vw, 16px);
  --fs-m: clamp(16px, 2vw, 20px);
  --fs-l: clamp(20px, 2.4vw, 22px);
  --fs-xl: clamp(22px, 2.8vw, 28px);
  --fs-xxl: clamp(28px, 3.5vw, 36px);

  /* line-height */
  --lh-xs: 1.2;
  --lh-sm: 1.4;
  --lh-md: 1.6;
  --lh-lg: 1.8;
  --lh-xl: 2;

  /* Opacity on hover */
  --alpha: 0.7;
  --transition: 0.3s ease-in-out;
  --transition-slow: 1s ease-in-out;
}

/*-------------------------------------
reset / normalize css
---------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
textarea,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
a {
  color: var(--color_font);
  text-decoration: none;
  background-color: transparent;
}
strong {
  font-weight: 700;
}
em {
  font-style: normal;
  font-weight: 500;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  display: table;
  max-width: 100%;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 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;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template,
[hidden] {
  display: none;
}
input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  outline: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
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;
}

/*-------------------------------------
initialization
---------------------------------------*/

html {
  font-size: clamp(10px, 0.7vw, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Gantari", "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: 0.05em;
  line-height: 2;
  font-feature-settings: "palt" 1;
  box-sizing: border-box;
  background: var(--color_primary_wh);
  color: var(--color_font);
  font-size: var(--fs-s);
  position: relative;
}
h2 {
  font-size: var(--fs-xl);
}
h3 {
  font-size: var(--fs-l);
}
h4 {
  font-size: var(--fs-m);
}
p {
  font-size: var(--fs-s);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
a,
dt,
dd {
  font-feature-settings: "palt" 1;
}
img {
  max-width: 100%;
  height: auto;
}
.en {
  font-family: var(--font_en);
}
.en2 {
  font-family: var(--font_en2);
}
.ta {
  color: var(--color_theme01);
}
.ta2 {
  color: var(--color_theme02);
}
.sp-bl,
.tablet-bl {
  display: none !important;
}
.d-flex-pc {
  display: flex;
}
.inner {
  width: 85%;
  max-width: var(--innerW);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.inside {
  width: 100%;
  max-width: var(--insideW);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.opa {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.opa:hover {
  opacity: 0.75;
}
@media (max-width: 1200px) {
  .tablet-bl {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp-bl {
    display: block !important;
  }
  .d-flex-pc {
    display: block;
  }
  .inner {
    width: 87.5%;
    max-width: 550px !important;
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
  .inner-w {
    max-width: 550px !important;
  }
  .inside {
    max-width: var(--insideSPW);
  }
}
@media (max-width: 400px) {
  .inner {
    max-width: var(--innerSPW);
  }
}

/*-------------------------------------
parts
---------------------------------------*/

/* header  -------  */

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--color_primary_wh);
  padding: 26px 30px;
  align-items: center;
}
header .h-logo {
  width: 462px;
}
header .h-logo a {
  display: block;
  line-height: 1;
}
header .h-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 720px;
}
header .h-nav-list {
  width: calc(100% - 200px);
}
header .h-nav-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .h-nav-list ul li a:hover {
  border-bottom: 1px solid var(--color_font);
}
header .h-btns {
  width: 160px;
}
header .h-btns ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .h-btns ul li {
  width: 37px;
}
@media (max-width: 1300px) {
  header .h-logo {
    width: 390px;
  }
  header .h-nav {
    width: 660px;
  }
  header .h-nav-list {
    width: calc(100% - 165px);
  }
  header .h-nav-list ul li a {
    font-size: 14px;
  }
  header .h-btns {
    width: 135px;
  }
  header .h-btns ul li {
    width: 30px;
  }
}
@media (max-width: 1150px) {
  header .h-logo {
    width: 330px;
  }
}
@media (max-width: 1080px) {
  header .h-nav-list {
    display: none;
  }
  header .h-nav {
    width: 200px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 15px;
  }
  header .h-logo {
    width: 180px;
  }
  header .h-nav {
    display: block;
    width: fit-content;
  }
  header .h-btns {
    width: 67px;
  }
  header .h-btns ul li {
    width: 24px;
  }
}

/* global menu  -------  */

.site-nav-toggle {
  position: fixed;
  top: 33px;
  right: 35px;
  width: 26px;
  height: 20px;
  z-index: 1000;
}
.nav-toggle-button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  position: relative;
  padding: 0;
  cursor: pointer;
  display: none;
}
.nav-toggle-button img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.nav-toggle-button .icon-open {
  display: block;
}
.nav-toggle-button .icon-close {
  display: none;
}
body.menu-open .nav-toggle-button .icon-open {
  display: none;
}
body.menu-open .nav-toggle-button .icon-close {
  display: block;
}
.site-nav-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 140px;
  padding-bottom: 120px;
  background: var(--color_primary_bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
  overflow: scroll;
}
.site-nav-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  overflow: hidden;
}
.site-nav-contents .sn-btns {
  max-width: 200px;
  width: 52%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
.site-nav-contents .sn-btns ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-nav-contents .sn-btns ul li {
  width: 28%;
}
.site-nav-contents .sn-list ul li {
  text-align: center;
  font-size: 16px;
}
@media (max-width: 1080px) {
  .nav-toggle-button {
    display: block;
  }
}
@media (max-width: 768px) {
  .site-nav-toggle {
    top: 18px;
    right: 17px;
    width: 25px;
  }
}

/* main  -------  */

main {
  overflow: clip;
  width: 100%;
  position: relative;
  padding-bottom: 120px;
}
section {
  position: relative;
}
.bg-wh {
  background: var(--color_primary_wh);
}

/* lower  -------  */

.lower-page {
  padding-top: 100px;
}
.page-ttl {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .lower-page {
    padding-top: 20px;
  }
  .page-ttl {
    font-size: 35px;
  }
}

/* footer  -------  */

footer .f-nav {
  background: #4c4a49;
  padding-top: 75px;
  padding-bottom: 75px;
}
footer .f-nav .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
footer .f-nav .f-logo {
  width: 55%;
  max-width: 462px;
}
footer .f-nav .f-nav-list {
  width: fit-content;
  max-width: 320px;
}
footer .f-nav .f-nav-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .f-nav .f-nav-list ul li {
  border-left: 1px solid var(--color_border);
  line-height: 1;
  padding: 3px 15px;
}
footer .f-nav .f-nav-list ul li:first-child {
  border-left: none;
}
footer .f-nav .f-nav-list ul li:last-child {
  padding-right: 0;
}
footer .f-nav .f-nav-list ul li a {
  color: var(--color_primary_wh);
  display: block;
}
footer .f-contents {
  background: #3e3a39;
  padding-top: 45px;
  padding-bottom: 45px;
}
footer .f-contents .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
footer .f-contents .f-btns {
  width: 220px;
}
footer .f-contents .f-btns ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .f-contents .f-btns ul li {
  width: 32%;
  max-width: 62px;
}
footer .f-contents .f-info {
  width: fit-content;
}
footer .f-contents .f-info {
  color: var(--color_gray_font);
}
footer .f-contents .f-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1;
}
footer .f-contents .f-info .txt {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
footer .f-contents .f-info .copy {
  font-size: 11px;
}
@media (max-width: 768px) {
  footer .f-nav {
    padding-top: 44px;
    padding-bottom: 40px;
  }
  footer .f-nav .box {
    display: block;
  }
  footer .f-nav .f-logo {
    width: 100%;
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  footer .f-nav .f-nav-list {
    width: 100%;
    max-width: 224px;
    margin-right: auto;
    margin-left: auto;
  }
  footer .f-nav .f-nav-list ul li {
    padding: 3px 10px;
    font-size: 12px;
  }
  footer .f-nav .f-nav-list ul li:last-child {
    padding-right: 10px;
  }
  footer .f-contents .box {
    display: block;
  }
  footer .f-contents .f-btns {
    width: 160px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 25px;
  }
  footer .f-contents .f-info {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
  footer .f-contents .f-info h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
  }
  footer .f-contents .f-info .txt {
    font-size: 10px;
    text-align: center;
  }
  footer .f-contents .f-info .copy {
    text-align: center;
  }
}

/*-------------------------------------
animation of basic
---------------------------------------*/

/* fade in */

.sfi {
  visibility: hidden;
}

@-webkit-keyframes simple_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes simple_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.simple_fade_in {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: simple_fade_in;
  animation-name: simple_fade_in;
  visibility: visible !important;
  opacity: 0;
}

/* fade in up */

.sfiu {
  visibility: hidden;
}

@-webkit-keyframes simple_fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes simple_fade_in_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.simple_fade_in_up {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: simple_fade_in_up;
  animation-name: simple_fade_in_up;
  visibility: visible !important;
  opacity: 0;
}
