@charset "UTF-8";
@font-face {
  font-family: "ZenMaruGothic";
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/ZenMaruGothic-Regular-Subset.woff2) format("woff2");
}
@font-face {
  font-family: "ZenMaruGothic";
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/ZenMaruGothic-Medium-Subset.woff2) format("woff2");
}
@font-face {
  font-family: "ZenMaruGothic";
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/ZenMaruGothic-Bold-Subset.woff2) format("woff2");
}
/*-- foundationフォルダの中の_index.scss --*/
body {
  color: #333333;
  background: #ffffff;
  font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Noto Sans JP", "メイリオ", sans-serif;
  -webkit-text-size-adjust: none;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
fieldset,
p,
figure,
button {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Noto Sans JP", "メイリオ", sans-serif;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-underline-offset: 3px;
}
@media only screen and (max-width: 767px) {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  table,
  th,
  td,
  ul,
  li,
  ol,
  dl,
  dt,
  dd,
  form,
  fieldset,
  p,
  figure,
  button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  table,
  th,
  td,
  ul,
  li,
  ol,
  dl,
  dt,
  dd,
  form,
  fieldset,
  p,
  figure,
  button {
    font-size: 14px;
  }
}

table {
  border-collapse: collapse;
}

a {
  color: #2A5C54;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input,
textArea,
select,
button {
  color: #2A5C54;
  background: none;
  margin: 0px;
  outline: none;
  padding: 0px;
  font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  -webkit-appearance: none;
}

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

summary {
  list-style-type: none;
}

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

button {
  cursor: pointer;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*                link
======================================================= */
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  a {
    overflow-wrap: break-word;
  }
}

@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*-- layoutフォルダの中の_index.scss --*/
.l-wrap {
  overflow: hidden;
  position: relative;
}

.l-main {
  position: relative;
}

.l-section {
  padding-top: 120px;
}

.is-sp-menu-open {
  overflow: hidden;
}

/*-- componentフォルダの中の_index.scss --*/
.c-width {
  margin-left: auto;
  margin-right: auto;
  max-width: 1380px;
  padding-inline: 80px;
  width: 100%;
}
@media only screen and (max-width: 1279px) {
  .c-width {
    padding-inline: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding-inline: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .c-width {
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 350px) {
  .c-width {
    padding-inline: 12px;
  }
}

.c-title {
  font-size: 32px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .c-title {
    font-size: 24px;
  }
}

/*-- utilityフォルダの中の_index.scss --*/
@media only screen and (min-width: 1024px) {
  .u-pc-hide {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-sp-hide {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .u-sp-show {
    display: none;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-text-bold {
  font-weight: 700;
}

.u-ib {
  display: inline-block;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-mx-auto {
  margin-inline: auto;
}