@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* _base.scss */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.7;
  color: #432;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}

.sub-title {
  font-size: 1.375rem;
  padding: 0 8px 8px;
  border-bottom: 2px #ffbc61 solid;
  font-weight: normal;
}

/* _header.scss */
#header {
  width: 100%;
  height: 100vh;
  position: relative;
}

#header:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/main-bg.jpg) no-repeat center;
  background-size: cover;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 0 4%;
  position: fixed;
  transition: padding 0.5s, background-color 0.5s;
  width: 100%;
  z-index: 100;
}
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: center;
  }
}

.header.transform {
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 265px;
  margin-top: 14px;
}

.main-nav {
  display: flex;
  font-size: 1.25rem;
  margin-top: 34px;
  list-style: none;
}
@media (max-width: 600px) {
  .main-nav {
    font-size: 1rem;
    margin-top: 10px;
  }
}
.main-nav li {
  margin-left: 36px;
}
@media (max-width: 600px) {
  .main-nav li {
    margin: 0 20px;
  }
}
.main-nav a {
  color: #432;
}

.js-modal-open {
  cursor: pointer;
}

/*===  矢印が動いてスクロールを促す  ====*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #fff;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #fff;
}

/* _footer.scss */
footer {
  background: #ffd8a4;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 26px 0;
  margin-top: 0;
}
footer p {
  color: #432;
  font-size: 0.875rem;
}
footer small {
  font-size: 80%;
}

/* _main.scss */
main {
  background: #fff;
  position: relative;
  margin-bottom: 0;
}

.about {
  background: #fff5e8;
}
.about__info {
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .about__info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 4% 60px;
  }
}
.about-title {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffbc61;
}
@media (max-width: 600px) {
  .about-title {
    font-size: 1.375rem;
  }
}
.about-table {
  width: 100%;
  text-align: left;
  margin-top: 12px;
}
.about-table tr th {
  width: 8rem;
  padding: 0.3rem;
  vertical-align: top;
}
.about-table tr td {
  width: calc(100% - 6.875rem);
  padding: 0.3rem;
  vertical-align: top;
}
.about__contents {
  display: flex;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .about__contents {
    flex-direction: column;
  }
}
.about__content-left {
  width: 50%;
  display: flex;
}
@media (max-width: 600px) {
  .about__content-left {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.about__content-right {
  width: 50%;
}
@media (max-width: 600px) {
  .about__content-right {
    width: 100%;
  }
}
.about__content-right p {
  margin-bottom: 1.25rem;
}
.about-icon {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .about-icon__image {
    text-align: center;
  }
}
.about-icon__image img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 20px;
}
@media (max-width: 600px) {
  .about-icon__image img {
    max-width: 180px;
    max-height: 180px;
    margin: 0 20px 0 0;
  }
}
.about-icon__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-icon__content-name {
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
}
@media (max-width: 600px) {
  .about-icon__content-name {
    font-size: 1.125rem;
  }
}

.works__container {
  padding-top: 100px;
}
@media (max-width: 600px) {
  .works__container {
    padding-top: 138px;
  }
}
.works-title {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 8px;
  margin-bottom: 60px;
  border-bottom: 2px solid #ffbc61;
}
@media (max-width: 600px) {
  .works-title {
    font-size: 1.375rem;
  }
}
.works-item {
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  color: #432;
  cursor: pointer;
}
.works-item__thumbnail {
  overflow: hidden;
}
.works-item__thumbnail-image {
  border-radius: 0.8rem;
  transition: all 0.2s;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.works-item__content {
  padding: 0.625rem 1.25rem;
}
.works-item__content-title {
  font-weight: normal;
  font-size: 1.4rem;
}
@media (max-width: 600px) {
  .works-item__content-title {
    font-size: 1.375rem;
  }
}
.works-item__content-title::after {
  margin: 0 auto;
  display: block;
  padding-top: 0.625rem;
  border-bottom: 2px solid #ffbc61;
  content: "";
}
.works-item__content-url {
  font-size: 1.125rem;
  padding-top: 0.625rem;
}
.works-item__content p span {
  font-size: 0.938rem;
  color: #ffbc61;
  word-break: break-all;
}
.works-item__content-pass {
  padding-top: 0.625rem;
}
.works-item__content-summary {
  padding-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: normal;
}

.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 100px;
}

#sns {
  background: #fff5e8;
  padding: 4% 0;
}
@media (max-width: 600px) {
  #sns {
    padding-top: 60px;
  }
}

#sns .wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 600px) {
  #sns .wrapper {
    flex-direction: column;
  }
}

#sns .sub-title {
  margin-bottom: 30px;
}

.sns-box {
  width: 30%;
  position: relative;
}
@media (max-width: 600px) {
  .sns-box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.sns-box__thumbnail {
  position: absolute;
  bottom: 0;
}
@media (max-width: 600px) {
  .sns-box__thumbnail {
    position: static;
  }
}

.modal {
  z-index: 9999;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
}
@media (max-width: 600px) {
  .modal__content {
    width: 90%;
  }
}
.modal__content h2 {
  color: #432;
  text-align: center;
  margin: 28px auto 22px;
  padding-bottom: 29px;
  font-size: 20px;
  width: 429.9px;
  border-bottom: 1px solid #e7e7e7;
}
@media (max-width: 600px) {
  .modal__content h2 {
    width: 90%;
  }
}
.modal__closeBtn {
  position: absolute;
  z-index: 100;
  width: 18px;
  height: 18px;
  top: 20px;
  right: 22px;
}

.contact__inner {
  max-width: 429px;
  margin: 0 auto;
  text-align: initial;
}
@media (max-width: 600px) {
  .contact__inner {
    width: 90%;
  }
}

#name {
  font-size: 14px;
  color: #797878;
  border: 1px solid #e7e7e7;
  width: 429px;
  height: 32px;
  margin: 14px 0;
  padding: 8px 0 8px 9px;
}
@media (max-width: 600px) {
  #name {
    width: 100%;
  }
}

#email {
  font-size: 14px;
  color: #797878;
  border: 1px solid #e7e7e7;
  width: 429px;
  height: 32px;
  margin: 14px 0;
  padding: 8px 0 8px 9px;
}
@media (max-width: 600px) {
  #email {
    width: 100%;
  }
}

#text {
  font-size: 14px;
  color: #797878;
  border: 1px solid #e7e7e7;
  width: 429px;
  height: 96px;
  margin: 14px 0;
  padding: 8px 0 8px 9px;
}
@media (max-width: 600px) {
  #text {
    width: 100%;
  }
}

.contact__wrapper {
  text-align: center;
}
.contact__wrapper button.btn {
  font-size: 16px;
  color: #432;
  background: #fff;
  width: 198px;
  height: 42px;
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px solid #707070;
}

.end-message {
  display: none;
  text-align: center;
  padding-bottom: 20px;
}

.false-message {
  display: none;
  text-align: center;
  padding-bottom: 20px;
}

/* _ir.scss */
#ir {
  background-image: url(../img/ir-bg.jpg);
  width: 100%;
  height: 270px;
}

.ir-bg {
  background-size: cover;
  background-position: center top;
}

.ir__big-bg {
  height: 270px;
}
.ir__big-bg h2 {
  line-height: 270px;
  text-align: center;
}
@media (max-width: 600px) {
  .ir__big-bg h2 {
    padding-top: 30px;
  }
}

.page-title {
  font-size: 5rem;
  font-weight: normal;
}
@media (max-width: 600px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.breadcrumb__wrapper {
  background: #fff5e8;
  height: 50px;
}
.breadcrumb li {
  font-size: 14px;
  display: inline;
  line-height: 50px;
}
.breadcrumb li a {
  color: #432;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #432;
}
.breadcrumb li:last-child:after {
  content: "";
}

.ir {
  margin-top: 100px;
  margin-bottom: 100px;
}
.ir__content {
  margin-bottom: 60px;
}
.ir__title {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .ir__title {
    font-size: 1.375rem;
  }
}
.ir__settlement {
  margin-bottom: 60px;
}
.ir__sub-title {
  font-size: 1.375rem;
  font-weight: normal;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffbc61;
}
.ir__date {
  font-weight: normal;
}
.ir__note {
  padding: 10px 10px;
}
.ir__note a {
  color: #432;
  text-decoration: underline;
}
.ir__note a img {
  width: 26px;
  vertical-align: -4px;
}

/*# sourceMappingURL=style.css.map */
