@charset "UTF-8";
/* リセットCSS 
----------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

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

body {
  font-family: sans-serif;
}

a {
  color: inherit;
}

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

img {
  width: 100%;
}

/* 共通CSS 
----------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  color: #000;
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'Noto Serif JP', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif!important;/*テーマ打ち消し*/
  font-size: 16px;
  line-height: 1.4;
  cursor: default;
  padding-top: 0 !important;/*テーマ打ち消し*/
}

body > section:not(.main-visual) {
  padding-top: 120px;
}

.wrapper {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: #000;
  text-decoration: none;
}

ul {
  list-style-type: none;
}


img {
  max-width: 100%;
  border-style: none;
  vertical-align: middle;
}

h2 {
  margin-bottom: 48px;
  font-family: 'EB Garamond', serif!important;/*テーマ打ち消し*/
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3em;
  text-align: center;
}

h2 span {
  color: #404040;
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'Noto Serif JP', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif!important;/*テーマ打ち消し*/
  font-size: 12px;
}

h2 + p {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
}

p {
  font-weight: 400;
}

table {
  border-collapse: collapse;
}

table.base-style {
  width: 100%;
  border-top: 1px solid #ddd;
  color: #444;
}

table.base-style th, table.base-style td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

table.base-style th {
  width: 17em;
  background: #f7f7f7;
}

header#header {
  display: flex;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  transition: .4s ease;
  background: transparent;/*テーマ打ち消し*/
  box-shadow: none;/*テーマ打ち消し*/
}

header#header.header-white,
.news header#header {
  background-color: #fff;
}
header#header.header-white .header-logo a,
.news header#header .header-logo a {/*直接追加*/
  color: #000;
}
header#header.header-white #navbtn span,
.news header#header #navbtn span {
  background: #000;
}

header#header.header-white nav.toggle_wrap ul li a,
.news header#header nav.toggle_wrap ul li a {
  color: #000;
}

header#header .header-logo {
  z-index: 1000;
  height: 80px;
  margin-right: 60px;
  padding-left: 16px;
  line-height: 80px;
  font-size: 20px;/*直接追加*/
}
header#header .header-logo a {/*直接追加*/
  color: #fff;
}
/* header#header .header-logo a img {
  width: 240px;
} */

.store_btn {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #000;
}

.store_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 100%;
  transition: opacity .3s;
}

.store_btn a:hover {
  opacity: 0.5;
}

.store_btn a img {
  width: 32px;
}

.store_btn a .store_btn-text {
  margin-top: 4px;
  color: #fff;
  font-family: sans-serif!important;/*テーマ打ち消し*/
  font-size: 10px;
}

#navbtn {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 10px;
  right: 76px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#navbtn span {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: all 0.2s;
}

#navbtn span:nth-child(1) {
  top: 11px;
  left: 5px;
}

#navbtn span:nth-child(2) {
  top: 19px;
  left: 5px;
}

#navbtn span:nth-child(3) {
  top: 27px;
  left: 5px;
}

#navbtn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #000;
}

#navbtn.open span:nth-child(2) {
  top: 17px;
  opacity: 0;
}

#navbtn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #000;
}

nav.toggle_wrap.opennav {
  height: 100vh;
  background: #fff;
}

nav.toggle_wrap ul {
  display: flex;
  align-items: center;
  height: 80px;
}

nav.toggle_wrap ul li {
  margin-right: 24px;
}

nav.toggle_wrap ul li a {
  display: inline-block;
  color: #fff;
  transition: opacity .3s linear;
  font-size: 16px;/*テーマ打ち消し*/
}

nav.toggle_wrap ul li a:hover {
  opacity: 0.5;
}

.footer-btm {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif!important;/*テーマ打ち消し*/
}

.footer-btm .wrapper {
  padding: 30px 0 60px;
}

.footer-btm .wrapper .copyright {
  color: #999;
  text-align: center;
}

/* コーポレート コンテンツ
----------------------------------------- */
#corporate .main-visual {
  height: 100vh;
  background: url(../../images/corporate/img_corporatemain-bg1.jpg) center 60%/cover;
}

#corporate .main-visual .wrapper {
  position: relative;
  max-width: 1330px;
}

#corporate .main-visual-text-container {
  position: absolute;
  bottom: 80px;
  left: 0;
  padding: 0 25px;
  color: #fff;
}

#corporate .main-visual-text-container h1.main-visual-title {
  font-size: 52px;
  line-height: 1.2;
}

#corporate .main-visual-text-container h1.main-visual-title .main-visual-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 24px;
}

#corporate.news .main-news {
  min-height: 800px;
}
#corporate.news .main-news {
  margin-bottom: 60px;
}

#corporate .main-news .wrapper {
  display: flex;
  flex-wrap: wrap;
}

#corporate .main-news h2 {
  width: 25%;
  text-align: left;
}

#corporate .main-news ul {
  width: 75%;
  max-width: 920px;
  padding-top: 6px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif!important;/*テーマ打ち消し*/
  font-size: 14px;
}

#corporate .main-news ul li {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

#corporate .main-news ul li:first-of-type {
  padding-top: 0;
}

#corporate .main-news ul li span {
  margin-right: 2rem;
  color: #808080;
  font-weight: bold;
}

#corporate .main-news ul li a {
  color: #000;
  transition: .3s;
}

#corporate .main-news ul li a:hover {
  opacity: .5;
}

#corporate .main-news .main-news-btn {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif!important;/*テーマ打ち消し*/
}

#corporate .main-news .main-news-btn a {
  display: inline-block;
  position: relative;
  padding-right: 14px;
  font-size: 14px;
  font-weight: bold;
  transition: all .3s linear;
}

#corporate .main-news .main-news-btn a:hover {
  opacity: .5;
}

#corporate .main-news .main-news-btn a::after {
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  content: "";
}

#corporate #about table {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif!important;/*テーマ打ち消し*/
  font-size: 14px;
}

#corporate #about table tr {
  border-bottom: 1px solid #ddd;
}

#corporate #about table th, #corporate #about table td {
  padding: 24px 0;
  border: none;
}

#corporate #about table th {
  background: none;
  font-weight: bold;
}

#corporate .appeal-point-img {
  margin-bottom: 48px;
  text-align: center;
}

#corporate .appeal-point-img img {
  width: 762px;
  height: auto;
}

#corporate .appeal-point .btn-flex {
  flex-direction: column-reverse;
  align-items: center;
}

#corporate .appeal-point .btn-flex a.btn.accent {
  margin-bottom: 32px;
}

#corporate .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif!important;/*テーマ打ち消し*/
}

#corporate .grid li {
  width: 130px;
  padding: 5px;
}

#corporate .grid li.is-empty {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#corporate .grid li img {
  width: 120px;
  padding-bottom: 4px;
}

#corporate .grid li p {
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  margin-top: 8px;
}

#corporate .grid section {
  box-sizing: border-box;
  width: 100%;
  max-width: calc((100% - 16px * 2) / 3);
  margin-bottom: 16px;
  padding: 40px 32px;
  border-radius: 15px;
  background-color: #FAFAFA;
}

#corporate .grid section h3 {
  line-height: 1.3;
}

#corporate .grid section p {
  text-align: justify;
}

#corporate .grid section .maker-list-img {
  text-align: center;
}

#corporate .grid section .maker-list-img img {
  width: 312px;
  height: auto;
  margin: 0 auto 32px;
}

#corporate #contact form, #corporate #contact-check form {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica, "MS Pゴシック", "MS PGothic", sans-serif!important;/*テーマ打ち消し*/
  font-size: 14px;
}

#corporate #contact table .required-label, #corporate #contact-check table .required-label {
  display: inline-block;
  height: 18px;
  margin-left: 5px;
  padding: 0 4px;
  border-radius: 3px;
  background-color: #d45645;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

#corporate #contact table .example, #corporate #contact-check table .example {
  padding: 4px 8px 0;
  color: #555;
  font-size: 14px;
}

#corporate #contact table input[type=text], #corporate #contact table input[type=tel], #corporate #contact table input[type=email], #corporate #contact table textarea, #corporate #contact-check table input[type=text], #corporate #contact-check table input[type=tel], #corporate #contact-check table input[type=email], #corporate #contact-check table textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

#corporate #contact table textarea {
  min-height: 120px;
}

#corporate #contact table input[type=text]:focus, #corporate #contact table input[type=tel]:focus, #corporate #contact table input[type=email]:focus, #corporate #contact table textarea:focus {
  border: 1px solid #333;
  outline: none;
}

#corporate #contact ::-moz-placeholder {
  color: #ccc;
}

#corporate #contact :-ms-input-placeholder {
  color: #ccc;
}

#corporate #contact ::-ms-input-placeholder {
  color: #ccc;
}

#corporate #contact ::placeholder {
  color: #ccc;
}

#corporate #contact .privacy-section .privacy-link {
  padding: 16px;
  background: #f7f7f7;
  font-weight: 700;
  text-align: center;
}

#corporate #contact .privacy-section .privacy-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

#corporate #contact .privacy-section .privacy-link a::after {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url("../../images/corporate/ic_link.png");
  background-size: 16px;
  content: '';
}

#corporate #contact .privacy-section .privacy-input {
  padding: 20px;
  text-align: center;
}
#corporate #contact .privacy-section .privacy-input input[type="checkbox"] {
  margin: 0 6px 0 0;
}
.wpcf7-list-item {
  margin: 0 !important;
}

#corporate #contact .privacy-section .privacy-input small {
  display: block;
  margin-top: 8px;
}

#corporate #contact .contact-form-btn {
  text-align: center;
  position: relative;
}
.wpcf7 .ajax-loader {
  position: absolute !important;
  bottom: 0 !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 1em auto 1em !important;
  padding: 1em !important;
  width: 80% !important;
  text-align: center !important;
}

#corporate #contact .contact-form-btn #contact-form-send {
  width: 190px;
  margin-top: 20px;
  padding: 18px 0 18px;
  border: 0;
  border-radius: 4px;
  background: #d00;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: .2s;
  height: auto !important;
  line-height: 30px !important;
}

#corporate #contact .contact-form-btn #contact-form-send:not(:disabled):hover {

  opacity: .5;
}

#corporate #contact .contact-form-btn #contact-form-send:focus {
  outline: none;
}

#corporate #contact .contact-form-btn #contact-form-send:disabled {
  background: #DCDCDC;
  box-shadow: none;
  cursor: default;
}

#corporate #contact .contact-form-btn #contact-form-send:disabled:hover {
  transform: none;
}

#corporate #support {
  margin-top: 60px;
  padding: 90px 0;
  background: #111;
  color: white;
}

#corporate #support .wrapper {
  display: flex;
  flex-wrap: wrap;
}

#corporate #support h2 {
  width: 25%;
  text-align: left;
}

#corporate #support h2 span {
  color: #ddd;
}

#corporate #support .support-container {
  width: 75%;
  max-width: 920px;
}

#corporate #support .support-contact-set {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}

#corporate #support .support-contact-set figure {
  width: 35px;
  margin-right: 8px;
  text-align: center;
}

#corporate #support .support-contact-set figure img.mail-img {
  width: 28px;
}

#corporate #support .support-contact-set .support-contact {
  width: calc(100% - 43px);
}

#corporate #support .support-contact-set .support-contact a {
  display: inline-block;
  color: #fff;
  font-family: "EB Garamond",serif!important;/*テーマ打ち消し*/
  font-size: 32px;
  letter-spacing: .05em;
  line-height: 1;
}

#corporate #support .support-contact-detail ul {
  margin-top: 24px;
}

#corporate #support .support-contact-detail ul li {
  font-size: 14px;
  line-height: 1.5;
}

#corporate .ec-only {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media screen and (max-width: 1199px) {
  /* wrapper */
  #corporate .main-visual-text-container h1.main-visual-title {
    font-size: 42px;
  }
}

@media screen and (max-width: 959px) {
  /* tab */
  body > section:not(.main-visual) {
    padding-top: 80px;
  }
  header#header {
    height: 60px;
  }
  header#header .header-logo {
    height: 60px;
    margin-right: 0;
    line-height: 60px;
  }
  header#header .header-logo a img {
    width: 140px;
  }
  .store_btn {
    width: 60px;
    height: 60px;
  }
  .store_btn a img {
    width: 26px;
  }
  #navbtn {
    display: block;
  }
  nav.toggle_wrap {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  nav.toggle_wrap ul {
    display: block;
    flex-direction: column;
    margin-top: 80px;
    border: none;
  }
  nav.toggle_wrap ul li {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    text-align: center;
  }
  nav.toggle_wrap ul li a {
    padding: 20px 0;
    color: #000;
    line-height: initial;
  }
  #corporate .main-visual {
    background: url(../../images/corporate/img_corporatemain-bg2.jpg) center bottom / cover;
  }

  #corporate .main-visual-text-container h1.main-visual-title .main-visual-subtitle {
    margin-bottom: 8px;
    font-size: 20px;
  }
  #corporate .main-news .wrapper {
    flex-direction: column;
  }
  #corporate .main-news h2 {
    width: 100%;
    text-align: center;
  }
  #corporate .main-news ul {
    width: 100%;
    padding-top: 0;
    font-size: 14px;
  }
  #corporate .main-news .main-news-btn {
    margin-top: 20px;
  }
  #corporate .main-news .main-news-btn a {
    width: 100%;
    margin: 0 auto 10px;
    border: 1px solid #ccc;
    line-height: 54px;
    text-align: center;
  }
  #corporate .main-news .main-news-btn a::after {
    right: calc(50% - 40px);
  }
  #corporate .appeal-point-img img {
    width: 100%;
    max-width: 762px;
  }
  #corporate .grid section {
    max-width: calc((100% - 16px * 2) / 2);
  }
  #corporate .grid section .maker-list-img img {
    width: 100%;
    max-width: 312px;
  }
  #corporate #contact .contact-form-btn #contact-form-send, #corporate #contact-check .contact-form-btn #contact-form-send {
    max-width: 272px;
  }
  #corporate #support {
    padding: 60px 0;
  }
  #corporate #support .wrapper {
    flex-direction: column;
  }
  #corporate #support h2 {
    width: 100%;
    text-align: center;
  }
  #corporate #support .support-container {
    width: 100%;
  }
  #corporate #support .support-contact-set .support-contact a {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  /* sp */
  .wrapper {
    padding: 0 12px;
  }
  h2 {
    margin-bottom: 24px;
    font-size: 22px;
  }
  h2 + p {
    margin-bottom: 32px;
    font-size: 16px;
  }
  table.base-style tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  table.base-style th {
    width: 100%;
  }
  header#header .header-logo {/*直接追加*/
    padding-left: 12px;
    font-size: 14px;
  }
  #corporate .main-visual-text-container {/*直変更！*/
    bottom: 20px;
    left: calc(50% - 140px);
    width: 280px;
  }
  #corporate .main-visual-text-container h1.main-visual-title {
    font-size: 28px;
    text-align: center;
  }
  #corporate #about table th {
    padding: 24px 0 0;
  }
  #corporate #about table td {
    padding: 0 0 24px;
  }
  #corporate .grid section {
    max-width: 100%;
  }
  #corporate #contact table input[name=zip11], #corporate #contact-check table input[name=zip11] {
    width: 120px;
  }
  #corporate #contact .contact-form-btn #contact-form-send, #corporate #contact-check .contact-form-btn #contact-form-send {
    margin: 20px 0 0;
  }
  #corporate #support .support-contact-set .support-contact {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  #corporate #support .support-contact-set .support-contact a {
    width: 100%;
  }
}
