@charset "UTF-8";
@font-face {
  font-family: "chonburiregular";
  src: url("/assets/fonts/Chonburi/chonburi-regular-webfont.woff2") format("woff2"), url("/assets/fonts/Chonburi/chonburi-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/**---------------------------------------------
 * 画像処理
  <figure class="image-1by1">
    <img src="<?php echo get_template_directory_uri(); ?>/assets/image/600x600.webp">
  </figure>

**-----------------------------------------------*/
.image-1by1,
.image-1by2,
.image-2by3,
.image-3by4 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.image-1by1 img,
.image-1by2 img,
.image-2by3 img,
.image-3by4 img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

.image-1by1::before {
  padding-top: 100%;
  /* 1:1 aspect ratio (height / width * 100%) ...1/1*100=100  */
  content: "";
  display: block;
}

.image-1by2::before {
  padding-top: 50%;
  /* 1:2 aspect ratio (height / width * 100%) ...1/2*100=0.5  */
  content: "";
  display: block;
}

.image-2by3::before {
  padding-top: 66.66%;
  /* 2:3 aspect ratio (height / width * 100%) ...66.666/100*100=66.66666  */
  content: "";
  display: block;
}

.image-3by4::before {
  padding-top: 75%;
  /* 2:3 aspect ratio (height / width * 100%) ...75/100*100=75  */
  content: "";
  display: block;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2列のグリッドを作成 */
}

form .field-body {
  display: flex;
  flex-direction: column !important;
}

.radio + .radio {
  margin-inline-start: 1.5em;
}

.accordion .accordion-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion .accordion-toggle::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 12px;
  height: 12px;
  background-image: url("/assets/image/caret-down.svg"); /* 画像のパスを更新 */
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.accordion li.is-active .accordion-toggle::after {
  transform: rotate(180deg);
}
.accordion div.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion.news a.accordion-toggle {
  color: hsl(221, 14%, 29%);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid hsl(221, 14%, 86%);
  padding-right: 2rem;
}

/*!
Theme Name: wordpress-starter-theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wordpress-starter-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

wordpress-starter-theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
.title {
  font-weight: 400 !important;
  color: #0e335d !important;
}

.footer.has-background-light {
  color: #0e335d;
}
.footer.has-background-light a {
  color: #0e335d;
}
.footer.has-background-light strong {
  color: #0e335d;
  font-weight: bold;
}

.footer.has-background-primary-dark {
  color: hsl(221, 14%, 96%);
}
.footer.has-background-primary-dark a {
  color: hsl(221, 14%, 96%);
}
.footer.has-background-primary-dark strong {
  color: hsl(221, 14%, 96%);
  font-weight: bold;
}

.is-fullheight,
.hero.is-fullheight {
  min-height: calc(100dvh - 60px);
}

@media screen and (min-width: 769px) {
  .is-fullheight,
  .hero.is-fullheight {
    min-height: calc(100dvh - 80px);
  }
}
.is-fullheight-image {
  min-height: calc(100dvh - 60px);
  width: 100%;
  overflow: hidden;
  position: relative;
  font-size: 16px;
}
.is-fullheight-image img {
  min-height: calc(100dvh - 60px);
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

div.site {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main.site-main {
  flex: 1;
}

#glonal_footer_menu > li.menu-item {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: var(--bulma-column-gap);
}
#glonal_footer_menu > li.menu-item > a {
  font-weight: bold;
  margin-bottom: 0.8rem;
}

div.field.is-horizontal .field-label {
  flex-grow: 2;
}

/**---------------------------------------------
 * ローディング画面
**-----------------------------------------------*/
#modal-loading .ph.ph-circle-notch {
  color: hsl(42, 100%, 53%);
  font-size: 3rem;
  z-index: 41;
  animation: rotate 1s linear infinite;
  display: inline-block;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
img.icon-size {
  width: 128px !important;
  height: 128px !important;
  max-height: initial;
}

#footer {
  background-image: url("/assets/image/mv_01.jpg");
  background-repeat: no-repeat; /* 繰り返さない */
  background-position: center center; /* 中央に配置 */
  background-size: cover; /* 全体をカバー */
}

.companyInfo {
  width: auto;
  background-position: center;
  background-size: cover;
  text-align: center;
  vertical-align: middle;
}

.transparent {
  /* background-color: rgba(255, 255, 255, 0.562); */
  background: linear-gradient(to top, rgba(255, 255, 255, 0.678) 0%, rgb(255, 255, 255) 100%);
}

.pattern-center {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.right-border-gray {
  border-right: 1px solid gray;
}

.ph.ph-arrows-out {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 35;
}

.modal-button {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .modal-content.modal-card {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .modal-content.modal-card {
    width: 60%;
  }
}
.columns.is-stretched {
  align-items: stretch;
}
.columns.is-stretched .column {
  display: flex;
}
.columns.is-stretched .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#footer-nav .footer-left {
  text-align: left;
  border-right: 1px solid rgb(128, 128, 128);
}
#footer-nav .footer-right {
  text-align: right;
}
@media screen and (max-width: calc(769px - 1px)) {
  #footer-nav .column {
    padding-top: 0;
    padding-bottom: 0;
  }
  #footer-nav .footer-left,
  #footer-nav .footer-right {
    text-align: center;
    border-right: none;
  }
}

.card.contact .card-content {
  flex: 1;
}
.card.contact .card-footer {
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*# sourceMappingURL=style.css.map */
